Merge "Remove outdated PDK." into jb-dev
diff --git a/pdk/Pdk.mk b/pdk/Pdk.mk
deleted file mode 100644
index afe4dc6..0000000
--- a/pdk/Pdk.mk
+++ /dev/null
@@ -1,244 +0,0 @@
-#
-# Copyright (C) 2008 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# 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 "AS IS" 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.
-#
-
-# Assemble the Platform Development Kit (PDK)
-# (TODO) Figure out why $(ACP) builds with target pndk but not pdk_docs
-
-pdk:
- @echo "Package: $@ has targets pndk, pdk_docs and pdk_all"
-
-pdk_all: pndk pdk_docs
- @echo "Package: $^"
-
-LOCAL_PATH := $(call my-dir)
-
-#-------------------------------------------------------------------------------
-# Make the Native Development Kit (Code examples)
-# Allows vendors to build shared libraries without entire source tree.
-# This include adds /pndk to LOCAL_PATH, so can't use it afterwards...
-include $(LOCAL_PATH)/pndk/Pndk.mk
-
-
-#-------------------------------------------------------------------------------
-# Make the Plaftorm Development Kit Documentation.
-# Doxygenize the header files to create html docs in the generatedDocs dir.
-# Copy the appengine files, the template files and the generated html
-# to the docs dir and zip everything up to the distribution directory.
-# Run javadocs/droiddocs/clearsilver on the generatedDocs dir to get the right
-# styles added to the html.
-
-
-# Workspace directory
-pdk_docs_intermediates := $(call intermediates-dir-for,PACKAGING,pdkdocs)
-
-# Source directories for appengine, templates, config & header files
-pdk_hosting_dir := development/pdk/hosting
-pdk_templates_dir := development/pdk/docs
-pdk_config_dir := development/pdk/doxygen_config
-pdk_docsfile_dir := $(pdk_config_dir)/docsfiles
-pdk_legacy_hardware_dir := hardware/libhardware_legacy/include/hardware_legacy
-pdk_hardware_dir := hardware/libhardware/include/hardware
-pdk_camera_dir := frameworks/base/include/camera
-
-# Destination directory for docs (templates + doxygenated headers)
-pdk_docs_dest_dir := $(pdk_docs_intermediates)/docs/porting
-pdk_app_eng_root := $(pdk_docs_intermediates)/docs
-
-# Working directory for source to be doxygenated
-pdk_doxy_source_dir := $(pdk_docs_intermediates)/sources
-
-# Working directory for html, et al. after doxygination
-pdk_generated_source_dir := $(pdk_docs_intermediates)/generatedDocs/html
-
-# Working directory for .dox files
-pdk_doxy_docsfiles_dir := $(pdk_docs_intermediates)/docsfiles
-
-# Doxygen version to use, so we can override it on the command line
-# doxygen 1.5.6 working, the latest version get-apt installable on ghardy.
-# with bug fix for </div> error.
-doxygen_version = doxygen
-
-#-------------------------------------------------------------------------------
-# Header files to doxygenize.
-# Add new header files to document here, also adjust the templates to have
-# descriptions for the new headers and point to the new doxygen created html.
-pdk_headers := \
- $(pdk_legacy_hardware_dir)/AudioHardwareInterface.h \
- $(pdk_hardware_dir)/gps.h \
- $(pdk_legacy_hardware_dir)/wifi.h \
- $(pdk_camera_dir)/CameraHardwareInterface.h \
- $(pdk_hardware_dir)/sensors.h \
- $(pdk_hardware_dir)/lights.h
-
-# Create a rule to copy the list of PDK headers to be doxyginated.
-# copy-one-header defines the actual rule.
-$(foreach header,$(pdk_headers), \
- $(eval _chFrom := $(header)) \
- $(eval _chTo := $(pdk_doxy_source_dir)/$(notdir $(header))) \
- $(eval $(call copy-one-header,$(_chFrom),$(_chTo))) \
- $(eval all_copied_pdk_headers: $(_chTo)) \
- )
-_chFrom :=
-_chTo :=
-
-
-#-------------------------------------------------------------------------------
-# Assemble all the necessary doxygen config files and the sources into the
-# working directories
-
-pdk_templates := $(shell find $(pdk_templates_dir) -type f)
-
-# Create a rule to copy the list of PDK doc templates.
-# copy-one-file defines the actual rule.
-$(foreach template,$(pdk_templates), \
- $(eval _chFrom := $(template)) \
- $(eval _chTo := $(pdk_app_eng_root)/$(patsubst $(pdk_templates_dir)/%,%,$(template))) \
- $(eval $(call copy-one-header,$(_chFrom),$(_chTo))) \
- $(eval all_copied_pdk_templates: $(_chTo)) \
- )
-_chFrom :=
-_chTo :=
-
-# Copy newer doxygen config file (basic configs, should not change very often.)
-pdk_doxygen_config_file := $(pdk_docs_intermediates)/pdk_config.conf
-$(pdk_doxygen_config_file): $(pdk_config_dir)/pdk_config.conf
- @echo "PDK: $@"
- $(copy-file-to-target-with-cp)
-
-# Copy newer doxygen override config file (may change these more often.)
-pdk_doxygen_config_override_file := $(pdk_docs_intermediates)/overrideconfig.conf
-$(pdk_doxygen_config_override_file): $(pdk_config_dir)/overrideconfig.conf
- @echo "PDK: $@"
- $(copy-file-to-target-with-cp)
-
-# (TODO) Get the latest templates
-# Copy newer doxygen html files.
-$(pdk_docs_intermediates)/header.html: $(pdk_config_dir)/header.html
- @echo "PDK: $@"
- $(copy-file-to-target-with-cp)
-
-$(pdk_docs_intermediates)/footer.html: $(pdk_config_dir)/footer.html
- @echo "PDK: $@"
- $(copy-file-to-target-with-cp)
-
-# Copy newer doxygen .dox files
-$(pdk_doxy_docsfiles_dir)/groups.dox: $(pdk_docsfile_dir)/groups.dox
- @echo "PDK: $@"
- $(copy-file-to-target-with-cp)
-
-$(pdk_doxy_docsfiles_dir)/main.dox: $(pdk_docsfile_dir)/main.dox
- @echo "PDK: $@"
- $(copy-file-to-target-with-cp)
-
-# All the files that we depend upon
-all_pdk_docs_files := $(pdk_doxygen_config_override_file) \
- $(pdk_doxygen_config_file) $(pdk_docs_intermediates)/header.html \
- $(pdk_docs_intermediates)/footer.html $(pdk_doxy_docsfiles_dir)/groups.dox \
- $(pdk_doxy_docsfiles_dir)/main.dox all_copied_pdk_templates \
- all_copied_pdk_headers
-
-# Run doxygen and copy all output and templates to the final destination
-# We replace index.html with a template file so don't use the generated one
-pdk_doxygen: all_copied_pdk_headers $(pdk_doxygen_config_override_file) \
- $(pdk_doxygen_config_file) $(pdk_docs_intermediates)/header.html \
- $(pdk_docs_intermediates)/footer.html $(pdk_doxy_docsfiles_dir)/groups.dox \
- $(pdk_doxy_docsfiles_dir)/main.dox
- @echo "Files for Doxygination: $^"
- @mkdir -p $(pdk_generated_source_dir)
- @rm -f $(pdk_generated_source_dir)/*
- @cd $(pdk_docs_intermediates) && $(doxygen_version) pdk_config.conf
- @mkdir -p $(pdk_docs_dest_dir)
- @cd $(pdk_generated_source_dir) && chmod ug+rx *
- @rm -f $(pdk_generated_source_dir)/index.html
- # Fix a doxygen bug: in *-source.html file insert '</div>\n' after line 25
- # @$(pdk_hosting_dir)/edoxfix.sh $(pdk_generated_source_dir)
- @cp -fp $(pdk_generated_source_dir)/* $(pdk_docs_dest_dir)
- @rm $(pdk_generated_source_dir)/*
-
-
-# ==== docs for the web (on the google app engine server) =======================
-# Run javadoc/droiddoc/clearsilver to get the formatting right
-
-# make droiddocs run after we make our doxygen docs
-$(pdk_docs_intermediates)/pdk-timestamp: pdk_doxygen all_copied_pdk_templates
- @touch $(pdk_docs_intermediates)/pdk-timestamp
-
-$(LOCAL_PATH)/pdk-timestamp: $(pdk_docs_intermediates)/pdk-timestamp
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := pdk-timestamp samples/samplejni/src/com/example/jniexample/JNIExample.java
-LOCAL_MODULE_CLASS := development/pdk/pndk/samples/samplejni/src/com/example/jniexample
-LOCAL_DROIDDOC_HTML_DIR := ../../../$(pdk_app_eng_root)
-
-LOCAL_MODULE := online-pdk
-
-LOCAL_DROIDDOC_OPTIONS:= \
- -toroot / \
- -hdf android.whichdoc online \
- -hdf android.whichmodule $(LOCAL_MODULE)
-
-LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR := build/tools/droiddoc/templates-pdk
-LOCAL_DROIDDOC_CUSTOM_ASSET_DIR := assets
-
-include $(BUILD_DROIDDOC)
-
-# The docs output dir is: out/target/common/docs/online-pdk
-DOCS_OUT_DIR := $(OUT_DOCS)/$(LOCAL_MODULE)
-
-# Copy appengine server files for new system
-$(OUT_DOCS)/app.yaml: $(pdk_hosting_dir)/app.yaml
- @echo "PDK: $@"
- $(copy-file-to-target-with-cp)
-
-# Name the tar files
-name := android_pdk_docs-$(REQUESTED_PRODUCT)
-ifeq ($(TARGET_BUILD_TYPE),debug)
- name := $(name)_debug
-endif
-name := $(name)-$(BUILD_NUMBER)
-pdk_docs_tarfile := $(pdk_docs_intermediates)/$(name).tar
-pdk_docs_tarfile_zipped := $(pdk_docs_tarfile).gz
-
-.PHONY: pdk pdk_docs pdk_doxygen all_copied_pdk_headers all_copied_pdk_templates pdk-timestamp
-
-pdk_docs: $(pdk_docs_tarfile_zipped) $(pdk_docs_tarfile)
- @echo "PDK: Docs tarred and zipped"
-
-# Put the pdk_docs zip files in the distribution directory
-$(call dist-for-goals,pdk_docs,$(pdk_docs_tarfile_zipped))
-
-# zip up tar files
-%.tar.gz: %.tar
- @echo "PDK docs: zipped $<"
- $(hide) gzip -cf $< > $@
-
-# tar up all the files to make the pdk docs.
-$(pdk_docs_tarfile): $(DOCS_OUT_DIR)-timestamp $(OUT_DOCS)/app.yaml
- @echo "PDK docs: $@"
- @mkdir -p $(dir $@)
- @rm -f $@
- $(hide) tar rf $@ -C $(OUT_DOCS) $(LOCAL_MODULE) app.yaml
-
-# Debugging reporting can go here, add it as a target to get output.
-pdk_debug:
- @echo "You are here: $@"
- @echo "pdk headers copied: $(all_copied_pdk_headers)"
- @echo "pdk headers: $(pdk_headers)"
- @echo "pdk docs dest: $(pdk_docs_dest_dir)"
- @echo "config dest: $(pdk_doxygen_config_file)"
- @echo "config src: $(pdk_config_dir)/pdk_config.conf"
- @echo "pdk templates: $(pdk_templates_dir)"
diff --git a/pdk/README b/pdk/README
deleted file mode 100644
index 0acb1eb..0000000
--- a/pdk/README
+++ /dev/null
@@ -1,103 +0,0 @@
-Building the pdk (platform development kit)
-
-1) get a cupcake source tree with all the normal tools... and add doxygen
-(We currently support version 1.4.6)
-
- sudo apt-get install doxygen
-
-Make sure that you are using the right version of java
-
- sudo update-java-alternatives -s java-1.5.0-sun
-
-If that doesn't work, go through the instructions on
-
- http://source.android.com/source/download.html again.
-
-
-2) from the root
- . build/envsetup.sh
-
-
-4) mkdir dist
- mkdir logs
-
-then build everything:
-
- time make -j8 pdk pdk_all dist DIST_DIR=dist 2>&1 | tee logs/`date +%y%m%d-%H%M%S`
-
-so you can have a record of the build commands in the logs directory.
-
-
-5) the pdk and pndk tar file is put in the dist directory.
-
-6) the pdk-docs are in
-
- out/target/common/docs/online-pdk
-
-
---------------------------------------------------------------------------------
-# Build Notes
-
-The build target 'pdk' brings in the pdk/pndk make files into the build system.
- Then there are three targets:
- pdk_docs - which builds just the pdk documentation
- pndk - which builds the platform's native development kit (native compiler, linker, etc.)
- pdk_all - which builds the above two targets
-
-To change which version of doxygen runs you can pass in the variable:
- doxygen_version='<path/name_of_doxygen_executable>'
-on the make line.
-
-
---------------------------------------------------------------------------------
-# Testing
-
-You must install google appengine. See: http://code.google.com/appengine/downloads.html
-
-Here's the command to run the pdk-docs server locally:
- python <path_to_appengine_installation>/dev_appserver.py --address 0.0.0.0 \
- <path_to_cupcake_code>/android/out/target/common/docs
-
-To verify it is working, you can access it with a browser locally on port 8080:
-
-http://localhost:8080/online-pdk/guide/index.html
-
-NOTE: If you are trying to get to the appengine local testing instance remotely
-you will have to ssh tunnel into your linux box as appengine only serves the web
-host locally.
-
-On a Windows machine to check your current port forwarding settings:
-
-1. Start putty.
-2. Click on your session in the list and hit load (this loads the settings so you can edit them)
-3. Go to SSH -> tunnels and look at the Forwarded ports box
-
-L8080 localhost:8080
-
-Means that you can point your webbrowser on your laptop to http://localhost:8080/ and it will show you the same thing as on your workstation for http://localhost:8080/
-
-To add port forwarding
-
-1. Start putty.
-2. Click on your session in the list and hit load (this loads the settings so you can edit them)
-3. Go to SSH -> tunnels.
-4. Pick an unused port on your laptop (8080, 8888, something like that) and put it in the "source port box"
-5. In the destination box, put localhost:8888 (replace with the actual port number the service is running on)
-6. Hit add.
-7. Go back to "Session" and save your new settings so this configuration will happen every time you login.
-
-
---------------------------------------------------------------------------------
-# Deployment
-
-To host the pdk docs on the internal appengine run:
-/home/build/static/projects/apphosting/devtools/appcfg.py update <path_to_cupcake_src>/out/target/common/docs
-where the docs directory contains: pdk.py, app.yaml, and the online-pdk directory,
-all of which are tarred up by the Pdk.mk file when using the target pdk_docs.
-
-To host the pdk docs on the external appengine run:
-/home/build/static/projects/apphosting/devtools/appcfg.py -s pdk-docs.appspot.com update <path_to_cupcake_src>/out/target/common/docs
-where the docs directory contains: pdk.py, app.yaml, and the online-pdk directory,
-all of which are tarred up by the Pdk.mk file when using the target pdk_docs.
-
-
diff --git a/pdk/docs/README b/pdk/docs/README
deleted file mode 100644
index 883d83a..0000000
--- a/pdk/docs/README
+++ /dev/null
@@ -1,15 +0,0 @@
-This directory contains the source for the source.android.com site contents.
-The Platform Development Kit (PDK, a set of tools for the convenience of
-engineers doing building devices) is also built as part of the site build.
-
-Subdirectories include:
- about -- general information about the Android Open Source Project
- community -- information about the AOSP mailing lists
- compatibility -- information about building compatible devices
- downloads -- links to download files of interest
- images -- images used in docs; note: this is NOT for UI assets/skins
- porting -- tips & guides for porting the Android source to hardware
- source -- how to access & use the Android source
-
-This directory originated as the PDK home (hence the name) and grew to
-encompass source.android.com.
diff --git a/pdk/docs/about/about_toc.cs b/pdk/docs/about/about_toc.cs
deleted file mode 100644
index 4676ace..0000000
--- a/pdk/docs/about/about_toc.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-<script type="text/javascript" language="JavaScript">
-<!--
-function nothing() {}
--->
-</script>
-
-<ul>
- <li><a href="<?cs var:toroot ?>about/philosophy.html">Project Philosophy</a></li>
- <li><a href="<?cs var:toroot ?>source/index.html">Getting Involved</a></li>
- <li><a href="<?cs var:toroot ?>compatibility/index.html">Compatibility</a></li>
- <li><a href="<?cs var:toroot ?>source/licenses.html">Licensing Information</a></li>
-</ul>
-
-<script type="text/javascript">
-<!--
- buildToggleLists();
-//-->
-</script>
diff --git a/pdk/docs/about/index.jd b/pdk/docs/about/index.jd
deleted file mode 100644
index 43d2a8d..0000000
--- a/pdk/docs/about/index.jd
+++ /dev/null
@@ -1,20 +0,0 @@
-page.title=About the Android Open Source Project
-doc.type=about
-doc.hidenav=true
-@jd:body
-<p>Android is an open-source software stack created for mobile phones and
-other devices. The Android Open Source Project (AOSP), led by Google, is
-tasked with the maintenance and further development of Android. Many device
-manufacturers have brought to market devices running Android, and they are
-readibly available around the world.</p>
-<p>Our primary purpose is to build an excellent software platform for everyday
-users. A number of companies have committed many engineers to achieve this
-goal, and the result is a full production quality consumer product whose
-source is open for customization and porting.</p>
-<p>You can find more information about Android from these pages:</p>
-<ul>
- <li><a href="{@docRoot}about/philosophy.html">Our Project Philosophy and Goals</a></li>
- <li><a href="{@docRoot}source/index.html">Interacting with the Project</a></li>
- <li><a href="{@docRoot}compatibility/index.html">Android Compatibility</a></li>
- <li><a href="{@docRoot}source/licenses.html">Licensing Information</a></li>
-</ul>
diff --git a/pdk/docs/about/philosophy.jd b/pdk/docs/about/philosophy.jd
deleted file mode 100644
index 1562e42..0000000
--- a/pdk/docs/about/philosophy.jd
+++ /dev/null
@@ -1,62 +0,0 @@
-page.title=Philosophy and Goals
-doc.type=about
-doc.hidenav=true
-@jd:body
-<p>Android is an open-source software stack for mobile phones and other
-devices.</p>
-<h2>Origin and Goal</h2>
-<p>Android was originated by a group of companies known as the Open Handset
-Alliance, led by Google. Today, many companies -- both original members of the
-OHA and others -- have invested heavily in Android, typically in the form of
-allocating significant engineering resources to improve Android and bring
-Android devices to Market.</p>
-<p>We created Android in response to our own experiences launching mobile
-apps. We wanted to make sure that there would always be an open platform
-available for carriers, OEMs, and developers to use to make their innovative
-ideas a reality. We wanted to make sure that there was no central point of
-failure, where one industry player could restrict or control the innovations
-of any other. The solution we chose was an open and open-source platform.</p>
-<p>The goal of the Android Open Source Project is to create a successful
-real-world product that improves the mobile experience for end users.</p>
-<h2>Governance Philosophy</h2>
-<p>The companies that have invested in Android have done so on its merits,
-because we believe that an open platform is necessary. Android is
-intentionally and explicitly an open-source -- as opposed to free software --
-effort: a group of organizations with shared needs has pooled
-resources to collaborate on a single implementation of a shared product.
-The Android philosophy is pragmatic, first and foremost. The objective is
-a shared product that each contributor can tailor and customize.</p>
-<p>Uncontrolled customization can, of course, lead to incompatible
-implementations. To prevent this, the AOSP also maintains the Android
-Compatibility Program, which spells out what it means to be "Android
-compatible", and what is required of device builders to achieve that status.
-Anyone can (and will!) use the Android source code for any purpose, and we
-welcome all such uses. However, in order to take part in the shared
-ecosystem of applications that we are building around Android, device builders
-must participate in the Compatibility Program.</p>
-<p>Though Android consists of multiple sub-projects, this is strictly a
-project-management technique. We view and manage Android as a single,
-holistic software product, not a "distribution", specification, or collection
-of replaceable parts. Our intent is that device builders port
-Android to a device; they don't implement a specification or curate a
-distribution.</p>
-<h2>How We Work</h2>
-<p>We know that quality does not come without hard work. Along with many
-partners, Google has contributed full-time engineers, product managers, UI
-designers, Quality Assurance, and all the other roles required to bring
-modern devices to market. We roll the open source administration and
-maintenance into the larger product development cycle.</p>
-<ul>
-<li>At any given moment, there is a current latest release of the Android
-platform. This typically takes the form of a branch in the tree.</li>
-<li>Device builders and Contributors work with the current
-latest release, fixing bugs, launching new devices, experimenting with new
-features, and so on.</li>
-<li>In parallel, Google works internally on the next version of the
-Android platform and framework, working according to the product's needs and
-goals. We develop the next version of Android by working with a device partner
-on a flagship device whose specifications are chosen to push Android
-in the direction we believe it should go.</li>
-<li>When the "n+1"th version is ready, it will be published to the public
-source tree, and become the new latest release.</li>
-</ul>
diff --git a/pdk/docs/community/community_toc.cs b/pdk/docs/community/community_toc.cs
deleted file mode 100644
index 431aae0..0000000
--- a/pdk/docs/community/community_toc.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-<script type="text/javascript" language="JavaScript">
-<!--
-function nothing() {}
--->
-</script>
-<ul>
- <li><h2>Discussion Groups</h2><ul>
- <li><a href="http://groups.google.com/group/android-platform">android-platform</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
- <li><a href="http://groups.google.com/group/android-porting">android-porting</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
- <li><a href="http://groups.google.com/group/android-kernel">android-kernel</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
- <li><a href="http://groups.google.com/group/repo-discuss">repo-discuss</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
- <li><a href="http://groups.google.com/group/android-framework">android-framework</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
- </ul></li>
- <li><h2>Other Links</h2><ul>
- <li><a href="<?cs var:toroot ?>community/groups-charter.html">Groups Charter</a></li>
- <li><a href="http://developer.android.com/community/index.html">App Developer Groups</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
- </ul></li>
-</ul>
-<script type="text/javascript">
-<!--
- buildToggleLists();
-//-->
-</script>
-
diff --git a/pdk/docs/community/groups-charter.jd b/pdk/docs/community/groups-charter.jd
deleted file mode 100644
index 959917e..0000000
--- a/pdk/docs/community/groups-charter.jd
+++ /dev/null
@@ -1,71 +0,0 @@
-page.title=Android Discussion Groups Charter
-doc.type=community
-doc.hidenav=true
-@jd:body
-<h2>Audience</h2>
-<p>These discussion groups are intended for developers working with the
-Android platform. Everyone is welcome to join in, provided you follow our
-community's policies described below. Our users help each other, and many
-experts post to these groups, including members of the Open Handset Alliance.
-</p>
-<p>No topic is off-limits, provided it relates to Android in some way.
-However, since these are very busy lists, search the archives before posting
-your question; you may find your question has already been answered.
-</p>
-<h2>Mailing list rules</h2>
-<p>We love simplicity and hate restrictions, so we keep our policies minimal.
-The rules below describe what's expected of subscribers to the Android mailing
-lists.
-</p>
-<ul><li><b>Please be friendly</b>
-<br>Showing courtesy and respect to others is a vital part of the Android
-culture, and we expect everyone participating in the Android community to join
-us in accepting nothing less. Being courteous does not mean we can't
-constructively disagree with each other, but it does mean that we must be
-polite when we do so. There's never a reason to be antagonistic or dismissive
-toward anyone; if you think there is, think again before you
-post.<br><br>Mobile development is serious business, but it's also a lot of
-fun. Let's keep it that way. Let's strive to be one of the friendliest
-communities in all of open source.<br><br></li>
-
-<li><b>Allowed discussion topics</b>
-<br>Most of our groups are for technical discussions of Android or users
-helping each other. Generally we don't put hard restrictions on the topics
-discussed in the group: as long as the topic is relevant to Android in some
-way, it's welcome on our groups. We welcome announcements and discussion of
-products, libraries, publications, and other interesting Android-related news,
-but <b>please do not cross-post</b>. Post only to the most relevant group for
-your message. We even welcome (polite!) discussion of articles and ideas
-critical of Android--after all, we can't improve if we don't listen.<br><br>
-</li>
-
-<li><b>Working Lists</b>
-<br>Some of our groups are considered "working lists", by which we mean that the
-list is intended to be used in support of the completion of specific tasks. On
-these groups, we don't welcome off-topic conversations, and will generally ask
-you to take general discussions to a different list. Since these are lists
-where people are trying to get work done, we will be pretty aggressive about
-keeping the noise level low. We ask that you respect our contributors' time
-and keep general discussions to appropriate lists.<br><br>
-</li>
-
-<li><b>Spam</b>
-<br>We hate spam almost as passionately as we love courtesy and respect, so we
-reserve the right to limit discussions that amount to spam. Outright spam will
-result in the spammer being immediately and permanently banned from the list.
-<br><br></li>
-</ul>
-
-<p>The most important rule is friendliness. Remember: disrespect and rudeness
-are not welcome in our community under any circumstances. We don't have a
-formal policy on dealing with troublemakers, and we hope we never need
-one.That said, we do pledge to do our best to be fair, and we will always try
-to warn someone before banning him or her.
-</p>
-<h2>
-Contacting the moderators
-</h2>
-<p>If you see anyone being rude, call them out on it. This is your group too, and you don't have to accept someone else being disrespectful just because it wasn't directed at you. Just remember to be polite and courteous yourself! Don't add fuel to the fire.
-</p>
-<p>But if you see an outrageous violation, want to report spam, feel very strongly about something, or even if you just want to chat, then contact the mailing list's owners. It's what we're here for!
-</p>
diff --git a/pdk/docs/community/index.jd b/pdk/docs/community/index.jd
deleted file mode 100644
index 46adf37..0000000
--- a/pdk/docs/community/index.jd
+++ /dev/null
@@ -1,130 +0,0 @@
-page.title=Android Community
-doc.type=community
-doc.hidenav=true
-@jd:body
-<p>Welcome to the Android community!</p>
-<p>The key to any community is, obviously, communication. Like most projects,
-Android communicates via mailing lists. Because Android is an extremely large
-project with many components, we have many discussion forums, each focusing on
-a different topic.</p>
-<p>Please check out the groups below, and join any that seem interesting to
-you. Note that if you're a user looking for help with your Android device,
-this page probably isn't for you; you should contact your carrier or retailer
-for help with your phone.</p>
-<p>Please note that if you're looking for information about building
-applications for Android, you can find a separate set of groups for those at
-our sister site, developer.android.com: <a
-href="http://developer.android.com/community/index.html">http://developer.android.com/community/index.html</a></p>
-
-<h2>Getting the Most from Our Lists</h2>
-<p>Please consider the following before you post to our lists.</p>
-<ol>
- <li><b>Read the <a
- href="{@docRoot}community/groups-charter.html">Charter
- for our forums.</a></b> This explains the (few) rules and guidelines for our
- community.<br></li>
- <li><b>Search the group archives to see whether your questions have already
- been discussed.</b></li> This avoids time-wasting redundant discussions.
- <li><b>Use a clear, relevant message subject.</b> This helps everyone,
- both those trying to answer your question as well as those who may be
- looking for information in the future.</li>
- <li><b>Give plenty of details in your post.</b> Code or log snippets,
- pointers to screenshots, and similar details will get better results and
- make for better discussions. For a great guide to phrasing your questions,
- read <a href="http://www.catb.org/%7Eesr/faqs/smart-questions.html">How To
- Ask Questions The Smart Way</a>.</li>
-</ol>
-
-<h2>Open Source Project discussions</h2>
-<ul>
-<li><b>android-platform</b><br/>
-This list is for general discussion about the Android open-source project or
-the platform technologies.<br/><br/>
-Subscribe using Google Groups: <a
-href="http://groups.google.com/group/android-platform">android-platform</a><br/>
-Subscribe via email: <a href="mailto:android-platform+subscribe@googlegroups.com">android-platform+subscribe@googlegroups.com</a>
-</li>
-
-<li><b>android-building</b><br/>
-Subscribe to this list for discussion and help on building the Android source
-code, and on the build system. If you've just checked out the source code and
-have questions about how to turn it into binaries, start here.<br/><br/>
-Subscribe using Google Groups: <a
-href="http://groups.google.com/group/android-building">android-building</a><br/>
-Subscribe via email: <a href="mailto:android-building+subscribe@googlegroups.com">android-building+subscribe@googlegroups.com</a>
-</li>
-
-<li><b>android-porting</b><br/>
-This list is for developers who want to port Android to a new device. If
-you're wondering how to combine the Android source code with your hardware,
-this is the right group for you. Discuss here the specifics of porting Android
-to individual devices, from obtaining toolchains and merging kernel drivers
-all the way to configuring or modifying applications for your specific
-configuration.<br/><br/>
-Subscribe using Google Groups: <a
-href="http://groups.google.com/group/android-porting">android-porting</a><br/>
-Subscribe via email: <a href="mailto:android-porting+subscribe@googlegroups.com">android-porting+subscribe@googlegroups.com</a>
-</li>
-
-<li><b>android-contrib</b><br/>
-This list is for developers who want to contribute code to Android. This is a
-working list, and is not appropriate for general discussion. We ask that
-general discussion go to android-platform. Note: contributors
-to the Android kernel should go to the android-kernel list, below.<br/><br/>
-Subscribe using Google Groups: <a
-href="http://groups.google.com/group/android-contrib">android-contrib</a><br/>
-Subscribe via email: <a href="mailto:android-contrib+subscribe@googlegroups.com">android-contrib+subscribe@googlegroups.com</a>
-</li>
-
-<li><b>android-kernel</b><br/>
-This list is for deveopers who want to contribute to the Linux kernel that
-Android devices use. If you've downloaded the kernel code, if you know how to
-compile it, if you want to write kernel code to specifically support Android,
-this is your place. This group isn't for user-space topics (see
-android-platform for that), and people will shake their fingers at you and
-call you naughty if you ask user-space questions here.<br/><br/>
-Subscribe using Google Groups: <a
-href="http://groups.google.com/group/android-kernel">android-kernel</a><br/>
-Subscribe via email: <a href="mailto:android-kernel+subscribe@googlegroups.com">android-kernel+subscribe@googlegroups.com</a>
-</li>
-</ul>
-
-<h2>Using email with Google Groups</h2>
-<p>Instead of using the <a href="http://groups.google.com/">Google Groups</a>
-site, you can use your email client of choice to participate in the mailing lists.</p>
-<p>To subscribe to a group without using the Google Groups site, use the link
-under "subscribe via email" in the lists above.</p>
-<p>To set up how you receive mailing list postings by email:</p>
-<ol>
-<li>Sign into the group via the Google Groups site. For example, for the android-platform group you would
-visit <a href="http://groups.google.com/group/android-platform">http://groups.google.com/group/android-platform</a>.</li>
-<li>Click "Edit my membership" on the right side.</li>
-<li>Under "How do you want to read this group?" select one of the email options.</li>
-</ol>
-
-<h2>Android on IRC</h2>
-<p>We also have a presence on IRC via <a href="http://freenode.net/">freenode</a>.
-We maintain two official IRC channels on
-<a href="irc://irc.freenode.net/">irc.freenode.net</a> (access via the web
-at <a href="http://webchat.freenode.net/">freenode webchat</a>):</p>
-<ul>
-<li><b><a href="irc://irc.freenode.net/android">#android</a></b>
- — dedicated to general Android discussion and porting concerns</li>
-<li><b><a href="irc://irc.freenode.net/android-dev">#android-dev</a></b>
- — dedicated to discussion about writing Android applications</li>
-</ul>
-<p>The channels above are official. There are a few other channels the
-community is using, but are not official. These aren't official or officially
-moderated/managed, so you use the channels below at your own risk. The Open
-Handset Alliance doesn't endorse these channels, there's no warranty express
-or implied, and so on. There may be more channels than just these listed.</p>
-<ul>
-<li><b><a href="irc://irc.freenode.net/android-firehose">#android-firehose</a></b>
- — displays in real-time the commits to the Android Open Source Project</li>
-<li><b><a href="irc://irc.freenode.net/android-fr">#android-fr</a></b>
- — pour discuter d'Android en français</li>
-<li><b><a href="irc://irc.freenode.net/android-offtopic">#android-offtopic</a></b>
- — for, well, off-topic discussions</li>
-<li><b><a href="irc://irc.freenode.net/android-root">#android-root</a></b>
- — for discussion related to off-label uses of hardware</li>
-</ul>
diff --git a/pdk/docs/compatibility/2.1/versions.jd b/pdk/docs/compatibility/2.1/versions.jd
deleted file mode 100644
index 9687a96..0000000
--- a/pdk/docs/compatibility/2.1/versions.jd
+++ /dev/null
@@ -1,19 +0,0 @@
-page.title=Permitted Version Strings for Android 2.1
-doc.type=compatibility
-@jd:body
-<p>As described in Section 3.2.2 of the <a
-href="{@docRoot}compatibility/android-2.1-cdd.pdf">Android 2.1 Compatibility
-Definition</a>, only certain strings are allowable for the system property
-<code>android.os.Build.VERSION.RELEASE</code>. The reason for this is that
-applications and web sites may rely on predictable values for this string, and
-so that end users can easily and reliably identify the version of Android
-running on their devices.</p>
-<p>Because subsequent releases of the Android software may revise this string,
-but not change any API behavior, such releases may not be accompanied by a new
-Compatibility Definition Document. This page lists the versions that are
-allowable by an Android 2.1-based system. The only permitted values for
-<code>android.os.Build.VERSION.RELEASE</code> for Android 2.1 are:</p>
-<ul>
-<li>2.1</li>
-<li>2.1-update1</li>
-</ul>
diff --git a/pdk/docs/compatibility/2.2/versions.jd b/pdk/docs/compatibility/2.2/versions.jd
deleted file mode 100644
index 87b12eb..0000000
--- a/pdk/docs/compatibility/2.2/versions.jd
+++ /dev/null
@@ -1,20 +0,0 @@
-page.title=Permitted Version Strings for Android 2.2
-doc.type=compatibility
-@jd:body
-<p>As described in Section 3.2.2 of the <a
-href="{@docRoot}compatibility/android-2.2-cdd.pdf">Android 2.2 Compatibility
-Definition</a>, only certain strings are allowable for the system property
-<code>android.os.Build.VERSION.RELEASE</code>. The reason for this is that
-applications and web sites may rely on predictable values for this string, and
-so that end users can easily and reliably identify the version of Android
-running on their devices.</p>
-<p>Because subsequent releases of the Android software may revise this string,
-but not change any API behavior, such releases may not be accompanied by a new
-Compatibility Definition Document. This page lists the versions that are
-allowable by an Android 2.2-based system.</p>
-<p>The value of <code>android.os.Build.VERSION.RELEASE</code> for Android 2.2
-MUST be one of the following strings:</p>
-<ul>
-<li>2.2</li>
-<li>2.2.1</li>
-</ul>
diff --git a/pdk/docs/compatibility/2.3/versions.jd b/pdk/docs/compatibility/2.3/versions.jd
deleted file mode 100644
index 5b7fcee..0000000
--- a/pdk/docs/compatibility/2.3/versions.jd
+++ /dev/null
@@ -1,19 +0,0 @@
-page.title=Permitted Version Strings for Android 2.3
-doc.type=compatibility
-@jd:body
-<p>As described in Section 3.2.2 of the <a
-href="{@docRoot}compatibility/android-2.3-cdd.pdf">Android 2.3 Compatibility
-Definition</a>, only certain strings are allowable for the system property
-<code>android.os.Build.VERSION.RELEASE</code>. The reason for this is that
-applications and web sites may rely on predictable values for this string, and
-so that end users can easily and reliably identify the version of Android
-running on their devices.</p>
-<p>Because subsequent releases of the Android software may revise this string,
-but not change any API behavior, such releases may not be accompanied by a new
-Compatibility Definition Document. This page lists the versions that are
-allowable by an Android 2.2-based system.</p>
-<p>The value of <code>android.os.Build.VERSION.RELEASE</code> for Android 2.3
-MUST be one of the following strings:</p>
-<ul>
-<li>2.3.3</li>
-</ul>
diff --git a/pdk/docs/compatibility/android-1.6-cdd.pdf b/pdk/docs/compatibility/android-1.6-cdd.pdf
deleted file mode 100644
index ba7b4ad..0000000
--- a/pdk/docs/compatibility/android-1.6-cdd.pdf
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/compatibility/android-2.1-cdd.pdf b/pdk/docs/compatibility/android-2.1-cdd.pdf
deleted file mode 100644
index 7fe54c6..0000000
--- a/pdk/docs/compatibility/android-2.1-cdd.pdf
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/compatibility/android-2.2-cdd.pdf b/pdk/docs/compatibility/android-2.2-cdd.pdf
deleted file mode 100644
index fbc1e77..0000000
--- a/pdk/docs/compatibility/android-2.2-cdd.pdf
+++ /dev/null
@@ -1,4080 +0,0 @@
-%PDF-1.4
-% ReportLab Generated PDF document http://www.reportlab.com
-% 'BasicFonts': class PDFDictionary
-1 0 obj
-% The standard fonts dictionary
-<< /F1 2 0 R
- /F2 4 0 R
- /F3 105 0 R
- /F4 107 0 R >>
-endobj
-% 'F1': class PDFType1Font
-2 0 obj
-% Font Helvetica
-<< /BaseFont /Helvetica
- /Encoding /WinAnsiEncoding
- /Name /F1
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'FormXob.a31102908a592e8f94c7b4e032ffcc37': class PDFImageXObject
-3 0 obj
-<< /BitsPerComponent 8
- /ColorSpace /DeviceRGB
- /Filter [ /ASCII85Decode
- /DCTDecode ]
- /Height 49
- /Length 11548
- /Subtype /Image
- /Type /XObject
- /Width 369 >>
-stream
-s4IA0!"_al8O`[\!<<*#!!*'"s5F.Y8OGjP:f:(Y8PDPQ!<E0#"70H8E,5RU!!$kRFE18L66KB5=s+('!!3-/!"JuF!'"CsF)XEA:eUihzzzzzzp=93Ezdk,!IE,5LSzzzzzzzzzzz!"O$O=]te*!A"3N!#0'J=]te*!C-Vb!#/mE=]te*!E9%!!#0X!E-)'[!GDH5!#/pV@:T?<!IOkI!%`.i;F:Ea!N5tu!"NX@;F:Ea!Or+0!"NI;;F:Ea!QY6@!"O0^B64+R!S@AP!&/;$Bl3nN!XJc+!'"M#F(51M!^H_c!+]V]@r22G!i,er!;^PLDe&hJ"/#Vo!%;>rEc_9]"3:HB!$kZL=s*eFzS#-/c9N;&m!jGd0=s*eFz2.HUdTBcIW)6m:H=s*eFz--ZDi'@d'_[`)?O=s*eFzo@O$D!!!!"('ntn1GSq1!!!!"$b$*9"d]2go2bnl#:TWQrR_)LqmZV*rMBPp"53_T_"M8\EcqE_z!!*,F!!$MOEcqE_z!!*,F!!$MOEcqE_z!!*,F!!%1PB64+Rz!!*'"d<#?g!!!!"zd<#?g!!!!"zd<#?g!!!!"!!$nIBl3nNz!&+BQW.4jJ;ZHdt1dD$@W^$Oa-C4]4'&*Bd:d>!\<'UEb1G]"41G]"41G`QQF(51Mz!")7n+A>Tf0K(cgzzzzzzzzzzzzzzzzzzz!!$kPF^kCOz!"o83!"<aS:/:ii!"o83!9eBD:fIDp!"o83!9eKI;agZd!"o83!9e$/7S*R[!"o83!9ds%6q[L[!"o83!9e`B6V[U]!"o83!9e$87T'3d!"o83!9e0+8l,Kf!"o83!9e!3<Drkt!"o83!9eB<:eUih!"o83!9eBD6;dd`!"o83!9e!878j0d!"o83!9e`B<*'&"!"o83!9eHG;H3\s!"o83!9e3:92Y`i!"o83!9ds)6q%(U!"o83!9e<::.tWf!"o83!9e-=8Q5Zi!"o83!9aDR!)NY<!)*Ah!&FU/!&ag7!!$kQDe&hJz,4GR4-BJ3-!!'kS8:U[?zzz!!%+PG]Woc!!#B)E-ZJ<B4uB06#^dZALnrqDIY:M+>PW)3<9*<!'ittBk@>F9hbU;!!!!)!!.jh!!E9%!!*'"!#bh;!!!!#TE5)r!!!!"!!!%>TE>/s!!!!"!!!!Rzs4[N@!!30%!<E3&!<E3&!WiE)"9S],!WiN-"9Sc2"U5/8"U,&6#71Y?#7(P<"UGJA#RLeE$46tB$OdCM$jd7J$NJi\6NI5i!WiE)"Tni1$3gY<$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$4?gK!"fJ:0`c7r!?qLF&HMtG!WU(<*rl9A"T\W)!<E3$z!!!!"!WrQ/"pYD?$4HmP!4<@<!W`B*!X&T/"U"r.!!.KK!WrE*&Hrdj0gQ!W;.0\RE>10ZOeE%*6F"?A;UOtZ1LbBV#mqFa(`=5<-7:2j.Ps"@2`NfY6UX@47n?3D;cHat='/U/@q9._B4u!oF*)PJGBeCZK7nr5LPUeEP*;,qQC!u,R\HRQV5C/hWN*81['d?O\@K2f_o0O6a2lBFdaQ^rf%8R-g>V&OjQ5OekiqC&o(2MHp@n@XqZ"J6*ru?D!<E3%!<E3%!<<*"!!!!"!WrQ/"pYD?$4HmP!4<C=!W`?*"9Sc3"U"r.!<RHF!<N?8"9fr'"qj4!#@VTc+u4]T'LIqUZ,$_k1K*]W@WKj'(*k`q-1Mcg)&ahL-n-W'2E*TU3^Z;(7Rp!@8lJ\h<``C+>%;)SAnPdkC3+K>G'A1VH@gd&KnbA=M2II[Pa.Q$R$jD;USO``Vl6SpZEppG[^WcW]#)A'`Q#s>ai`&\eCE.%f\,!<j5f=akNM0qo(2MHp@n@XqZ#7L$j-M1!YGMH!'^J^eG-NC01u",nG`Ffa4e4cpM":c88PCn1>L,"M]>S:ok/CblnWoh&#FYmpsZ*f6h'8mIO]^cdki!c&P7/NgtMOeqa+M.%A^H91+Y[F`*5e<*0Mi!INs5)nE7bT"_o(ZnRPP2Nh[.g9G3_gNKo-lLr5u4W\?PoW5p3@jts8l?<$bImu"h-G_]Y9cn@#KZ+/=&hgW]6hUSBAOXXZQb5utFf-?0\bAC!hWk54??CH'+Xo;O,jZG?r;L%q4D\)X+`4lUfe,0a9]im!P8(?-k&mdiO\P%4N?n)n$Q%8b5Fp!n'):A!Ka'XdT$0Jnj:W*cqej&YZfjBR'Fe(>,CGj$GbqP,0%C8O#^@IG;jCJ**k\`QbG[BRlGD?)2bH'P!Mo.J7I.habPKfAp*E`N;/hl%*^`@[$cPM&TPC,dJ*Zp1[)*CitkYc-sl>I+ngHfO/M)V4C(nk#UJIB;1SYM_H:A!sdj,-^>D82D8Dl2B[R=?+S!,173r#XEH9g\0]*Zr/drfuTXdO0tuK)O\?6HlmA+5R1C$_NdeK?,m`.fH'T-XM&0?-thFr#p\uZgaIr8Zpk6)S!%tSk+OlB=:NoQP#<P2]:Wr2f="DrKb/,Hs9gg6Wro\]p?!I/9;=5l-Q5-Z-+3EN[-)A?ml.3+HLm^=5jbW]qG/T`EJmkoT+fW-h,o[rOd)oNn6P2=CTdF(LUlW7b[`':!8PYA<L,<_K!Qd4$>c/lfIC1APF]KP1DaBXi7%4.e$[]KU;Z<[db]32%;q>L"]b>JZ[uV==1hB9*0-'#9;<UJ:9A#k3q:d?OD68Hn^W!\u#+g/bYBLAZRMZD0h>MM%_$IUNI'E$j\(?NWGP4B3u0_qSMQI"n=4?iVB/9ID:Og%=j<7bA@^)R9b3iD:0%hP1do%p#`.@(VkB)$2ELUM*<9Vrk%0LCtK[W9<E)&G$2U_1Ft7L)CcLP2`<EVa0&A%[Y7.ZH'R9if!jdcZr'8(FbLN,5Qqj!5Qqj^kn4j[E2oZab]!RT-B\\/\V2Xfj]Ngj6R/@D<X4^P*C6NEHZ]A=<B7]^iTko40+?10fd<OX->571\j`2]`cCAdG81rWJW:1PC]=AIr!hV7'kr+(nHXkZ[FFl47[\$92t)PF@rNAdP!B&(al$d8WJeVjK9]&kMG6S-Uq)sd036duDVJI9FH,!&U:LOC<@p/JSfQC#Y;FKK?F%2Re)V+ugY6!ZZ<K?7(0+7)'=@8]k\Dn:.<lI(,!Wr,iWL1j>)SHGR+N%)B8=LT_/S.MS/gRl3N%hQ;c.V8'W3Q`G.!XMlL+:j/TbI53XR@&WT$,QBQmLC>2Hr(B/TVD9oN.T8J>?"EJ09*"l#0TalHI&S#^<a]_fm.i]oa^,D@!\!&Aso"6sZ5;O_]!9(CeE]'J*:O.qL]^aPq7!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!9X82Hrf`t_7p8jN4`^a_VJg+@><Jio$8ff66IN^iE5Y9_ObP^)u^1+i/PZ._i7WSn4hD",-?@27R,t#BRf^t+8R0RpMUDk=_W=&e+ESsdPrA(as;]Y:a2Wf(]Y&2q=ZHV`7_U5ic=r$.QD0fGZ/h[C86u`hcVI5h$dMe.ZPt3a!^@8p4Mj1a/pu^o>;/G>?t>d$gS2=!TO]]X;OT1;mhAc,928sSepAkmHsDh_7h>/nA^aPm7159;`$;e>J+sodOE!EP"BTu,Ba&Hj!1#e>5>B$$2%e=DnL"f)d(A#e00Z]fJ`p[;H+^QO9lrs4U!t2'u\a@:0j+3`C3kH3h4`KQV)8[<i4s.h<b+-e^_)73f1j*lHKbGrX't@dnnS'ZIZZ1X&rTKiEkk+:*RgWbb0T>h\eV.f<K]lpo!'=L)pVaa8RC"/Z5>@P&12aXr75u`&!-"e/X%"8HYFP^\B3GKp;T;"RRl)[76bF?A([#?^V!d+CG^V%L,FN%maIXm=#!7-AgZ1qYJZ*oR^iK0cWR!R07Rl(qS,5:Cg&4+[/XqAD4AID)@]qrr>3(QT;sO2gZ=trX(aFE9GF>F/p&%"PlHP*o`C_*^/GQrr<N$:](TX]t<5,Xf[Z$T+,"-gS@]LK4mS@JNtOs,iF!3:ZGa^q\eWZ>X,Sc`!2,pJPDZd&_[g.*_Mp!"]P;n!"M'tkJgQ_]I#EfU&Cf(ou>P\KNBInc/%u6?YB;#F]1r&Ij:cYQi%O>iI8JC6)8:f):\;WXs?tNfbulGN0B4BJdS]\!<#"2V>PB/d@kppn8*P-f<i`%`1HcV+Lec4$V8G/a^`*o)tVB8*UCh^i1j<g:[n*DeJcjlEuqVr8bNV0)CHhPkXm;EYc5BUJ,)%,&,uX^Iae;s8M2N07hBYm:P@!^pknUD<s]4TKgc.eNBJ8!es=eTm$jO)Umo&TTCDC>"b4oYeUR'<.eKoq5IAaf5!9jc*<t*_a&0-u8TA6d(FCnW^,Al5-m_1)#UFE2-`m)]@:c;551&s#3mou1Mb1Ai`=`>SrS!iqgll)/r"=T%5PFU:Q*$!<$qAh:0uPuLb`FR;Hh6p5[uB>%P9$"5)iTe$SgnIfO0VUDk)4F];Jk*iWF*,DocW:=H_-Yqch=R3#Jf.r0+M`_(V5X+/0\#,Au_RRal'e9!#(!8!BbF^MW$-Oi1k`$P3!>NiV'Mj7DF*nF%%<%oa479jstZ9#OS@`Ho^`Xh[[:Pi![:3C)3Tshii9F._a`X'+qcq!?'g'jE@^Wq"OYiplFE1_`Q0JlJD[kdNZAf0Js7(VjKkP_u,&%Qt*LRGB>3b?8iO;Q!>@X'.bJK(s8,lUp/:1k)\/;DUmLhb=&rdC/qT`QJF*=T>qJ%SeTYgB7$h<)H:eC2B)7F['=t#gOhOJL6Hd=L$'ZuaMiDmlne1jZtO<j#rdV3%79(S!*>J2DW6ltm3"-\m&B%qP]f%crr=%1I08C<r0Y:_ra6Ybrf4Ri^[P"Eq')9*rJ`W5!9lAKD=+ZGhhs7;A8A2OgCMTXJp'jT;i5GjX/)6[D1+p"8u,be7Yci(4q8+X2ak.)o^-&]U\cU#CRCr*Ym)r(=3O&'mdg+2WS<TH#Eh4L!;?0<jm^U8Y6F]a(`$3%i;6-b`rXD*X5KSbmB&#]J'(-c&,Ps[rr>WeW;cj74'QM#!0=l)lu-9'@@DG9Q73Vj\soJu&_mplH("VW\@rm+T`l9*35lT[[_1+l.<g3t;,+M+HC%/"'S!r16#VM3TK)!?\BjfNA,&(ST>BD(r%?hSn:T#E']p@89=,!V%KJIr#oFe:#UCLj+E]Hmg"]`=T098oDXj+N#=).JN"mkiN,aaNVu@"XU)d1Q[]t4ba)to)!TAKCTuZ'rj^2@b'u]o$'4A%(ls+O0nS4ft&uO[Q_j]l=GJ;e"-W2`l]A2a;B:J@BpV.\3+hrRZ22'ML:hJ4Te0RS=6g$\$?rc;fbIIKG389C4UQEtijWp-6p$.&!f-Mg2DuTeb&+M%H^8Lu2d^Q(&J)qrA+8+oKo[bC:U;]6-%HV_;@iOPBdONH8[5o13n;jR#rmdA8!!hKQQ[l4;-0b9F`R*/ko\lXjLkqnd&*NBBPd$(!_dGA.k]8uHTH=a3oIks-rr<RAddABM?^&]gm77i0j@^.?4iod@:6gV3FoMH`;##87!+/WRkkH[ArOBW'gpMY.qR$8&dHOu'G?YZ:Tu<1po$_Q:4lmC5Qa+2fT3K8oVtP%O[>LGj9Zm<nIQL3m&&U;t%fZOf(t=K-)F>b,[5<HnAcsSRStM@o#GN.(^'B%8n?9m%>uL:3)K"TAl$$nVMoAM'7KfKGUuOO@+S>E*rl`(IDr)6/!3fB$!9d-`62pofgn#1UGd?5P?Sh(-N)OrFNO"N'e)%bXUGC*blBr[pX^tBiRWTU>MGDQs#sp-!bBl1\[sa-mUq%.cT$?fCj0+19"6anhmtpB`m[!_E>K729WGjOoTB78)5j=f%5j=Fn81'5V'Y&k+,`3HY(s!pG^2X)PJre"jn99V]1'$^@bX)ub!\on"`-u10LX?&$j9oW#!+)r1!9bW@O"AQGGciO?0GA6T:lQ8328%rs/&&\[$]LRRj4_JPn1PZ.hu3cJVi(-h$q&s4<q#oHnk3W+'#tiOOc$DD,b/BbB9G!23`j&Ib[7X2XgGjMJ&GR%/^^DPk2\rU-nKqPh`*d*Jb`@X(M4Q8%"89\QW@'sM4BcnJt8-9c*OnDl7.s[Bgpb<^5r9o"VpfLH)S]!XEZC"ZaY+qh((u[QgRfa80.5akRDklNd`AN5N2?ek4k(Bl6WgYiCP8@Fn6N"pt2j1NQ&@8EX"NL!(c\,paA"rXM4liY3!,^Q7[C`'SSh`#!$aWgGg)I$KchP+8IYK"TJJRY)iS_Uh77X]L0V_%.c#.0!oUS_pMIm/k$4TeXTQPV"NUDHKbo\LGEc@7oAdQp>+/G-@!PZ_B'He;m'@ge]OX\NuJ?L/V>U)E1o`mai>7C>PP])D1"><>N4Cu"im?P)R\[jm(IaTOi8!o3s.4\0[D]q*Aa4:h>@Jc\$YoRi<ZQ&dPX3+Z#[+B:g'G\@tEF?,bF(\?6/nqg=o@!@/NR*RbB]`/%nKlm!t<Irr<:<m?,F(GcZB1@5+&W5M%,0pt;j#fgaKOaj"B2m3d@br/`j7,d47*m!mrg?Opb]N\*W63kQ$1@S*>\.7t+V\Jb>2g@]rPrWpo#*^@V:X_h90>:$jRaH3luNK'E/Y3%:8!Pumo`Gm!.`MK]Wm+LA)Xt?E2i0)AV*RHO#c.kt&8a(?0%$&P%HLid)1H54FT2$rj3.uAQ!+3a'\aL/Mr];'O``J0Hd_a0>$%"O)bt5s@W4-nlIIHA>o7Lbhl#U1srX([D'Y&:lpj&r4&7QlI8`G_sHBeWnl'#C3_9^k/_4MPAGAZ7GD[L4tIF[\))d-d8,Xu<3+]Gk4ntR3%A%d"lZP6SB?N@_iFElbHharg(0E;-?r`TtqXh6Q?o3O7_dj"elJrs7H/Kms4,>KB$4O^0!\@+VXSkjb,Y%jA[)!/-qb\_`TC=C/PUBs4aN,5NZm3LG0>$fCeOE4B^.rTcV4ceX$m1\E=J@7A!G`iH8]?C0Q!+W7=<A)+-QZC"I>`^b`,k)9R1O]K+dd_^.eSZs\Itmg-NLdE[jOGk')?BR58!/b8aZ(/#E]_m@Ib#:cpV4,&_eV?WFI!eWYXr;d""U@c+KGU\"EB'$9OH[\BpLR?HA(Su(@\];b2!XD&kVp"9mm4OO3[?'-H7^?.Tfq$iuUVlh!YCngtTJam'c;n[-&p">nQ&04T3".)>HS;[ltbZ]JlhTVTre.H`6X()0In^2]^*C"D!)4N/hW0&,uWJItiD.nO9X92.$l/)F;')@=n(/j,t^33!)DP-jd]FJd-M9afK9]pa@Y"l?=rW)rQaQX4b;`>GHXVEXm%l1kn`8_8]ZkDt]dtorS('eb"^k08AlQ\[9F_`m[Q.:G?At43VA]WD3XW-'!8SJBg.S!#(^9Ge>A=*(MQFW@Tm$)(o\]Wj_V&f'`7Y``8OO;SU<M$faasmfn.JnDo$@nSu($Y%9=jg"IQ_B5fVGOoPK),k7#HO:REP!5lji(&n8%hc9[V^ppDBr"MF0D-Oe08thC8DhG%M&\?Gpk?g\oeeV'?Heg:?i\o%i,Y$\7)[^C+DVgc$)"b#<`8`hP2rZrK%g.`M)P.O>\*fMO-TH24gK(c:?dR33P+,%sa3XbcnF>rMrrCG*eN`OU3p?PYrnP6tIO"Wnf>4qB*i#Oe?d>n.bA^?]UlgZP)3j5cM#_K\-^$!Grr@Xi=P8`Cpm4koZ2L?Q_\&MKhln7cF4V9Tig9A]Yd0&E^V`3(.nJ6:od!,+;urOjjpe#FHu<bHACo)ao?K4k_Xog>XtgZDV&RkV;-HSiZhW!ErH;Q2$?]?+2UA3JU5JoRl9'"Yh"Y=;mtmYDmA'/_R.o39AuN1:=i)s?Z$C5HjcAD/=<40"1QH]B<f-]\r-6Z^HX/R-rL1,UM='5'jde!k@1j:lh6Y3bF,lYGoZ\-@\X*Z`/*@X'*!S<GC6`9Gbp^GD>drg<P0p=u8t0k`:<*V/1ZD3KYDIRBf!48MKlVEMh+A%UEH9''N9>18Z7@DcQN[!-)9%"%i*BFEa6]5SD\;2qHlfrPm'TK[,Zbc4nsJJDca$+'NEBSiS=pf**=d/`m1f.5'ua\I@;#8d`ta>LEN@7j^3+-;)^sFk92-&Mmnf9-daqHGL%0fT:WNJ8g1*XYphOC/%oLd&[04"&BeAHiPmj_)8J)Rl)p'D>\K1VRp:g<?ip4qD_o&&VnD9"EX53#$NJ^t2Vcu"%<@qd<\4$RW/BU#'&?gJU\<d:YphXJ\\@L1mMLpJMN+:$Jh5$d1[sJ%B[_7sT]=lF<LUqWjOl.5j8^q-&>[$@bd*E:a.-hMH&&<g(/,Lf@"3/%lq!7G`=RcoVD_19&^6*:#DBUa1jfTWUb@C:dg`3I^"`oW]r<5W<"tq+:iph7CmVP'2D(Rp:_j=`V6JN5gp,k;-oC-[Ur+5BL8@@rRLMo%!@FpUa'pK.`W+_u'9!1oJ&2VdtlWN,SoFfo+!RRsG>WdHZ[9"6k#dh)G^4WUArN:S\pnQk._T9AOi;Wd'YH7D1Y9SX5"Cbc<,\9=a!Q;U\rpDl"c>d2#e>\brR&hqu9%]SOO!7s&me4+jg3\*Z\J69`RbaQ<i,@?lj#sSu[*(FYB=lts+L7"Qe88^*<4Gp/6\)Eqj:6-"c?aT7?eJ)fh\3Xgn[$.u+$Lfl8pq=(7bUhN[CLj]B6bL7D+>P&.S'5h)'i_*I0&;$2I.9=g2<$88rm\a_[E2K$<7.h1#%T#:G:Z(_H$)jo.5:TX?EBs3'o&eQH?S%1U[(kpNt\T.:"qqf_J=^g2Fsfg#)Lkf7#1DGN!trM"LXcAb%.!#p`?QZ:MlT@>o*,KmmIQk8eRepoXEYI!#/*i*4N^[bnEOX(hO2@nA!_QSYjGFaoZM8cd'E8\c5?O0!#rWph>e;oE,6\W#c]X3,<Zq&o\;M=Dl=\ZGL1^CYKnWCo^+J&?bjhBhYMm%aR\$L:Tuo/0P;p$d<AIUXUqcB(FKeU`r<*"i`;?=3R@C4@-!-Be9dPMm8#3`X1spXd"-W3Y(^!KK!J5fnj%&Z-7`P&l2qqLXUtC2f.\j01M%4aBq-3.!KFMro_fXP6Nn)`EuY=mB(peMQt`IIWYSHu!g#G%a&l[d_9&RSqcCI7YP.":G@2gSF_H6P)/=&'V\,1;C9,_]O\\hQu1%ME_UC)>-X^$=i8PgHoM78<G0W`,"s(goMG83:2kmJYJnQ_,r6`?&c]nXHLP&p:")8-180YkrAA"mH,cf1tQg2aa\-QNi(Km&)!.D=c-WuBPs5*A#Wf`&i88elW_-.cbb/NGQYjpmu"c#Us5gmlh=5CXKIc1Pu8bKhW`QL1s@kd&'LIC7Xa#J;S_dn17iDS0[)9#`6Nt$,&r8M>h:O!]!^!]5uW0ddW_tfn*I79*uT<-j4D4T:LEVAjfP?1d]Kq4p?`hum^[O?)_`5I;B$jc)='bei%GuJ!5j9<GgUmpHJ1ZhBb$rIlsNX@A;#R^2M8Z@gRS2ZNbdi..FR.e*A"Z/K2lL+6Fs=kQYfJqjaLP/]Cc\F\Phe^I/EePp]nff/GOqgrr>pca+j%?#bf`nNo@)lg/.nB@:3Ug@6k7`,ie!)9'j</I03aE0C8]=X6I>>dOoI@I-YD\er[8e'j8ng#b[B4ahZg9H37KI7<I/?>W$/^5A8[#ifpnGD%99%pXF)LI,8Lorl8=kpo/PsX'Z-WYMk/'7[KlQq%.:BY40VW-L?8e3Wjm=b@_[m%.XTUO2#,lLAJZCY-n90%/`]-nFPJWdTkG-aV>\RiZn8aPtt\`GI@\Uq?su^=2dtfn)4erY7o+>%:&1EIJ(AtCQhB$8Chqa!6h_nJ8b`DN8l95-G6G+KcB"9(b*j7q9cKSdXK<7CO<@?FL"J@m^6o=9W@oG>4t-krMG#FBcdOhddA[#.5&:ko15$K8tfgM<!"%JgZ9]Cc8kRbpF_7-dB*EhrK]SG!8f!5GJbN,8&4R&l^%D&pH%0./`[DMHBm8[$a;W1ei8bqaQQA063sc2kH/1.gb"H*ES/K8=u!q3^ESXsc;cI;S_KC:GAdE\IumR*i7i"u$M]84f>\mKr$(q7j"%kMp`98u-2s`d*7cgFL-Ve[bT0;+&-m]Lp$H+)f8b4`p^cBAL-HV>DrV:3gHM%,9[BQ\P6Q56->?"^``/lZ*9/ED7npMB.*Zg<cRa;ib+")V[o+YJP47;*V4F-!ddPF'Wu4N,Z/jdZ4skZ)rM?k_:PQ;BZhC5n#1O9/RGjNb<&0H]8;ND3c>q-KduiP7^M5ufhC4*N<RAAbU1ohV\!ebpTX\8k#+:iI!K!@D%E*-/[mOKp79heieYA*"mOiX_@\B^2\AgY9=1+e;QL=56e[*qBmdAcSHmR3ZoH/d9):8%\G)GS._tHo3`5;a(8.f!#d"3e1m7InJrrBB,m2+cC*U'+'DYur$pk%Mb8>`f(Q/a;M^2O-Ee[@NI</)CNj,=oQb)5i_Sem,qKu1]lGu:VrBu4R2eYC<fH98=qg(c)ba][?<aaY**3dc2IjkuVhL";m&^8k^#3MI/1/ZpC9,`<cIFD;WS7EZ?p!W(EWp`JG&SJUYQ@IS'l4@.sf:eaY^:ct]bR7UI"AiCibaN=V+Y=5BI4Z:2]dr%!j>1"rSDW#bW@$G55NIb,2*Phl>`jrDC':p-^>8rXA4C)]drKk89`]TT)`Mfh?^#*Vh.+>M>]<gYKqZ_:;g.+j^j42tu"j';o;6_3@Z7%*X!k=kRIK["PH2DICh@\1`;&6\GP?g-@Q+5e^=A$Li$NS=VBu)ola+<P8hsaEKJ_*tD>f!OeP1^kt>Bhg[.2_\Tn?ZWi8b]C*i7I>+n@RV5V`q`OFM>B%RNiBWeLhV=MDKia![9&<##6u/3$_SC;W'*39]$.WQ=!Do)AQa[;cW!YnUnS+Mb,O5QF>8`a\dH-g=GjT5MA'3*]3C'm7$O1`*+OC05e/o>FS!&HO[SL:jH,S=7[C?-53#@)<VmRYAs)]M^O@/-`VE7$._&b2!OCj7i;S=2F'h,h-)X:l1c6R%t_a[.s!_!C0]1_Vn/X7DnOml-Jrn)rr@\d&AC:+bZ\VPnETK9I_XBbC+XH!M!\eZYuO/J@n'U"pL=>Qnot2M&T3%WIb4QPnG`KDDZ1+%BJt0acf\V>>=tq/85m`VRRBsP=N1m\Oq1KA5/O&.6iJ7c,$B;6b.3L'?rLFEjat-E\WhBfk1stN)>b4f="OrTIr7INps[8%hgl``4rCu_<o6`aNo@)lg//0"[jkXD\thgYESt[o,/*GEJkMXik1UQnaTJOOj!:T*VkUoG#EdBLk.&WWADFFpQWdO46]kU'C@5c.Pah)c-gVH'Ii*D`_0Ys&]>Ji]A'_3U_]A@R(4D$o+^:*136j3K3'8*dg;h#.0_%*@hhJ_7LV,KkHZ*]#ip(l(%#G5Xi-`U9g`'7R>6>4Xi7GY>?;u/2#p'hZOo&:.3&nWh0)963Ssm'*6@G$jI"?q8BVLC]"&P_L-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ii[!U5nkC5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Tg$Z~>endstream
-endobj
-% 'F2': class PDFType1Font
-4 0 obj
-% Font Helvetica-Bold
-<< /BaseFont /Helvetica-Bold
- /Encoding /WinAnsiEncoding
- /Name /F2
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER1': class PDFDictionary
-5 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (mailto:compatibility@android.com) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 55
- 626.125
- 145.135
- 637.375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER2': class LinkAnnotation
-6 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 55
- 747.2637
- 0 ]
- /Rect [ 70
- 564.9375
- 117.5275
- 576.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER3': class LinkAnnotation
-7 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 55
- 456.5763
- 0 ]
- /Rect [ 70
- 553.6875
- 114.1825
- 564.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER4': class LinkAnnotation
-8 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 55
- 613.3887
- 0 ]
- /Rect [ 70
- 542.4375
- 107.935
- 553.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER5': class LinkAnnotation
-9 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 55
- 530.11
- 0 ]
- /Rect [ 85
- 529.1875
- 190.045
- 540.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER6': class LinkAnnotation
-10 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 55
- 420.985
- 0 ]
- /Rect [ 85
- 517.9375
- 172.12
- 529.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER7': class LinkAnnotation
-11 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 55
- 344.6775
- 0 ]
- /Rect [ 100
- 504.6875
- 161.6875
- 515.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER8': class LinkAnnotation
-12 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 55
- 291.9275
- 0 ]
- /Rect [ 100
- 493.4375
- 178.3675
- 504.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER9': class LinkAnnotation
-13 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 111 0 R
- /XYZ
- 55
- 742.865
- 0 ]
- /Rect [ 100
- 482.1875
- 184.6225
- 493.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER10': class LinkAnnotation
-14 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 111 0 R
- /XYZ
- 55
- 678.865
- 0 ]
- /Rect [ 115
- 468.9375
- 221.725
- 480.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER11': class LinkAnnotation
-15 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 111 0 R
- /XYZ
- 55
- 246.615
- 0 ]
- /Rect [ 115
- 457.6875
- 195.46
- 468.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER12': class LinkAnnotation
-16 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 111 0 R
- /XYZ
- 55
- 160.115
- 0 ]
- /Rect [ 115
- 446.4375
- 206.7175
- 457.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER13': class LinkAnnotation
-17 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 113 0 R
- /XYZ
- 55
- 722.115
- 0 ]
- /Rect [ 115
- 435.1875
- 200.47
- 446.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER14': class LinkAnnotation
-18 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 113 0 R
- /XYZ
- 55
- 657.2975
- 0 ]
- /Rect [ 85
- 421.9375
- 180.0325
- 433.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER15': class LinkAnnotation
-19 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 113 0 R
- /XYZ
- 55
- 306.9225
- 0 ]
- /Rect [ 85
- 410.6875
- 160.0225
- 421.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER16': class LinkAnnotation
-20 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 113 0 R
- /XYZ
- 55
- 219.365
- 0 ]
- /Rect [ 100
- 397.4375
- 197.53
- 408.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER17': class LinkAnnotation
-21 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 55
- 614.615
- 0 ]
- /Rect [ 100
- 386.1875
- 193.36
- 397.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER18': class LinkAnnotation
-22 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 55
- 485.7975
- 0 ]
- /Rect [ 85
- 372.9375
- 194.2075
- 384.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER19': class LinkAnnotation
-23 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 55
- 297.4225
- 0 ]
- /Rect [ 85
- 361.6875
- 157.5325
- 372.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER20': class LinkAnnotation
-24 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 125 0 R
- /XYZ
- 55
- 548.2975
- 0 ]
- /Rect [ 85
- 350.4375
- 196.285
- 361.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER21': class LinkAnnotation
-25 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 125 0 R
- /XYZ
- 55
- 450.4225
- 0 ]
- /Rect [ 85
- 339.1875
- 191.7025
- 350.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER22': class LinkAnnotation
-26 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 125 0 R
- /XYZ
- 55
- 385.365
- 0 ]
- /Rect [ 100
- 325.9375
- 147.94
- 337.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER23': class LinkAnnotation
-27 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 125 0 R
- /XYZ
- 55
- 266.865
- 0 ]
- /Rect [ 100
- 314.6875
- 161.695
- 325.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER24': class LinkAnnotation
-28 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 125 0 R
- /XYZ
- 55
- 159.615
- 0 ]
- /Rect [ 100
- 303.4375
- 144.61
- 314.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER25': class LinkAnnotation
-29 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 133 0 R
- /XYZ
- 55
- 645.115
- 0 ]
- /Rect [ 100
- 292.1875
- 143.3575
- 303.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER26': class LinkAnnotation
-30 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 133 0 R
- /XYZ
- 55
- 592.365
- 0 ]
- /Rect [ 100
- 280.9375
- 174.1975
- 292.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER27': class LinkAnnotation
-31 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 133 0 R
- /XYZ
- 55
- 418.1388
- 0 ]
- /Rect [ 70
- 267.6875
- 189.625
- 278.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER28': class LinkAnnotation
-32 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 133 0 R
- /XYZ
- 55
- 200.2013
- 0 ]
- /Rect [ 70
- 256.4375
- 197.1325
- 267.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER29': class LinkAnnotation
-33 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 134 0 R
- /XYZ
- 55
- 747.2637
- 0 ]
- /Rect [ 70
- 245.1875
- 159.6025
- 256.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER30': class LinkAnnotation
-34 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 134 0 R
- /XYZ
- 55
- 675.235
- 0 ]
- /Rect [ 85
- 231.9375
- 147.5275
- 243.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER31': class LinkAnnotation
-35 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 55
- 698.7975
- 0 ]
- /Rect [ 85
- 220.6875
- 155.035
- 231.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER32': class LinkAnnotation
-36 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 55
- 480.1725
- 0 ]
- /Rect [ 85
- 209.4375
- 147.1225
- 220.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER33': class LinkAnnotation
-37 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 141 0 R
- /XYZ
- 55
- 747.2637
- 0 ]
- /Rect [ 70
- 196.1875
- 174.1975
- 207.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER34': class LinkAnnotation
-38 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 141 0 R
- /XYZ
- 55
- 571.3262
- 0 ]
- /Rect [ 70
- 184.9375
- 155.8525
- 196.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER35': class LinkAnnotation
-39 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 141 0 R
- /XYZ
- 55
- 320.2975
- 0 ]
- /Rect [ 85
- 171.6875
- 124.18
- 182.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER36': class LinkAnnotation
-40 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 146 0 R
- /XYZ
- 55
- 607.115
- 0 ]
- /Rect [ 100
- 158.4375
- 244.645
- 169.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER37': class LinkAnnotation
-41 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 146 0 R
- /XYZ
- 55
- 511.115
- 0 ]
- /Rect [ 100
- 147.1875
- 171.685
- 158.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER38': class LinkAnnotation
-42 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 146 0 R
- /XYZ
- 55
- 469.615
- 0 ]
- /Rect [ 100
- 135.9375
- 205.0525
- 147.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER39': class LinkAnnotation
-43 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 146 0 R
- /XYZ
- 55
- 404.7975
- 0 ]
- /Rect [ 85
- 122.6875
- 131.695
- 133.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER40': class LinkAnnotation
-44 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 146 0 R
- /XYZ
- 55
- 253.9225
- 0 ]
- /Rect [ 85
- 111.4375
- 171.7075
- 122.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER41': class LinkAnnotation
-45 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 146 0 R
- /XYZ
- 55
- 165.2975
- 0 ]
- /Rect [ 85
- 100.1875
- 162.1225
- 111.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER42': class LinkAnnotation
-46 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 148 0 R
- /XYZ
- 55
- 710.0475
- 0 ]
- /Rect [ 85
- 88.9375
- 161.29
- 100.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page1': class PDFPage
-47 0 obj
-% Page dictionary
-<< /Annots [ 5 0 R
- 6 0 R
- 7 0 R
- 8 0 R
- 9 0 R
- 10 0 R
- 11 0 R
- 12 0 R
- 13 0 R
- 14 0 R
- 15 0 R
- 16 0 R
- 17 0 R
- 18 0 R
- 19 0 R
- 20 0 R
- 21 0 R
- 22 0 R
- 23 0 R
- 24 0 R
- 25 0 R
- 26 0 R
- 27 0 R
- 28 0 R
- 29 0 R
- 30 0 R
- 31 0 R
- 32 0 R
- 33 0 R
- 34 0 R
- 35 0 R
- 36 0 R
- 37 0 R
- 38 0 R
- 39 0 R
- 40 0 R
- 41 0 R
- 42 0 R
- 43 0 R
- 44 0 R
- 45 0 R
- 46 0 R ]
- /Contents 237 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ]
- /XObject << /FormXob.a31102908a592e8f94c7b4e032ffcc37 3 0 R >> >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER43': class LinkAnnotation
-48 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 148 0 R
- /XYZ
- 55
- 583.6725
- 0 ]
- /Rect [ 85
- 730.6775
- 115.015
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER44': class LinkAnnotation
-49 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 148 0 R
- /XYZ
- 55
- 419.5475
- 0 ]
- /Rect [ 85
- 719.4275
- 152.53
- 730.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER45': class LinkAnnotation
-50 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 148 0 R
- /XYZ
- 55
- 310.4225
- 0 ]
- /Rect [ 85
- 708.1775
- 185.86
- 719.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER46': class LinkAnnotation
-51 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 148 0 R
- /XYZ
- 55
- 169.2975
- 0 ]
- /Rect [ 85
- 696.9275
- 126.265
- 708.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER47': class LinkAnnotation
-52 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 152 0 R
- /XYZ
- 55
- 388.5475
- 0 ]
- /Rect [ 85
- 685.6775
- 152.11
- 696.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER48': class LinkAnnotation
-53 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 152 0 R
- /XYZ
- 55
- 322.6725
- 0 ]
- /Rect [ 85
- 674.4275
- 135.4375
- 685.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER49': class LinkAnnotation
-54 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 152 0 R
- /XYZ
- 55
- 256.7975
- 0 ]
- /Rect [ 85
- 663.1775
- 119.605
- 674.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER50': class LinkAnnotation
-55 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 152 0 R
- /XYZ
- 55
- 202.1725
- 0 ]
- /Rect [ 85
- 651.9275
- 138.7825
- 663.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER51': class LinkAnnotation
-56 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 152 0 R
- /XYZ
- 55
- 104.2975
- 0 ]
- /Rect [ 85
- 640.6775
- 173.7925
- 651.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER52': class LinkAnnotation
-57 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 154 0 R
- /XYZ
- 55
- 612.2975
- 0 ]
- /Rect [ 85
- 629.4275
- 195.0625
- 640.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER53': class LinkAnnotation
-58 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 154 0 R
- /XYZ
- 55
- 343.1725
- 0 ]
- /Rect [ 85
- 618.1775
- 135.4525
- 629.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER54': class LinkAnnotation
-59 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 154 0 R
- /XYZ
- 55
- 222.3888
- 0 ]
- /Rect [ 70
- 604.9275
- 166.2775
- 616.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER55': class LinkAnnotation
-60 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 159 0 R
- /XYZ
- 55
- 632.8888
- 0 ]
- /Rect [ 70
- 593.6775
- 177.115
- 604.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER56': class LinkAnnotation
-61 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 159 0 R
- /XYZ
- 55
- 538.36
- 0 ]
- /Rect [ 85
- 580.4275
- 144.6025
- 591.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER57': class LinkAnnotation
-62 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 159 0 R
- /XYZ
- 55
- 461.235
- 0 ]
- /Rect [ 85
- 569.1775
- 190.465
- 580.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER58': class LinkAnnotation
-63 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 159 0 R
- /XYZ
- 55
- 384.11
- 0 ]
- /Rect [ 85
- 557.9275
- 182.5225
- 569.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER59': class LinkAnnotation
-64 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 159 0 R
- /XYZ
- 55
- 318.235
- 0 ]
- /Rect [ 85
- 546.6775
- 216.73
- 557.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER60': class LinkAnnotation
-65 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 162 0 R
- /XYZ
- 55
- 591.1387
- 0 ]
- /Rect [ 70
- 533.4275
- 161.2825
- 544.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER61': class LinkAnnotation
-66 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 162 0 R
- /XYZ
- 55
- 452.9513
- 0 ]
- /Rect [ 70
- 522.1775
- 148.375
- 533.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER62': class LinkAnnotation
-67 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 162 0 R
- /XYZ
- 55
- 226.0138
- 0 ]
- /Rect [ 70
- 510.9275
- 119.605
- 522.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER63': class LinkAnnotation
-68 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 163 0 R
- /XYZ
- 55
- 747.2637
- 0 ]
- /Rect [ 70
- 499.6775
- 200.065
- 510.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page2': class PDFPage
-69 0 obj
-% Page dictionary
-<< /Annots [ 48 0 R
- 49 0 R
- 50 0 R
- 51 0 R
- 52 0 R
- 53 0 R
- 54 0 R
- 55 0 R
- 56 0 R
- 57 0 R
- 58 0 R
- 59 0 R
- 60 0 R
- 61 0 R
- 62 0 R
- 63 0 R
- 64 0 R
- 65 0 R
- 66 0 R
- 67 0 R
- 68 0 R ]
- /Contents 238 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER64': class LinkAnnotation
-70 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 417.365
- 0 ]
- /Rect [ 125.8675
- 663.865
- 170.05
- 675.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER65': class LinkAnnotation
-71 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 404.115
- 0 ]
- /Rect [ 326.365
- 565.865
- 370.5475
- 577.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER66': class LinkAnnotation
-72 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 390.865
- 0 ]
- /Rect [ 309.6925
- 522.615
- 353.875
- 533.865 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER67': class PDFDictionary
-73 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.ietf.org/rfc/rfc2119.txt) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 189.625
- 405.1775
- 297.1675
- 416.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER68': class PDFDictionary
-74 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/compatibility/index.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 205.45
- 391.9275
- 369.6775
- 403.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER69': class PDFDictionary
-75 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 167.965
- 378.6775
- 254.6725
- 389.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER70': class PDFDictionary
-76 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/packages.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 184.2325
- 365.4275
- 363.4825
- 376.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER71': class PDFDictionary
-77 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/Manifest.permission.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 172.9525
- 352.1775
- 413.8825
- 363.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER72': class PDFDictionary
-78 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/os/Build.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 157.96
- 338.9275
- 358.885
- 350.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER73': class PDFDictionary
-79 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/compatibility/2.2/versions.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 186.715
- 325.6775
- 373.45
- 336.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER74': class PDFDictionary
-80 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/webkit/WebView.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 171.7
- 312.4275
- 400.96
- 323.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER75': class PDFDictionary
-81 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.whatwg.org/specs/web-apps/current-work/multipage/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 95.005
- 299.1775
- 307.1575
- 310.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER76': class PDFDictionary
-82 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/ui_guidelines/widget_design.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 114.5275
- 272.6775
- 374.23
- 283.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER77': class PDFDictionary
-83 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/ui/notifiers/notifications.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 114.94
- 259.4275
- 346.2925
- 270.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER78': class PDFDictionary
-84 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://code.google.com/android/reference/available-resources.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 148.705
- 246.1775
- 368.8
- 257.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER79': class PDFDictionary
-85 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/ui_guidelines/icon_design.html#statusbarstructure) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 162.8875
- 232.9275
- 477.1975
- 244.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER80': class PDFDictionary
-86 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/app/SearchManager.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 129.535
- 219.6775
- 371.7325
- 230.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER81': class PDFDictionary
-87 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/widget/Toast.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 96.6025
- 206.4275
- 313.3675
- 217.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER82': class PDFDictionary
-88 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/resources/articles/live-wallpapers.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 127.4425
- 193.1775
- 351.265
- 204.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER83': class PDFDictionary
-89 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://code.google.com/p/apps-for-android) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 129.955
- 179.9275
- 269.1925
- 191.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER84': class PDFDictionary
-90 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/developing/tools/index.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 245.845
- 166.6775
- 453.865
- 177.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER85': class PDFDictionary
-91 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/fundamentals.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 164.1325
- 153.4275
- 364.645
- 164.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER86': class PDFDictionary
-92 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/manifest/manifest-intro.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 117.8575
- 140.1775
- 349.2025
- 151.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER87': class PDFDictionary
-93 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/developing/tools/monkey.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 138.7075
- 126.9275
- 355.06
- 138.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER88': class PDFDictionary
-94 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/content/pm/PackageManager.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 179.965
- 113.6775
- 452.1775
- 124.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER89': class PDFDictionary
-95 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/screens_support.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 167.8825
- 100.4275
- 389.23
- 111.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER90': class PDFDictionary
-96 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/content/res/Configuration.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 184.9825
- 87.1775
- 443.02
- 98.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page3': class PDFPage
-97 0 obj
-% Page dictionary
-<< /Annots [ 70 0 R
- 71 0 R
- 72 0 R
- 73 0 R
- 74 0 R
- 75 0 R
- 76 0 R
- 77 0 R
- 78 0 R
- 79 0 R
- 80 0 R
- 81 0 R
- 82 0 R
- 83 0 R
- 84 0 R
- 85 0 R
- 86 0 R
- 87 0 R
- 88 0 R
- 89 0 R
- 90 0 R
- 91 0 R
- 92 0 R
- 93 0 R
- 94 0 R
- 95 0 R
- 96 0 R ]
- /Contents 239 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER91': class PDFDictionary
-98 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/util/DisplayMetrics.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 161.6125
- 730.6775
- 396.28
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER92': class PDFDictionary
-99 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/hardware/Camera.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 161.2075
- 717.4275
- 395.47
- 728.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER93': class PDFDictionary
-100 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/hardware/SensorEvent.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 157.0525
- 704.1775
- 407.5825
- 715.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER94': class PDFDictionary
-101 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/security/security.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 220.3975
- 690.9275
- 429.6475
- 702.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER95': class PDFDictionary
-102 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/bluetooth/package-summary.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 119.9575
- 677.6775
- 388.825
- 688.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER96': class LinkAnnotation
-103 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 377.615
- 0 ]
- /Rect [ 460.615
- 462.365
- 504.7975
- 473.615 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER97': class LinkAnnotation
-104 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 364.365
- 0 ]
- /Rect [ 470.995
- 311.74
- 515.1775
- 322.99 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'F3': class PDFType1Font
-105 0 obj
-% Font Courier
-<< /BaseFont /Courier
- /Encoding /WinAnsiEncoding
- /Name /F3
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER98': class LinkAnnotation
-106 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 351.115
- 0 ]
- /Rect [ 336.2725
- 258.99
- 380.455
- 270.24 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'F4': class PDFType1Font
-107 0 obj
-% Font Times-Roman
-<< /BaseFont /Times-Roman
- /Encoding /WinAnsiEncoding
- /Name /F4
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER99': class LinkAnnotation
-108 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 337.865
- 0 ]
- /Rect [ 350.19
- 182.99
- 394.3725
- 194.24 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page4': class PDFPage
-109 0 obj
-% Page dictionary
-<< /Annots [ 98 0 R
- 99 0 R
- 100 0 R
- 101 0 R
- 102 0 R
- 103 0 R
- 104 0 R
- 106 0 R
- 108 0 R ]
- /Contents 240 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page5': class PDFPage
-110 0 obj
-% Page dictionary
-<< /Contents 241 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page6': class PDFPage
-111 0 obj
-% Page dictionary
-<< /Contents 242 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER100': class LinkAnnotation
-112 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 324.615
- 0 ]
- /Rect [ 381.61
- 261.6775
- 425.7925
- 272.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page7': class PDFPage
-113 0 obj
-% Page dictionary
-<< /Annots [ 112 0 R ]
- /Contents 243 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER101': class LinkAnnotation
-114 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 311.365
- 0 ]
- /Rect [ 447.265
- 645.6775
- 491.4475
- 656.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER102': class LinkAnnotation
-115 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 311.365
- 0 ]
- /Rect [ 160.4575
- 506.4275
- 204.64
- 517.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER103': class LinkAnnotation
-116 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 390.865
- 0 ]
- /Rect [ 125.4475
- 429.3025
- 169.63
- 440.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page8': class PDFPage
-117 0 obj
-% Page dictionary
-<< /Annots [ 114 0 R
- 115 0 R
- 116 0 R ]
- /Contents 244 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER104': class LinkAnnotation
-118 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 298.115
- 0 ]
- /Rect [ 500.1475
- 503.0525
- 548.5
- 514.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER105': class LinkAnnotation
-119 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 284.865
- 0 ]
- /Rect [ 515.1475
- 352.4275
- 553.075
- 363.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER106': class LinkAnnotation
-120 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 284.865
- 0 ]
- /Rect [ 55
- 341.1775
- 63.34
- 352.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER107': class LinkAnnotation
-121 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 271.615
- 0 ]
- /Rect [ 313.045
- 233.9275
- 361.3975
- 245.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER108': class LinkAnnotation
-122 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 258.365
- 0 ]
- /Rect [ 448.06
- 201.9275
- 496.4125
- 213.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER109': class LinkAnnotation
-123 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 245.115
- 0 ]
- /Rect [ 124.615
- 190.6775
- 172.9675
- 201.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER110': class LinkAnnotation
-124 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 231.865
- 0 ]
- /Rect [ 132.535
- 126.6775
- 180.8875
- 137.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page9': class PDFPage
-125 0 obj
-% Page dictionary
-<< /Annots [ 118 0 R
- 119 0 R
- 120 0 R
- 121 0 R
- 122 0 R
- 123 0 R
- 124 0 R ]
- /Contents 245 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER111': class LinkAnnotation
-126 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 218.615
- 0 ]
- /Rect [ 217.9075
- 612.1775
- 266.26
- 623.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER112': class LinkAnnotation
-127 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 205.365
- 0 ]
- /Rect [ 73.7575
- 548.1775
- 122.11
- 559.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER113': class LinkAnnotation
-128 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 192.115
- 0 ]
- /Rect [ 188.2975
- 319.49
- 236.65
- 330.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER114': class LinkAnnotation
-129 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 178.865
- 0 ]
- /Rect [ 499.5925
- 148.8025
- 547.945
- 160.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER115': class LinkAnnotation
-130 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 165.615
- 0 ]
- /Rect [ 257.9875
- 128.0525
- 306.34
- 139.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER116': class LinkAnnotation
-131 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 152.365
- 0 ]
- /Rect [ 373.0375
- 128.0525
- 421.39
- 139.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER117': class LinkAnnotation
-132 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 298.115
- 0 ]
- /Rect [ 493.5025
- 128.0525
- 541.855
- 139.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page10': class PDFPage
-133 0 obj
-% Page dictionary
-<< /Annots [ 126 0 R
- 127 0 R
- 128 0 R
- 129 0 R
- 130 0 R
- 131 0 R
- 132 0 R ]
- /Contents 246 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page11': class PDFPage
-134 0 obj
-% Page dictionary
-<< /Contents 247 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page12': class PDFPage
-135 0 obj
-% Page dictionary
-<< /Contents 248 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER118': class LinkAnnotation
-136 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 178.865
- 0 ]
- /Rect [ 207.1
- 663.865
- 255.4525
- 675.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER119': class LinkAnnotation
-137 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 178.865
- 0 ]
- /Rect [ 239.6275
- 628.115
- 287.98
- 639.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER120': class LinkAnnotation
-138 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 139.115
- 0 ]
- /Rect [ 98.3425
- 592.365
- 146.695
- 603.615 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER121': class LinkAnnotation
-139 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 125.865
- 0 ]
- /Rect [ 392.7925
- 329.6775
- 441.145
- 340.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER122': class LinkAnnotation
-140 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 112.615
- 0 ]
- /Rect [ 332.6125
- 263.8025
- 380.965
- 275.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page13': class PDFPage
-141 0 obj
-% Page dictionary
-<< /Annots [ 136 0 R
- 137 0 R
- 138 0 R
- 139 0 R
- 140 0 R ]
- /Contents 249 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER123': class LinkAnnotation
-142 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 99.365
- 0 ]
- /Rect [ 273.535
- 719.4275
- 321.8875
- 730.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER124': class LinkAnnotation
-143 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 742.865
- 0 ]
- /Rect [ 460.75
- 478.1775
- 509.1025
- 489.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER125': class LinkAnnotation
-144 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 99.365
- 0 ]
- /Rect [ 259.42
- 263.3025
- 307.7725
- 274.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER126': class LinkAnnotation
-145 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 99.365
- 0 ]
- /Rect [ 381.79
- 174.6775
- 430.1425
- 185.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page14': class PDFPage
-146 0 obj
-% Page dictionary
-<< /Annots [ 142 0 R
- 143 0 R
- 144 0 R
- 145 0 R ]
- /Contents 250 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER127': class LinkAnnotation
-147 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 69.925
- 99.365
- 0 ]
- /Rect [ 304.7875
- 617.5525
- 353.14
- 628.8025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page15': class PDFPage
-148 0 obj
-% Page dictionary
-<< /Annots [ 147 0 R ]
- /Contents 251 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER128': class LinkAnnotation
-149 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 425.56
- 574.4275
- 473.9125
- 585.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER129': class LinkAnnotation
-150 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 716.365
- 0 ]
- /Rect [ 433.0675
- 332.0525
- 481.42
- 343.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER130': class LinkAnnotation
-151 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 716.365
- 0 ]
- /Rect [ 397.6375
- 266.1775
- 445.99
- 277.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page16': class PDFPage
-152 0 obj
-% Page dictionary
-<< /Annots [ 149 0 R
- 150 0 R
- 151 0 R ]
- /Contents 252 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER131': class LinkAnnotation
-153 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 689.865
- 0 ]
- /Rect [ 180.895
- 286.6775
- 229.2475
- 297.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page17': class PDFPage
-154 0 obj
-% Page dictionary
-<< /Annots [ 153 0 R ]
- /Contents 253 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER132': class LinkAnnotation
-155 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 703.115
- 0 ]
- /Rect [ 164.2225
- 570.24
- 212.575
- 581.49 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER133': class LinkAnnotation
-156 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 703.115
- 0 ]
- /Rect [ 465.5875
- 493.115
- 513.94
- 504.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER134': class LinkAnnotation
-157 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 703.115
- 0 ]
- /Rect [ 345.55
- 393.49
- 393.9025
- 404.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER135': class LinkAnnotation
-158 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 109 0 R
- /XYZ
- 69.925
- 703.115
- 0 ]
- /Rect [ 57.085
- 327.615
- 105.4375
- 338.865 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page18': class PDFPage
-159 0 obj
-% Page dictionary
-<< /Annots [ 155 0 R
- 156 0 R
- 157 0 R
- 158 0 R ]
- /Contents 254 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER136': class LinkAnnotation
-160 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 97 0 R
- /XYZ
- 66.25
- 404.115
- 0 ]
- /Rect [ 323.41
- 539.74
- 367.5925
- 550.99 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER137': class PDFDictionary
-161 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (mailto:compatibility@android.com) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 193.8325
- 174.615
- 283.9675
- 185.865 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page19': class PDFPage
-162 0 obj
-% Page dictionary
-<< /Annots [ 160 0 R
- 161 0 R ]
- /Contents 255 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page20': class PDFPage
-163 0 obj
-% Page dictionary
-<< /Contents 256 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 236 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'R164': class PDFCatalog
-164 0 obj
-% Document Root
-<< /Outlines 166 0 R
- /PageMode /UseNone
- /Pages 236 0 R
- /Type /Catalog >>
-endobj
-% 'R165': class PDFInfo
-165 0 obj
-<< /Author ()
- /CreationDate (D:20100802143410+08'00')
- /Keywords ()
- /Producer (pisa HTML to PDF <http://www.htmltopdf.org>)
- /Subject ()
- /Title (Android 2.2 Compatibility Definition) >>
-endobj
-% 'R166': class PDFOutlines
-166 0 obj
-<< /Count 11
- /First 167 0 R
- /Last 167 0 R
- /Type /Outlines >>
-endobj
-% 'Outline.0': class OutlineEntryObject
-167 0 obj
-<< /Count -15
- /Dest [ 47 0 R
- /Fit ]
- /First 168 0 R
- /Last 230 0 R
- /Parent 166 0 R
- /Title (Android 2.2 Compatibility Definition) >>
-endobj
-% 'Outline.2.0': class OutlineEntryObject
-168 0 obj
-<< /Dest [ 47 0 R
- /Fit ]
- /Next 169 0 R
- /Parent 167 0 R
- /Title (Table of Contents) >>
-endobj
-% 'Outline.2.1': class OutlineEntryObject
-169 0 obj
-<< /Dest [ 97 0 R
- /Fit ]
- /Next 170 0 R
- /Parent 167 0 R
- /Prev 168 0 R
- /Title (1. Introduction) >>
-endobj
-% 'Outline.2.2': class OutlineEntryObject
-170 0 obj
-<< /Dest [ 97 0 R
- /Fit ]
- /Next 171 0 R
- /Parent 167 0 R
- /Prev 169 0 R
- /Title (2. Resources) >>
-endobj
-% 'Outline.2.3': class OutlineEntryObject
-171 0 obj
-<< /Count -8
- /Dest [ 109 0 R
- /Fit ]
- /First 172 0 R
- /Last 188 0 R
- /Next 194 0 R
- /Parent 167 0 R
- /Prev 170 0 R
- /Title (3. Software) >>
-endobj
-% 'Outline.3.0': class OutlineEntryObject
-172 0 obj
-<< /Dest [ 109 0 R
- /Fit ]
- /Next 173 0 R
- /Parent 171 0 R
- /Title (3.1. Managed API Compatibility) >>
-endobj
-% 'Outline.3.1': class OutlineEntryObject
-173 0 obj
-<< /Count -7
- /Dest [ 109 0 R
- /Fit ]
- /First 174 0 R
- /Last 180 0 R
- /Next 181 0 R
- /Parent 171 0 R
- /Prev 172 0 R
- /Title (3.2. Soft API Compatibility) >>
-endobj
-% 'Outline.4.0': class OutlineEntryObject
-174 0 obj
-<< /Dest [ 109 0 R
- /Fit ]
- /Next 175 0 R
- /Parent 173 0 R
- /Title (3.2.1. Permissions) >>
-endobj
-% 'Outline.4.1': class OutlineEntryObject
-175 0 obj
-<< /Dest [ 109 0 R
- /Fit ]
- /Next 176 0 R
- /Parent 173 0 R
- /Prev 174 0 R
- /Title (3.2.2. Build Parameters) >>
-endobj
-% 'Outline.4.2': class OutlineEntryObject
-176 0 obj
-<< /Dest [ 111 0 R
- /Fit ]
- /Next 177 0 R
- /Parent 173 0 R
- /Prev 175 0 R
- /Title (3.2.3. Intent Compatibility) >>
-endobj
-% 'Outline.4.3': class OutlineEntryObject
-177 0 obj
-<< /Dest [ 111 0 R
- /Fit ]
- /Next 178 0 R
- /Parent 173 0 R
- /Prev 176 0 R
- /Title (3.2.3.1. Core Application Intents) >>
-endobj
-% 'Outline.4.4': class OutlineEntryObject
-178 0 obj
-<< /Dest [ 111 0 R
- /Fit ]
- /Next 179 0 R
- /Parent 173 0 R
- /Prev 177 0 R
- /Title (3.2.3.2. Intent Overrides) >>
-endobj
-% 'Outline.4.5': class OutlineEntryObject
-179 0 obj
-<< /Dest [ 111 0 R
- /Fit ]
- /Next 180 0 R
- /Parent 173 0 R
- /Prev 178 0 R
- /Title (3.2.3.3. Intent Namespaces) >>
-endobj
-% 'Outline.4.6': class OutlineEntryObject
-180 0 obj
-<< /Dest [ 113 0 R
- /Fit ]
- /Parent 173 0 R
- /Prev 179 0 R
- /Title (3.2.3.4. Broadcast Intents) >>
-endobj
-% 'Outline.3.2': class OutlineEntryObject
-181 0 obj
-<< /Dest [ 113 0 R
- /Fit ]
- /Next 182 0 R
- /Parent 171 0 R
- /Prev 173 0 R
- /Title (3.3. Native API Compatibility) >>
-endobj
-% 'Outline.3.3': class OutlineEntryObject
-182 0 obj
-<< /Count -2
- /Dest [ 113 0 R
- /Fit ]
- /First 183 0 R
- /Last 184 0 R
- /Next 185 0 R
- /Parent 171 0 R
- /Prev 181 0 R
- /Title (3.4. Web Compatibility) >>
-endobj
-% 'Outline.5.0': class OutlineEntryObject
-183 0 obj
-<< /Dest [ 113 0 R
- /Fit ]
- /Next 184 0 R
- /Parent 182 0 R
- /Title (3.4.1. WebView Compatibility) >>
-endobj
-% 'Outline.5.1': class OutlineEntryObject
-184 0 obj
-<< /Dest [ 117 0 R
- /Fit ]
- /Parent 182 0 R
- /Prev 183 0 R
- /Title (3.4.2. Browser Compatibility) >>
-endobj
-% 'Outline.3.4': class OutlineEntryObject
-185 0 obj
-<< /Dest [ 117 0 R
- /Fit ]
- /Next 186 0 R
- /Parent 171 0 R
- /Prev 182 0 R
- /Title (3.5. API Behavioral Compatibility) >>
-endobj
-% 'Outline.3.5': class OutlineEntryObject
-186 0 obj
-<< /Dest [ 117 0 R
- /Fit ]
- /Next 187 0 R
- /Parent 171 0 R
- /Prev 185 0 R
- /Title (3.6. API Namespaces) >>
-endobj
-% 'Outline.3.6': class OutlineEntryObject
-187 0 obj
-<< /Dest [ 125 0 R
- /Fit ]
- /Next 188 0 R
- /Parent 171 0 R
- /Prev 186 0 R
- /Title (3.7. Virtual Machine Compatibility) >>
-endobj
-% 'Outline.3.7': class OutlineEntryObject
-188 0 obj
-<< /Count -5
- /Dest [ 125 0 R
- /Fit ]
- /First 189 0 R
- /Last 193 0 R
- /Parent 171 0 R
- /Prev 187 0 R
- /Title (3.8. User Interface Compatibility) >>
-endobj
-% 'Outline.6.0': class OutlineEntryObject
-189 0 obj
-<< /Dest [ 125 0 R
- /Fit ]
- /Next 190 0 R
- /Parent 188 0 R
- /Title (3.8.1. Widgets) >>
-endobj
-% 'Outline.6.1': class OutlineEntryObject
-190 0 obj
-<< /Dest [ 125 0 R
- /Fit ]
- /Next 191 0 R
- /Parent 188 0 R
- /Prev 189 0 R
- /Title (3.8.2. Notifications) >>
-endobj
-% 'Outline.6.2': class OutlineEntryObject
-191 0 obj
-<< /Dest [ 125 0 R
- /Fit ]
- /Next 192 0 R
- /Parent 188 0 R
- /Prev 190 0 R
- /Title (3.8.3. Search) >>
-endobj
-% 'Outline.6.3': class OutlineEntryObject
-192 0 obj
-<< /Dest [ 133 0 R
- /Fit ]
- /Next 193 0 R
- /Parent 188 0 R
- /Prev 191 0 R
- /Title (3.8.4. Toasts) >>
-endobj
-% 'Outline.6.4': class OutlineEntryObject
-193 0 obj
-<< /Dest [ 133 0 R
- /Fit ]
- /Parent 188 0 R
- /Prev 192 0 R
- /Title (3.8.5. Live Wallpapers) >>
-endobj
-% 'Outline.2.4': class OutlineEntryObject
-194 0 obj
-<< /Dest [ 133 0 R
- /Fit ]
- /Next 195 0 R
- /Parent 167 0 R
- /Prev 171 0 R
- /Title (4. Reference Software Compatibility) >>
-endobj
-% 'Outline.2.5': class OutlineEntryObject
-195 0 obj
-<< /Dest [ 133 0 R
- /Fit ]
- /Next 196 0 R
- /Parent 167 0 R
- /Prev 194 0 R
- /Title (5. Application Packaging Compatibility) >>
-endobj
-% 'Outline.2.6': class OutlineEntryObject
-196 0 obj
-<< /Count -3
- /Dest [ 134 0 R
- /Fit ]
- /First 197 0 R
- /Last 199 0 R
- /Next 200 0 R
- /Parent 167 0 R
- /Prev 195 0 R
- /Title (6. Multimedia Compatibility) >>
-endobj
-% 'Outline.7.0': class OutlineEntryObject
-197 0 obj
-<< /Dest [ 134 0 R
- /Fit ]
- /Next 198 0 R
- /Parent 196 0 R
- /Title (6.1. Media Codecs) >>
-endobj
-% 'Outline.7.1': class OutlineEntryObject
-198 0 obj
-<< /Dest [ 135 0 R
- /Fit ]
- /Next 199 0 R
- /Parent 196 0 R
- /Prev 197 0 R
- /Title (6.2. Audio Recording) >>
-endobj
-% 'Outline.7.2': class OutlineEntryObject
-199 0 obj
-<< /Dest [ 135 0 R
- /Fit ]
- /Parent 196 0 R
- /Prev 198 0 R
- /Title (6.3. Audio Latency) >>
-endobj
-% 'Outline.2.7': class OutlineEntryObject
-200 0 obj
-<< /Dest [ 141 0 R
- /Fit ]
- /Next 201 0 R
- /Parent 167 0 R
- /Prev 196 0 R
- /Title (7. Developer Tool Compatibility) >>
-endobj
-% 'Outline.2.8': class OutlineEntryObject
-201 0 obj
-<< /Count -16
- /Dest [ 141 0 R
- /Fit ]
- /First 202 0 R
- /Last 220 0 R
- /Next 221 0 R
- /Parent 167 0 R
- /Prev 200 0 R
- /Title (8. Hardware Compatibility) >>
-endobj
-% 'Outline.8.0': class OutlineEntryObject
-202 0 obj
-<< /Count -3
- /Dest [ 141 0 R
- /Fit ]
- /First 203 0 R
- /Last 205 0 R
- /Next 206 0 R
- /Parent 201 0 R
- /Title (8.1. Display) >>
-endobj
-% 'Outline.9.0': class OutlineEntryObject
-203 0 obj
-<< /Dest [ 146 0 R
- /Fit ]
- /Next 204 0 R
- /Parent 202 0 R
- /Title (8.1.2. Non-Standard Display Configurations) >>
-endobj
-% 'Outline.9.1': class OutlineEntryObject
-204 0 obj
-<< /Dest [ 146 0 R
- /Fit ]
- /Next 205 0 R
- /Parent 202 0 R
- /Prev 203 0 R
- /Title (8.1.3. Display Metrics) >>
-endobj
-% 'Outline.9.2': class OutlineEntryObject
-205 0 obj
-<< /Dest [ 146 0 R
- /Fit ]
- /Parent 202 0 R
- /Prev 204 0 R
- /Title (8.1.4. Declared Screen Support) >>
-endobj
-% 'Outline.8.1': class OutlineEntryObject
-206 0 obj
-<< /Dest [ 146 0 R
- /Fit ]
- /Next 207 0 R
- /Parent 201 0 R
- /Prev 202 0 R
- /Title (8.2. Keyboard) >>
-endobj
-% 'Outline.8.2': class OutlineEntryObject
-207 0 obj
-<< /Dest [ 146 0 R
- /Fit ]
- /Next 208 0 R
- /Parent 201 0 R
- /Prev 206 0 R
- /Title (8.3. Non-touch Navigation) >>
-endobj
-% 'Outline.8.3': class OutlineEntryObject
-208 0 obj
-<< /Dest [ 146 0 R
- /Fit ]
- /Next 209 0 R
- /Parent 201 0 R
- /Prev 207 0 R
- /Title (8.4. Screen Orientation) >>
-endobj
-% 'Outline.8.4': class OutlineEntryObject
-209 0 obj
-<< /Dest [ 148 0 R
- /Fit ]
- /Next 210 0 R
- /Parent 201 0 R
- /Prev 208 0 R
- /Title (8.5. Touchscreen input) >>
-endobj
-% 'Outline.8.5': class OutlineEntryObject
-210 0 obj
-<< /Dest [ 148 0 R
- /Fit ]
- /Next 211 0 R
- /Parent 201 0 R
- /Prev 209 0 R
- /Title (8.6. USB) >>
-endobj
-% 'Outline.8.6': class OutlineEntryObject
-211 0 obj
-<< /Dest [ 148 0 R
- /Fit ]
- /Next 212 0 R
- /Parent 201 0 R
- /Prev 210 0 R
- /Title (8.7. Navigation keys) >>
-endobj
-% 'Outline.8.7': class OutlineEntryObject
-212 0 obj
-<< /Dest [ 148 0 R
- /Fit ]
- /Next 213 0 R
- /Parent 201 0 R
- /Prev 211 0 R
- /Title (8.8. Wireless Data Networking) >>
-endobj
-% 'Outline.8.8': class OutlineEntryObject
-213 0 obj
-<< /Dest [ 148 0 R
- /Fit ]
- /Next 214 0 R
- /Parent 201 0 R
- /Prev 212 0 R
- /Title (8.9. Camera) >>
-endobj
-% 'Outline.8.9': class OutlineEntryObject
-214 0 obj
-<< /Dest [ 152 0 R
- /Fit ]
- /Next 215 0 R
- /Parent 201 0 R
- /Prev 213 0 R
- /Title (8.10. Accelerometer) >>
-endobj
-% 'Outline.8.10': class OutlineEntryObject
-215 0 obj
-<< /Dest [ 152 0 R
- /Fit ]
- /Next 216 0 R
- /Parent 201 0 R
- /Prev 214 0 R
- /Title (8.11. Compass) >>
-endobj
-% 'Outline.8.11': class OutlineEntryObject
-216 0 obj
-<< /Dest [ 152 0 R
- /Fit ]
- /Next 217 0 R
- /Parent 201 0 R
- /Prev 215 0 R
- /Title (8.12. GPS) >>
-endobj
-% 'Outline.8.12': class OutlineEntryObject
-217 0 obj
-<< /Dest [ 152 0 R
- /Fit ]
- /Next 218 0 R
- /Parent 201 0 R
- /Prev 216 0 R
- /Title (8.13. Telephony) >>
-endobj
-% 'Outline.8.13': class OutlineEntryObject
-218 0 obj
-<< /Dest [ 152 0 R
- /Fit ]
- /Next 219 0 R
- /Parent 201 0 R
- /Prev 217 0 R
- /Title (8.14. Memory and Storage) >>
-endobj
-% 'Outline.8.14': class OutlineEntryObject
-219 0 obj
-<< /Dest [ 154 0 R
- /Fit ]
- /Next 220 0 R
- /Parent 201 0 R
- /Prev 218 0 R
- /Title (8.15. Application Shared Storage) >>
-endobj
-% 'Outline.8.15': class OutlineEntryObject
-220 0 obj
-<< /Dest [ 154 0 R
- /Fit ]
- /Parent 201 0 R
- /Prev 219 0 R
- /Title (8.16. Bluetooth) >>
-endobj
-% 'Outline.2.9': class OutlineEntryObject
-221 0 obj
-<< /Dest [ 154 0 R
- /Fit ]
- /Next 222 0 R
- /Parent 167 0 R
- /Prev 201 0 R
- /Title (9. Performance Compatibility) >>
-endobj
-% 'Outline.2.10': class OutlineEntryObject
-222 0 obj
-<< /Count -4
- /Dest [ 159 0 R
- /Fit ]
- /First 223 0 R
- /Last 226 0 R
- /Next 227 0 R
- /Parent 167 0 R
- /Prev 221 0 R
- /Title (10. Security Model Compatibility) >>
-endobj
-% 'Outline.10.0': class OutlineEntryObject
-223 0 obj
-<< /Dest [ 159 0 R
- /Fit ]
- /Next 224 0 R
- /Parent 222 0 R
- /Title (10.1. Permissions) >>
-endobj
-% 'Outline.10.1': class OutlineEntryObject
-224 0 obj
-<< /Dest [ 159 0 R
- /Fit ]
- /Next 225 0 R
- /Parent 222 0 R
- /Prev 223 0 R
- /Title (10.2. UID and Process Isolation) >>
-endobj
-% 'Outline.10.2': class OutlineEntryObject
-225 0 obj
-<< /Dest [ 159 0 R
- /Fit ]
- /Next 226 0 R
- /Parent 222 0 R
- /Prev 224 0 R
- /Title (10.3. Filesystem Permissions) >>
-endobj
-% 'Outline.10.3': class OutlineEntryObject
-226 0 obj
-<< /Dest [ 159 0 R
- /Fit ]
- /Parent 222 0 R
- /Prev 225 0 R
- /Title (10.4. Alternate Execution Environments) >>
-endobj
-% 'Outline.2.11': class OutlineEntryObject
-227 0 obj
-<< /Dest [ 162 0 R
- /Fit ]
- /Next 228 0 R
- /Parent 167 0 R
- /Prev 222 0 R
- /Title (11. Compatibility Test Suite) >>
-endobj
-% 'Outline.2.12': class OutlineEntryObject
-228 0 obj
-<< /Dest [ 162 0 R
- /Fit ]
- /Next 229 0 R
- /Parent 167 0 R
- /Prev 227 0 R
- /Title (12. Updatable Software) >>
-endobj
-% 'Outline.2.13': class OutlineEntryObject
-229 0 obj
-<< /Dest [ 162 0 R
- /Fit ]
- /Next 230 0 R
- /Parent 167 0 R
- /Prev 228 0 R
- /Title (13. Contact Us) >>
-endobj
-% 'Outline.2.14': class OutlineEntryObject
-230 0 obj
-<< /Count -5
- /Dest [ 163 0 R
- /Fit ]
- /First 231 0 R
- /Last 235 0 R
- /Parent 167 0 R
- /Prev 229 0 R
- /Title (Appendix A - Bluetooth Test Procedure) >>
-endobj
-% 'Outline.11.0': class OutlineEntryObject
-231 0 obj
-<< /Dest [ 163 0 R
- /Fit ]
- /Next 232 0 R
- /Parent 230 0 R
- /Title (Setup and Installation) >>
-endobj
-% 'Outline.11.1': class OutlineEntryObject
-232 0 obj
-<< /Dest [ 163 0 R
- /Fit ]
- /Next 233 0 R
- /Parent 230 0 R
- /Prev 231 0 R
- /Title (Test Bluetooth Control by Apps) >>
-endobj
-% 'Outline.11.2': class OutlineEntryObject
-233 0 obj
-<< /Dest [ 163 0 R
- /Fit ]
- /Next 234 0 R
- /Parent 230 0 R
- /Prev 232 0 R
- /Title (Test Pairing and Communication) >>
-endobj
-% 'Outline.11.3': class OutlineEntryObject
-234 0 obj
-<< /Dest [ 163 0 R
- /Fit ]
- /Next 235 0 R
- /Parent 230 0 R
- /Prev 233 0 R
- /Title (Test Pairing and Communication in the Reverse Direction) >>
-endobj
-% 'Outline.11.4': class OutlineEntryObject
-235 0 obj
-<< /Dest [ 163 0 R
- /Fit ]
- /Parent 230 0 R
- /Prev 234 0 R
- /Title (Test Re-Launches) >>
-endobj
-% 'R236': class PDFPages
-236 0 obj
-% page tree
-<< /Count 20
- /Kids [ 47 0 R
- 69 0 R
- 97 0 R
- 109 0 R
- 110 0 R
- 111 0 R
- 113 0 R
- 117 0 R
- 125 0 R
- 133 0 R
- 134 0 R
- 135 0 R
- 141 0 R
- 146 0 R
- 148 0 R
- 152 0 R
- 154 0 R
- 159 0 R
- 162 0 R
- 163 0 R ]
- /Type /Pages >>
-endobj
-% 'R237': class PDFStream
-237 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 1796 >>
-stream
-Gatm<9lo&I&A<G1rrL0IdieGHa/r+lUmX9#'<=\8]tbm=USS5"U?p":c[qBl;R&e!c<0,cOB;Lpn*Sj5-mJ.Ng],5*TpIS-i\a/hU"LD_JH_KJTKd%d-XYUMh%#bQ0nrU52M:`<4f>o93$k(MM=+,7?rjjG.)f=5d;4Xf`UFc-pFE+CqB\`1k8*8!r<:IF6aL.SeN^LWYIfRNLRUm+*7K:_5O`/si]$8>na."-7'b,+`G=e*s4D+g32M;i,Z?I23h,<,8?[^oSB^4c_,GGngH@[]+ii$W#qkc_e'?#4d^-7JDskAc0;%tD4Q,d]^G<jOKYJ3/P!#s1b&PT&joE57p_fe2d6F[)B2&]k@H`t^Y#Jo69kBc3kZlG.D&QpM&V(@7bK(qi]iatL]5aJ"S=\7"P[GXjQtD1qR#oMiM[E`13XL2,!A&S/=5TNNgbe5%-7NDWP2FV*CDW7*DsIJ"Z`6@ZJ2M@nXkg*3EU1./]N`Y,;tOSl]BZ,GiGCZ"^KsaHA0s%W-Eq'OLa<!4>Q?>6C$.Kq`(+GF1%2X)GCQKm_,39!N9`sbbrQ\?#mhkk+JO9$!>UpZHjaHd*+WdP<=@pKVDO!FSLL?7bujGbK]tXH,fBE`HXJBPR#d/)#<To?P/c0q;sZ;L!;?@fL=%B^[Mr<3p"26ad?U7]GKT.emJm8Y$nRq@@ggD4M$T%lmq3uD?Lf.s/ItFt>p(9$mo6D)\jU1tDhgA1*^\E]0uRl`U]Q4;,nV:8"/]"[FQjW1FYTOMAK:K4#3$g&>c/!0J?d/J0#H<0isM/YC:?%c2=Q$GaNW]6Eau*^>q2b<]$YEDKXWB6>4cpp_"B,6&qU8&C`!!P$8W+E^D`"nR.`6>)j,dsSdZ9/;Ol03`03Ik$Ah4J.,Nf@MNb7QoPafiYH64:Cpg9:TtJZf&IQ=:mEtiNX.;'.Pk]O!HO@Cjd]?Mb;DPqN!3S>_b!N5"a#?!&)Bs,=_jUZ2AY>\YZoedDP^r"#arVk'&BskKg9!P>6Qr%.o_"ESOCohB55XjacmeH$!TY,sgR.nma&;\CJ=q9JqX1jiZBh#)cp0cXTUa%+PRh>bK0#/P:tPJ=f8'Za"kKu3_uTI==]A`&1E.4XMf<Bo\4qdGqF99ZlVr!8TLic9.ShK_T8dVEYfJn+gmD7eZWMt0hjuf6e(bpDHSU;Jj,WF<+^:Tnm8%0;7uR6\'.MVtT'qC(5jAg5W!qAt)Uh&b+9OC%Kqd>FKb4cF,K7U'`]]bs6VP&;;tVs<Wq"q(B"fk/PN2Vp5q?$l9FV,AT38+VP;>Ok>km%C79.l1XWHidVWl)F)mS@)O`H#::skt$<"BmPN<b5-$N34FVE.3e(PP'UcF)+Y,k:;e(G5ktZ?f6tV(2IG$WA^qB)pb6\#C:Pe>6#<QP%*pmJr!l,X:E$i1QGK!aSi#0nDdX7#r(?C=4/&[h1370q)'u:[58\Be3)SYc\-,`lI],p^76gD%Qja:%L?X5KKRi&B85m_3l:hU<l(4Wp.(.eWg:u!ZA=7<,O+\Ik"NSUtp,h',c3p\.;9mDm@;a3-efDo*e07DUtj\76(H\O6m5L'(*lKLqD]?rdH,m5"j=0ir=Z^%Ni^!lIO:b)HE+hQ<dJg*U2?12K$)AqcW\8%a]sMR;lC!(;f[SW.:?`\gj6$27hMC<n9,?J7^q?*jF7pV+:/l#=ep^S+Tl`:HNQV3BMl/k!.mZcurcGl#5/h3%tKn);8A[pP8@#2N?N,2fLO^2%0*;SaaOoJG^2P&'jCM#r\$^O+[,VS[GFuRkV.@e!'7cBaW\~>endstream
-endobj
-% 'R238': class PDFStream
-238 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 946 >>
-stream
-Gat=)mn_[l&H.X=s5?.ZPNM\(3)2ZSp`ZGa?jYQMOID>p`$KDSrqF%71hdgaVJ9(!Q[:pRq7UDD:-Z,cGm//O_N.UuoH:gL$s3Mo0/uNN#ESSpf5qUTk:nCkZP?"*Np@OGgdb/UoAkF&`P.FE;(*Qh!0PZA>/.*dRHR7`qeKg5`VU#,?V%rblIY`T>eaOYh+WW2\!Gcd<Zcg`9b(q-knPEYMb$/<+_Me6&1JdUM<'g`>%C>(pP6Ni0Fh5NlO*cgcY4FfA-<bVk4'0adeIL;I:NI0IG9rfD&.*sMuZ5kp='*fc2sWpqToLI@,GT6Y`Obd14fpZhe2"+),X9R)M*33he74q18_-:2Kkh#mhMfC%k4Q?NQnHk[2Y=&S?4U'cp1[Rj36C4"10h>=NKDI3O3B:e,a?-Ch?9DQe>:lb=nUFGYlT7"Vice;`(LRD%"CPal$'bBAGZaoumR\1\dA<Wl\M/OY\u@F"5c)8f?/=JWNLfC7_h.rK%c0fi@$rl8(tF1\5s!0:`(DK*t]DAdMU'KuE1%Rjf_\T[)`lZH-+FPMBf1qV2EGKVNR]N7R-?)t8DQDL3X+dG;&d\W(&k(EHkZFOUJO%:(+4)2KC#U+6r4N)<^hl`O3.Vjf0:F1%`t.;k'L0['K/1Z1:q-7W@ZPQr"NWld'_pftohp6t:dRu>B2pTuqfYTV`IjZFH`\!P9HLeRZW9J/RG\f<%;$JP*QMRFgNZm-qh!l$`[[L0Z^FP[neH)jRgX:Zierj3fK>II"$T.!:B5:jp[lHCY9Gp*Ap'q`uO7AK0@e`ND;7]@'>rn`gnTFUOSH-TJ:MG<Nc%_<V8M)sB\n9Uku@0;(RRrtV<3&>2q26?IDG2=-.(55UI:UHnDHqLm(D5eZ*GNP=[GULAs.b,lh%G^;\$b<pMVo9#`_Y:mN<u\JfSM&bLoaY,4EpsTNLkcQ~>endstream
-endobj
-% 'R239': class PDFStream
-239 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3247 >>
-stream
-GauHN>BA<(&q6a9s.ILu/=]>nqi*OBQa9Z-/kb=X&'HCo@r#\`Yq9J-)013)BuqEW4dj6[93_U/Htg"&YP!%IC^Z[#a3t"-)+&7RaEV>@b=8fAZ<Zajfa%08m.n!VqT!>gpKV7`3:PjohK]K7=dsIl0HJ@1d/*PoY\LQJ"ZZ-;1s:tl@CQa>eVF8"e<$R,;_HH*k9ZSqK4b/3U]7<C^2FM\giXsJI&mR"`#fi@0jR#TkE'7bgNS8'V[30.d!0+HbJD>9cS5g&pUMi#;T4ghr"1mb55J]@,NhWQS#r&C$'2-Gjq?&]I[<H#J`M]_P('T:8_#,0Jk2,+6D?J/)3p$>LmJE"d=R]5j)^Ma<31>I*p2abQtHSbC_#X[9Wlb.4=N9`&:fPVA)ING@*gp8n,*%OkKe/_QiI@.nZhC/Z4ni22Rb&3FM5k;K]/LW#Z=V.MYI6Y.!R?slea,RqR?P\;9*-7d^20ig`]_28sAYip.7L\^ea6N1NI\j8=lI^?DoP%klh.Z$=H,]p&<Rr4!Z*,5g!U>mu)iO=ABMuf&q6qD9Ig`htgeF9f7LJ<:HoHWOP>sH`<UkIh1JZp5\4u.+DT3"hL:lm"Y!U,3U5E[k+D4AOWVOQ^/F!Wp$1$!ZiNm4Mb#;_p=M,m!hDHMnf<eH,9%tgp7&Ef;,3si!ZLoOPjiLmjkG$LRVJS]+L'0hfhImhsmO'a6FuFaC'U<r1_:6]U0bK_PbqGB!pfRJK+Y=O"C3%ZkjDGC@m1l&9>u[T^A@?a8&8#VObPU(LDKsJj=[[gtE9;NQk"m55s_k#3#sSGu%e*OpVqmgR*HE^rTD#n'E_&,r5_U-/9*1<MIAe^M@=dW:RYQ\5Mf!h(f$V/:`jFVW.cuF2L&4NQ'L(Z#b)=+4,!hYk2=(!&rComXUCGDU:DA[JVbb[N:K;X!"-CRMc?-#>J6UneQ=7X[s(PF_MNIIE#k5*k8A?V!.-&\$PD(0+k`@/1#%>O?*LibNQsghNdW;5ck_Sd41,Z@OVJL1"]MU#jc=ugC=3,77t,ViZA?KdBsa;oVppOcr`Jt&aXi^!G8SS&*a9'\dW';'$VqtnIXchbKZEs8Z2k:10_M=-.>RTl3[3I!IF47l^NOt0I"e)(]+f7p['lclmTg;W'.O-B87K#(!7I3O'bqlQlF[]2,MsoD?E-h)5bkj2J:3j=26!7TS0!K(_@4g8N*5$Ki7:b?69G?<F9\n%7O97CV'?KV=#qCoEQ%-C!r$KA+WO.#_SG-#c1lU"Ji@COD6Ol%U#[#;58?H:b)*e<CZ8c">ek.fbj@(GM99i<;qTg4^Y(1J3XN<O<p8modpc5$HgNIq')DG?S8>[Su!^E5dg=d?:$_(FA_Vq*Yb_dI7Q'gZ;Lk7i)t80TpXnSF]ZBVWFR_7^,qU<93S,:#"Nh4,q2M7LR`>0;b]k]&njqfeAZU:#nrf]67d!*Y>Ra,Z0Y&tRR&em=61oV=Nsh\.[bH,irEN)((1mZ.Epe")gi[!IhoYi\.,r:V+n/7/VC^%mKl-iXn?U2!4S?hVqb(=#oLD:n4V*i!UYX2A\"8QV:%;+pH^Mc,ln<fRAd%.A5r^>[Tf(R%eBpCRO^'>qP-SabTu*K^!iJt#qUZ'h6DRq6L!l5e&apZgTJNCr]*i/+*[0iopUU/'baka[iAJ%[I"*6f>^k#3Sa!*&$#,@)n'Ig5&UfkoKh$qiYC10[[!)r/&PJmf9fFG^sIiRjW[`TPmK!kaRMNNrZioH_^KknKtAHh(;Lu]$fq9Z(.dPm,T6F\Wj>o!f+2:qa"Jd!o"uA(HE(F.BXrWNQ-@\Hcj)q->A$=\)+G]KFl`:?4(&BkJUM/*pS@3Z0HZ@X(ZB)$FbcZu6-GdiIQ1qqh=,75IX9m#mW9di;h@af%jAU=)^p%U[fqmkOSB%.\Mu:G?%4?kp-uuCJ0V6.^'@+&q7pnMq\(P;-A3_=7IXF;S$U+)P-Y=V't@qZ+39/r9L=Cs9SBAJVRHaLT]&QqCgc<*^St>(S<!_($uPN"g`[,&V!Z!SqSg=&ePE;U2qOX4!C0Y`3dJG?qaet<#P83s2Et<[$t`MDBf*7.'d;%u-inuG1s!^'(Oap$/qpV7rgM,NR)E@qr%BI.:n0l$F_^-l2N>`=@JJT>1K>'D"po6CCmr'6h1PR[4'-.lg[*r*n$+?j%K511WU"Y'cr_],Y=MLr,HaYS>[FOXH"1C3m]lm,meAi`%aA^V,]bW[%jU4EeK1,lQ4/<<$V>9i%Jl!JZ@ZE],DfJQVb#dr[_T(-4!6*Cm=05d8M8NtBqiii;#[iHk#KHg@6f6j.cIgj4&8kqg-K)V<A?KlDF_&&\gY:sA4bm6U9Ue%!d.tY*@-T$IFG+DL+S(h2YequJh?kRb@-occ9tiR%C`<%8`Y&k,Q_AKn^Z]68q,rD]*EEd/!:]"<g4H32?eB53GOME^^)@R<804H]donI_!E]e-nV'#NMI#*gE!DOLf&bWQ^f^-W[ZW^e4u=c8D7(S0m3UAFta@E,MHE:"pfRMjk>f6U[dSl1aUc#hc9fl+XLU&XuGel7Hj5*T8k'^g$Ylm:I:+(-RBJ:<@k26*lf2;ku>c:\5a#DloG#U"M)m)!bo9DUl8B:lZ4Itb#?J_.&;gU@Unn\ARq6.AX_S<fsS&&p:$U+&3C,54-(_!`ecZ3p$_,]FLjE<Z/[jK_I0\)1>Fqr2Kmn?$'C9cs83ja@(-huJI]76l4]p[a_4S.5tXtX'Fn$FGI;>USNoa(:;b(j-Og\'Gs*o*+^%T<I6k.TqCBO^d28A9$RJ=&$D+nFpc/h*hjc5R%/8(KAE'inDFT',n-"[-F8I_!Eh;uKZ-h/>M@brpU!k6?]L5>SM6ARnan4>koaE^>f^o+)0YZ=MU;UL/n&5)<=G3g4(Ch&Na7&e_?RAJd:5U!t:`gWAPn]Rd3;fmGY@h!;GsX@XkpaL2\5QrOHaoF:D&d`.S5^g9s3)i%YK^hb:!"itA(DK3&$D;r./a9@ChjqQL)]qbFcH@5'r_,UdJL60g#2Z8^!iUekg*X%DpBP0RC7GD(XT*TP[j%l0;*0+k684+"kYlorVs^.oiq%H1jVZKlJVmB^r1l/UW6EOcmq^b/u-LH:\FV6PM6_sM2?HqdGA)Ns6V68YB9L9H]lu\;=IJeR?)Z,*7E#Q>Z,n'G1a76(U]BDU)r6;?:&G5r%d8+[iOF@LR9d6VL<Vs[b0k9a09UR>FmM#Z78ZHhI(O6JRP<dp^jIPo4S(.k`(;@~>endstream
-endobj
-% 'R240': class PDFStream
-240 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2935 >>
-stream
-Gau`U=``=W&q3VVrW?nAf!?Yg]ID*013U+343hAGmC[9/JKc6F1F/XoUceYNgC<WPAKCCTDsU(1*8QVBYJ4s?/ofgieUOJ#+n(b.p;&&X8![rM"uIIG?c^dgm@/%jf56h/!V&8jLTkDFmZOR(NmZML>q[IIDr6(E[o4!iGncEQ6!Tbn1rr1H0b%!VUOV>V\HmX0b<O)=mooU,qY+4kiO=5F@P9]Nc!_8:bmUnS;h&oK_MbA$%*c)<BLI@Ga4iO!ELhnT3$-HiS:b)NnH1c;]Gnr6c+kUbMU!cF7^0rWbNt1OOtr5QB=+gd:+s03k/mQZX!CKk:IL[djQ"rg<Gd5Sbqc_;\_&Z/gWc]GAs09aA7`nqc0,R)cA!P-VCM-p/5sa5"!QBV%ijVp_@qt;O6=I!n2N7\^KYq@M9PB#alq&B_.<,ld'VeE7blJ1&hW6Zri<tK4sDU#Fi%S@KH:Tcf$I&Yk(]-n8<O<'1L;CC,AN^Dm):/YjBq:V=Zmulo2ggoid>R:OSXlDcGTaCK)"G;o?K=Zgp"/O]XfKK?1OE*Jh+f/WCZ4Ha+`ifjr'Xg@LH-n;iU;7__].D]<>4^I-5=AU4=l5@A&"?IZGIpT@^.WU=t]QT0GLuF&oEI)<BbKaXs!^\gS3e13%S!kJh/%cZ8L-O+[3oV2sCD%F0)oh@m.@eV5LWQr]rI.8pB5K4I[H*Qq!n,tk9Yek*a%mXK"$$J\/*<:QnWDD(rHdA_0,o:2m!=k@4g6,Fm-C]Wad'i1$`<'kNbj]]_L_$0<GL6;m4r(XT5^;r]G(U-Q9U#]]Td,HlZ@-$,JiWks_,!Uup$VOM_a'?;gCL2$5'l6?._tbTWTVpqf\/AAiX^ii>",LnJ(dJ:?-ggD3WsIobJJ-m_'&8c%eODeZ_q^8LnBO1r=LosS\MI844BH&D`=CI3k1$JF'*TUp?K5"j&j)s8@7ah^Rfu>LkXBI\2Na8]+n,AQbTZUH7ls*dPWTlZV`=pbjZ>c8G^r!p^_#I:7,WYdR.;/J*cZUcL`O:XVrU=K/$)q7m/ofaUM&`8^h=iKJ'>$&Bn7<ddg@hbL(.%9.&Q$%,UH8XL;]l7rG\`ed>gPn,\/2VSV9[0!@0\lq*BQnIaF"/Wm_DKPfChcZ3&YjFg!8qi9i5UGAK-2[bDd0VEp&C.9U,#5]tIA/bi-R2@3PK.Pc<lp*&3N.(PTi92cd"'/\a06"\$L.?bka1(;)m!-$5,$(0:R*MqAFaj*;=/(`/,!,=I7NXH./?EtT,&RK9petnTTfDiQfC?7]"3]"T*9r<<=JV%j?1>1-Kn.FT%r"7k1_B>;n++i7@nY3jC6u?TVfF3o0;KCS<@E:j3m1$qrXM&8_DHH&;$$Csc.s)=Rbd!1nkf4u?MuKmrQV"pOInj(\g"Ft!$2Y+!*K<Qim^NrWL(ZK\UUud2lRgep%8V$n+2HcNW`eQ:aC^3>OBDUr7D[/OdK-M'i7A?m!>s4_CJs^g1,g-eR(F)@39Gg0!0MD,)BE!ZHedM^m:2]AG>eW*j##OoojIHg+W"+5C!]m&/-g#9:%0-))QcSa>AHFPN<?SWr+E3AqU0Ne',#Cc-E-qbT3[!a4;"^54BkX+9G;Kia.Ifd&lJ-jqdtnOEsT'pOqhlMS)UomdBu@i5j-5Y@b*Cu#CJ`jNKL+</s`?$MCf*AJ#-sc26DbiZBVPT*.cYu06,T5k!TS5hX1:dT\>OcT@>u%Yb/aFILr,/pA:(mlli^Z["h?tC'2AlqPL6[^u(?IB6#:&KcZ>Mis>hmHr0?b9goAnmE>7",m_aG=Q?ZT6bpn"^9X6.XsP08[f&YDoE^<j4AR4R"pdNRZUelI9"Kb04f,*]2.Y?HVq=XC"-Q'LiBXS[nVJU/mR$8HUM2qRnnF#&VYPPb177'<dEZGu//U)3_,A%%Ho--CjJ)*id:55WZOb(46Yp1C5f'oN$:\7_62!LZ\j8&p6b6BQ"R_JYdo>q[Tl(iSA%J2F1t=A7"A[M%XcSePCP+Yg`u`A!(/lLr97X\"US]m@53m,SE4<AhVi"IKTLb2@U1-.o3k2W/loHET$M?@B%o)<hA'i.@Q)XG"Z#!c[80KaSO2m_+qfG#nigu#d8?)>@cSP,PJ]<IR9ZEP-V"mF*H#p2@L2h-,([W`6(II_,%IJf9-*LXDQ5VXc1+qm%"n`k&Ym6^OgoK6cqr"sS\i4W&W-2IQTMp)$dQCCl'_7uHj:1QRAS,laKd)e0`O$Wc,DjZ_VR$Pa=7hGiH9lW&=',qZ5_]TRR-Qd\]-OSbjJ5\(=kQ(F29ut:ZHD]h"jMa$WbfI$r#WgrY39Y"@]G<2#\qjh]mY+OO)L%,DD,f%0kYl[\:N25[#WYGR!f5o=n162chd(5h<X*Z=qj4!1.P,"k>EfMQWdZQNB<4<L9G&%FBb38``]-<#;9c<M(b7MA>6hGIC]1KlR2PjlBePq2cl(2TC3kH`]e/*q0T7dd:bgtmZoqYTXTVd_9kn.E7\bQg&]gj=2qY=htd5X\`CV]XXbU,B>ShrbGe2FIHOS8,h"bhZES&`eslc9lbnB%Ma=5G<X\%C#W=]s5=sjg_/r0p==\j[V+sOrpuDAU-0t)D'TAn!FmtIh9IRS,18'LB&9LcD;@&cO#S5aUE1'Gj^%ZuZS^3stI'DI"TIZCs/m/:UPLfoZ4MOta(2B_$&t,B.Jk,fsIf'9f']G[Om/MtmL]5!)b_$sK:3Fj9:=+C>fiDiX(#=IR&6ClI=.^&"q=^J_AnGtBMheMpFt<6ef?UfC^!I^r&Jm>]H[GHDFt7EhrLO+h4>)!!8Zg6-c?aFF-O^e-m1N'%4#>[@S^a5hT+>ZVHK)G(>h@70pH6gT0AZBjO]*<f4lW:2k$r$e1>aIq@*hXMCSEn'46IU2Z?Q9m>&]buE:lJS=gRS9USg*ro%])UD:Y*`hiP<crWagtZ<.~>endstream
-endobj
-% 'R241': class PDFStream
-241 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3185 >>
-stream
-Gb!SnlVH9V(B7^?s2,,u%r_]4+)sXB7SDrW<M1;ZPu^5_1A3!`efL_1Rl'lCh_Sbh4FZ$:E8(bs3-0Q33TloX(_*J6XmuF.+/*m/1qM8"VPDZ[Bk(_5<Zf_:p%HX3r_H2Gjr!?o1,XW\0Wq**/K7WcWhJZ(g:r%<;Dk.]WgljY[.9?V.6n+59]K),R7``oLDt>OStOWkB_?;Hr=AnrC\I6ffpHhJ3M5Rt=.P3+C.HlcUoE,e?#h6$24+mfFf&jKoXsN!-`UJ?R/PgFL_BuqUBFPA(V?96r&J-@0CE_C`U3Qar+:Di]):4?Z"0/<R`mI,C+@5FJCQm`=I_iJ1&<kYM4Q7O`lR!@'GL+`5g^>l#=#aW7]sMtY`DA/6PuQcL00R22B5&-fQPlLSOMZ8Oi7b5CJM:t0EaT.E/),946Be78W46Ecj9NHa<bL=q\D1"Z/o)K*YtL$60MO8JlZ*BVY8hn^0dSg]+oY1.)]aQ`=;qdEnp=+1KB7sVoZ?;>`eVh\K2EDU&\W]+Q*X,JhBoBfX\HPZ%9i*d'RsNGQ86SG)6=n#c%@L[C7G08aJZ.83f<Iim>\XG!McUn0!T(fg+=40F374R(Yp#2\oqA0YnpR'[g*Z\4#I/G_%F@+TXRt20M>.H&;Z$Lc7qX;`+>MLrA1e]Sh:C&2u(lNPqF/ChD,"^P`SX7Nn7gLZ>/)LD-LkIe*\#a-nc/opU8PGIb@)<e]8ChXTFpAubg"l<S=B%NQJRc"/R1.D3&TB?r>gk?1)[9p)-N\1WK2>sPC48=d^r8Al'=:`%P9Xng!;%$?52EL7W9=>N(_KsY<tUY!WYnT4uMo[hCZjlPm6/0C>`X781_I\J?]p6#_X/3hD!]OBNF^U)#?'IJ'7&bj&E*!PDfkNA&p`0LY-&_RLJm/ZOj^klpZGmi^VA2TVU)H725gthl4_-E!CokZ,eH1(tgB](na9;&LCZo@oS-'5;<5?J72ljJSbB:bq6Y3(3dhTlGWJh_VgIFnM/j23KZm;CpFB0DaBC'Snl0Y'%0ETHt`67.""<59)VCs;%unq=5X56kna0b<^"V=!"2-"ruB$]2b7e<oNY3\b6MS"SAkgCNo;Vrco]eS_Esl=3PXE(S`(QE_+2Cp])F<(1A*qG5hodmh2%2^[tE(jh$cgIm_u8@Q$c#i5N(p\EiLZ?Nck5bR-Y9)B6]j%6Nd4>5>7,2f,uo:XW?nF3aYNinAcT]:Mb*:q_OiFE(PT9a\&TAQi8%nZ(XT)$+jiT(%]ZX_g3rc*C4T@+OTJ=89$_R97+;[Qf9I^jkeiPnENiAl5o$&u]&XJ"m][;6qGr'O@p,CUJKmHjS$Y3;YVo)3Yk1(85I_%%q)IZ-4\#h/#($U2p@X\c,rE,b"HG;(7>RCU90@Y^R_5f1gP=U26!bDu?(BX(#-P[BeW/'Zu^gG#q=bQ<j,a5@9A*qQ?se1$"l7-/IfI%GoFcK->W-eZq])f9$&9WSfr:(`J&(oNlS-4ZuY")(0N')oe[PsDd#LUm[uBX!(gY!cU)5Q#\KhpE:`bEpf;_I9ihb`p4jeMcJU5U0uLfdW7N_'2.ERk.OlAGqs4N'9+-TDcn]Zl!s%d)Si@:Ut-Mq-Kk<2\`O8==4V[2'50O_+GmlE9iZ\m+ZBM5GlJ&G-%o]IRVcHk3j"I>@,7LA4n:\d!-#.\bs;Pq%ujRA@%:ZIR,8tSX:X^9A*<Im*[K,M=qcQ5_F3tNpjqK-MjcK$0dmUF6!2([;g832'6unX3J//?ghsLDAXslZlP0*/ni428?aHmhtXj]$()JrT#IEBQnT\;0=f3,B>G@,ZPn;/&M30#&*^X5E2b>X<QP$>]WGu76K7V"X_&&WR*Ur(ksfetiYqh%=UPN%"Zo2tF+e0]K0"^n(?a(]7p.r,,V@]G;Q`HE?lN$ZKeD,aJ-!S[h\&&^GgFU8b?!i0d]2lEB<+(=rEUs9oF+@C=li'KlC1m;n9sV]ign'F\2_Q^Q'Y:;[@o`A+'\!tGo_\<N$9q3d[M3?ginX9@`#9JY]IqtDb'@NUj,AoQQ&Mb_u9mqfNTnb&^h>UOEZq,L=l$P.jK:0:/0&AIGnKaDMDH_]tB>-:P4:8Lah)VVG3!+UdZuP/:I4r/>$PWS%n0/#/*)s?iL\R/hi$N6O.Jj?E/g.XtiS((AF\79\>jm?(8"Yig%dpl,JP:F9Fu_6ehkq$%r&N]7;kG?*_G,[NWZMQ#cSi41,/*o[A`2CtVF&`-Omrf5nl:CnN"HTQ(BC'F*r=T-^0php7XA&h:N?e:'*N$J+P+IK.A3gL[TcUW$4k\btL*0bCEG$@KQcYVBgeHpQ*8fK4eHp94&0?:Vc:3<'EgS?T1G.fWh(@):rU,s5?pr(P=So$Z;\pMAVaa.1"q(MOddO>/(95-APY!a`oQ!pHLf!>NP"aJ]?"^VspX:'.d^=[It+N@rh.e6rerOT8AfFk.7oA8?LEY>\m0#aIfc`2FEi!SQ@IpbH$]-O3Tsj=r-XZB(!r<$U(1%;3c`<=*g!'U[$!ee+HJL&E5q'%Ibm2A?7L^Hq@#Zt,4#W(IUU.\Xf$7Vf#dm'MMP8:[^n3bo'rPo4@u:8bu.&LrWPM,>d\n84QBLWX/I+p"\V7#X_dnZgK1C*YmC@4W%a.\Y.V!`OBa3hk*&Y^_<uU0;$UMW0.XZ9Xa**'I/7q=;VfJ4Y$SDN.hhArc#\.UPbg"te.hLY$A]H?l(iB^i]-j25h&nPc`pN"6`O\XtkkT'EZs@aLd%A,(!D?.+n0.ab?hVEnaZ7lae+:K8;P:>S83.6u=G&IKMp0:A7kf4cc1h5H=,1.$PeU+Jl9,$F)7UYp##A_&1M)sE6F^:<Y98l@0Q,sL:)!K_c/f3F2'Rq;j>Zk?_GZ\0r$]$]h%%D=kW#\`kD&]';nid,U7,E4aUh".%P1hnR3V-,$5)Ke.gN>\r?jVBM=AbY[NB5[4H8n5cFA3l?t(hBM0Z,/RgR[#sZNSjCI(hBM0Ysf*NV@pR'0C%YAGTrMiIAp&q?ul)--Y,e=2D4$D2_m+5Y0eMAgSB[7Z>gahd?FaVdAuf;8SY/911QMd%<T=C(n$-_!q4c2/Q][W9(_2T?>Cu"/R%r_@aoEu[-$"]F;qo1&`:W=RD$`*#'t`d<#Cj<OsEBW2,ZdM)RM2_>"'77,ac`ChrILaa=`N/2T_lXEXod2o+1QFE6A~>endstream
-endobj
-% 'R242': class PDFStream
-242 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2279 >>
-stream
-Gb!;e=`<%S&:Q:Zs"NrcAd_*Ja_0<T2a+V%VJ-u&('X7q9=2r5,#sf3li$K<6QNlS3SP<(P,>\+A%oK5r5OLJr:/V#0EHDYKKn>gi!1qUKAZCV0ROD7LJOOiF2*/Y][MTXn9Q+FZhE10;nm_Bp!-`id"2#A-b-0`D:J1Rh$si,n9kgSj8-,mcg/rDBC88ci2$63%)9[KRG7\(qu'QEpp;JD051ANBnC29>$g-p4Er5*QPM2QOtnOW+r5?ALRdZsG5K!T=2s&<f-G:*H*',b*6:Z$&OC$=.0(3h$<T8&I)[=1b4'Xq)QG?JGm"2(9JjUb&k:[%3L@P01_ud3Aipo*K`T(Y2^IB0e7+)HC]5n!RO;tTc!t@*2;H8JH)WdQRcR_A;J.A#at-fsI6GNN@&g$N3+oV6<G*N:+;,BF(+cqD\U[.(XO./Z!@:;s_kl0][+4;<Y4E*#X_&d:^a,-o)'FSMRLk^<CT_C.\n!/LTbn.?`une+2's[sQEc6[D'i+f+er;?pnc]s5cD%Z2'KCWRgIk\N;kje^03MMd#;&`S%<7I_W?1V]j5[r/3TYJUACSgrVE8VPM/7qI(tEJ&((P1QVWUkS0__CY@NHFO+h],PZ]b.l_uTVM6Apa'24--@PfW)B1&!u/EXMM+oWi67\:CkA;DQR.<XBu,VpWt1hI+67UBI:.-\Pu^?/BF:2/X,n--]4-_\#Dj-k*>?nNu;5s?Xc#mTZ'-b1Y(Xn^1epX^kn:Gp17inuHs%IOckO$sl%/m8]W[^&7<W\+t3TM7Lon:h#/4!SlW)Ao6GMQh;Z&\&%/Q.B$u=LStk&:B"JDFGPK8@:&]-5i#4dKgkaVG(LJ=L/bIIk&<>'Z;C[3P\%rmS>r5.2^&SNn'X4f:'KK4(T;Z1Z_jX"_HJVKs<aC)umQ7U/$J3\c^H",V&l?#uH=bmu*AK^XmOIO\iYiQ0Y?F\mBAt$Q$&TDsO08#=f*nV,hZTFa]eSk3tkKoqKO]os+@a]*l$e$oQ85n59LA4U[9->VGU5d&].RG5qJ"@2?7?IA":!Z,Z(pKSd3&cu*fuJbk\O=AdYa41<o,`u:dm@l7`c2.nt?f#QOVZRgF0@,J:aL=67Meb6[=b2^Hup%1bUH1;eqP@'X[hOUTmVDmuT\p2@qI%08N<m&N#mdc!3I[(131]`p3.sL_Yi>kWBXNRq,<SD=ALqD$>f*)9(o(l\5]D9.ScHjds1i6K<A(ZHLq4!Sa?NXtH-Dkb_nePO;O#2i$d`&=Pd!k:/;19e)Tg$Weq6;9-CMka#EW)W/e`e,hcsEbH7\;]tYbM:1L*b^D=$c^,7.Pup[/7?6&2K3NLr50cTe]R:Wm)8f'j!t)FDf,_dp]LI5W$o*KI\s:?=#WaR'g+V1:uVo)D%693WDie"-4@^YQZ$oCh.L1[jaJ.ZC)rg:olY:d',RkNV^jmd.d"NPs:&-GLY1PMo/imFMV>t9+Ss7Wr1Z-A"c6<,!Sa7VJgH$UMo][=#\>+,=[&ZVb=_d4="fB)5'ghR)Oe=RX;"0SEDCCK,)s]XBHdRA,bg=?(":igEn@Od-MK+aNPFZ9!Tc6"3c.2Ac2_+koEq:V:REAA:P`HG&)#U)W#,](GIEY=0/!HF]D@]B+(M;PUo^5<*2dnC>5Ok9-5*)nn,i^#r(G]@"k,u!@eWV[I`"f3u:35Y.I"HBhU>U%i`915^2g]O)&\q6+mA2?n1OO,.<&P7pJNB@STV**@m[sa.[9'ONAC1^UYXLG\t^GR!WD3kEBI?m2A2WBiB_W.kfn&KE#9+lPn*b'u%Br>GX=8W(`t:AM;&[7DXqM>fUd,ZIlnDO5n..OO@%W5%?=MKaBNs'CH/$gbj;uoc(;'Mp,\>)@l2V82UU8CF&>Apr?PaY1;^`<8QtO`afC(VnRdanT'P.m@mmDW2F)MBVf:Ob+!o)C1:&;9%6:1AaEOWodFaQ7`$iQfL:C.>YM,4WuD17]9]Q?;mMcdKkn=8Woa&'dLD9/:1W5.9i0@A'thq7.VDg,:(_$\pN:69LV/*q:&[K]IbC@nJ>/JHohds5qn<$_S)4IEm<dYM8&MC>gqGg>je@X3Wh.?DH.T\aDM7*B;A89G0=>7daGeqiZf-n$\j@#6(W1Gu+.AJF0*]>GDm)?SEH.*_=LWYY(t:AC;h_9rE]LdF+A6jDrQ^1k0InhL'UpK"6"o1_'FZ@E[qpZ1:"!Nj`(Ee)kg$(S4^h7dlQYD]IVtFH>fG\`PUL#%ckJpp[a<2MBA&)!)#)&<bfP&4*'AZ?+4=7(`r~>endstream
-endobj
-% 'R243': class PDFStream
-243 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2767 >>
-stream
-Gb!;eD0+IA&cSAir.k6tRE@Z1(9(@oTDY"n(YQN\jQg(::'Vsd$YPXL!Mg^sf68#R.8l=GfstARYnKbU!Bc9gG5#.dK,4H2pAZ6>3$,uRHOi4\``)@fX97K+S;lF?q;)$rq;^9@pce"fED5c2#Q%hINV-LmcgSaLgG_*m="`!8K3fA60mFbWgGhF"fOnJnZ=SOX/N!<N0`DO$J$Z3UCk$pf55`&'VXJ`C0:ME))OP:tP7s?VPlQ9p$'3T<apb'QdMYisbXEYP;M6`()Lg`T%M;KS1O^hsLq#1VJ4s>r!]roAp"1KiY*mr-r)*1`S+a7Xce>J<i)hKN#2H"nStmQ%c-?<9^"2U8f`&.1]\R&a*F5GXrAiKo')6hqaahk.)UK[3!cE'?'/5JlMEZm=<KkkL5j4H-6ZQ,iAti0`?.,)We.dKPqTjGHVO;EEhK(7Kh.tLs[@]mnOBNqb:/SU/EKl,[a`'I@nJq'm+p"B>a8kD7\/pV[+=t0AK"*<I$UhM-(1rTh#XX=?Bf4M*VZP)jU^0jLkeSj2"2Yf\'50Bl7`qOF7OsKo5=)6"N)8:-g7='`oM!S\eC,ISFZ[:Q@)JrbEoaIn]\6kJI`][da)t.c)-eAqKn,qjcJ^&+8f>`m\MMt-T`#SYn&*<VbR_1mnUV#NkU];9E_HBojj?EO6,403(I`S*B]mUHc_?=61:/[?jJ\.Y(n]^%<$Iek,p5/d^'A87]0ooA^FoEE,>5U-p6?UGRETe-P::+>9FD'&p*l*n4;&qtEluNMLbcn]ZM@bie?6)p*3C.BL0*Ad\@^;D-=hjcij]Vi8U1pm4I8<S!YD@(PU!W+`fHJL2g\p8/sOKY\Ne)6V^dSR4jA[c.=quQ>AtI"$GZGSJ)?e^4l6nF&HZgq\.r$a&kbi34F!W@j7Q^6,?3D(kX`0mfo"i9^^W@+r1LT,hX'WIG3A@o\G:V44%?PdT$CYOH+V,NYLMMJ)AH[6<-Gb'D_pkTqYD`=qOdQ7-9s,K#'8@:r7sD]blNhC'^a6>#2lsp9S1SE^N8%S[=NcM',gD?<g$4,pgJC$;&m7":`i\R^7'u@_lu_,@&<WF!Xn"G[USi?VtF#@pc]ne0g/Doh&-`9,='pb8/UAJZA8a0/(Mpt5X[q#.HNB\0l_W->a=eVjHnjoM^0!?kQds4ki:4dn?ar*qBX@<)0HVC2*AH9EleWo(!,/]o?[gjP^K<4/s7-S5?VD!/a9TB'BHOWa']i*n@@(>LeeCr<+<VeZ%QN"`"N8]HRNI,$9,Tk$11%QS!E_8r98I-kO$b=$H2<gJ.sM:BN1i2;=2YH)NpcoSdCGVL"-W3ROC[7+qmofo`;G7*,\VO-KG=USY7PK6&gNc-&N8fo7bPgk.dqA5K5e7!8>^3MI]K-K9:j[$iGaC1)NUR#sFRb>%\uR(#)iXAe?r:'uUlF_NB.SN$3pr;elt0>[Bds*1I+-bE6I562&NY)XdIg%*kbT8(0.%Tq"k4U+fKrkc679bprEZ2`Bp?dQ(5O"ueU;>;Q"Pe+l\]pd-Hi"X9o=NmFA;a+(*Qr:tUKZWMrBN(u==YSiPr54<?K.a?tXh2>J&FED>'-^S;@7P$&MW!NjRX0($jqfW"B_4>M41@-ua;92L]])E48B:l<Yd%DrK=u*`p#+S:RmSNOXC1FM.ITUa(&R&bo,#X<]$W^Q)IVKWo;STgQ--g37&D@'1kECu(#[kU!0Bi[1#+$eSY!hb5Zq#G`&rkFmdimQ0b1P5s8QfgDAjO*8Y"X?R4srXBXd?;nI\_#*]NnFoA`\`A((RbYbcj/F#t[Vkn*TXr1jM7"9i&UL<#/>%&a'9EVqKn\(>"e$IQ@<'.i@'Ej;*"jOoVhU4Vbaj4AQc)>\A,*;"/^^m^X9;krY&_<ot('YRUP)7.VT)]J.;&6&Y[jLKPW%rt(A1SmqN0^EZJ.c-IKg^.G!bUU9aq`LGa/GVQT&KGgC5Y=1/A?H)Yj-VGWhlHm*'"m4kN:M>Ys>rY!.g!'YA0.(luA[n)A89)D4IdB?^r6*r9L^D7;iCZ;bN^7s6_>JLs?7%O,;m.*QI+YA9<V'5B93%Kjg7!h4Z/pO;Lgtd'1fVJ))0$ZoXg4cAcnH#<E2TM)$;XMjW=m[;ID<!Y7g-+cZl64(koHt)f9^D2c:bEu<P&r)AJc4C$h8&6E=$k!9oSm=-h),'1$n<E>'-Lh]qKJ\g!Di+Z<Q0!Oo<NX9fgM);/J>`ZH2aNKE&nPPO0Q8NRjL0Y"(bk5@G.Cbn"qd[T(ln]P;Q&-#+;;Mh"`7^h&W'<ki,:ThnpL;H76@jGc7eR:5ZaWb-C+a\[2nP&,bb"kUF<frea8*t&7A^VL:YA=en8TifG2^^6)M&d!f34qX+2jmHd+?E;=o5E/e,iBQfki]2[5,ho^HCsPk+I<cIZRcc@4:Jer_7:#/dgXp<)c?%:$C)([3=J]*"0nE+[;AB5m1S=:kZIDU8k;#EF"U0=58;T.O/.%h',b7BscNk6RoOTMei/lqm9lB!'$F^F,qR&^l,gHB?Nf)rMh"86G'HF5lbWD2kH]/n9Vc]$tX1("BmbHn=p(e7C\@!C@#b/B8(fb?a+r"\/TP(pg55Zc'lPR+3"K&P=.m,:Y9N^M+!puGT<ARU-F?q8nn^@7`k,AaN#&NTh0%<r?7Jrh%>1dU"AWhIe#M8E:k5=><J\$)JIW]qBpPursY>1+4BDImPX4+BuG%\7s3ku-DfB:'#Rm"DP?(Gr[4`H(gBmcY<fgJDZpXhbr]RBBYX]H_m~>endstream
-endobj
-% 'R244': class PDFStream
-244 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2605 >>
-stream
-Gb!Sm>Ar7c'7CCQs"Ft3:^VJ8MPMX870,Jn>CW7cVid.:W;EeC=4/G.PtT9I^[KB!8PuoI;iY'-JIPt2fq$<S1M9`H=SQInT0Wm)152&ZgL(P"3X=DN/kdqVD#4(_htl*1*qrnV%%-MB4'U<R33qjcbdSR=i5*\0B=OttCuhqMd"?$@[a";"Y"q.UbbHaArKT%/2gPMR%l!rgn,AgUrk&0i\(ept"8>[D(_]B_EsB*JEpfCgM[2MDf.Z'qaH]G_QS,W&17cNX^kC$Z/mipb_sBO@hm+00gM?F%9:OSA68g0;)^FgbdCZi8?^jN.m1'B`eE`Qqku,<S8#:`X%L)k'h0&2bg"XXEeS>SU.WUq.i:>]7$8\CE.io)V9)ia7S>SA\Md"NrnKc=W)7!5HP>XjnWto8bcS!M'-YK!F3un&$`RZ(dgOAGGmYUOI^V^/%EV8VlibT:kafee7/l"-o;3]r$LX%8K&>[E?,R$M7ku\1)R2#H8ItsDJ,_Ut$Mio_]?iO1ZP)HllTh+i36(-oG6lkn@/if8V1)K_+)Xs[[.MOBNM!iCTSHfMqCW$/5e`kc+dir-Pffc,ule>m4PBZ1+Vb\8Zo@$3_o:T<r:Mt>k7-<Xd?_0JT^_m[8!$a?<Z*?7)dYP_^L<Of=f!Pc1*SA=4a'qfqW;eJ^n"mOF]!=?dKaG1]JuD);:h>rhH(e_A&c[!"H/V'1$U3U.a<SkP)423B*\8g*=br;%6=2p*F0=Fs*IM?BD?!Y8[*/WGqClf))9`"gcn_btT+5Jh!Psin8oH"COd\LaWh*oKdY!-)=LA-sg4r4J7"du@r/\&V,fjOt<-N'sL/RPEKL@e(,Q#`2)&6g'nCm(iPY!-b#&3)td\M]I$jfs^U7fUP>(]@Z+oPdW/'51XV(-`n`s0A+CXsB8hKZQ&$4bHqK=eX5R*,[B:@e$HTe!=p35[SJ&<b#D]9/]6]i:R7oV]9!JW-p+`7WhSBolQGi^c*9@328%B\[FAS1qD`M9%DA-/H3G1RQRB86#l+4'&jRre$;"<>,G:_NP0@Zg*Z>"Npr6B!I()@6hor#smkVZ9X)?2[H(h&,7p]3QDjGUkQl'?L0RL.Srd+AKpJV=P_/_keK^DU0VbC'bXo;d?g.7aRYRQ.Pt<pk2B1Wo4$P4?8^9]phX4"'75L$@:@FM3nDPD"PR8#Q@/b_S\`c@I0Ws$Do2]V8-)/8"JmTrfVBTX<)V5:$G@m3"/$BtmOl)GnY6Gfh-Op@A$1S="T+C$RJp[-@lAEf=)N5K8%4]fC?N0PZP4>4%4F'lAJdVIisHqk?cB&*>?K';(@aX;#aI`Q@&kbpJD+lT#eRSTQ6\6ph&k(0kj9p$8g7Os\<Mi/YskbkQ29=].J<+@]2hkceMnM;WI`V@eoX^!6?1`,c_u7(l<8b:-U/,a*mQ/1@:qC>F,-O<*O+03o>eR2bE*=EW_QH#B=jLTN#[KaZ/dF'&u.XnTst2[3LrqHmO8k-17ATI=!bb#gLWaM\Y-!6gY2f7\QS$i+ohsfJ4R5F#ScS5<PW`1jpCSb'"1EqaHXd5E`Hg'A8/u-N6FYbMOI72<=niYaC;+bb4PU$"55XOl]%>gX/&1:3)h3GOhj46P(#Y[hH(]B?,\]n;3e1U"EH*si4+\g1MCEb0)s9]V:L/+pOdEDWW,$nc)n7MMpA7li:YV7!pntU;jfKOLsTVI'C$JQWEOK++e0oKX4KNP.*!Dm<3>n&p0U&N\:(r/@+;Qrd6W]O>QjACc5cE+5>#=s'J`K3K%(TI:e!S!ogBVH)J^VT-l=Ki76LY03>":=f8!j8+"P9B+3@$.rf'c6q1b&$&[:R;h,?(N2>)B5fY'N+37c#GdF%0QJop`6C:a]pfO6BlKV%uj>nPGF?;W[0Bq[hVMkr\5XZ;c#O=$fu8!$ejpO7\SNf"\2..^00@oqFE5mBR>Ynbk5Sg61tA"a*RQ*N]XBl[Tpg)T1U\;Y*OCduHkBY6Z$7oIp!^8VqiV&*<8MjQ]d]\cC#\N"=^#:1/mnMoZ7k?-7D`)KZZ+lQPSJ"4J0q#F?Efpn9>#Gg\BX6BcaB7ZE![YLg.Zt-5-6rdB_>`?(&]J#%gR$E@p$*$5pk8H2LFtQ``XgtaQXP)[?Q/E-;flZpNC$hLO!=G@qa`o"02`.Q&230I/.+)%=':o.1/9OA*\[fg&gA2E3Q`fs'iX0CmG%']%4VVt*R+!.'NK/id2D&qja4/E#ZZQK$-HA1]gC,kWmGAhTGLF?_QX`e2<6:T;?K/g*=qmm.L:+9"H^u:$TnA#GIB9V1DDoe>m]()RMYJ\:AKNU#m/-4B>4u%`k,/=ZZq#T>O(5mT=&kY.ii)<hrfH3ao!:NX42BIArO%q?&gdE+L[X)@+8BsE1X?BbgrI1[@8qGo[B7gW&H0HN\_Tbb\oU`59^g3J)>6/g+QO1C;dhlWW/h,J*o/5"Cq+d0TdEF'0,DM^%;@.Gm@%Q+0<j8Amj.G3l)V@NEMgY*oRf-[2"/YbLr'6X?l?N4?@oPe3<#\DQnlJY3*PW(m@B#(jqBII_0Vd27XgP9I$`mW;4WPBM)=B;=QE2&84"?IZ>#Ll4_BkofnGT;.>-g0rW,51?K2~>endstream
-endobj
-% 'R245': class PDFStream
-245 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2902 >>
-stream
-Gau`UgN)&i&Uekgs.N(=CN!&U6%Tol09KbJf-u';?-0WVP_UD9,UWXIn-gEloC_A9_.>lg'Wa9`P3aBD\b)CUICab>_AIbhr]e[.?=1V=IL%*e_"AV_.#?gX"2)<rrp1$mL@t%="HuE]R,ORlo+93bk#no*:W(9_G0cf>WaWNe,$<-'E1K93#5B+gV]?SiN4'_tO4h=,MjJD]0=_"QGQ4(\^GI$]4u?j`:4nbMoIL8$JhU^K]U^^sP'6_t04*FeMZoS>G'R_JppfaNh1hiRr'oPB=G"\Q<+[m=V6TO[o@5_ro][8^P(:XJ:fOJp`T\H)YD'D?!U0em\9VM`GRMATS-j&."`6NP12@Ip4//oo-.@NSA?t!*r)d]=8_I#')fK&8rek[nbtAsZDC&Qeq7Qs:dW[H+iMC$:](]sR(_\C:\F_31A!i:/kn&_X_V$XtcTkW&44^qo9bj#!gF<=B+6U4g7)mr:&h!$F\ReU_rifCZ4G-=p>=l?re#L4J;Ija7-Ut->XKE!.37`opi-c(R7iBrnPLr_?H?+lKc;_mHc8brS.8h/6\WIuc#36tl[NPU4iFoIe)a)3LbJ0hJ\$GK#>bpOD7uT3oW3qLOW=Y:+XJunW+B*S>3^Zs]8UDgZW<cW`PL$hXD_9a8-p4P(Fb0E#-e!IKq!I<d$o&+5\?_sV(jH8oEJL<OIGmPFIM&,P5jra3@C7J1N*K"caFf;,a;m.Ffn`o3S&#QlLL+ZJ;WP)&_+DA&I;D=m]s5k7NRjRu#2dn4<b3`qVR,M%Ye/f_(aR$@&rjO5i6%$QpS6k^ZUnqr^R;DM[k$qJdXLA!EO`&^bN\Lao*rD3IZ86VO"1o6'6X,$ptT72+^Fe\c/@UGDT/IhFrYIm32<Yh-1Z(fjgn&EP1N\TPD;T,b.VkG0:k\J-J-^8UB*;,8%cBNkLGWc5(@eZGKQqk(7d]M%1:H.\3@2nDJGHPF.fKJes[SEQUW-T3?r?/^7dpPE71g"L_usAWC_tg4Z_ThN-U;:i%'?tX7@c]`,$2Qak'%gqe6<8KPK_0,QNckSQ<!o0]t/Q-9a#'c8%h^Q3]i+jECka%j\[3dtaCh-ZLL>dZ"hV^J#6X$>K#;?Xj;FOuK,V.ko>'b(reEO@D!iZ)m';hi[h%&l&76YYr%'`7F-eK@q]7e&p+eC^G!ud9!?5@U:@$X`DBQ1>F=B0USJ-cXAN!7J#X3^+[LBiaUl:0b9S.g)H6q282:/bQIWu11_b0paG.(_Pm=+DuO..UPhPP%^%58b?s*hJ!NG9c%7W946Jmd,C;4ON!bp6HO<hMX(MsLLS$,7<>=.H,,-3Un4'3tl5&7U.c[NCX-D]*c.g!A"h*-OP2[$h+lbKF1+hc_LCdXW#p`;_i?&K$Z^XYb764_iPSK55GL"un%OXe(S$Hi0mg6OZPUeL.)_(Bi&k8Cin?H*e-E>56.I3gVGFm^u$4D"Y7bLs^.O,lT8VGPl,JmR'P`SLG9;M*uf;/)-bd:fPQABU[bXIZF5.P$04`9.XD736FC(^ubWmeZ!m+,!rC78`B>YhfO@P/d`U*Mag^*8P,PK2,H2\M6a!1tk*^\:I[njEqTU*[QK,.aY3WpU@S<0WV9SWY@fGcf8%=!Q>)'mYjF[.C;1o(lDQ>O(ugTkF,.`$A2_l*Z(4Bh<F<E]IaHJm4c!j)+emr4^9q\4p9'p9u.Hjh<Hd7)[)k58B&+?$s("cC='G0t]Gm<0o!,d3lqe!W5qD)d1nRG"n^/UmLo0V3f:Z\7kKW1)TnL35lk?!'`()Q(,;mVG[*dE8&cEigPX--rAU;"U*Dc3G,1;+mV1n.?*Q/LS(GY/`V8L8roRR5US_f<<G1`-mWGl7H%'-CH<,cb:o3AB<%8k@<aG8JKIIU$CSesCUUdWOu\"9_3A5M$2>XIoVP*s1Y!M>*Rq!2GN$DOFS1uBK1MPsA;"O'gi^%<49dYWMotb?=?IL\*1FF7&9eFhG[O5-(T4IL*mM79\.W5`pZ1'YbT4,q@G=[\-+fSK-?;Kh%purZF%;/ebmP8Z1jMXI]F<`HS(e@Z9kRCO#J4i<QKK`9d;Gs5.aC,c7nh@"I`EG^\?F/g[3spA%joG,-'&d'V=_@mDsZgnhqHYPJrnEK.Vj;m@aQ]ZA;<3\7\J=-<Wsg\RTR_NFaXcWWE_J\DlO?kJL+\I=NWdaGN=^^o2AV![Z#&$ieK:WppCZ]"eVRO2nVsN,4lO$J%E7liRVH!1"\NoYU;5+pLr^4p2iD-VGtnNPO>,U6mI)]C7QslEl)6l3u(CYr6C:V]]2OBeLO>]/+:lTl\:(A;"eX&/q@^>\phZa3X$h5\kXVIpV3W,N'+@5\s;6Z,Kr9>D9;^n,,M@lXFqHd]Pp%P?=EW3SRQ(gSjP=E-FIJ2Pg5(S[a._1EYNK@=g&MFOV&E$;mjDjX4`h2U>.U>?/kPFN#_>0dp[!"6^^[t2.B?r)?u:*a*\!5^;+%t-!JAF%^87$*M0L5CJA=dSmp4AOAR7dAm_fA>Je#gpa.>JP^DKWVBU>W>!*]o<ts^r1Ac?T`>MU01lB`t?i0UZd^2I\C[Lq!qqg^BQh2?!;#4Mf<8Ut"HFEI`KIctQ>D2_(YW('RLklPbYP]V?LckQAC\0H6.k+.>&W^,'*;[\U5Pc/*q/kah0+J>To^QVeI`k!(:p!O@G]lX<j4`pFDjIYERmPZ+F8Jtb^";.MM'GX?:2XdP8bG]O9nV]=#iM8tV'0CnaVM?V_3)?_lsFXoFs'.ToW^<j@4;s(DQWLNL#50NoO&9j$Crgb`?ZKL;&27;^%JD@bspF`d^5R#/W;c31S3U#9!M4W2%T*cS.?`XAApe_leA>L2!<6Rl9PPPmrAK[@GOB/"05?'Zfn\dhVW*(%,_>2\&1L1Ij.qOq6U)$olUe;~>endstream
-endobj
-% 'R246': class PDFStream
-246 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2747 >>
-stream
-Gb!;egN)%.&q*PUrh7Lgj(ugWOeQa":Yn&mP8\(tM3ZfK>0d:=Jelo_^_!.QrV^mA,Xk>69OFZ/;Rr/!5bQNfFS>h"_[ukCpAZNCpr<Gbr21'S!/h!XcjO9%$1AY5?[]>3rG)*eKHTc]@sk3'm_bH"[s?H]a:H:pH2S(_op^Z4hJ=s%70^Kp@5lJ-.o*c4/NL1fMAnPJLMpSj5?Rj.0)qF>qmCnJD;Uf(FPboFa#nN=*s_a\^Yil>E=c9Enr-5ZN)3EiLG)^:&2Hl$QidFBjA!c%TNA5Q1&fsC_m?\/^g>8g&Zq_U]YHH70+s!Q7P&2qP_2T$i%.#I,/^,9bmi9B"X1-<kP3-7W;?2"1g]Rnj0mKt?re8m5J>\D^^RG(<?$biR\qXuKr2Bg?IC#JU%b\-cFd!>ei#Dfa%;_!'VI>s=IuE7E_F0#BfLMQTB3..gWnSb$]F&*O0FJ<W(^EqDm3Aa$,Q[[V'mWMnKq7/Q8XIt@l"j@&)JZVebq!BQ8jLTBGcf$N>]@ij<VUe3\2^k7&*m7b][C=M0Zt\eA.6NfNP3TY($3AjmiJ&-\Gp&o9=*#_j?YINGVqW#g!BrHl\Q?S_\T^JnQfh_Wd7.W"U<Qh"1JW"N^Cg0H*?>W$7WT1\V$(*l,'<[>T2?Kn0p?qG+*0TLWJn"[T)\/r`_Ki%U"T,i@Uo0eh($PK>E/W2_7=^E^CEJWOYibM1fD$C:4A.W,K7\F"&#X$Rq`7$6RgD';qWfkgHrn-%4,9")PZ*[>UcKcVcZdmj)?Bftk-(YAKYkLZm_pliL_&!:Tj&oK\HLC=5>DmF.MiTg4a4)]m#iU%6nLD.;G'+;kR.7P?_:eV`)f5BEH6Sj,P>*Xg'Rm1W`h!Dd_^M-38?E(eL@ZY5i-!1N.'U[aHCr7tYM8L)*n1A/cZ3XQaS4;cr$c*Llj=4-aY`\J[P0nnlRBa39JVU%#fg-+LQa[\r/*-FsgoSfP6Aq\5,_S0M8m_/Qj*2K*n,HK^N]jldCC^BaA=><S4T4Xdq2`j5*Lb8-*HkRHR3M0IP&rPQ7X_)L\VpnB@W3m:r!ee2Y^kJ#\';HXk`I?"=c\\DQF>;3MM+LS.-7R'W"5U%Q7FFJ=<fL3AI?W0aduF,=tFO#B/At\J=,a0_uWuK(,@<oB?^EsAgjkC'.%@TM%h07]<PPM%%:XpZ*B+R`Q9-pVr5.C)p<@nNnVtj%4LP"QL,#<;qrr[*[FL:s'B#$hFEc$fIrTiJsC1_V$3_Og^dF$e;R[!QjS5tP(\rcPE`l8m(a/=BcP9J,]^,;Imd;U:u#.i.LIW803<sFUd$`Fi8TaJD)j/GB\2j[G`D;=#81RIZ#e_%%4S=NMH-odeQ\%N-19>ZOSh>Cidg8j_=VJmR4PHL*]1<fc`lbF1a%'$mJH:K0>t`(V;rD4[36`&MtN*];R._1\Zn=ENG5j,Zp-_;)VE"3j[]cE42LFE>dks`>/_nr%pWl+#;/B\P6Z'b`uLB0c^3R:6S^O7+1SW8hi*c[&l#<8[V_A.$HcsA`!2?jb1M,#Ud8O[m80T9f#7u+O+usUc`+io-o2#FCMc@9WqA6hTEC'Ve(m?mIB*hD?F!eQk6,c]N\uUiW3_soPnt@n\s#9$`.R!oe[Z2'7.65R<#9Tr'k0a,FfB=^Xa?N^dGE(@l%L.V*''WoeUt6.am^,\XRc/<a2JW8HG_J+@9oEE5C9&i8&K:$5=?\\iAd8e/EYfBk,BV[5Oo)l%Nm0?5P#$<<2+`Bn<dT$rt\6[]#[I:rcV(lhTUI0&_)Ft"H.Cc-6]]#Y8%Pl/hg=^<YULL,%X$SiSe(6\I.1"Z(Lm]3?3@_amhOO^!YF1k-X#XPP96j?MdYK1<?Q/4mCbRe!k8Y)O2a-QoV?GX&GeDrDsfM?GGanK4+6mmXJ@]>[gthi0)bcnLQ>$G`D`>-?KCfB]K><%0)/#Nh'SPB>-=X2-@]o<6$TSi.slqD%H9(Cd7/bWag'pFs*.K]6]9gM=6^KT=K(U][nSQ>-:ZSR\B/InqWa9O$=^gEQcVa;2:6bj^1YX<*(I;h'LR.Jm+@?j\Vq-G?6&J*^f"sG7T"Pl23i95;UErA'rG*1:9_ib##sXlnQiC-ujG8N/Z5#Ph*Gf)-CMl[Sq`ao$3Ys.MF9"cbNpNqkHg?GoR39a@Pi[E=_?Hg;h<LfMge'L1a4-UFJc()dP)BW)m?@+dHV/gY5ei&lNB-QCliESlQ#IdHpb4K'0\Si0i$>b5O[<I_Rc0"-Y$(YD<>i:3U;U:V9t<4k14$]u0>*VS#=nY[ic]k4RuLqb:Od=@hWtUlmg7XabN`-h@T2!aeR6O7D;DgDG<Id4Mu(R"(QVpVXdni8AU9fEfCA)pa/FfEgYk2\5@Y)c%7Jh62V-bE=Fc"D(k':HXs#Sj4Jt\jOtd_kk&(_=FjRGM\;?L+`=%$>m(IT1T_.$'mKU@4jO>A`ce?133T/G;urm*XpH0jO[f%bq#+cA)A5Z],'^QM:**eo;F`m1mrT`q8(Dh1\l84FG>N+eG&"nhUimY!e'Nb*PhMhK]u=X^DXVfkJCP[&4?Zi0h?oT4sYcH[ZVi.r,D"Ns6tHd',N3*Md,8(iK9#n;,SB9Ye(`O7E1;`p/$pPJIU?p"h.??)FIj#[JR=(=4N>Lp,b`4G?`T<j6^DL-\8fIUReEaZIp8-+EVpQG:2c^DX62S\J-H5D$nRoI3"%,_0KNu:$KCA*W(JDgh%m.T2kB9]cV6dpQ%`M]RKO'-8H+L~>endstream
-endobj
-% 'R247': class PDFStream
-247 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 4322 >>
-stream
-Gb!;g?$DdJ(4Dg_k!/&a^!dP.JFVAg^H8o=1QA<]LVAieVbFq:(oNSpl`Z>%5^XSDC%1\1B2,Z)hF@fb9B&;u`28#)pA^V@OCq4,p<"P=99sAQGa:jcn&W]6YJ5Hts#ChMpPA-=F.[2NjUO:n7%#pAB9);A+2@eAUH3NdF"7ZHZHS-b=;7Y&TuOY)6^9S,>MPATa*C";J!9!/=S70Js1XDD5J#OlS\S^B+UQQ]B!rL,H5S`GjT`%O:MO;AiOhe+--j_dW3+8FMd5Vt1<JNU&s;@&[Z/Gj3_>P+*_Eo5D_M]I4aIPses8-sa3eSE(\(dO'9a]rVK!Ai8t'_5fo_1WYEi_4:Xf1F,#OelX?"&ebI9Qk?icG89tF]NA@LH6o:dMr]]]R1a]J#WNi_6r9p&]$/(%*>f5[8ZGY4^TMHmjjnE7D",`C]GP[A.7Hr!DE7=Gp=G0/m4h!UA+S0j_-$:Itr9>B;rd..:(:Menr_Q_qO[P_Dk2@1qf-+rd&-?5tY.Ykg]l_d;@(b2V7+DZcSL$i(+.;`e_LL.`!jICC;^'<FH(7cH\1%a<CmBdUbG-jKcjUWd+<g@K'"kt5-a$h/>j*\0_nmp8_OEH[u9Him9gNZ)gnpNgMj0Hc+Nc.O<8,0nel%n<\*c(S>D9[07\B?^hBQJ%]18^r_Q"1OUoX"tr3mV_C!"*n<m.B/]+gRjfK=5k7D<QggdC5L'RsS&O[,lIRl``pnNnA:0c-8GaNXH[[pQUaRX4(obPkTi+?W=_>S*X\]25f_M6]5$miFPdX430.-?=_:hTqUM\7`C7-.a>Bh@+sqIrCtCLN`LAGN`O<nl?5>^%#kVQSlQL2e4:hIE7V\13jH7#W/Xgu_iL_&.A.Eimh;XhSIA)hV`-[u;q,D.i\\B--r_q8k34?JG5=[2d!:3=KUY=#,4#*3=!!nOfS\ocl_VtR@%h\[E+$@iOKD\@rIG^4mJH.<[U"o`NYF;AM!*)8(0%LafEjkYGC::HB<qTW4kK,^;R;$tBGYUL=T\ct;;:GcPf7qYE9>H>P'XZinPJH2jnetMnp1lej>EDY%[U67-)p#6laa*7cWt5I1qLWN#F="nr*C[`I.f\#ZQ?f)WLNA;<F035WL%`b,3Yl>^m2aR)foCe3^8*hhE=)M\%FO:(C*KjR#Qn(AG"Pg/BiLr1.^Wl&)6ha1VLtpMgU_\?'Y%STjCDfDXn6@2!MSF00,ifloNhhl]-AK/CPoY=J6N8j>n_]6'p=Hfl(Yj?;3D19tjnOGAuBqW$6P-!/j'?89Y@$O-j5\KQ%ggL#:bbf4^]#K"7!O$nq;;h4i1`p?_J6-2DRjc#1!tT!Zf>ipu3s;\-*KlTMA.Xiu^;4L*!)>[2s6&DUS,d169\Q-,ibk0"F%8RrSh*d:'p38ZYJ:MG-!%S`&aqjVJTeQd-N%*dpt6Y)uQQW0MHo,;k$n2O(nG_`l<$br4MS$-cUZ6BhDiP;^YWdcDBa/jJtFKU):]7lr$ro2u&qe'NSG(?qVgI_%lnRNorG^"%GTD,\PdY#?>U:QZ6QIPVK8k8'ZM><TcJ6$NhLdkmlp.[06*]c.W1)q4]B4X&t9qRO#^i1+H:L8^^Eca[^X4]pa!Qpu9"]f$_"6:E73^)66i1[:aIDUIEN#sE$*^J15re&7P)jjnk4=%IqbF-cA3CHVS_rhRK)3,g-5n>LfnKql3`\9NG\b:O2<fZ#\_L5c?>p2C]p6"5!d+ahtW(<ZK[!@a+LY=299BtG25Va6`#BDN5-^u!6/mEgkHVe$e?bA68=q`8o334IP`b\1+oDaa30so-GnpVP,hsd5eBjT<%G]uS?`Pi=Y^Gr@9$Ecf]?bBkGMu5VuL)qqTaAqi3[K_V"F'IcGGgcoD-(C1hj)V\XGP6%Pq'l-D4E$fg5k*hY:@jb5Hgb_I3ha[?eq;`/\+Mj.2_?!?a\$jho1ufD9!"!N"-6s;dp:gK(JkiX=f.@b.0',6KJaU>Go=FO\VI2N"#S-fc"7j6f3\n,15nEPhNCZ[ELgc,;m5>PWREVlCSoCsE3;3][Lkmr!!WMZhqf7iHPT<Q*9QhfKpehdccFJ`PNQH>CY.cNk7R1L_G`X2#H.'[!VQ[cc!j/SR2So7H_<<C23K:(V<@/jl[n*GkO]eafD2>20RA19GIk>iqA51Rd(=s$*8(G_1>c]k/b[2s]ue'0Qoi<3)5%,bAq1M%T)hQ7N<XetJ(h0`8UL+(bEoEWAt=bl14./i,h[tkBB!a1UL!fP[`E@pfQVS<\NN@)%ML4f\QEfT05PE!kC[K8qU]Xm)-QhZ8XZ][#>*%]jN#bBQ*lZ%-1:6t@d8ljpL_nJj9_7!gW,IPjlsn91%Y"AUr0kcKN#W?G]mN(UMK^bb\$,(o.dTCdBl^2kG-.sg@+s,UMJdWjAW@AoliLp+atMbiG]`fiG]TbiG]IY_g<&I2t;nZpr(9j8*<_X2R/\A.$>0hRZCpFM2f^aI*YL;8K)A.'<^2IKp1uA"_W0on&2)!b4)gkoEcDLCd+:''(:5(LV5Hhd&&;;h7=+7&#ZjI_]S&L-NbfEjGJA2eN=m)o!S*f:i"SU<o>%BrEhF"%[*".a>p+uWlE=M;X1G!G`FEP*A[G[<ZJoI3U-P?nMMT2'&(])]E#Y^bD:(`eT"3a3+UKI]3P[nH^r@>\d4/[q$r#]iX;]_$9K(dmSt%rlDi^;oI>IuklO1N%8AJdGJU>CM]%QV4[n!ikY])1rnZLo-L:kF9SSLA"@nbW(%DeGp#7\YK+O:jadT4^r\:0S5fR@HU(S_S;q8iON786V\-t]'Jg>-O/:dplCsf0cHneSql#n2h<)_"C'eg2u6J.^2@te,4:$D7d<$C:jL8D0_&s"at#Z3H9PuWor9uEX(?Mf^c"b>lj[9c7oeek9JLap#E0nEM<Qqei?G_ZVTSCNXaCL]WiaX.orfNHWI%Hl60d-Fnn,NB]YdBO,n&%ETG<.^oU)^M(i)H>7*^VOriCMgVpB8B;6e.70`/#u"?gZCAHW$It7BsEbY.POOD&QR)6`U&TU0qC_^C2$n"$^6_@,f%J&*:BR;b("*4\Z?7PJJhad\5o?h2817m'*q^6QFM5]Ta8pH!`l6GY24i7#gNPS<i@=IhW1gFY-;&%4m]Lpe7Kf0A>G\L0KCm*Z%:h(bBL?Dm)B,[LCf^nknsp<$#GW13l06#(D[\:*5clMV.V2--EoLbklaZ*6s*.,.ZLV"Q,.L1I3=]8<cX/Z/V^#Wjk`>cR[P=E>r2$A0tq%oCbcocn[o%&&/:Be7RJo%\%i]0U9_[M.)tioQpOVK()RK<g>.`tTYH9)D=MI27TqeQX[`/l>#=lZi<WR$H<m`(&>G>4.ViE8fk/.4[(MIa,biF.=A6/IE@rj-@lfIFZ4%M4D2"KQbP7H",-(!^`Pek+dLCL+6#F&W4X8c6):MrO7Vj2Sdmpeqm)EO?It=X'8^Be,8B1?>$CtShR0\_mf`"42'.c9[@5/YS?RU#JV.Uu'->&N42rKspo%%kdWLV?=19QaQ$3PDl"*^jn+@IOG<:7Rh19/,DSO?Gf#E-^&!lK*m;<8iM-DLnVdn)rmHa&m);d-cH=&bhKX.@pq(g2C,(2T]B8&*L/3sWCOLX`Mj;?_`PC6i`a[`duOPqsaSqO4VldA)8]pnnFNWj!G'E>aG."A.1#b4oTZ\fhr\@@0foA<EgOIl3o=PHc![klaWpM>I!;(qMF>Rph[ZY[l.k9sC"P<>s\D=,+k7[S+2PIo?b,!V@VY#X;A"8(*&sf2_qjf/,%DD30"X'G.!RBI_1J!J)[B7+KX`G!Q02;a?/=TrG,F"@R&LX+l!VMV3AaF%/4d!O4tGi^j\Ce8S-W$GF0G.L8o%/03JQ+b<m,R'*=N=9j`jj9ieH2,2+T=A0i=(oF?J3YoSA@TJV5"'uj2jD+h-*-_N&f/,%TL"_k1?#p;X;)L2<J$>$M'c<f`G\[7d0nCi/9\8d`rkW%F=(%DuiMld.`Pe8jlZul'+[6O@C]V<cd#e'6N#sRR@`9CbDCBjr)bM'6n2`^]$E[4?94Nc"8q8jB<bs_mO<X$ZiYu_g7E(A`U(Xo2?8!/Q@tSMGMBic+Yc[_IdJ3\Z<)ZX>JZ+?@n^i]=pXZ"+MBW?r]72rs\-6VAcN=9G2W&i(2i>_^X5[FoWLP!'SnRnmf<IqJ5/scT\/@a\Z)=k0KdpgIDM6D6lj9b/To,:kRp\&eHg9m"W1rG4"rIe,g>.p$TYEu.0c.uD^p-D?**$18R8:H7YfGE:<qlPp(uX'QTB#3c+,^4`)rYjCh</9fJ7g*SNiW&(/C%AD$GP$!HuC_7op>[Z02eX2~>endstream
-endobj
-% 'R248': class PDFStream
-248 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2420 >>
-stream
-Gb"/(gMYb*&:H4YIi&;j+Ph0>e+[sVH:856*d@?)0=4,Oge+;5;Kf`\^GDZ2bHV^2D7W8q,">s51-%I<B'.=)5o9Qgq]D[8:T!XN"U!>.koA=u(r5c$4J1KFpVjgJq=nn/]j<B6ichi61H8gn[:%eWZec6op[@(@XPRV19L_C:VSH;a[rHiME?#C$bHC`k$TMb3#;H)]VSBb15If=3lHP*Ber74(>-+8Tqql9/g$].D2HIOl<e-1?`IIZ;cOp8+VNq9-,n+>,66_BmPD`8_AI()+2950!nYM=NUa!,Lk"8"@n?JgKKS!#h+uB<o@sX.SQ+88Y/.LO\D'q-\2%Qet70g[rCKq,hZ,Fs'DT=K`d>I7E/XZlu0jMn4%Aq3fV/9d@\SfQ2&79EcI)7@WWm]C1o43+b]!O(38]6de"ig*a_JR]s=.-=F8"GQ=aYZfK\[dtT1N<'Yh5AlNC3+(!=>"&kC=B2HncTL2pHX#0%MX2"Ag101=@QaPZ]/N2n:%_%$;PFOC,G>^ltT"pTK=-P-BfJ@Y\l-Y*IIL=K#tNu:TrbUP<bn9(Vo&TOpXC1;!CM_MtTX67mXn4'OJe%FrE'cK'Rp,+p3k/4ASR7d1HQiK5_LTcL-H@qUJZ.OUG@7-qHcPH/MH^%p;)!DfQ8IhnL@*,(G[V\jF8NkJ/ef,9a21"IG7,e+K/E\:;%i\]ROu(^(@Z:ieDF#agI90;[+Z;1$sK0Gn*?NVs`uET0oK\]4?k)oq,X4EcIA<VnrC^"+s@^/`TX]LG?R*11M1.06^AJ=PXi`$D[[$IBY;%r!Go7G!>99Z@<NH#)qq>Zd78WBs^+bd!kaXB*Hf@5FFD*m-"B()s8DAc.f)Lp+)%,Y]^RX03.e'3I3U#o4/26tqQM^f"iE@$.3F,-l.s+f90OkX&cjPbInoPGFCQh1>1SLcMf&q[bpTi"m,3f'U>tIjmep]'aE^`5b63KC:#D^+dVZ0<hg@bXa7Nd]OMt1]m+[R*]+2k&B$CbeU.Y;dZ\.63C8#Ohge_g&'Ca&*T$Cs5C<.is9ELP/tGZ2eS?hLNJg2"rj+pB737_7c><sfsQE];giNpn#N+">OL?4IFB=D6a<dM#tbW/8Ko=?5F2jHJ;N"5!Yl=t5YW@K.,W)tIHMA?2a*d/fS$CMTDq0]:%q'?4'KYiah!M/1=Re7<@4m-L]6B&-5pGmlX?)M<JHnYZ`HT08EFSRHmGPPX;S8"/kHWXis&HN,j33d6ZM;O@+%98!tKJpQ\i!K$V!3/mHngW*pq+L<@eg2<:@QK:k_W63qb]Do`hA)/6srKjM=!"iW%P'2o)l%j48LUdN%T49I?!SSrq0]c6`*>LO!;9m;kEr`&8o;GXbn?<V+j57k)*t:If=eSP>0Dd@lT?FNQ[L-BjE=Vk&n^=HOPW_$h>fT"Tm@GU8Q,#ZA&^]AR(4E7*SDSq!SOj<SAkIF>-sFJ^tQ-!4Gh>>W!\.sEP\[FZ[/<OT\BJY`lu04-\0+;Mc]47;eKGAQ_uCBVTpgbGe+Ro.4o3'=aZI'^Tmp+=mu8B)JA6M&9f6JfD+7dKgd%/[m@d3SCc-L!Cn'fAC+"1t>/%K%r%!H2f6NMU<UBuM<-6.MQIj)C>&b+L%._V18?a/ntk=\^poMM8&L_Ur&<W:D&Map(At6G(9"NkoTR>77l4\o0hO<flU`r>.6\2Us;]n:kR(f+Ms0e[0VN.RQr1RMp2[;r@#h.Kr6q1,4_6Am-*[,UZWi!lTI=69Kl6.peiIQ^"Ytqs3(=pF*W%[)gC<!mEN'[<sTgn-C<q($,8@T$7*H`<b)o[-)^a1AnE;Xqs:)+YRr?9!k(b[dQug(m7+9r]1Bd&s;Kbg%K;HU/7jV#\c11h\&B4+]Lsi-Y4/$FPA[l<?Q.5$@X&$2HHVkr\:/gAOM`s8p$hNO]kV+/]k2c3>rg_hN>M#"#J1`ilDiA\NAhB9W+760XJ<p(+B[!ZlH=0<TiOd0*XtP(t;]V4b(i8X51V<&tU!+V*YpZ#(8"]6/SD!o6k9IFn-^+b[t-:\_s*bai`YOnWSUZZ1POZAQThX0Y,?]0[]Ebe'Q+b0X9m#OtY`B720J'g>8Y&Es/Sf]Oej"j71hCmPau'QeGF!#/=:bQS+KuoXP:_`mRN%JVO0bIra0gb$cg3Br=Z=rBmo7Dg4f%g_gaSnU63#[F`lqUu.kn!`gI6Q+7I6hS7fbl&b&Xf.Qokf:Hn7k5Ya1"'fFIih\+;hr<#=Hi5%c#sT;_:0dgp=?#'ucjq;M@!;FVNa.dV[j]\ZbK1eE>UQN,VD6L?!D-D?S1)AE=e`8m##bK[VFg.ul*<C-`uZ8`nb>:-fOTB#N-Ca&\Q$HX/q`,,i\DQ[4aOWWY[":02\J&c`9qLmfj>0d:F8")bO3(3W;YN1f7`tOK_[!_0Z3j9rrJ0S1L0~>endstream
-endobj
-% 'R249': class PDFStream
-249 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3929 >>
-stream
-Gb!;f8U&t"&\e-*rs.>Race^/Xi[0(-An/.:2ERe*24FGDFi"aQSusO7eu_V!k<d*"[L,QG\fU*LT$2dmjh@gZH3/sg\gM_6HIJ3jMs2;YoRk+:MeAJaNXt\kF:),^@FL3-16,uENHq\S^);G>hJ^*.p0<ij-/ZXYJ@0o3!ua+l'%TifX:t,?lqN9QB*X7r-/-*c><4[Eq:flq'1+`RK*(ds5W]Z1kE?I\@7<F^n&+,QE+=[[UV<j2\89WXCW5J@6)8L/[X5g/?m21HX_!'@l_*AZC(P=96R\$m\2Zj?REYX`k2^HiCbh\A,1e6D-J6Y&9G3j,YE5793>@a^faj&O2"rWOCGuZAU-ki/L-VH-I8F2_)iECQY0+AL2BJGG3#g0rb@S]*Eu&.d@/)FbB^dCZ**X11U>ur.sH3=:=>OUnf3qLTCfJQqNg;>B<RLHG@A#`GZ&igR'%c+UC1_DFqF/i0J7&eK^g^6?b]3im5pV.SBtI8\>opU((8=W6*PVMPA?.@(&QY'/+'Cdhq*%dme.1Pk<.H\0QMO6QtFYnT`q-Z]A"EPm*b3jOalmk_BGBD_MW0%_\SdFU7*suins\6q0qS$#XCX)LMl,`_WV5E^JEIu!!KmTepB56!jS53NM;=4E2`#06WoSKjSI]iJ,+$e^]W%">X#P$]R'[cpN.LDkN$O,3KUQcVhC4]_=@uFL<L>OV?pIFBc7]m.5Olio9<eM!HHhQYdEreY?&e\0Jf:fcWWA\hgr0#=KCquJA.cJ;tO1gnRIkSAX8NqQ?1tU^trmjid3pK`\@I17KFK&#MGGtY#3!oJF!j:c^U<j+a][?)jW>AW7aKI=]4jdncEb']O`N3)**12,RrF9og*_XlXLVhk=+YgHSQa;i*3Vr=kZ766tGgmbOseu*Ir[ub0%/Y/*Y/!=*aue4NRg6!h=LG01Na$SE#,AV<`@:`>1C.\0^l0:"XNQ5JkF:)j8Q<cin/Hd3tko+;&R7[u6q!&=/ta!ZmBWh>XDZF_#ga^K%0J>3$^K2pW0JK]@A@%mY)%K/_BI%@5@l?E`Ko<59!0/B,%,G+gMpRtD_oGsU"A'W`^2!/363`ZjYU-PLM2'[ArD2g_*lpX-lB(E3aI9=0W]+G,hTdLpq+2ie,N^Hld?[LF>%9+"[<>9t$l'haJ=_<%Th=>TNL.!W"^lp8SB"McN&N&M1kNf(.#!S#-CW`s@Tfs(N=:Bp[CA7)^K<Vb$4Woo)eo[%THrI'/+NCggAJte>[ZD2[_XnOQpgPk&PB.7Z&8-uKAn1]VC_=J-(3$b&Y[bO@JjoUOT8/lg!1OKHGNW<B1g9[M[';!Q#Spfrh8d>m@k#g]Q/:oO?Ej\LTAIuR9+L'ea!JEZ1@Yfq?*&O(2Jn7$N:1Fd;nMf-3OMNb(aUXsKXe%6#ps>X+4=?M.r9uE<%?I@B\Y;*(Y@Ca8q\=t)/O1JUq@A9fBRTaG!(HBZ5<60Mi6->6*=gq%mi_dWCeLBEXB9T`g-WA:aJ[][[_p6\M@=5D'\3<saH&eoCa$.]q-)Fcb@DcQ'39"W9pMNEnOY1c6UcHunK,dFbi^OU0M,5Qih42j8`(s*g<"BQ5]J+Cqo]d"WRmPLpOmUq8YV_U/<.<&SKtK=2;d$##Q.r4YV&NCZGT<^BIYDW"]I]YZ">H0UTDTB]PN/#qmqi/T!j6[UG$j[?m82YZe[N4?]`Su&NK"L#bP_n"[6gMKCd4uYB\\IoVp];1(qV2qt5:Af5ZkoTKIY40'pplShD\!Rag/4C"ZhiKMN]Ir8Ng@f@UNfaDT;ALg3**%r/(XKW9i6V>0d`7/;l8`mY/n?G@1#9.oP0i_@tUh4>(8r,B*rq3K8jZQm[ng:(_HAI]a,OGTETeR_L*a;0bn"`FJPF_U4UlP!PgdKfK.VXSfd2p"X+9o`fQi)liY)e\899@\aj_Y9@)f]Uujcr*S(91p=X";&.#ODU,\W7]'gJ*_0fV(+G^W1>'8Q?IJLFrfID/bOj5o5P(LKVk;p\Hcc\W#d:YT^mB,*an3GbRhg1W'<,Y5+6\_3DGDIiRgFtI+cCOQA^c2*T^+QTj:A]RE5_n5^QhKBKM3pm<E98cM)&-<4n<*#1XfC;)eXJLk.B^`F8HTP@4"m_8ni_[+G#`*+&pYWRU0"Kl!qjld"^!FT.B"\8M9"\P9gq3j@B8+%VFfb4Gm!>\WruP#'%O6B\G.6NCF9DZg:T&un/5X?sS.W#E6.!Zq#qD`j[<s5N03hqMmOIQX]Z+I'?=*Thr,/l^Nnos/SNc5@UV2_R7ipKF:GQmK1j7N7`pDU1L8^Tk;_pJhE2#PMsG^15R.[PSKA&KOi\Z<$`n42fNY.aU</,Po1\it!\h.(9YB^X/3p5_;<.>gRm,f3QW1e*H3^N4dEArD#"6:Gc7]-b9ZZ$>R4qFa.L03=d\IXhZ`Lqj>l^rl<bd'C*mVPiF?SfKMr)Y+lk6`UA(-AM)"-R+)PH,4-qT>phIhNJKVg=<Fh]!tHpcb;6.=8"Fb!,b-/1;\I@gPd`=ki@I:*0L[)jI3TBM'&)5^0JR(r/9.)_csKu%aU?!*@iEW*Q738U$-I<0,9"i?'G-AT0JoN_/>4(M_cbtSUS6ig2UY))<JDch,q/0;Y9MpV6$]0W=ZB3SXMkcai@LZC6,HdaqT(SB4u(uh47rL0gNKBI,WpKCg0h*$Gl!4__cHF%&\428h"(r0_:-GI"S#5/e@XpQCVVsNl2Qjc2f:hh3Ht%M9IY2VJ3r-L@bf'-&fml!iD(HF&UZZc9SRX&`kJ>qmdq*Zo'Q&]R3$?(jN%[ZEP>k.H2>$7d/63$'3`Abe&Q"S='dGZ"odfc#ho=QTUR;[;teHLQ0FDi:K0M"npJ?EQ?cpqBAu$nl*/PYImNP<K!Qd&$HV1UnHWVZWb;6T)=VS)\Xa:]iDop?59?#/Y=Ts84[c9g\?o@U*_k:)^8MOQOB/9%42O.qTn1t&j)n6Um/(V[nY`-K'?_dV/M"1idZT=<\`5b`k#"EJ=6XqI,nm\9f3Oiu7g3U4V;DlO9[s&)B45Bo'r5u;IRdWu0oC(<I21HHoS;t>'PK[g-DV_JW^m1`$QXLeIOIMg3t\F`_nLUX99_&*8Wlp)kU>ZD7DfY98Ko'R3Z@kEd;XbRP)+jXNeT`W1`W3X,be_DUS1I4%7_><3Nt9_)l5gk0f:-QG<ls85\Zo:YK8@b#[o(^Q%%B[Y@a'J"Y*(VC)\/sI7e5K5rD5%_b*EdT2HSf:e_SMYgUqGVj)o\<0K^,XE6;k.AbuoK/Em7L3]O.BYM8/V#N'G+pfYLFQ><iV$J727%hs=qu5-I;S#+>8O@9hUS(C3%6pd<M.g#UB]rAe_\&n?+rXKC)Z#]HE.hthLk_1TL-DFj*,2Y>^re?LPQIH&.<E"L_O`uo<QSopB[g$aGoG9@ANspq9Gg0;cWB=16MaZK[#,3^YL9MJoH?G5()8r=V--CS6[R64.X8["Z]`aln>+`/PW"tc3$!Ap^8!#C%M*.9k@=(bbQMO5c%iFo&aAf#p+ShRm%@=k0WNM-9g`sV(s:AZj#X<l1^qF,Tj58dY1$!;6Z:`ub1/$&3j$mggr?IUUJ'/U^t6Mf,OT1S6:4&:]t#$3BnV^!*-2cO?:HfhY)b"ONa"kJVnId(d;#J!^c5m<Kq7qoED3PJdfJQp9b_d)Hc@eR7SF&W;`7M*C$ueWoGTG)OA=K!6DL@.a5cB8pn!S/DLg`0;65`BZr.74Nk#I#0;BHEJWFf8Na!0@g1"b_WteQ#FNUDh_A6ocHEE\UU/NthQ*j_`dVIso&=p*UY,K=nP[5l<L?OlH.5]1n"*g><WkVh2&%g`%HIBKF=2P:a1`ZqH_m5tHG7'BU7SmtW+YVDh!'"^",o9Ju69kctUS^k.0r6#rFFZ8a$7-Ke)F?[o>be/c;,h=%3"fS0am3%."g[)\]D~>endstream
-endobj
-% 'R250': class PDFStream
-250 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2421 >>
-stream
-Gb!SnCN%rc'`D>\s+/7X\jO\F00cmR5e"2>co"7-%n3bi""hnY(VN.-EP5_oHV$hqj2@6h(Mea.JPAuUH1'Y%k>H:j%t5Ms2bXMQGs\+;G)51Aac&2CouZ9=nnN4=j@9/1[X6pGf;4*"mb)8t8Csipkb.*!DEsM#:LI/"IaETTqZ3*1`,R21L@Oej!ug)BHhp7X8]U@nOicKknst7-Hi8:iI<^6c2?V!pD.h>mB_m/Pp$>7B>\?S00-G].#=DTs6JR$^%e4&Z'U/'X`Af+-3%\2&P2D.Y'9V?1:O$'I6=d&>@4!:%H'UoDSWb6B=is;o,K56J<Nn;h14i9c9[$.DmpX]3QBSe-N$i/Yl\dmBgEk0%=m4TDN#Ao&g/TO]:Pf_aE9L5og0o7J@h1`dX^LuXIJ*DOY?F3sjrcGl;0Yh:o;43IqFblrp5XID*V-+G1'ljm5B)mQ1?@_P\:/kNi:7ZjA#9sr&aR\,pP7$KJNbPsj"0/BZM^0P/A,S9Y/l1qp'FC2N2o8GA?6nN7ae@\+p*/1CkXhqKINY<*2A(IAOPWB'Jg=6kbU\P,*JdD:<CN[KLV8AMVV5L/k@cN(HNtN/<7%_FJr[Sd85O-,)&$bs4-l2!VAmo!IOmI#!sP&XG5uU$_8e\0[TF.8aVLqM8^9K.(q24(+s[M$ePuUHI)j^d';(TM]nb?:^,mVA2-K-98m)nB<7%"]-GW8*f2X4-Wcl)1g?j0j#i0=EK4O<GfDDoe:EI^YcO`iYF`-4Mq?#2[Z*p3U*gAm<\.E([AIo/F4:<-/465ZJ[";p]LIH)i;:DX;^%&Zlm4pL+T<?H#.,*MP##.5k_t3a-;bk3OF%Ja%+kCV!4rg6`A,H"GmdkC>7Z7l2qhaB^0+ujWQ4,4$8ROe;A9Kj*uiXV5p/$C!F@"n56IR`:'?GYFQ!9SQC*Fd7QDacXl8-J((<^2Z=<5[>!iX`.Cm[Nm^P"u087PY[NZYs5daoli!8Z:@uHT>or-Iln93N04B41u-`hhLgqnld6D;'oC5dFo9a$"KcbjZn+b:2%,d<]UGc(Um@.)O_=_@4Ce'!t7P'W9YLM71*i%@=+[-U1&#)"0RN%Y;2btTBO:/*]@9F:l1&C\nW3M(D]dfOoLZ!D$6lsaQL!(KYng*f_>n<t.0lbmC;CKQXN7n#2_[O*>ffe'9[dea2u':<lMfL.r4[m\c+C\)*7&s(abO8s$G@lSUq2n[?ADJ5fl,t@Y#lDe>F*>iTF=5Z.#*,$YC2jLU,[\,,Y/<7\gmGM8h%!D6%0]:B\":Ann@Ls<;Y.8$"[WJIcj\kgX`):W3!8kX7l%Hrp(^MHM2q:8WDK."3$Lf4bJ3c-sl\"+=4O.sf7N_fCXom1u+77;"-VuLXetVi'(K,qRe]JuDHd(.F25T3Z1:JkbrP5=+ceVT!Sfia?1/M&=&C4PrQX&JZ8&A8*9ah;@G=?82ikao`/4</`H;3m4f7!V0Fl*5D#hi@-a)]'f`<AiO14!cZjftfAg/#%6CsS4WB!`B!1-T-I]'q)jK`LLS<<&?Kpo:>e+0PEhe1D]q:N`d-RF\"="4%<^`3_(1-*RIAf%.t8EtX\)=Qd(qVXA$!V(IMI,"n'*N>4XrCoe.)llpQ.66X%Hp=9MK;;/FdhFWQ`8a\"a>0#J=!/Yk(hk@a!mgk3.#mY45dD,mr:Jh`U;/OrEW<tQM%:;gcYTrOJ(O3=ER[U/'U@r44T'Pa4iSun_Yf@8_>Xj*nU.DfOd_%+:C^S7m3_@&OOOCNK]]tm/b4)&/\#BA>R55.`f4J%,fU/BZa0!$4e>m[$,-FJG9*BrsVQs>V?(GcS)"\HN&\nCdYRf+O<eJlo3FC2uC`n#[,HUrgUo\,r,\#%uTj9lL7k2UJE#Jd(q&J*u0K3)U//K:3()2N3m(L+Bm#ctd0.dYn"*-oJ4rO0>nU0l+-@V`Zf`bu7s5a_2Xc/;^(sS3i3q)B%<SS#f#ApoQXcZ>Ilh5_k]?N8^JP-6#*B*Wt=iGHM*C*X_4G_q/<P5;!)hfRH<e5bI$P0f\]%.?NfR!./e^7;2E:s1M=!&c]0!I0Sgb(_I&CkG*A,Du^f],S"A5#+,5#c&pmp<;(0jh[9C:/rU=+6e:V&mSn\rTmAZ:#D2B@8h+BcS=Zjjd3sbsncYln*p%iUp1)l_p;Z85g4c*fgh>W7)jff*B8h[IW*:0Y=#ZY^<>/mo?DUS42I,lp__mc/@P6=_YIXUQ/EH@tM.;bo?*BlR.i1.*QNkr_A>cf=##'BQ%&DF_^JSeu*TOjK3_A@k3.EQ*Nf2Ya=W4kr1?A;BF%G(YW*Q/X!qn"R<oj'c"$eWbn4m:bo"nYW\"6_+RD.Xp"6d%?QKm^%&J-8fq5(WNQ'MG[#UR;][uF!hiIR`o2,:]X_^QO!GX!bkfTMY/6Zu4o#o+l077~>endstream
-endobj
-% 'R251': class PDFStream
-251 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2286 >>
-stream
-Gb!SmgN)%,&:MkuraF^LFC\K!,ua6$*BBHXS=>aT3cuMe&sCV'!!@aLr:f"N8Vr<FS+\gUh6Fs48R*$DGL'S45Tg"-s$+U+:8W""/:\jrko>9U)o2)'S5(.jqVj_*4a]5>0P'\bkNpt7?pA>mZ+(kZi=OS$+5s69Att`Q%Yla_+UAoK`q=&dQjmcQ^AftsfF*F0@/;fUJ+_R2pRa+`O8%O('*f-8.a@\j$]\=#FHC;i<\b7&c9>"#?pp]J"1Ju+BOaHi@)]HM^g%h.2t`qqZ&k4F=?4_tiYQf:Wue@/6A^s]n>-hD5D>B`IMu:ed5#9i<Xsm@,:n2AeQa_!j6*`A3Xo&8c*W`MCGqKeaS5pC#krL(pjDQ.8IqWtNVaPPIeV9rCS9P'q/@%Qk^'oIX?R[EN^fB*mBcR9XoLXrUUWcQCuB2@4CUY^;dC_CRi!:_86(nW]9pKuhr)PCB4V2go-+in"0MO(]7eRfdIu0_GdUX*BoY`qNC_rTY]h/,Ynr@p])(44@6:(:)uc#(cq;,kFk$BViSZ'Mr--J9r'tmO+hdau]\j)G+7GjqTpJC;0CFKd^OMGgI>>&p&X[>'&'l=^;@j=u=A5.j@N7ZuEX7`QE!P,Z),.1<[O\J/9;`Mal8a)<&"Z57PeA$HZ(A5RA.S\3[jnXrZOaq<dNFJB+<59j<J(.&;Tpq-EiBfhWS9b?PcgPMU:H3!91H[5+VHf%abGCORKoru0qbin$qKi?jbCm8[i\t<_3TdVjLi^B$RG1?'E\:`LKDdjj>2P%6;,h#5o%HJau4;5!Z(>^EtV&f1]1!%?@FkmImO].AFOSZdTti\m$u&m)aS7qb<Jt_-?e&^*!7#B"d4hMU)lA+;X!RsQB;d1&!u!2=<l#L[<9PNgnaRMrtrg44+fFV_YdbK7P9!l;(mmIXB`PtOm)q8O:kZIm!Oju,Wg*V3C=%<$7809aF`sXPO<s\L?sJsh\CqZ/igBVD+GV[fER;G![)j51;-.-o+kE^,/RCdRjr[XE<uh#>LscWo[tPu*S<1lqcrBebe$B65o`'ZSEhS%>2`8LbJ\(T1fdmBb^&3H^1dgZYVNlq/q`p755R_<Y^8s@0NjYjai]iGFf!XfL<+aa^5Pl!Au28ICirb8g8->=(/-hV;T;AeBR."fqTObSZ:#YXTo_n,,&"3m[(4;?DF^=-o^ESmgZt.C2Yg5+,p:r*,F4^%`=b_CQH4TgVX,u\f;hLQ#3PJ,dRD&,]1Pf-JsiR:"%UUqcF;V]MK7Q:]a['TqRH/?3XTf*lL$+%MAa(c/%MU_q(+/0kCc\h@#*>=Q`F-DTmnm)fO5S+R%eb1kT#$<9W4+84`Guj1$6X$#>5H[@"!ms;GQeaM$$K9<SO8bh!e8qEX#TXG*NHur3N:m,g4aS.kWV5TN9n.[m<bHJ;/eE$(T5=68E#$:7P2J6)Wm7OYq<=%djIPkr4OPk!!Pe<4B;6Oj[LI6Cr0Veka![@]J8C)nAR6r*o?SXV$m@/;//B+h<!6J068&og$$?[Frb!Aa0,'rn3`If\-]Y\IG781fE8U-Fau)OY8BM!\Z[nq(>p)da"i@WirjR,9qI-(0VD?5Ii_,78oroSfoqEd4=HK_H%[XE._Pm1L2mcRSO:ER>f^bH5,V5I*cq;Z.+Y%-d-DT<"):E%;!LA&]]^D-Y\7Cj=tiuh?^UAjtdoXG@@8amZ$ZFX:b,.FSFLkZLB3\\"h*W3Ts?nQMVLo:rt/W=`)I.@+%F\XO;GiaQU4Sf)?\#Jm6AF`-,M&fd6f7AIW(_s(Wn:JJAL%h#b7p9oQpQ=&(hY3NYi<8nWGnKrkEK7;;,d!\^?<7f$$B5!G2hP+@W*TD%3^jPB@7*Idk^rqL=@7f<nYoV*Odm[EPSm\K)/]i95:p[39[!h'38I1bF"R?SRJOR&-DdTohp?HQfh'.#!c=07=:gAI=,GU+S5k9p(!p>Gc-beFI/3^,X&QNFP0mcGH6X(8G8^>J/1bO/12nL`T5h:qfEb'l8e=0<!$6*@kcqDnZECtDj[I!14R2Dk3r3]&(p4If;+MFL\JT2LDu?:Kar[P'3^#VcW%ptY>K8^6#hF%N\2/j3C1c`l?A"nmT<VNg88kk0bJ;k=B7]?:uFp_MqG[(LQBN?b'7Z]A[mn+c`(pq3C?O^9c8He7U4^/\87^JnjTht1=!V6eT+&nQWRc%_<iH<=P]P''R<7tZTRi,6:3>%3#Wg_>"to_r***UILJa]VjBG7n@f<GId^6#%\<d?(.5<u.4\GEDH7^0RpeD7p.7+8l;QW!(*~>endstream
-endobj
-% 'R252': class PDFStream
-252 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2729 >>
-stream
-Gb!;eD/\/g')l41s+/fUk8nHB-,7O8qijaBG&bdMY2)/j2N*0Qka5RGF@ds]pXe:2.EPKK(HG2+35c(B]aTZPcTLe-j,lP'GkQ?K&G!"bq=2lXSknKAiXP.6bWh2uo@L1[fT2@`4rP'kVniYqWEo6hcRZ0GTKhrD&UAd&$ESR8633X97qA2&c_GFum,Ns(*T<00qkNRN`uDc:o0:=omrnN!mH7.4jl`Pu"TInH41fp>/3QF'b4YMckhLGL?sQ.7G&PgrXQ;pTc@.&ip;"dJI-"4D.DngmWQ<hPRnIeRiEm$i,9Du'YK_sG,s96.kjAnmUnUAVpjkETK/='i;h?jukh(7H-lr9?#ijKqj)GcI(hXF.N%AJ9=-WWi,\G$;3D6kk`GJo9n(O9).u@E7-<D:%F)l[b-OW[Y@E@J$`*b0N:SaeBBG#=N/CIbA*s@'UB5tRliFc7Y)jZ4i:-'o&_&,t)iqGbYXrro@lkM.TSH5H@[:CHLOt;U'f%)Ra?H47#7_fCFLO[:XKo%aAVecrtWNH2Yr1ZaNm8`JgO-bJC:n>c?B=%?)Y&5lKIQI?c^WGr2Ja<C!$Es3:G&uJeM&E),+u9d0J0o%a>6Kg4p]C?E3u20#_*^T3[58kNB*Nek9gT0&<(s*B6k\jadb'XtLllk=&VMdtItI`6+uVTH'"ri--R?'7Q8tn^Ym\kr83gTOW2R1;b&")oeg/]]`k?_u-bZc.qOEFZhAZXUO^9\Wm"e3`0i*%/nr;B*-ndW+aZ,TI(lnh*Se=q8\>JUU([.IM0f+@"ZeM,E5MC&4DpLl/P^:[<,**dRU'BdsQTH0UTGJl/-ZtmK#Hf1-0imLEjsUUhC2S&_>tUA9F4UH:hn?;]PZEn6ZBON)]/5K(64\pD(&I7li`pmMqYa3r>FVmLCEdAPGiXLm^&iFRh*@@&>.7#lBJQD3jDrVFK4fC8s&^laV00E@WG*s:><f#'i!VH&,sB5P@sFCWM+98TFeGc;-<;mRcJqf0VRf=TdO(:\5?@CA3gi^DE0+4=%0,^=Z=[9-Oo\C"kA$DCA=4lk6XeHe?bZN#mm0#AAV>3pQD>Wmk/b_4f,VsSb&Ea_U@l<Q>bN+1S`"Rg;TP"I,2Q-uFM>%"kdk=VW#%S:q3#<oGo$%@pP.^o"R9n(o'Z1OPRN.-*K>n?U!qBl\2aQj!oNOinle_!/MPdpNOKSB3/cf`3WRnMMC'ecGNPPiI-QpK`P8*dL085Qr+>!S]YelAiEBhCjH'^5..90gIRaG@fL,M:+G&qjQpdI/RBJ;CWN=6aZcpKgb=[\rOKI2&J?BMi;Z\LM<_,1<,hf[+(oq:b^rAYZ!F*UmJTBIDjO>g0ZEHU@^ucrsgtTG6QS`IG#?uj:]3dQi@bG&(i\>qeQ&Xi2=45sV>IP9]H#!s%a4$>>IHK-".*'5K^$Q@Z'bBDS.fOP>[ZW*#P-]*2FH^o+TRt,5ZUh>-U?&b/Nhn/=WW^`sDhlhP#kAc3/=b/7?rg1q#&1,kU<_>*WJmV--"eP,bJe.V"1W`gPa_DP3%ML?\i&DUoi_!qWef[NMdk]Y-0I#e&YO[_]Aud6ES,7#K?lHW+FJ/:7EBSej%fEA&ip^CAb;)URh<kKN[n!U5`9p4/,R0=D1-]Wr6]@CL^qA&bQcQ]\e2acjU>-m02Sla+k3[+>89id\/.&sC5kn*eqi"\q$Afi0_PI,b.'Ve/")hI%%nAX/na7YHpf,n98i14:2Q_Cg?;Rl"C!QRQ^K62\UjOTb/O:/Ui7X7[#>']&.;\B4]r5?@^R9b2n(3\<8EqM"(<2qLTlTK.?<7nfg:L(adg/a<O!j'`XV`*@fkVR.7\SIdqQ$lSU@]Oj`n^XMQeM_[^_@RFknc?4Y0`DH,kfQf?eggP_DNCY\c<T!3G*b#B]l>)k(V*[OKQ$BT0cSWr-RF>E?VcF,gBF[]mF4U9pIj%W)ll2Y@_');;>pTO]GJ.gQ?,*'9?jgVXdPD6?5P(@]sc;oX)aM!F.:\`D.?"SUb`(J)_UP&Thq;Z'07<2&KjP"V^Ue7')`-W&1BUQ`ScHlh[-0V1rVK];Z=0F]"sN3*gf.=T)d<Do5]Gab.V+UB5;D%bV#k`;]eG[0#uIs%#?U&?_@32XS[VM!]u?XBrTIEreJ2lQ7%9nOJh5XDAN@R/*0!pIN(3eV=f@tEeD-mkX56I&)Lo);GGNdJi)]S6h!`$M73E=4B5F.s\S.]B^eK!k:<>+nXZ;!_&H<G_p?C=07Ve#l-Q@3TU7%@2)'!<;uTYV9c$$gg7F:Ck`^0*P/_79G/QWP)s)rfMhl(<@KlF?HKFF"m"1l1D/KB';/1#*[nXJ?4b1`A6<N75lGJOnda`#kRj(-@.*pqNSY)S[J3n5GCZ.8&+6_D[@`Z)2AhWX:@WDc/.?*r,>LsU4J-eq%,I#*rlO*PXkN*&&dsVQ&75_79h$7Ol0c&-D</Dm\/hX$#cFg0,W*O,Zt5b5EP4Mk-@^.n,1:9mnT)@D3'^W!Z*^W'Y1>DLi+@fSBd3sL_P+j`W""WW?S+0Lh9lM7Ncj+_QMS2+U\aSZ-'<#BeqkRGuT%\DK^^BFFJ4P[e4Mgl#n&!Q!,mAB*9uEqi2!m_'``<^S1K$h4-TJbdWMV?8nBJ8"J7qlP%9,YCGoRZ/8[C1QM(1Q=T.-/=FjVQi'qCknOd'"WeFdF7Ug1B@*+7*=ma3h"4Ku32GVm-W4e$oba[\rLn^bPLm#;#A[!QrV~>endstream
-endobj
-% 'R253': class PDFStream
-253 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2810 >>
-stream
-Gb!#]gN)%.&q*PUrh4+6f%H3(Oh1"N*'9S4-=`+5bfnXMCC27/#nmkH!)g,rlaIfU.I(B3:1dG0?&;87dXCt6T*?9%)o"c7Dk$l69]>+!&Ae^MEsTBD(T-ZZCARk]BD3&T_g>[FU0u?c3IB(>3"O2F_4]TjUE46C5JpL=C84'Km.XnV65Tq%)V:l-#=4EZCqFVlJ?s4a!iCIao^?\p?eiujo#!,9edTDjd+"N]$k#Qk(cJVbP-7<u6)6$Q;m%mA$*>bks"KkXP-$aK$m]IDK2M:?!q[I1SnbS8[Uqk3RH0HDaHdf0EML#HV@ps%2g3/L*l&KI\=%6R)=F;N-&J:3BI6[4@`8tRZ\0\MAf4D.rK<RZ_[M<&V^nmr645]4QbY-hQ3c:rVRP@+<WfJ97&u"FV)-1m_G/:j^KFf6AOal$JXGd/Ud#:&_gmER[Z?6ml?o][Nl5V`9H1Fu[J7tRE=mbTAW.hm^hGf&*!@p%G=jsB?IGM+Bk?*<XI.+WbfVo2AlN2[ju`[nYh)##T(6k3oj6-!5qi"6,CKh1_a!>$3:&6$R9oJ#,c?8Mq=4=!]?A*r7)Sm8j]%DM%W\:1FI*s9BMLC[4PW<-e"42q5:U`G7^J_0`k>AcLukiTM^?*m7i-SU8Z%aHCW=aFmbEFo.$<YkFkFJlcZ1#;7`5QW"F$p[UIA)NmCp6,/M+K9(30df`B#BQh0(71V/^i_.D9Er3l@d?%lacED&oiOHS39(PjT1`\Bdi>O_rp<6W5N,:71rmMY)Y:TH?=a,@SseFo0)8EOfcgK@.Ij^E3jh"neWG&*i3t#+1<&?EGJmMu]GW$kT4k%ru`DqdC%"D"(L5ksNuucf[hQlV0&.l%654b^)]=(pl&E/MP/(MAnsN!m!VWrl^oF[qPC:)#g.Z0r#Y\k$jI:],Qka%p_tRY,JGGW5d%a0!c>kT_"+_N%2nBhu+,%>Q;m_gnNSg9/tn4aE$uLW;I-Z"8=oY)4SR3j[VAl7*.#ZQ<`U-:pJ4X$k)i!m5CML$n4`@5/H%<[.tJK]>EPYB@7_0.kO`O4M]e#i&_6!=%I:XM;;"&j.'HIjKu5!UAV+&8VO##'`<.OG'`i%eaLtfgRlOTrg6B_DoZe!:8iY"`<R7_^JBPh)4p1n`$Znc@l=Ch.IqIg7-=+C)+Oa0927,VHBp:Z$:V!5gH7OqhKKO%n\;`*<aoA"j#N$-N\1nJ-olV@cmSm0<R!+J$'.YL/l?RCA1Fi%X0g)IdrCR/QeSf#WR*k@"d;h_l[W.!VFpXIUqGFYj,9Is*sT0TTCrT\G<4Umr`d*%>U0AS<\1U;V9]C,+S87k<#,!>V?@Am9J001EOdPCPZuq_7a,feM?1`9Z#poU0cl"8=KSP$j]PmWMs>TfT!M_qFd8B7]cKsXNr>7!g5MrS6155:O0o=%gd?;'T\h"/Dd<GpUs-+&EX\dJMu$q;lUNo+9:@&Fr/MBGed2^Gh-H@9+#<p@^NB)Q.oC5(;2[g.I!Z4S=t>B%WrdmgSeEn^7X19ce`<8^50;"M/_qFISHZFj'UDXcB^(sVf>[Wnk@%22P'WA$@U:kX[/7A;h50ICgspf-6NAjuo@_[=6_^,nZirNZcm=@d3Dp_q'DCSZqXG!GDa(i!\.1p?;!HMNCJc)t\/OLC0aHZn<a&"1q?@+X#9R;0c^/PLbOXbue-LP9.sd[!Gp6;[\2VA2as*j^0$I-dO&Ei#IJA(&AVpYq\eg.6<%#QG9GQMgUVPC6j%=b+r"K[4(mgU"BZBH0$BL<_s,HK6NJis.$BMFr+6*[Nk,Xb*RBL%@[YoRYFB4__I"I`-nF6!C%R=.=04`?aNJ9@"0'\M3jBfog]7';KR0%aM$qEGd#<7786urUh+R0GOcQl3P-XinnFM@J4Ztllr&:@kqNYTamHYlUOT`0*:)0>]Oeb/h6k;.j%>?biio+j>d.sNp/V.l.:Iobs;cglRt_;7U6o+k-ifJg4bhs-bVlp$QeC@&mpE66]?5O<4(Z_&K.Y4EQ%QT)%hf^Z/SYARN_I<"q,$[<ElXuT_F[$;6Q<`+XZdt[#7NhV!lQ&>N/4J;<7X1aFL.E@Y?,Sq?UM/LO.Ip@\b2,XE.VHB<F2WR%g7>FfHC(uffO*L^il4%*acraP?fA:!8B!j+QVR`^!&42lN=A+m4Cr>d&k`Ngi@H"+njDSMi\\s)`U$Z0%EJ;X8ML(X?-.IO"Mp^)`=bVW'QpnQ-jm'R<]ui+ND^MU+12MA9>imJ6kD@$f;"\WJ%+0*sGLX"g;1+>iTh<6DN17-u*/-\foC)o4L:Pe$p.*020++G&V^R"hTO4mO^,b(\`$g-TDHnh[;;*6bF+_)%d/2N4oSX!'Xa%t-KuRL@;KJJsW*KeK;IUcK=&HS7PA3\Cp<KH2%d>T*JPpTq=JC``W[6bHbt7N\SN+Y-a9H+T<lA%]VgZ7Tq-.;ZY&=^i/at])^B/,c/C1>c<9u%krKY:.UkU\+]a(TA!(j.=BCY&<LhM:g>]]&T92e@Xnp2!6iMQ;0;k=j=4.*8`.8`RW<VN1e\krP\e?7.7-\!cAjr_j9'm5+:H(lk-m^ViY283q>^[=Ou^[7;-47ic4o6/KXYOIX@mVVj+Hcb-$HcbK=KC9g-c!1S\iO:VET%MMgiHC%_QY(Da3hpV+-YAUTI=KnV#_&NHs2==$oJM0:s/E%C]/J/D[>RaXkdA%AB@fd*[r5FZ-m$g8p?BtSa[./=?V^-$h".Il?LAI"LCJF#;=3DkHb9&-oj)a9;[dZ\d?;Y3C`gt/GAEL_pNPAO5CqWRM`ul&3N\%/B*^VLp-2MgcX-~>endstream
-endobj
-% 'R254': class PDFStream
-254 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2804 >>
-stream
-Gb!;e=``=e&q5%is$OQ'P*-rX4L/0qV-%o8>q9n=HFL?6q_/),ikthO`W27qn'aFP@fV*)W&UrfU`uKm]>*Ujl[]9nrd+Ds:'&(9_"eo[4<G=hn3SLU`ERT#Gkp?_rq!/K;$ao)9I$(VC%pQ0X4s/D)gHf7pFfn3Wa<$Ze<s#T=JXl#%X-n/[,]YmBM2G,k'(e(c+\bJDm9";DuYapqc#fXd[+PY9PSS4-1nY/DaNquXc.1t;U5bbdY.>^.AAoZ6`NQ7<4UXt&eVH:a:-q215jbg&1N)q59&%M8$Yg$"*!^oEhC/(eFC0`&hhfU<\d8-]u]Vl[IPhECKVuW8@0GG$7GSB=GmRpS>S8-(+[4f:nWus;-G#)MIHE7-0D"&UWMAQP7QMlWb!EkL@I#9NBH:jF*Xs6rZ*7h.0P66i!$9QWhTQM-FChFM88fWc2#WWNK(aGBE5oQ<Vq]-jlrg6`ZK$t-IHK,Jm^bHJ71)qpt3R1*N'R)!TWCtQU*#j3E'LLcHVUIp-KNGdCi7*-mZ_dh'BYKfodp9K[A'l?a2@8JAm5pMW,3m9MQVQ6n?QQK#lrID!%2R$RjXtNZ1Vf"j;gI9-!M'AE<o0EZ$+uVg;u=ocdW&;Cl7oifEH/h+_Fi$k9^Wa]<eBIpJZJbE`^G,QX=HauLulL+dsChSbg&&Ykt^8T$qR#dTE4;Lt*6Nq9M3f5^&qqg=^\;$IJT1+(3BHd+>hK`i;e2p8;UQGY<;=`[if%f,Z0EdhX"dCC\.QJbUl+4'L5bHP^%S:I^KSs'2Wd;EZ(W7OB;P\!C!?^CSPH,s7GM%#C!nq=8[@9iX:(^<)SO:VAaNISio-M0*JrqET\O:6I89WsnJ!3Y08JK&?`gebK/\)$)liq4QQ8@SJ=HSp%lAuF+Ib^,g\98ZhHHJMWFJYe,__e>*giR!NQa/1eSp1_(<aI_4$?oU!<]3@/:hX(:uHP\T5KgW2ZG3,U9\*F(1pF^k2f4O:jZ9(4OKnb62)32,K*INWCVLH!5Y-YDOcp+-C'SfaFb.G?lenNW>m`nrDi%h[jPM"@u/9D*^.m1.`n8uL%V]*)(AA28jpl7S4aV;`K2c)3XJ]pWAlql3t<dq1R2`r^6iX".VaV/oQHiaEGX[o[5>jOnQUX4'ohCbGW;l*ZYAfScX49Kfqpcc.`1M7bkm&3@+&U8%JC#DIV7[.RcC:rV3&L6<Z)O9lpW7'\uqjU%/#Rj[l;lXhpEKF!#ohe0/jZa&%OE%,q3LCA?R>D>N+]`Okn3huenN7OYf`^=\k:<.q%#%p.\C=teL#9k].g>t'"-'mfaKJjj1.Or[$N@^&1J7YMR9>BVjBJ4s%;+mOD6:8L:ViaIbsph@"`hI*1&5.Y)M&W!<bG%[Ob+U65mYT<5X+_;'Y,A#W:t<]W#l]PVH*XYk';MX/^?fa\]SK`#@l/N'=5V@Y0L1,$R0ijN#$6P?t,=\Vj\0\!@L9f8XC4>NY8pRDU+$X84%u%l%E$+Md(6l78oc;]\>4^Y8%sI9#ra6pa-*-V!H9C'M`8H?#OnWl+D%K6YpLE2AY+iA^;5LUOsbFPOP6$HQ4r^?+!U7%N@n4*$4RPJa3GKpt$>bm5SS`ae0T5n;?72XYGj"Y$hf4bVKYAW"*I]G?[o`!SMuhhH^&d/)O\WP?g?),>rHAW@/,5nLQt$NXq+[=:V'p8o/S,W\;uCJ&jMA\E><kI9Wu;VW>qq]e/s.-'jJMi!NSH]s7rIbWtNB$Q2UJ_@gi>[3lUs6783aSR+LH(\nQR7l>Bb2AIiL.;=CiBRtfhoUru).m;Y9r&K(,";</agai`X_-F`ldXLmY4Nai#']O3b+,jj[<<CsZ"e)a*B6tbeN/F^)6(*R*-&;5_GW8X@,KAsdDk,(RA:hW=F$P0"0J54_Q0FlD\%5..BS"\[7]FbfY:_n;c&B6iR<a.MJO@iGP=MQM*F377THZ%!j)-pZAm_]r2TJ$8`Z2ETjA4`#3r+&+-ZJ"'^ln[/Gu=F>>SQsge)^jJESQuL/!4Tif^C<2Pt0Z]+6tC,5pdH7-up^J4i_:US,AJOa.I]c/F\B(>Yq$7aQ[%rT^Fj[][!r0QPlJ[hN%O'E5FU*VX4lu;bX4RSs<65d[.&jd`d@bY-m\OSl/EN;\E_6[#,hF=2d>!=1ZmMigRtWhEA=!B[n[b/mabnBhTd`FH<>4+iIj50k`/L"$aqTUcnN&)DK.sjp63Q"<Be9XoJ%b65+3Hk<e^!anKNkF7J%o>3/(N7\IF*A/9;K^jUlfMLlpY_H7I9cP2rc+^,P^Nk%Ib5tJ7Eg2ab=h5;s<3P36]"LjEr[/uh"^>&g.%jISnIZF]MX6S,F/EC36+nK=6rrZeBA;JcAcE`&MX9kYU`:-h32p0k<!S!$`f`@D+-WQX@'l?(8QN)lCn[ul1DhUQKLGU`jH7PB]U?)5H:s44V2r/_1N'X#B>FELGlRtoCPI@8L!r$AWbUptYhXs*e[8s<k"s65pV2KZL)I4.[S/#Vl#C`W$_Eh90kRmFsa\W%ckp'RBk)MO[*'Yf%*H,bad,r!sl\FrK/*5$Gi4rJ+C[u,PJUK^e2a@<>rp=9F2+/goC1i-Bk'\@u)h)8X8Zr48HJ_()QhkZqPG,dJfHKMS5;-L/_`-UAG,'\Uo/2(m/>=UnkXH216*b9lC<^eZQdnCoWIumAqMUDY`t?F%:E'"eTK\(u+36O@$E\$a!-\2bBQ%&n6$$@5CoBN+N1"d7Bo!_2B<<eml<QOb`qF/%5K%q:<CAI_]CdieYc]KrKBg6&0@;gWAP1rcGH"B.0>)]&413AgD?~>endstream
-endobj
-% 'R255': class PDFStream
-255 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2377 >>
-stream
-Gb!#\>BAOW'7J2#rW=KC:.JnblJAGM8M?LR=/V<GSPIW=L]f"L,estar9<,5/3m*t/DG8"R7o`"6]f+Ofs>=8&[ESZK^S:gBC*5Fqtc)0Kb7Oc/0"n)[X--2?Tio4ao-ncl]X&]U0omq2b21]Fr<3aK%Y)W7MBtBr#'YegOj+SHob]:S:tC%AaE2?c@Q?C3HTbn%D)l^0A5Um>CGUns2FqaC4?!?e='MsI`.cJ2KXscO=BSmpF]^`%qd\2)VK8i8afeX8$=Zu9#[o?AYlKPKjk"n=g$E'f.30W9#Y"X/+%Mq2C2FJ^i[]L_Z*+ON5r1WL0;df<\VEkZI]&r(9oJb@1'+LWA_,bZ!O^dQ'>J3Z_GNObcTC;":kK\0?SLiVMcf5i]_75M]`H.+_C_p_Zk3FE!NlmHLCM0,[Df8=*mu4E[NZJ_599dYZ?H+.ta2G?^+aKpFk>l=Jbcj2RM6>H1C$>Io*&liTC;\"`FHKHt4ZgFT1ed:gX)qQq8$*<<<l2ngNja'fhI<h[&s&9>jTFGVLj,OUG_@LqpX.4ri4naGm2%JIar%4\MTUf\3X<e2_C$U.2260qm7HGNT%W)Wc,fZd'K:+9'CADd`V/Y=HEs7/`A.\#iJGcrclNPdOf;#A4--+R?GsLleBEN&Lb<9>OB?VFc!Y2j_ND"<GAF]j'rq&?s]N>:+?Q,[RrWl+Fou&;_'iS:;6[dh**534^U0$QX`/Q*C]nM:`rU:))rqA]QH%i=g+]/"VZ^&(ls3Q3/IM*)OL4HQ*AslY7t5'N3n#a!hOS-'(h!"EC`+R*!sJ+BKHbV0<jh!qsWHI^?^a4'?;er*kKeoLdTenEEJ:>I.dFn?pK9Q,<=o!<tPc8sFsT2g.Aq8.YK`*Q;hFZ8Q=>QdQe7V82n[1f1!N]9R@>!8a8Up4OE:7"t5f71.6[%EHr:?"o1JBKDT-r\&jPmGfrE@c8`.Ho\A,@DH46]R]Yb^cbm.+L8*0+mP+-4<+RCC",)JrSk"F5(BG31n=m3OH##]1aH"@L:;cV!cPNn1:DS1#)pH-g..fCT2W'WdgPSgH:[B!E'c%f=tSXHA:HSW]FD7FY;O(WjAEPM&,qd_*LE2;MFO#gK<>TDD!@/\?)^&E(la>]<_Fog4dCn;b\Uif&F#-Km4Cj-CXl;IJ6aIX,e(SArSW]bMpeik:Y.OD?TWgYPSYcZ7,>\UWD$sK4P3X@6(3tgg/;VF'V'iLWl3pIPc8&%I"WiTNk)-)AA4A!WdY:ch5;N=P\d0U%2QZ+G\Pq+iF'A[[Op(P'=)R>R0N8e2lV.cE\n1oI0pX1%HKE(/.m"nLN9Pg(f>B8IUZM)pe?_)8e_P_V]gVX4k_4FqaS4pY?^U$<uXL1aM6(MoF=h#TWSAg"Cdi#isZAug0l"<3_k=Z!]6.U';7DI<G!NYKJ;bgB`cdALAVUNi)COBWXYLA>QO/UO;UY'Oq/M?QIX!!ZDt&r::rZJ9:I6U3!s7!NTq0Z&Oi<\Q3"s!O`9Vk=k5M*[W42H#G]VrjZXBb\q*7:P)FS.Pr(L@\J.KP@ilP8+\Q8<D>Wc@h^20kW/%RU.<>@e.^nY-?=\((?EgHFUk*o-.<0Xt]+!u0\kSBB=>W`r.6^`kr!<KCTtUAOcs@llF()O=JNPEfR/4o*L*jTte<bLmX]p2be;!Z#"Osn6q"gdar.&U*M\+3c+1D+!WQm8IgT<^(GtQ=9objqT#!k34hKN9`Wl0U0q?&fGc$ic4^Xu25CWOgJJ@ag)L=Y\@'tSrahl9BA`;&:_V^XYr"H_%MC+D;`>%>54O&.fcN-\h^68)BV%4B8U)??!*JAuJmhtd8,Z`StZ^O+KQNo;7.Ucs:=E*R`J*7,fl1lQC-[,sph%UC2R\g"3Ic4pLmFicR<W!OKSmOUi6d:6;XbL[rGHO!i#K<hNqVCDo^NGbD_o[/rC^TPn*ZR1sWJGlRO3/jD.@F0Jo]^7*W[GFt.\o=ZnD2#&iQ=qAD@l-ZH.Tuca&OhW9On%hRBcQ$W9`bu>8NLa^g6H^18bZI10qP-<Vs:NUVnNp5*?)8l_]'F@C*)o8)b^g]46V,k`>4YY.dH0='j7&8Bnl<jUq7R3/(e).f^7)MEo0F,?$F*5'I/Zsl1("rb)o@MWScU*>hGRYS:YsF;=638hU07$e'4C><YmVD%pbuPXtIEU4Q.nigeJ+>I&J/ni)a1+oi%<9E%uW[E;nHmaq7AE#X*.:1&Xh:b^sj7L8R,fLSK,K+5qK)_]+'9O.pp(R*Ib=:8e!(V's+Eb!db^*HYi=ETJg!GQn&]R#=M,%-U4JqNcJ+#'bGLXh-S>c?LeecJ>n#b"AR'Kkm$N0pS[j\+VM4o&o&<1!OiAB.?=jI#'QEq6Rg95[?'p~>endstream
-endobj
-% 'R256': class PDFStream
-256 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2070 >>
-stream
-Gb!;f?$"^Z'RfFDs21D?1t_m_[]p9i9=!r,B:A3XkW\)sfE0RTQ7L(Nr;40jbVohTCM5a_)'[b^e^;pXk=TcgK-/_CNAH*c!W;cM"kSCC#i)T3Ku$9(2gG;dL\\O3j$=JDc\V^NB<BsC[Q?-`U5n\g!DHk8_H,J]8!27.!uPS,\dhbNqmshh$$;LSo+>IlpGs*Ep^Vp@9_Vo<pW*3PQVD6>2fq`3:Dec@q42EUhm1>r*&$q/CK00tHVn@?#HmOZ<nAn7/..gnlmH%))m7VP.aHQI##m)I/9jjP;U?eM?ai-+,H'kZL3!%7[Ggm$a01-b?p`h@B*D.KaASmIFpPQ';\W=TVe&1@`'iTl2'E<9r]gVqM.A@1JdQmfkJ0Si9AqX%"D8$gI=M4[k%4d`bKkZ"n:=@a^>&dH%F^SG-@sCG3feQPPrXas_\*<m'p!VI6`R#Jk)dpp(/rlfL;o<;k6e7t<2Smg'\Z:q(sW+c;!)*kU<I\ENrdKN]'F?.X%"'KH7nHCP3+6b[Am,4=cq,@bH)!XbAP&M%Y1@<6U@M)".k_pakMY[%qsX:5e:HB\TJ!j=2oh$[:M2V;l@?:F@5ANa'3$,!B/0@l+m*`CCr9aaMkZl[0&soi;lgjF8nf#a4g0\?fZ(G97^J[ZeoJUF!2skXa=8q,S58KZtE,/HsY^]#KI4BrglQb)j(jXqAP_))NRphhmlTp/CS4uL>:cn'6^*u2dm"iFLU!Vgf=M-q++3d+uUuTRXjDOjfPl@LTBJ'jd:0[loVB)1gWsD\*S&UG*3V/4:WB'"XV8!mW1S:/%";njAO\56s_YbJW(s5Kot;]JU)HT6Y`L7;G4W=BojJ=&NDR0/-o_/H#g@*Q01lj<c-4LquT2=XG*]t7"s-0,$&`E(/hW<_R"q`T,E/22R&&F@YUqs5WV0E9P=$D0F0^7&FPJCSY-qqHJ=Rqj$`hqY_UM=>dl\o%fVcoZ7tG@SP)E"oWZFF][5p0Z*Q/WEh+N`l,k^')V$pF\;(;Yi(Z]/BgqsjNEn1_?dO5?oJ%sF9CqiH6IjW@UY$L&bA.fqb!1%l<^faCrb_'%F1"jaQ>XIPfA.Bu`BPq*RpkcRW,1(?rOq0l&W/:=GU`;^5q8SikmT6nOS),mm@I(d1eSQ*8X[V_%9`JIoX8-g@HiO!:RECELm%r'hKS_6]ba9Ts&-[&1TMF;+U"$<YlIc29R$8()USU=F;3"-AOC8_n[U)4Nm].\,irMLNUauqpRV]WFtH=KP=/]G2%q=Dd*fc)H8Pr/4W6PBIb3df/ZH-o$d?31H'T5>\tDqup#jp;rSKKHhIt$91QH5H0Y7mb6`_-PCP(XeN-'8Mb'=&26hBm:iW.nO#gO5)JNl:e`"Iu9KTre7YdoEO"@TR]$XBd!M>jF&nbm.iSm>hkG8g_^Q6HlX8!A&70h]ZfP[lmHPEL0rJ6kV:YRq,M@K"?F"cXtn7#'h[<71gUe0,]mmr_FHI6jVf?Dh&V*?.^7Qqsca!`MYMP/[\H;5tDX5OaV4Ko9io%tG3Yf#bugC_Xa)\QP"E5.B=s0RhT)jYEt[^f4BDOjl?T';Va6YK$:S#o(:)5Otl3DFWO[Ms9>FLm7C\cuDjX2h)2aiH;i_jXWia&mNf]"A6Q&qPVMANhRf-UAH[A`:LGC4=#o=p:"D+P5(:d_X$upA%eXqLdt$T9gr<Lp`>PJ./I2CNt==1WN(-P_3-5^cbse'erBU@19J(eq3ACh!S$"nEkB$6ANn@.4reHdSD`T,_<J7iAqSu6iKc>,[qbfshIU\sq[`^G7GjQmOs)<+lH6nq4Qo/aN)hkZVA"\lBdANu)j=;uR[XM97We',@5P0Q$Z7\3hK%JW5/Yo0('I@S4<_6jY>h?VF$s?u`^snSj2:?Z`(Y*?+tmfYe(QA]CP(!12W`q)/uQk'rcCJJ\CAbX`MbYMr[^q_1M&18LlCGa$8GfOUS#N6j.%e>7d@gt.V*"OVW_&3B6&$:IWodU@Bn0lTN00uk(ZlkptAhh*;sA1(b?\,#Of$T<cI@d)X)q<$HA/o5m>Dl%*^&<H+i2dDhQ`GrWBM$(6n~>endstream
-endobj
-xref
-0 257
-0000000000 65535 f
-0000000113 00000 n
-0000000249 00000 n
-0000000455 00000 n
-0000012239 00000 n
-0000012426 00000 n
-0000012668 00000 n
-0000012897 00000 n
-0000013126 00000 n
-0000013355 00000 n
-0000013582 00000 n
-0000013810 00000 n
-0000014042 00000 n
-0000014274 00000 n
-0000014506 00000 n
-0000014737 00000 n
-0000014967 00000 n
-0000015199 00000 n
-0000015429 00000 n
-0000015661 00000 n
-0000015893 00000 n
-0000016123 00000 n
-0000016353 00000 n
-0000016585 00000 n
-0000016817 00000 n
-0000017048 00000 n
-0000017280 00000 n
-0000017510 00000 n
-0000017741 00000 n
-0000017971 00000 n
-0000018203 00000 n
-0000018435 00000 n
-0000018666 00000 n
-0000018898 00000 n
-0000019130 00000 n
-0000019361 00000 n
-0000019592 00000 n
-0000019824 00000 n
-0000020056 00000 n
-0000020288 00000 n
-0000020518 00000 n
-0000020749 00000 n
-0000020980 00000 n
-0000021212 00000 n
-0000021443 00000 n
-0000021675 00000 n
-0000021907 00000 n
-0000022120 00000 n
-0000022858 00000 n
-0000023089 00000 n
-0000023319 00000 n
-0000023549 00000 n
-0000023780 00000 n
-0000024010 00000 n
-0000024242 00000 n
-0000024473 00000 n
-0000024705 00000 n
-0000024937 00000 n
-0000025169 00000 n
-0000025401 00000 n
-0000025633 00000 n
-0000025864 00000 n
-0000026094 00000 n
-0000026324 00000 n
-0000026554 00000 n
-0000026783 00000 n
-0000027015 00000 n
-0000027246 00000 n
-0000027477 00000 n
-0000027692 00000 n
-0000028181 00000 n
-0000028416 00000 n
-0000028652 00000 n
-0000028887 00000 n
-0000029141 00000 n
-0000029409 00000 n
-0000029654 00000 n
-0000029926 00000 n
-0000030217 00000 n
-0000030494 00000 n
-0000030768 00000 n
-0000031049 00000 n
-0000031327 00000 n
-0000031622 00000 n
-0000031913 00000 n
-0000032194 00000 n
-0000032508 00000 n
-0000032796 00000 n
-0000033079 00000 n
-0000033366 00000 n
-0000033626 00000 n
-0000033906 00000 n
-0000034184 00000 n
-0000034474 00000 n
-0000034755 00000 n
-0000035051 00000 n
-0000035334 00000 n
-0000035612 00000 n
-0000036154 00000 n
-0000036443 00000 n
-0000036728 00000 n
-0000037021 00000 n
-0000037306 00000 n
-0000037604 00000 n
-0000037841 00000 n
-0000038062 00000 n
-0000038239 00000 n
-0000038460 00000 n
-0000038645 00000 n
-0000038863 00000 n
-0000039236 00000 n
-0000039509 00000 n
-0000039799 00000 n
-0000040021 00000 n
-0000040333 00000 n
-0000040573 00000 n
-0000040812 00000 n
-0000041034 00000 n
-0000041366 00000 n
-0000041605 00000 n
-0000041846 00000 n
-0000042079 00000 n
-0000042320 00000 n
-0000042560 00000 n
-0000042801 00000 n
-0000043025 00000 n
-0000043397 00000 n
-0000043637 00000 n
-0000043876 00000 n
-0000044112 00000 n
-0000044353 00000 n
-0000044593 00000 n
-0000044833 00000 n
-0000045058 00000 n
-0000045414 00000 n
-0000045688 00000 n
-0000045978 00000 n
-0000046215 00000 n
-0000046453 00000 n
-0000046691 00000 n
-0000046932 00000 n
-0000047157 00000 n
-0000047509 00000 n
-0000047749 00000 n
-0000047990 00000 n
-0000048229 00000 n
-0000048452 00000 n
-0000048794 00000 n
-0000049017 00000 n
-0000049329 00000 n
-0000049570 00000 n
-0000049811 00000 n
-0000050036 00000 n
-0000050368 00000 n
-0000050594 00000 n
-0000050906 00000 n
-0000051144 00000 n
-0000051383 00000 n
-0000051620 00000 n
-0000051843 00000 n
-0000052185 00000 n
-0000052419 00000 n
-0000052656 00000 n
-0000052962 00000 n
-0000053237 00000 n
-0000053379 00000 n
-0000053623 00000 n
-0000053752 00000 n
-0000053958 00000 n
-0000054115 00000 n
-0000054286 00000 n
-0000054454 00000 n
-0000054667 00000 n
-0000054838 00000 n
-0000055067 00000 n
-0000055226 00000 n
-0000055406 00000 n
-0000055590 00000 n
-0000055780 00000 n
-0000055962 00000 n
-0000056145 00000 n
-0000056312 00000 n
-0000056498 00000 n
-0000056722 00000 n
-0000056891 00000 n
-0000057060 00000 n
-0000057250 00000 n
-0000057426 00000 n
-0000057617 00000 n
-0000057836 00000 n
-0000057991 00000 n
-0000058168 00000 n
-0000058338 00000 n
-0000058508 00000 n
-0000058671 00000 n
-0000058863 00000 n
-0000059058 00000 n
-0000059287 00000 n
-0000059445 00000 n
-0000059622 00000 n
-0000059781 00000 n
-0000059969 00000 n
-0000060197 00000 n
-0000060395 00000 n
-0000060578 00000 n
-0000060757 00000 n
-0000060928 00000 n
-0000061098 00000 n
-0000061280 00000 n
-0000061460 00000 n
-0000061639 00000 n
-0000061804 00000 n
-0000061981 00000 n
-0000062167 00000 n
-0000062335 00000 n
-0000062512 00000 n
-0000062683 00000 n
-0000062850 00000 n
-0000063023 00000 n
-0000063205 00000 n
-0000063395 00000 n
-0000063551 00000 n
-0000063737 00000 n
-0000063972 00000 n
-0000064131 00000 n
-0000064320 00000 n
-0000064506 00000 n
-0000064686 00000 n
-0000064872 00000 n
-0000065052 00000 n
-0000065224 00000 n
-0000065448 00000 n
-0000065612 00000 n
-0000065800 00000 n
-0000065988 00000 n
-0000066201 00000 n
-0000066341 00000 n
-0000066640 00000 n
-0000068581 00000 n
-0000069671 00000 n
-0000073063 00000 n
-0000076143 00000 n
-0000079473 00000 n
-0000081897 00000 n
-0000084809 00000 n
-0000087559 00000 n
-0000090606 00000 n
-0000093498 00000 n
-0000097965 00000 n
-0000100530 00000 n
-0000104604 00000 n
-0000107170 00000 n
-0000109601 00000 n
-0000112475 00000 n
-0000115430 00000 n
-0000118379 00000 n
-0000120901 00000 n
-trailer
-<< /ID
- % ReportLab generated PDF document -- digest (http://www.reportlab.com)
- [(\022>\213\334V\233\247\366\264\322\211\021\001\252\337\213) (\022>\213\334V\233\247\366\264\322\211\021\001\252\337\213)]
-
- /Info 165 0 R
- /Root 164 0 R
- /Size 257 >>
-startxref
-123088
-%%EOF
diff --git a/pdk/docs/compatibility/android-2.3-cdd.pdf b/pdk/docs/compatibility/android-2.3-cdd.pdf
deleted file mode 100644
index eb77a7d..0000000
--- a/pdk/docs/compatibility/android-2.3-cdd.pdf
+++ /dev/null
@@ -1,5223 +0,0 @@
-%PDF-1.4
-% ReportLab Generated PDF document http://www.reportlab.com
-% 'BasicFonts': class PDFDictionary
-1 0 obj
-% The standard fonts dictionary
-<< /F1 2 0 R
- /F2 4 0 R
- /F3 131 0 R
- /F4 133 0 R
- /F5 145 0 R >>
-endobj
-% 'F1': class PDFType1Font
-2 0 obj
-% Font Helvetica
-<< /BaseFont /Helvetica
- /Encoding /WinAnsiEncoding
- /Name /F1
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'FormXob.c4c4c9f90f2c427799b277ddd57a9a5b': class PDFImageXObject
-3 0 obj
-<< /BitsPerComponent 8
- /ColorSpace /DeviceRGB
- /Filter [ /ASCII85Decode
- /DCTDecode ]
- /Height 49
- /Length 11548
- /Subtype /Image
- /Type /XObject
- /Width 369 >>
-stream
-s4IA0!"_al8O`[\!<<*#!!*'"s5F.Y8OGjP:f:(Y8PDPQ!<E0#"70H8E,5RU!!$kRFE18L66KB5=s+('!!3-/!"JuF!'"CsF)XEA:eUihzzzzzzp=93Ezdk,!IE,5LSzzzzzzzzzzz!"O$O=]te*!A"3N!#0'J=]te*!C-Vb!#/mE=]te*!E9%!!#0X!E-)'[!GDH5!#/pV@:T?<!IOkI!%`.i;F:Ea!N5tu!"NX@;F:Ea!Or+0!"NI;;F:Ea!QY6@!"O0^B64+R!S@AP!&/;$Bl3nN!XJc+!'"M#F(51M!^H_c!+]V]@r22G!i,er!;^PLDe&hJ"/#Vo!%;>rEc_9]"3:HB!$kZL=s*eFzS#-/c9N;&m!jGd0=s*eFz2.HUdTBcIW)6m:H=s*eFz--ZDi'@d'_[`)?O=s*eFzo@O$D!!!!"('ntn1GSq1!!!!"$b$*9"d]2go2bnl#:TWQrR_)LqmZV*rMBPp"53_T_"M8\EcqE_z!!*,F!!$MOEcqE_z!!*,F!!$MOEcqE_z!!*,F!!%1PB64+Rz!!*'"d<#?g!!!!"zd<#?g!!!!"zd<#?g!!!!"!!$nIBl3nNz!&+BQW.4jJ;ZHdt1dD$@W^$Oa-C4]4'&*Bd:d>!\<'UEb1G]"41G]"41G`QQF(51Mz!")7n+A>Tf0K(cgzzzzzzzzzzzzzzzzzzz!!$kPF^kCOz!"o83!"<aS:/:ii!"o83!9eBD:fIDp!"o83!9eKI;agZd!"o83!9e$/7S*R[!"o83!9ds%6q[L[!"o83!9e`B6V[U]!"o83!9e$87T'3d!"o83!9e0+8l,Kf!"o83!9e!3<Drkt!"o83!9eB<:eUih!"o83!9eBD6;dd`!"o83!9e!878j0d!"o83!9e`B<*'&"!"o83!9eHG;H3\s!"o83!9e3:92Y`i!"o83!9ds)6q%(U!"o83!9e<::.tWf!"o83!9e-=8Q5Zi!"o83!9aDR!)NY<!)*Ah!&FU/!&ag7!!$kQDe&hJz,4GR4-BJ3-!!'kS8:U[?zzz!!%+PG]Woc!!#B)E-ZJ<B4uB06#^dZALnrqDIY:M+>PW)3<9*<!'ittBk@>F9hbU;!!!!)!!.jh!!E9%!!*'"!#bh;!!!!#TE5)r!!!!"!!!%>TE>/s!!!!"!!!!Rzs4[N@!!30%!<E3&!<E3&!WiE)"9S],!WiN-"9Sc2"U5/8"U,&6#71Y?#7(P<"UGJA#RLeE$46tB$OdCM$jd7J$NJi\6NI5i!WiE)"Tni1$3gY<$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$4?gK!"fJ:0`c7r!?qLF&HMtG!WU(<*rl9A"T\W)!<E3$z!!!!"!WrQ/"pYD?$4HmP!4<@<!W`B*!X&T/"U"r.!!.KK!WrE*&Hrdj0gQ!W;.0\RE>10ZOeE%*6F"?A;UOtZ1LbBV#mqFa(`=5<-7:2j.Ps"@2`NfY6UX@47n?3D;cHat='/U/@q9._B4u!oF*)PJGBeCZK7nr5LPUeEP*;,qQC!u,R\HRQV5C/hWN*81['d?O\@K2f_o0O6a2lBFdaQ^rf%8R-g>V&OjQ5OekiqC&o(2MHp@n@XqZ"J6*ru?D!<E3%!<E3%!<<*"!!!!"!WrQ/"pYD?$4HmP!4<C=!W`?*"9Sc3"U"r.!<RHF!<N?8"9fr'"qj4!#@VTc+u4]T'LIqUZ,$_k1K*]W@WKj'(*k`q-1Mcg)&ahL-n-W'2E*TU3^Z;(7Rp!@8lJ\h<``C+>%;)SAnPdkC3+K>G'A1VH@gd&KnbA=M2II[Pa.Q$R$jD;USO``Vl6SpZEppG[^WcW]#)A'`Q#s>ai`&\eCE.%f\,!<j5f=akNM0qo(2MHp@n@XqZ#7L$j-M1!YGMH!'^J^eG-NC01u",nG`Ffa4e4cpM":c88PCn1>L,"M]>S:ok/CblnWoh&#FYmpsZ*f6h'8mIO]^cdki!c&P7/NgtMOeqa+M.%A^H91+Y[F`*5e<*0Mi!INs5)nE7bT"_o(ZnRPP2Nh[.g9G3_gNKo-lLr5u4W\?PoW5p3@jts8l?<$bImu"h-G_]Y9cn@#KZ+/=&hgW]6hUSBAOXXZQb5utFf-?0\bAC!hWk54??CH'+Xo;O,jZG?r;L%q4D\)X+`4lUfe,0a9]im!P8(?-k&mdiO\P%4N?n)n$Q%8b5Fp!n'):A!Ka'XdT$0Jnj:W*cqej&YZfjBR'Fe(>,CGj$GbqP,0%C8O#^@IG;jCJ**k\`QbG[BRlGD?)2bH'P!Mo.J7I.habPKfAp*E`N;/hl%*^`@[$cPM&TPC,dJ*Zp1[)*CitkYc-sl>I+ngHfO/M)V4C(nk#UJIB;1SYM_H:A!sdj,-^>D82D8Dl2B[R=?+S!,173r#XEH9g\0]*Zr/drfuTXdO0tuK)O\?6HlmA+5R1C$_NdeK?,m`.fH'T-XM&0?-thFr#p\uZgaIr8Zpk6)S!%tSk+OlB=:NoQP#<P2]:Wr2f="DrKb/,Hs9gg6Wro\]p?!I/9;=5l-Q5-Z-+3EN[-)A?ml.3+HLm^=5jbW]qG/T`EJmkoT+fW-h,o[rOd)oNn6P2=CTdF(LUlW7b[`':!8PYA<L,<_K!Qd4$>c/lfIC1APF]KP1DaBXi7%4.e$[]KU;Z<[db]32%;q>L"]b>JZ[uV==1hB9*0-'#9;<UJ:9A#k3q:d?OD68Hn^W!\u#+g/bYBLAZRMZD0h>MM%_$IUNI'E$j\(?NWGP4B3u0_qSMQI"n=4?iVB/9ID:Og%=j<7bA@^)R9b3iD:0%hP1do%p#`.@(VkB)$2ELUM*<9Vrk%0LCtK[W9<E)&G$2U_1Ft7L)CcLP2`<EVa0&A%[Y7.ZH'R9if!jdcZr'8(FbLN,5Qqj!5Qqj^kn4j[E2oZab]!RT-B\\/\V2Xfj]Ngj6R/@D<X4^P*C6NEHZ]A=<B7]^iTko40+?10fd<OX->571\j`2]`cCAdG81rWJW:1PC]=AIr!hV7'kr+(nHXkZ[FFl47[\$92t)PF@rNAdP!B&(al$d8WJeVjK9]&kMG6S-Uq)sd036duDVJI9FH,!&U:LOC<@p/JSfQC#Y;FKK?F%2Re)V+ugY6!ZZ<K?7(0+7)'=@8]k\Dn:.<lI(,!Wr,iWL1j>)SHGR+N%)B8=LT_/S.MS/gRl3N%hQ;c.V8'W3Q`G.!XMlL+:j/TbI53XR@&WT$,QBQmLC>2Hr(B/TVD9oN.T8J>?"EJ09*"l#0TalHI&S#^<a]_fm.i]oa^,D@!\!&Aso"6sZ5;O_]!9(CeE]'J*:O.qL]^aPq7!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!9X82Hrf`t_7p8jN4`^a_VJg+@><Jio$8ff66IN^iE5Y9_ObP^)u^1+i/PZ._i7WSn4hD",-?@27R,t#BRf^t+8R0RpMUDk=_W=&e+ESsdPrA(as;]Y:a2Wf(]Y&2q=ZHV`7_U5ic=r$.QD0fGZ/h[C86u`hcVI5h$dMe.ZPt3a!^@8p4Mj1a/pu^o>;/G>?t>d$gS2=!TO]]X;OT1;mhAc,928sSepAkmHsDh_7h>/nA^aPm7159;`$;e>J+sodOE!EP"BTu,Ba&Hj!1#e>5>B$$2%e=DnL"f)d(A#e00Z]fJ`p[;H+^QO9lrs4U!t2'u\a@:0j+3`C3kH3h4`KQV)8[<i4s.h<b+-e^_)73f1j*lHKbGrX't@dnnS'ZIZZ1X&rTKiEkk+:*RgWbb0T>h\eV.f<K]lpo!'=L)pVaa8RC"/Z5>@P&12aXr75u`&!-"e/X%"8HYFP^\B3GKp;T;"RRl)[76bF?A([#?^V!d+CG^V%L,FN%maIXm=#!7-AgZ1qYJZ*oR^iK0cWR!R07Rl(qS,5:Cg&4+[/XqAD4AID)@]qrr>3(QT;sO2gZ=trX(aFE9GF>F/p&%"PlHP*o`C_*^/GQrr<N$:](TX]t<5,Xf[Z$T+,"-gS@]LK4mS@JNtOs,iF!3:ZGa^q\eWZ>X,Sc`!2,pJPDZd&_[g.*_Mp!"]P;n!"M'tkJgQ_]I#EfU&Cf(ou>P\KNBInc/%u6?YB;#F]1r&Ij:cYQi%O>iI8JC6)8:f):\;WXs?tNfbulGN0B4BJdS]\!<#"2V>PB/d@kppn8*P-f<i`%`1HcV+Lec4$V8G/a^`*o)tVB8*UCh^i1j<g:[n*DeJcjlEuqVr8bNV0)CHhPkXm;EYc5BUJ,)%,&,uX^Iae;s8M2N07hBYm:P@!^pknUD<s]4TKgc.eNBJ8!es=eTm$jO)Umo&TTCDC>"b4oYeUR'<.eKoq5IAaf5!9jc*<t*_a&0-u8TA6d(FCnW^,Al5-m_1)#UFE2-`m)]@:c;551&s#3mou1Mb1Ai`=`>SrS!iqgll)/r"=T%5PFU:Q*$!<$qAh:0uPuLb`FR;Hh6p5[uB>%P9$"5)iTe$SgnIfO0VUDk)4F];Jk*iWF*,DocW:=H_-Yqch=R3#Jf.r0+M`_(V5X+/0\#,Au_RRal'e9!#(!8!BbF^MW$-Oi1k`$P3!>NiV'Mj7DF*nF%%<%oa479jstZ9#OS@`Ho^`Xh[[:Pi![:3C)3Tshii9F._a`X'+qcq!?'g'jE@^Wq"OYiplFE1_`Q0JlJD[kdNZAf0Js7(VjKkP_u,&%Qt*LRGB>3b?8iO;Q!>@X'.bJK(s8,lUp/:1k)\/;DUmLhb=&rdC/qT`QJF*=T>qJ%SeTYgB7$h<)H:eC2B)7F['=t#gOhOJL6Hd=L$'ZuaMiDmlne1jZtO<j#rdV3%79(S!*>J2DW6ltm3"-\m&B%qP]f%crr=%1I08C<r0Y:_ra6Ybrf4Ri^[P"Eq')9*rJ`W5!9lAKD=+ZGhhs7;A8A2OgCMTXJp'jT;i5GjX/)6[D1+p"8u,be7Yci(4q8+X2ak.)o^-&]U\cU#CRCr*Ym)r(=3O&'mdg+2WS<TH#Eh4L!;?0<jm^U8Y6F]a(`$3%i;6-b`rXD*X5KSbmB&#]J'(-c&,Ps[rr>WeW;cj74'QM#!0=l)lu-9'@@DG9Q73Vj\soJu&_mplH("VW\@rm+T`l9*35lT[[_1+l.<g3t;,+M+HC%/"'S!r16#VM3TK)!?\BjfNA,&(ST>BD(r%?hSn:T#E']p@89=,!V%KJIr#oFe:#UCLj+E]Hmg"]`=T098oDXj+N#=).JN"mkiN,aaNVu@"XU)d1Q[]t4ba)to)!TAKCTuZ'rj^2@b'u]o$'4A%(ls+O0nS4ft&uO[Q_j]l=GJ;e"-W2`l]A2a;B:J@BpV.\3+hrRZ22'ML:hJ4Te0RS=6g$\$?rc;fbIIKG389C4UQEtijWp-6p$.&!f-Mg2DuTeb&+M%H^8Lu2d^Q(&J)qrA+8+oKo[bC:U;]6-%HV_;@iOPBdONH8[5o13n;jR#rmdA8!!hKQQ[l4;-0b9F`R*/ko\lXjLkqnd&*NBBPd$(!_dGA.k]8uHTH=a3oIks-rr<RAddABM?^&]gm77i0j@^.?4iod@:6gV3FoMH`;##87!+/WRkkH[ArOBW'gpMY.qR$8&dHOu'G?YZ:Tu<1po$_Q:4lmC5Qa+2fT3K8oVtP%O[>LGj9Zm<nIQL3m&&U;t%fZOf(t=K-)F>b,[5<HnAcsSRStM@o#GN.(^'B%8n?9m%>uL:3)K"TAl$$nVMoAM'7KfKGUuOO@+S>E*rl`(IDr)6/!3fB$!9d-`62pofgn#1UGd?5P?Sh(-N)OrFNO"N'e)%bXUGC*blBr[pX^tBiRWTU>MGDQs#sp-!bBl1\[sa-mUq%.cT$?fCj0+19"6anhmtpB`m[!_E>K729WGjOoTB78)5j=f%5j=Fn81'5V'Y&k+,`3HY(s!pG^2X)PJre"jn99V]1'$^@bX)ub!\on"`-u10LX?&$j9oW#!+)r1!9bW@O"AQGGciO?0GA6T:lQ8328%rs/&&\[$]LRRj4_JPn1PZ.hu3cJVi(-h$q&s4<q#oHnk3W+'#tiOOc$DD,b/BbB9G!23`j&Ib[7X2XgGjMJ&GR%/^^DPk2\rU-nKqPh`*d*Jb`@X(M4Q8%"89\QW@'sM4BcnJt8-9c*OnDl7.s[Bgpb<^5r9o"VpfLH)S]!XEZC"ZaY+qh((u[QgRfa80.5akRDklNd`AN5N2?ek4k(Bl6WgYiCP8@Fn6N"pt2j1NQ&@8EX"NL!(c\,paA"rXM4liY3!,^Q7[C`'SSh`#!$aWgGg)I$KchP+8IYK"TJJRY)iS_Uh77X]L0V_%.c#.0!oUS_pMIm/k$4TeXTQPV"NUDHKbo\LGEc@7oAdQp>+/G-@!PZ_B'He;m'@ge]OX\NuJ?L/V>U)E1o`mai>7C>PP])D1"><>N4Cu"im?P)R\[jm(IaTOi8!o3s.4\0[D]q*Aa4:h>@Jc\$YoRi<ZQ&dPX3+Z#[+B:g'G\@tEF?,bF(\?6/nqg=o@!@/NR*RbB]`/%nKlm!t<Irr<:<m?,F(GcZB1@5+&W5M%,0pt;j#fgaKOaj"B2m3d@br/`j7,d47*m!mrg?Opb]N\*W63kQ$1@S*>\.7t+V\Jb>2g@]rPrWpo#*^@V:X_h90>:$jRaH3luNK'E/Y3%:8!Pumo`Gm!.`MK]Wm+LA)Xt?E2i0)AV*RHO#c.kt&8a(?0%$&P%HLid)1H54FT2$rj3.uAQ!+3a'\aL/Mr];'O``J0Hd_a0>$%"O)bt5s@W4-nlIIHA>o7Lbhl#U1srX([D'Y&:lpj&r4&7QlI8`G_sHBeWnl'#C3_9^k/_4MPAGAZ7GD[L4tIF[\))d-d8,Xu<3+]Gk4ntR3%A%d"lZP6SB?N@_iFElbHharg(0E;-?r`TtqXh6Q?o3O7_dj"elJrs7H/Kms4,>KB$4O^0!\@+VXSkjb,Y%jA[)!/-qb\_`TC=C/PUBs4aN,5NZm3LG0>$fCeOE4B^.rTcV4ceX$m1\E=J@7A!G`iH8]?C0Q!+W7=<A)+-QZC"I>`^b`,k)9R1O]K+dd_^.eSZs\Itmg-NLdE[jOGk')?BR58!/b8aZ(/#E]_m@Ib#:cpV4,&_eV?WFI!eWYXr;d""U@c+KGU\"EB'$9OH[\BpLR?HA(Su(@\];b2!XD&kVp"9mm4OO3[?'-H7^?.Tfq$iuUVlh!YCngtTJam'c;n[-&p">nQ&04T3".)>HS;[ltbZ]JlhTVTre.H`6X()0In^2]^*C"D!)4N/hW0&,uWJItiD.nO9X92.$l/)F;')@=n(/j,t^33!)DP-jd]FJd-M9afK9]pa@Y"l?=rW)rQaQX4b;`>GHXVEXm%l1kn`8_8]ZkDt]dtorS('eb"^k08AlQ\[9F_`m[Q.:G?At43VA]WD3XW-'!8SJBg.S!#(^9Ge>A=*(MQFW@Tm$)(o\]Wj_V&f'`7Y``8OO;SU<M$faasmfn.JnDo$@nSu($Y%9=jg"IQ_B5fVGOoPK),k7#HO:REP!5lji(&n8%hc9[V^ppDBr"MF0D-Oe08thC8DhG%M&\?Gpk?g\oeeV'?Heg:?i\o%i,Y$\7)[^C+DVgc$)"b#<`8`hP2rZrK%g.`M)P.O>\*fMO-TH24gK(c:?dR33P+,%sa3XbcnF>rMrrCG*eN`OU3p?PYrnP6tIO"Wnf>4qB*i#Oe?d>n.bA^?]UlgZP)3j5cM#_K\-^$!Grr@Xi=P8`Cpm4koZ2L?Q_\&MKhln7cF4V9Tig9A]Yd0&E^V`3(.nJ6:od!,+;urOjjpe#FHu<bHACo)ao?K4k_Xog>XtgZDV&RkV;-HSiZhW!ErH;Q2$?]?+2UA3JU5JoRl9'"Yh"Y=;mtmYDmA'/_R.o39AuN1:=i)s?Z$C5HjcAD/=<40"1QH]B<f-]\r-6Z^HX/R-rL1,UM='5'jde!k@1j:lh6Y3bF,lYGoZ\-@\X*Z`/*@X'*!S<GC6`9Gbp^GD>drg<P0p=u8t0k`:<*V/1ZD3KYDIRBf!48MKlVEMh+A%UEH9''N9>18Z7@DcQN[!-)9%"%i*BFEa6]5SD\;2qHlfrPm'TK[,Zbc4nsJJDca$+'NEBSiS=pf**=d/`m1f.5'ua\I@;#8d`ta>LEN@7j^3+-;)^sFk92-&Mmnf9-daqHGL%0fT:WNJ8g1*XYphOC/%oLd&[04"&BeAHiPmj_)8J)Rl)p'D>\K1VRp:g<?ip4qD_o&&VnD9"EX53#$NJ^t2Vcu"%<@qd<\4$RW/BU#'&?gJU\<d:YphXJ\\@L1mMLpJMN+:$Jh5$d1[sJ%B[_7sT]=lF<LUqWjOl.5j8^q-&>[$@bd*E:a.-hMH&&<g(/,Lf@"3/%lq!7G`=RcoVD_19&^6*:#DBUa1jfTWUb@C:dg`3I^"`oW]r<5W<"tq+:iph7CmVP'2D(Rp:_j=`V6JN5gp,k;-oC-[Ur+5BL8@@rRLMo%!@FpUa'pK.`W+_u'9!1oJ&2VdtlWN,SoFfo+!RRsG>WdHZ[9"6k#dh)G^4WUArN:S\pnQk._T9AOi;Wd'YH7D1Y9SX5"Cbc<,\9=a!Q;U\rpDl"c>d2#e>\brR&hqu9%]SOO!7s&me4+jg3\*Z\J69`RbaQ<i,@?lj#sSu[*(FYB=lts+L7"Qe88^*<4Gp/6\)Eqj:6-"c?aT7?eJ)fh\3Xgn[$.u+$Lfl8pq=(7bUhN[CLj]B6bL7D+>P&.S'5h)'i_*I0&;$2I.9=g2<$88rm\a_[E2K$<7.h1#%T#:G:Z(_H$)jo.5:TX?EBs3'o&eQH?S%1U[(kpNt\T.:"qqf_J=^g2Fsfg#)Lkf7#1DGN!trM"LXcAb%.!#p`?QZ:MlT@>o*,KmmIQk8eRepoXEYI!#/*i*4N^[bnEOX(hO2@nA!_QSYjGFaoZM8cd'E8\c5?O0!#rWph>e;oE,6\W#c]X3,<Zq&o\;M=Dl=\ZGL1^CYKnWCo^+J&?bjhBhYMm%aR\$L:Tuo/0P;p$d<AIUXUqcB(FKeU`r<*"i`;?=3R@C4@-!-Be9dPMm8#3`X1spXd"-W3Y(^!KK!J5fnj%&Z-7`P&l2qqLXUtC2f.\j01M%4aBq-3.!KFMro_fXP6Nn)`EuY=mB(peMQt`IIWYSHu!g#G%a&l[d_9&RSqcCI7YP.":G@2gSF_H6P)/=&'V\,1;C9,_]O\\hQu1%ME_UC)>-X^$=i8PgHoM78<G0W`,"s(goMG83:2kmJYJnQ_,r6`?&c]nXHLP&p:")8-180YkrAA"mH,cf1tQg2aa\-QNi(Km&)!.D=c-WuBPs5*A#Wf`&i88elW_-.cbb/NGQYjpmu"c#Us5gmlh=5CXKIc1Pu8bKhW`QL1s@kd&'LIC7Xa#J;S_dn17iDS0[)9#`6Nt$,&r8M>h:O!]!^!]5uW0ddW_tfn*I79*uT<-j4D4T:LEVAjfP?1d]Kq4p?`hum^[O?)_`5I;B$jc)='bei%GuJ!5j9<GgUmpHJ1ZhBb$rIlsNX@A;#R^2M8Z@gRS2ZNbdi..FR.e*A"Z/K2lL+6Fs=kQYfJqjaLP/]Cc\F\Phe^I/EePp]nff/GOqgrr>pca+j%?#bf`nNo@)lg/.nB@:3Ug@6k7`,ie!)9'j</I03aE0C8]=X6I>>dOoI@I-YD\er[8e'j8ng#b[B4ahZg9H37KI7<I/?>W$/^5A8[#ifpnGD%99%pXF)LI,8Lorl8=kpo/PsX'Z-WYMk/'7[KlQq%.:BY40VW-L?8e3Wjm=b@_[m%.XTUO2#,lLAJZCY-n90%/`]-nFPJWdTkG-aV>\RiZn8aPtt\`GI@\Uq?su^=2dtfn)4erY7o+>%:&1EIJ(AtCQhB$8Chqa!6h_nJ8b`DN8l95-G6G+KcB"9(b*j7q9cKSdXK<7CO<@?FL"J@m^6o=9W@oG>4t-krMG#FBcdOhddA[#.5&:ko15$K8tfgM<!"%JgZ9]Cc8kRbpF_7-dB*EhrK]SG!8f!5GJbN,8&4R&l^%D&pH%0./`[DMHBm8[$a;W1ei8bqaQQA063sc2kH/1.gb"H*ES/K8=u!q3^ESXsc;cI;S_KC:GAdE\IumR*i7i"u$M]84f>\mKr$(q7j"%kMp`98u-2s`d*7cgFL-Ve[bT0;+&-m]Lp$H+)f8b4`p^cBAL-HV>DrV:3gHM%,9[BQ\P6Q56->?"^``/lZ*9/ED7npMB.*Zg<cRa;ib+")V[o+YJP47;*V4F-!ddPF'Wu4N,Z/jdZ4skZ)rM?k_:PQ;BZhC5n#1O9/RGjNb<&0H]8;ND3c>q-KduiP7^M5ufhC4*N<RAAbU1ohV\!ebpTX\8k#+:iI!K!@D%E*-/[mOKp79heieYA*"mOiX_@\B^2\AgY9=1+e;QL=56e[*qBmdAcSHmR3ZoH/d9):8%\G)GS._tHo3`5;a(8.f!#d"3e1m7InJrrBB,m2+cC*U'+'DYur$pk%Mb8>`f(Q/a;M^2O-Ee[@NI</)CNj,=oQb)5i_Sem,qKu1]lGu:VrBu4R2eYC<fH98=qg(c)ba][?<aaY**3dc2IjkuVhL";m&^8k^#3MI/1/ZpC9,`<cIFD;WS7EZ?p!W(EWp`JG&SJUYQ@IS'l4@.sf:eaY^:ct]bR7UI"AiCibaN=V+Y=5BI4Z:2]dr%!j>1"rSDW#bW@$G55NIb,2*Phl>`jrDC':p-^>8rXA4C)]drKk89`]TT)`Mfh?^#*Vh.+>M>]<gYKqZ_:;g.+j^j42tu"j';o;6_3@Z7%*X!k=kRIK["PH2DICh@\1`;&6\GP?g-@Q+5e^=A$Li$NS=VBu)ola+<P8hsaEKJ_*tD>f!OeP1^kt>Bhg[.2_\Tn?ZWi8b]C*i7I>+n@RV5V`q`OFM>B%RNiBWeLhV=MDKia![9&<##6u/3$_SC;W'*39]$.WQ=!Do)AQa[;cW!YnUnS+Mb,O5QF>8`a\dH-g=GjT5MA'3*]3C'm7$O1`*+OC05e/o>FS!&HO[SL:jH,S=7[C?-53#@)<VmRYAs)]M^O@/-`VE7$._&b2!OCj7i;S=2F'h,h-)X:l1c6R%t_a[.s!_!C0]1_Vn/X7DnOml-Jrn)rr@\d&AC:+bZ\VPnETK9I_XBbC+XH!M!\eZYuO/J@n'U"pL=>Qnot2M&T3%WIb4QPnG`KDDZ1+%BJt0acf\V>>=tq/85m`VRRBsP=N1m\Oq1KA5/O&.6iJ7c,$B;6b.3L'?rLFEjat-E\WhBfk1stN)>b4f="OrTIr7INps[8%hgl``4rCu_<o6`aNo@)lg//0"[jkXD\thgYESt[o,/*GEJkMXik1UQnaTJOOj!:T*VkUoG#EdBLk.&WWADFFpQWdO46]kU'C@5c.Pah)c-gVH'Ii*D`_0Ys&]>Ji]A'_3U_]A@R(4D$o+^:*136j3K3'8*dg;h#.0_%*@hhJ_7LV,KkHZ*]#ip(l(%#G5Xi-`U9g`'7R>6>4Xi7GY>?;u/2#p'hZOo&:.3&nWh0)963Ssm'*6@G$jI"?q8BVLC]"&P_L-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ii[!U5nkC5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Tg$Z~>endstream
-endobj
-% 'F2': class PDFType1Font
-4 0 obj
-% Font Helvetica-Bold
-<< /BaseFont /Helvetica-Bold
- /Encoding /WinAnsiEncoding
- /Name /F2
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER1': class PDFDictionary
-5 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (mailto:compatibility@android.com) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 55
- 626.125
- 145.135
- 637.375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER2': class LinkAnnotation
-6 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 55
- 747.2637
- 0 ]
- /Rect [ 70
- 564.9375
- 117.5275
- 576.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER3': class LinkAnnotation
-7 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 55
- 501.8263
- 0 ]
- /Rect [ 70
- 553.6875
- 114.1825
- 564.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER4': class LinkAnnotation
-8 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 55
- 586.8887
- 0 ]
- /Rect [ 70
- 542.4375
- 107.935
- 553.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER5': class LinkAnnotation
-9 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 55
- 503.61
- 0 ]
- /Rect [ 85
- 529.1875
- 190.045
- 540.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER6': class LinkAnnotation
-10 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 55
- 362.485
- 0 ]
- /Rect [ 85
- 517.9375
- 172.12
- 529.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER7': class LinkAnnotation
-11 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 55
- 286.1775
- 0 ]
- /Rect [ 100
- 504.6875
- 161.6875
- 515.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER8': class LinkAnnotation
-12 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 137 0 R
- /XYZ
- 55
- 701.615
- 0 ]
- /Rect [ 100
- 493.4375
- 178.3675
- 504.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER9': class LinkAnnotation
-13 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 137 0 R
- /XYZ
- 55
- 701.615
- 0 ]
- /Rect [ 100
- 482.1875
- 184.6225
- 493.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER10': class LinkAnnotation
-14 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 137 0 R
- /XYZ
- 55
- 637.615
- 0 ]
- /Rect [ 115
- 468.9375
- 221.725
- 480.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER11': class LinkAnnotation
-15 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 137 0 R
- /XYZ
- 55
- 271.615
- 0 ]
- /Rect [ 115
- 457.6875
- 195.46
- 468.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER12': class LinkAnnotation
-16 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 137 0 R
- /XYZ
- 55
- 185.115
- 0 ]
- /Rect [ 115
- 446.4375
- 206.7175
- 457.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER13': class LinkAnnotation
-17 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 139 0 R
- /XYZ
- 55
- 742.865
- 0 ]
- /Rect [ 115
- 435.1875
- 200.47
- 446.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER14': class LinkAnnotation
-18 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 139 0 R
- /XYZ
- 55
- 678.0475
- 0 ]
- /Rect [ 85
- 421.9375
- 180.0325
- 433.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER15': class LinkAnnotation
-19 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 139 0 R
- /XYZ
- 55
- 206.1725
- 0 ]
- /Rect [ 85
- 410.6875
- 160.0225
- 421.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER16': class LinkAnnotation
-20 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 139 0 R
- /XYZ
- 55
- 118.615
- 0 ]
- /Rect [ 100
- 397.4375
- 197.53
- 408.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER17': class LinkAnnotation
-21 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 154 0 R
- /XYZ
- 55
- 390.615
- 0 ]
- /Rect [ 100
- 386.1875
- 193.36
- 397.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER18': class LinkAnnotation
-22 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 154 0 R
- /XYZ
- 55
- 171.2975
- 0 ]
- /Rect [ 85
- 372.9375
- 194.2075
- 384.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER19': class LinkAnnotation
-23 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 156 0 R
- /XYZ
- 55
- 653.5475
- 0 ]
- /Rect [ 85
- 361.6875
- 157.5325
- 372.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER20': class LinkAnnotation
-24 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 156 0 R
- /XYZ
- 55
- 227.9225
- 0 ]
- /Rect [ 85
- 350.4375
- 196.285
- 361.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER21': class LinkAnnotation
-25 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 156 0 R
- /XYZ
- 55
- 130.0475
- 0 ]
- /Rect [ 85
- 339.1875
- 191.7025
- 350.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER22': class LinkAnnotation
-26 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 165 0 R
- /XYZ
- 55
- 710.865
- 0 ]
- /Rect [ 100
- 325.9375
- 147.94
- 337.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER23': class LinkAnnotation
-27 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 165 0 R
- /XYZ
- 55
- 592.365
- 0 ]
- /Rect [ 100
- 314.6875
- 161.695
- 325.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER24': class LinkAnnotation
-28 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 165 0 R
- /XYZ
- 55
- 485.115
- 0 ]
- /Rect [ 100
- 303.4375
- 144.61
- 314.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER25': class LinkAnnotation
-29 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 165 0 R
- /XYZ
- 55
- 312.115
- 0 ]
- /Rect [ 100
- 292.1875
- 143.3575
- 303.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER26': class LinkAnnotation
-30 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 165 0 R
- /XYZ
- 55
- 259.365
- 0 ]
- /Rect [ 100
- 280.9375
- 174.1975
- 292.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER27': class LinkAnnotation
-31 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 170 0 R
- /XYZ
- 55
- 747.2637
- 0 ]
- /Rect [ 70
- 267.6875
- 197.1325
- 278.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER28': class LinkAnnotation
-32 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 170 0 R
- /XYZ
- 55
- 642.8262
- 0 ]
- /Rect [ 70
- 256.4375
- 159.6025
- 267.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER29': class LinkAnnotation
-33 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 170 0 R
- /XYZ
- 55
- 559.5475
- 0 ]
- /Rect [ 85
- 243.1875
- 147.5275
- 254.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER30': class LinkAnnotation
-34 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 170 0 R
- /XYZ
- 55
- 407.1725
- 0 ]
- /Rect [ 85
- 231.9375
- 160.45
- 243.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER31': class LinkAnnotation
-35 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 171 0 R
- /XYZ
- 55
- 620.5475
- 0 ]
- /Rect [ 85
- 220.6875
- 160.0375
- 231.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER32': class LinkAnnotation
-36 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 171 0 R
- /XYZ
- 55
- 297.6035
- 0 ]
- /Rect [ 85
- 209.4375
- 155.035
- 220.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER33': class LinkAnnotation
-37 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 176 0 R
- /XYZ
- 55
- 745.7975
- 0 ]
- /Rect [ 85
- 198.1875
- 147.1225
- 209.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER34': class LinkAnnotation
-38 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 176 0 R
- /XYZ
- 55
- 302.7638
- 0 ]
- /Rect [ 70
- 184.9375
- 174.1975
- 196.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER35': class LinkAnnotation
-39 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 179 0 R
- /XYZ
- 55
- 720.8887
- 0 ]
- /Rect [ 70
- 173.6875
- 155.8525
- 184.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER36': class LinkAnnotation
-40 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 179 0 R
- /XYZ
- 55
- 445.36
- 0 ]
- /Rect [ 85
- 160.4375
- 170.8675
- 171.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER37': class LinkAnnotation
-41 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 179 0 R
- /XYZ
- 55
- 369.0525
- 0 ]
- /Rect [ 100
- 147.1875
- 195.0475
- 158.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER38': class LinkAnnotation
-42 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 182 0 R
- /XYZ
- 55
- 722.115
- 0 ]
- /Rect [ 100
- 135.9375
- 171.685
- 147.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER39': class LinkAnnotation
-43 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 182 0 R
- /XYZ
- 55
- 680.615
- 0 ]
- /Rect [ 100
- 124.6875
- 205.0525
- 135.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER40': class LinkAnnotation
-44 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 182 0 R
- /XYZ
- 55
- 616.615
- 0 ]
- /Rect [ 100
- 113.4375
- 183.3775
- 124.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER41': class LinkAnnotation
-45 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 182 0 R
- /XYZ
- 55
- 509.365
- 0 ]
- /Rect [ 100
- 102.1875
- 201.7075
- 113.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER42': class LinkAnnotation
-46 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 182 0 R
- /XYZ
- 55
- 303.2975
- 0 ]
- /Rect [ 85
- 88.9375
- 145.03
- 100.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page1': class PDFPage
-47 0 obj
-% Page dictionary
-<< /Annots [ 5 0 R
- 6 0 R
- 7 0 R
- 8 0 R
- 9 0 R
- 10 0 R
- 11 0 R
- 12 0 R
- 13 0 R
- 14 0 R
- 15 0 R
- 16 0 R
- 17 0 R
- 18 0 R
- 19 0 R
- 20 0 R
- 21 0 R
- 22 0 R
- 23 0 R
- 24 0 R
- 25 0 R
- 26 0 R
- 27 0 R
- 28 0 R
- 29 0 R
- 30 0 R
- 31 0 R
- 32 0 R
- 33 0 R
- 34 0 R
- 35 0 R
- 36 0 R
- 37 0 R
- 38 0 R
- 39 0 R
- 40 0 R
- 41 0 R
- 42 0 R
- 43 0 R
- 44 0 R
- 45 0 R
- 46 0 R ]
- /Contents 303 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ]
- /XObject << /FormXob.c4c4c9f90f2c427799b277ddd57a9a5b 3 0 R >> >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER43': class LinkAnnotation
-48 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 182 0 R
- /XYZ
- 55
- 249.49
- 0 ]
- /Rect [ 100
- 730.6775
- 152.95
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER44': class LinkAnnotation
-49 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 182 0 R
- /XYZ
- 55
- 111.74
- 0 ]
- /Rect [ 100
- 719.4275
- 192.9625
- 730.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER45': class LinkAnnotation
-50 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 187 0 R
- /XYZ
- 55
- 684.365
- 0 ]
- /Rect [ 100
- 708.1775
- 173.785
- 719.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER46': class LinkAnnotation
-51 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 187 0 R
- /XYZ
- 55
- 588.365
- 0 ]
- /Rect [ 100
- 696.9275
- 182.545
- 708.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER47': class LinkAnnotation
-52 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 187 0 R
- /XYZ
- 55
- 474.2975
- 0 ]
- /Rect [ 85
- 683.6775
- 127.105
- 694.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER48': class LinkAnnotation
-53 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 187 0 R
- /XYZ
- 55
- 232.24
- 0 ]
- /Rect [ 100
- 670.4275
- 169.195
- 681.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER49': class LinkAnnotation
-54 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 187 0 R
- /XYZ
- 55
- 116.99
- 0 ]
- /Rect [ 100
- 659.1775
- 169.2025
- 670.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER50': class LinkAnnotation
-55 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 189 0 R
- /XYZ
- 55
- 669.115
- 0 ]
- /Rect [ 100
- 647.9275
- 136.69
- 659.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER51': class LinkAnnotation
-56 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 189 0 R
- /XYZ
- 55
- 616.365
- 0 ]
- /Rect [ 100
- 636.6775
- 157.1125
- 647.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER52': class LinkAnnotation
-57 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 189 0 R
- /XYZ
- 55
- 516.365
- 0 ]
- /Rect [ 100
- 625.4275
- 155.86
- 636.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER53': class LinkAnnotation
-58 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 189 0 R
- /XYZ
- 55
- 440.865
- 0 ]
- /Rect [ 100
- 614.1775
- 165.8575
- 625.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER54': class LinkAnnotation
-59 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 189 0 R
- /XYZ
- 55
- 376.865
- 0 ]
- /Rect [ 100
- 602.9275
- 159.6175
- 614.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER55': class LinkAnnotation
-60 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 189 0 R
- /XYZ
- 55
- 335.365
- 0 ]
- /Rect [ 100
- 591.6775
- 177.5275
- 602.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER56': class LinkAnnotation
-61 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 189 0 R
- /XYZ
- 55
- 259.2975
- 0 ]
- /Rect [ 85
- 578.4275
- 158.365
- 589.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER57': class LinkAnnotation
-62 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 189 0 R
- /XYZ
- 55
- 194.24
- 0 ]
- /Rect [ 100
- 565.1775
- 155.8675
- 576.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER58': class LinkAnnotation
-63 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 193 0 R
- /XYZ
- 55
- 699.615
- 0 ]
- /Rect [ 100
- 553.9275
- 185.035
- 565.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER59': class LinkAnnotation
-64 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 193 0 R
- /XYZ
- 55
- 646.865
- 0 ]
- /Rect [ 100
- 542.6775
- 152.5375
- 553.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER60': class LinkAnnotation
-65 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 193 0 R
- /XYZ
- 55
- 539.615
- 0 ]
- /Rect [ 100
- 531.4275
- 213.7825
- 542.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER61': class LinkAnnotation
-66 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 193 0 R
- /XYZ
- 55
- 398.365
- 0 ]
- /Rect [ 100
- 520.1775
- 215.86
- 531.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER62': class LinkAnnotation
-67 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 193 0 R
- /XYZ
- 55
- 280.7975
- 0 ]
- /Rect [ 85
- 506.9275
- 130.015
- 518.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER63': class LinkAnnotation
-68 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 193 0 R
- /XYZ
- 55
- 193.24
- 0 ]
- /Rect [ 100
- 493.6775
- 190.8625
- 504.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER64': class LinkAnnotation
-69 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 710.865
- 0 ]
- /Rect [ 100
- 482.4275
- 192.115
- 493.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER65': class LinkAnnotation
-70 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 475.115
- 0 ]
- /Rect [ 100
- 471.1775
- 193.375
- 482.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER66': class LinkAnnotation
-71 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 223.115
- 0 ]
- /Rect [ 100
- 459.9275
- 186.2875
- 471.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER67': class LinkAnnotation
-72 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 158.2975
- 0 ]
- /Rect [ 85
- 446.6775
- 169.6225
- 457.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER68': class LinkAnnotation
-73 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 93.24
- 0 ]
- /Rect [ 100
- 433.4275
- 223.375
- 444.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER69': class LinkAnnotation
-74 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 197 0 R
- /XYZ
- 55
- 592.365
- 0 ]
- /Rect [ 100
- 422.1775
- 212.1475
- 433.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER70': class LinkAnnotation
-75 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 197 0 R
- /XYZ
- 55
- 335.5475
- 0 ]
- /Rect [ 85
- 408.9275
- 115.015
- 420.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER71': class LinkAnnotation
-76 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 197 0 R
- /XYZ
- 55
- 171.0138
- 0 ]
- /Rect [ 70
- 395.6775
- 166.2775
- 406.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER72': class LinkAnnotation
-77 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 202 0 R
- /XYZ
- 55
- 621.6388
- 0 ]
- /Rect [ 70
- 384.4275
- 172.945
- 395.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER73': class LinkAnnotation
-78 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 202 0 R
- /XYZ
- 55
- 527.11
- 0 ]
- /Rect [ 85
- 371.1775
- 140.4325
- 382.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER74': class LinkAnnotation
-79 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 202 0 R
- /XYZ
- 55
- 449.985
- 0 ]
- /Rect [ 85
- 359.9275
- 186.295
- 371.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER75': class LinkAnnotation
-80 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 202 0 R
- /XYZ
- 55
- 372.86
- 0 ]
- /Rect [ 85
- 348.6775
- 178.3525
- 359.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER76': class LinkAnnotation
-81 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 202 0 R
- /XYZ
- 55
- 306.985
- 0 ]
- /Rect [ 85
- 337.4275
- 212.56
- 348.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER77': class LinkAnnotation
-82 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 205 0 R
- /XYZ
- 55
- 591.1387
- 0 ]
- /Rect [ 70
- 324.1775
- 183.79
- 335.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER78': class LinkAnnotation
-83 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 205 0 R
- /XYZ
- 55
- 475.86
- 0 ]
- /Rect [ 85
- 310.9275
- 182.5375
- 322.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER79': class LinkAnnotation
-84 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 205 0 R
- /XYZ
- 55
- 300.985
- 0 ]
- /Rect [ 85
- 299.6775
- 144.6025
- 310.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER80': class LinkAnnotation
-85 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 205 0 R
- /XYZ
- 55
- 137.36
- 0 ]
- /Rect [ 85
- 288.4275
- 180.88
- 299.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER81': class LinkAnnotation
-86 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 208 0 R
- /XYZ
- 55
- 686.8887
- 0 ]
- /Rect [ 70
- 275.1775
- 148.375
- 286.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER82': class LinkAnnotation
-87 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 208 0 R
- /XYZ
- 55
- 459.9513
- 0 ]
- /Rect [ 70
- 263.9275
- 119.605
- 275.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER83': class LinkAnnotation
-88 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 209 0 R
- /XYZ
- 55
- 747.2637
- 0 ]
- /Rect [ 70
- 252.6775
- 200.065
- 263.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page2': class PDFPage
-89 0 obj
-% Page dictionary
-<< /Annots [ 48 0 R
- 49 0 R
- 50 0 R
- 51 0 R
- 52 0 R
- 53 0 R
- 54 0 R
- 55 0 R
- 56 0 R
- 57 0 R
- 58 0 R
- 59 0 R
- 60 0 R
- 61 0 R
- 62 0 R
- 63 0 R
- 64 0 R
- 65 0 R
- 66 0 R
- 67 0 R
- 68 0 R
- 69 0 R
- 70 0 R
- 71 0 R
- 72 0 R
- 73 0 R
- 74 0 R
- 75 0 R
- 76 0 R
- 77 0 R
- 78 0 R
- 79 0 R
- 80 0 R
- 81 0 R
- 82 0 R
- 83 0 R
- 84 0 R
- 85 0 R
- 86 0 R
- 87 0 R
- 88 0 R ]
- /Contents 304 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER84': class LinkAnnotation
-90 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 462.615
- 0 ]
- /Rect [ 125.8675
- 663.865
- 170.05
- 675.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER85': class LinkAnnotation
-91 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 205 0 R
- /XYZ
- 55
- 591.1387
- 0 ]
- /Rect [ 237.16
- 579.115
- 272.5975
- 590.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER86': class LinkAnnotation
-92 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 436.115
- 0 ]
- /Rect [ 401.8075
- 567.865
- 445.99
- 579.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER87': class PDFDictionary
-93 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.ietf.org/rfc/rfc2119.txt) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 189.625
- 450.4275
- 297.1675
- 461.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER88': class PDFDictionary
-94 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/compatibility/index.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 205.45
- 437.1775
- 369.6775
- 448.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER89': class PDFDictionary
-95 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 167.965
- 423.9275
- 254.6725
- 435.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER90': class PDFDictionary
-96 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/packages.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 184.2325
- 410.6775
- 363.4825
- 421.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER91': class PDFDictionary
-97 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/Manifest.permission.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 172.9525
- 397.4275
- 413.8825
- 408.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER92': class PDFDictionary
-98 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/os/Build.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 157.96
- 384.1775
- 358.885
- 395.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER93': class PDFDictionary
-99 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/compatibility/2.3/versions.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 186.715
- 370.9275
- 373.45
- 382.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER94': class PDFDictionary
-100 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/webkit/WebView.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 171.7
- 357.6775
- 400.96
- 368.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER95': class PDFDictionary
-101 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.whatwg.org/specs/web-apps/current-work/multipage/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 95.005
- 344.4275
- 307.1575
- 355.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER96': class PDFDictionary
-102 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://dev.w3.org/html5/spec/Overview.html#offline) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 159.955
- 331.1775
- 327.52
- 342.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER97': class PDFDictionary
-103 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://dev.w3.org/html5/spec/Overview.html#video) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 131.2
- 317.9275
- 296.68
- 329.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER98': class PDFDictionary
-104 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.w3.org/TR/geolocation-API/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 172.045
- 304.6775
- 300.8425
- 315.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER99': class PDFDictionary
-105 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.w3.org/TR/webdatabase/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 178.3
- 291.4275
- 298.765
- 302.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER100': class PDFDictionary
-106 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.w3.org/TR/IndexedDB/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 170.7925
- 278.1775
- 283.75
- 289.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER101': class PDFDictionary
-107 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/ui_guidelines/widget_design.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 114.5275
- 251.6775
- 374.23
- 262.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER102': class PDFDictionary
-108 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/ui/notifiers/notifications.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 114.94
- 238.4275
- 346.2925
- 249.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER103': class PDFDictionary
-109 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://code.google.com/android/reference/available-resources.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 148.705
- 225.1775
- 368.8
- 236.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER104': class PDFDictionary
-110 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/ui_guidelines/icon_design.html#statusbarstructure) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 162.8875
- 211.9275
- 477.1975
- 223.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER105': class PDFDictionary
-111 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/app/SearchManager.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 129.535
- 198.6775
- 371.7325
- 209.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER106': class PDFDictionary
-112 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/widget/Toast.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 96.6025
- 185.4275
- 313.3675
- 196.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER107': class PDFDictionary
-113 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/resources/articles/live-wallpapers.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 127.4425
- 172.1775
- 351.265
- 183.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER108': class PDFDictionary
-114 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/developing/tools/index.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 245.845
- 158.9275
- 453.865
- 170.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER109': class PDFDictionary
-115 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/fundamentals.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 164.1325
- 145.6775
- 364.645
- 156.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER110': class PDFDictionary
-116 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/manifest/manifest-intro.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 117.8575
- 132.4275
- 349.2025
- 143.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER111': class PDFDictionary
-117 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/developing/tools/monkey.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 138.7075
- 119.1775
- 355.06
- 130.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER112': class PDFDictionary
-118 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/content/pm/PackageManager.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 179.965
- 105.9275
- 452.1775
- 117.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER113': class PDFDictionary
-119 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/screens_support.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 167.8825
- 92.6775
- 389.23
- 103.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER114': class PDFDictionary
-120 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/util/DisplayMetrics.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 161.6125
- 79.4275
- 396.28
- 90.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page3': class PDFPage
-121 0 obj
-% Page dictionary
-<< /Annots [ 90 0 R
- 91 0 R
- 92 0 R
- 93 0 R
- 94 0 R
- 95 0 R
- 96 0 R
- 97 0 R
- 98 0 R
- 99 0 R
- 100 0 R
- 101 0 R
- 102 0 R
- 103 0 R
- 104 0 R
- 105 0 R
- 106 0 R
- 107 0 R
- 108 0 R
- 109 0 R
- 110 0 R
- 111 0 R
- 112 0 R
- 113 0 R
- 114 0 R
- 115 0 R
- 116 0 R
- 117 0 R
- 118 0 R
- 119 0 R
- 120 0 R ]
- /Contents 305 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER115': class PDFDictionary
-122 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/content/res/Configuration.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 184.9825
- 730.6775
- 443.02
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER116': class PDFDictionary
-123 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/hardware/SensorEvent.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 157.0525
- 717.4275
- 407.5825
- 728.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER117': class PDFDictionary
-124 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/bluetooth/package-summary.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 119.9575
- 704.1775
- 388.825
- 715.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER118': class PDFDictionary
-125 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/hardware/Camera.html#setDisplayOrientation\(int\)) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 152.0425
- 690.9275
- 474.6625
- 702.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER119': class PDFDictionary
-126 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/hardware/Camera.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 161.2075
- 677.6775
- 395.47
- 688.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER120': class PDFDictionary
-127 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/security/security.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 220.3975
- 664.4275
- 429.6475
- 675.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER121': class PDFDictionary
-128 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://code.google.com/p/apps-for-android) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 129.955
- 651.1775
- 269.1925
- 662.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER122': class LinkAnnotation
-129 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 422.865
- 0 ]
- /Rect [ 460.615
- 435.865
- 504.7975
- 447.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER123': class LinkAnnotation
-130 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 409.615
- 0 ]
- /Rect [ 470.995
- 253.24
- 515.1775
- 264.49 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'F3': class PDFType1Font
-131 0 obj
-% Font Courier
-<< /BaseFont /Courier
- /Encoding /WinAnsiEncoding
- /Name /F3
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER124': class LinkAnnotation
-132 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 396.365
- 0 ]
- /Rect [ 336.2725
- 200.49
- 380.455
- 211.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'F4': class PDFType1Font
-133 0 obj
-% Font Times-Roman
-<< /BaseFont /Times-Roman
- /Encoding /WinAnsiEncoding
- /Name /F4
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER125': class LinkAnnotation
-134 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 383.115
- 0 ]
- /Rect [ 350.19
- 124.49
- 394.3725
- 135.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page4': class PDFPage
-135 0 obj
-% Page dictionary
-<< /Annots [ 122 0 R
- 123 0 R
- 124 0 R
- 125 0 R
- 126 0 R
- 127 0 R
- 128 0 R
- 129 0 R
- 130 0 R
- 132 0 R
- 134 0 R ]
- /Contents 306 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page5': class PDFPage
-136 0 obj
-% Page dictionary
-<< /Contents 307 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page6': class PDFPage
-137 0 obj
-% Page dictionary
-<< /Contents 308 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER126': class LinkAnnotation
-138 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 369.865
- 0 ]
- /Rect [ 381.61
- 160.9275
- 425.7925
- 172.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page7': class PDFPage
-139 0 obj
-% Page dictionary
-<< /Annots [ 138 0 R ]
- /Contents 309 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER127': class LinkAnnotation
-140 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 356.615
- 0 ]
- /Rect [ 307.5925
- 532.9275
- 351.775
- 544.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER128': class LinkAnnotation
-141 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 343.365
- 0 ]
- /Rect [ 183.8125
- 500.9275
- 232.165
- 512.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER129': class LinkAnnotation
-142 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 330.115
- 0 ]
- /Rect [ 122.125
- 487.6775
- 170.4775
- 498.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER130': class LinkAnnotation
-143 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 316.865
- 0 ]
- /Rect [ 108.775
- 474.4275
- 157.1275
- 485.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER131': class LinkAnnotation
-144 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 303.615
- 0 ]
- /Rect [ 343.435
- 453.6775
- 391.7875
- 464.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'F5': class PDFType1Font
-145 0 obj
-% Font Helvetica-Oblique
-<< /BaseFont /Helvetica-Oblique
- /Encoding /WinAnsiEncoding
- /Name /F5
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER132': class LinkAnnotation
-146 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 290.365
- 0 ]
- /Rect [ 110.4475
- 442.4275
- 158.8
- 453.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER133': class LinkAnnotation
-147 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 356.615
- 0 ]
- /Rect [ 160.4575
- 282.4275
- 204.64
- 293.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER134': class LinkAnnotation
-148 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 343.365
- 0 ]
- /Rect [ 183.8125
- 250.4275
- 232.165
- 261.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER135': class LinkAnnotation
-149 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 330.115
- 0 ]
- /Rect [ 122.125
- 237.1775
- 170.4775
- 248.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER136': class LinkAnnotation
-150 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 316.865
- 0 ]
- /Rect [ 108.775
- 223.9275
- 157.1275
- 235.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER137': class LinkAnnotation
-151 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 303.615
- 0 ]
- /Rect [ 343.435
- 203.1775
- 391.7875
- 214.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER138': class LinkAnnotation
-152 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 290.365
- 0 ]
- /Rect [ 110.4475
- 191.9275
- 158.8
- 203.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER139': class LinkAnnotation
-153 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 436.115
- 0 ]
- /Rect [ 125.4475
- 114.8025
- 169.63
- 126.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page8': class PDFPage
-154 0 obj
-% Page dictionary
-<< /Annots [ 140 0 R
- 141 0 R
- 142 0 R
- 143 0 R
- 144 0 R
- 146 0 R
- 147 0 R
- 148 0 R
- 149 0 R
- 150 0 R
- 151 0 R
- 152 0 R
- 153 0 R ]
- /Contents 310 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER140': class LinkAnnotation
-155 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 277.115
- 0 ]
- /Rect [ 500.1475
- 182.6775
- 548.5
- 193.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page9': class PDFPage
-156 0 obj
-% Page dictionary
-<< /Annots [ 155 0 R ]
- /Contents 311 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER141': class LinkAnnotation
-157 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 263.865
- 0 ]
- /Rect [ 515.1475
- 677.9275
- 553.075
- 689.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER142': class LinkAnnotation
-158 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 263.865
- 0 ]
- /Rect [ 55
- 666.6775
- 63.34
- 677.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER143': class LinkAnnotation
-159 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 250.615
- 0 ]
- /Rect [ 313.045
- 559.4275
- 361.3975
- 570.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER144': class LinkAnnotation
-160 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 237.365
- 0 ]
- /Rect [ 448.06
- 527.4275
- 496.4125
- 538.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER145': class LinkAnnotation
-161 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 224.115
- 0 ]
- /Rect [ 124.615
- 516.1775
- 172.9675
- 527.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER146': class LinkAnnotation
-162 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 210.865
- 0 ]
- /Rect [ 132.535
- 452.1775
- 180.8875
- 463.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER147': class LinkAnnotation
-163 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 197.615
- 0 ]
- /Rect [ 217.9075
- 279.1775
- 266.26
- 290.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER148': class LinkAnnotation
-164 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 184.365
- 0 ]
- /Rect [ 73.7575
- 215.1775
- 122.11
- 226.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page10': class PDFPage
-165 0 obj
-% Page dictionary
-<< /Annots [ 157 0 R
- 158 0 R
- 159 0 R
- 160 0 R
- 161 0 R
- 162 0 R
- 163 0 R
- 164 0 R ]
- /Contents 312 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER149': class LinkAnnotation
-166 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 171.115
- 0 ]
- /Rect [ 499.5925
- 695.865
- 547.945
- 707.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER150': class LinkAnnotation
-167 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 157.865
- 0 ]
- /Rect [ 257.9875
- 675.115
- 306.34
- 686.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER151': class LinkAnnotation
-168 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 144.615
- 0 ]
- /Rect [ 373.0375
- 675.115
- 421.39
- 686.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER152': class LinkAnnotation
-169 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 277.115
- 0 ]
- /Rect [ 493.5025
- 675.115
- 541.855
- 686.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page11': class PDFPage
-170 0 obj
-% Page dictionary
-<< /Annots [ 166 0 R
- 167 0 R
- 168 0 R
- 169 0 R ]
- /Contents 313 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page12': class PDFPage
-171 0 obj
-% Page dictionary
-<< /Contents 314 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER153': class LinkAnnotation
-172 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 118.115
- 0 ]
- /Rect [ 378.895
- 323.8025
- 427.2475
- 335.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER154': class LinkAnnotation
-173 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 171.115
- 0 ]
- /Rect [ 207.1
- 219.365
- 255.4525
- 230.615 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER155': class LinkAnnotation
-174 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 171.115
- 0 ]
- /Rect [ 239.6275
- 183.615
- 287.98
- 194.865 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER156': class LinkAnnotation
-175 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 131.365
- 0 ]
- /Rect [ 98.3425
- 147.865
- 146.695
- 159.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page13': class PDFPage
-176 0 obj
-% Page dictionary
-<< /Annots [ 172 0 R
- 173 0 R
- 174 0 R
- 175 0 R ]
- /Contents 315 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER157': class LinkAnnotation
-177 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 118.115
- 0 ]
- /Rect [ 392.7925
- 454.74
- 441.145
- 465.99 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER158': class LinkAnnotation
-178 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 104.865
- 0 ]
- /Rect [ 258.0025
- 388.865
- 306.355
- 400.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page14': class PDFPage
-179 0 obj
-% Page dictionary
-<< /Annots [ 177 0 R
- 178 0 R ]
- /Contents 316 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER159': class LinkAnnotation
-180 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 91.615
- 0 ]
- /Rect [ 462.835
- 689.1775
- 511.1875
- 700.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER160': class LinkAnnotation
-181 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 742.865
- 0 ]
- /Rect [ 259.42
- 120.3025
- 307.7725
- 131.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page15': class PDFPage
-182 0 obj
-% Page dictionary
-<< /Annots [ 180 0 R
- 181 0 R ]
- /Contents 317 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER161': class LinkAnnotation
-183 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 742.865
- 0 ]
- /Rect [ 381.79
- 717.4275
- 430.1425
- 728.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER162': class LinkAnnotation
-184 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 742.865
- 0 ]
- /Rect [ 304.7875
- 508.1775
- 353.14
- 519.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER163': class LinkAnnotation
-185 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 118.115
- 0 ]
- /Rect [ 468.19
- 385.8025
- 516.5425
- 397.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER164': class LinkAnnotation
-186 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 382.21
- 165.3025
- 430.5625
- 176.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page16': class PDFPage
-187 0 obj
-% Page dictionary
-<< /Annots [ 183 0 R
- 184 0 R
- 185 0 R
- 186 0 R ]
- /Contents 318 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER165': class LinkAnnotation
-188 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 382.21
- 717.4275
- 430.5625
- 728.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page17': class PDFPage
-189 0 obj
-% Page dictionary
-<< /Annots [ 188 0 R ]
- /Contents 319 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER166': class LinkAnnotation
-190 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 716.365
- 0 ]
- /Rect [ 297.6025
- 602.6775
- 345.955
- 613.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER167': class LinkAnnotation
-191 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 118.115
- 0 ]
- /Rect [ 68.335
- 463.4275
- 116.6875
- 474.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER168': class LinkAnnotation
-192 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 69.925
- 118.115
- 0 ]
- /Rect [ 320.2675
- 418.1775
- 368.62
- 429.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page18': class PDFPage
-193 0 obj
-% Page dictionary
-<< /Annots [ 190 0 R
- 191 0 R
- 192 0 R ]
- /Contents 320 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER169': class LinkAnnotation
-194 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 703.115
- 0 ]
- /Rect [ 293.17
- 545.9275
- 341.5225
- 557.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER170': class LinkAnnotation
-195 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 689.865
- 0 ]
- /Rect [ 425.56
- 353.6775
- 473.9125
- 364.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page19': class PDFPage
-196 0 obj
-% Page dictionary
-<< /Annots [ 194 0 R
- 195 0 R ]
- /Contents 321 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page20': class PDFPage
-197 0 obj
-% Page dictionary
-<< /Contents 322 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER171': class LinkAnnotation
-198 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 676.615
- 0 ]
- /Rect [ 164.2225
- 558.99
- 212.575
- 570.24 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER172': class LinkAnnotation
-199 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 676.615
- 0 ]
- /Rect [ 465.5875
- 481.865
- 513.94
- 493.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER173': class LinkAnnotation
-200 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 676.615
- 0 ]
- /Rect [ 345.55
- 382.24
- 393.9025
- 393.49 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER174': class LinkAnnotation
-201 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 676.615
- 0 ]
- /Rect [ 57.085
- 316.365
- 105.4375
- 327.615 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page21': class PDFPage
-202 0 obj
-% Page dictionary
-<< /Annots [ 198 0 R
- 199 0 R
- 200 0 R
- 201 0 R ]
- /Contents 323 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER175': class LinkAnnotation
-203 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 449.365
- 0 ]
- /Rect [ 323.41
- 430.615
- 367.5925
- 441.865 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER176': class LinkAnnotation
-204 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 121 0 R
- /XYZ
- 66.25
- 449.365
- 0 ]
- /Rect [ 315.115
- 321.615
- 359.2975
- 332.865 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page22': class PDFPage
-205 0 obj
-% Page dictionary
-<< /Annots [ 203 0 R
- 204 0 R ]
- /Contents 324 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER177': class LinkAnnotation
-206 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 135 0 R
- /XYZ
- 69.925
- 663.365
- 0 ]
- /Rect [ 188.2975
- 730.6775
- 236.65
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER178': class PDFDictionary
-207 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (mailto:compatibility@android.com) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 193.8325
- 408.5525
- 283.9675
- 419.8025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page23': class PDFPage
-208 0 obj
-% Page dictionary
-<< /Annots [ 206 0 R
- 207 0 R ]
- /Contents 325 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page24': class PDFPage
-209 0 obj
-% Page dictionary
-<< /Contents 326 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 302 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'R210': class PDFCatalog
-210 0 obj
-% Document Root
-<< /Outlines 212 0 R
- /PageMode /UseNone
- /Pages 302 0 R
- /Type /Catalog >>
-endobj
-% 'R211': class PDFInfo
-211 0 obj
-<< /Author ()
- /CreationDate (D:20101215173620+08'00')
- /Keywords ()
- /Producer (pisa HTML to PDF <http://www.htmltopdf.org>)
- /Subject ()
- /Title (Android 2.3 Compatibility Definition) >>
-endobj
-% 'R212': class PDFOutlines
-212 0 obj
-<< /Count 17
- /First 213 0 R
- /Last 213 0 R
- /Type /Outlines >>
-endobj
-% 'Outline.0': class OutlineEntryObject
-213 0 obj
-<< /Count -14
- /Dest [ 47 0 R
- /Fit ]
- /First 214 0 R
- /Last 296 0 R
- /Parent 212 0 R
- /Title (Android 2.3 Compatibility Definition) >>
-endobj
-% 'Outline.2.0': class OutlineEntryObject
-214 0 obj
-<< /Dest [ 47 0 R
- /Fit ]
- /Next 215 0 R
- /Parent 213 0 R
- /Title (Table of Contents) >>
-endobj
-% 'Outline.2.1': class OutlineEntryObject
-215 0 obj
-<< /Dest [ 121 0 R
- /Fit ]
- /Next 216 0 R
- /Parent 213 0 R
- /Prev 214 0 R
- /Title (1. Introduction) >>
-endobj
-% 'Outline.2.2': class OutlineEntryObject
-216 0 obj
-<< /Dest [ 121 0 R
- /Fit ]
- /Next 217 0 R
- /Parent 213 0 R
- /Prev 215 0 R
- /Title (2. Resources) >>
-endobj
-% 'Outline.2.3': class OutlineEntryObject
-217 0 obj
-<< /Count -8
- /Dest [ 135 0 R
- /Fit ]
- /First 218 0 R
- /Last 234 0 R
- /Next 240 0 R
- /Parent 213 0 R
- /Prev 216 0 R
- /Title (3. Software) >>
-endobj
-% 'Outline.3.0': class OutlineEntryObject
-218 0 obj
-<< /Dest [ 135 0 R
- /Fit ]
- /Next 219 0 R
- /Parent 217 0 R
- /Title (3.1. Managed API Compatibility) >>
-endobj
-% 'Outline.3.1': class OutlineEntryObject
-219 0 obj
-<< /Count -7
- /Dest [ 135 0 R
- /Fit ]
- /First 220 0 R
- /Last 226 0 R
- /Next 227 0 R
- /Parent 217 0 R
- /Prev 218 0 R
- /Title (3.2. Soft API Compatibility) >>
-endobj
-% 'Outline.4.0': class OutlineEntryObject
-220 0 obj
-<< /Dest [ 135 0 R
- /Fit ]
- /Next 221 0 R
- /Parent 219 0 R
- /Title (3.2.1. Permissions) >>
-endobj
-% 'Outline.4.1': class OutlineEntryObject
-221 0 obj
-<< /Dest [ 135 0 R
- /Fit ]
- /Next 222 0 R
- /Parent 219 0 R
- /Prev 220 0 R
- /Title (3.2.2. Build Parameters) >>
-endobj
-% 'Outline.4.2': class OutlineEntryObject
-222 0 obj
-<< /Dest [ 137 0 R
- /Fit ]
- /Next 223 0 R
- /Parent 219 0 R
- /Prev 221 0 R
- /Title (3.2.3. Intent Compatibility) >>
-endobj
-% 'Outline.4.3': class OutlineEntryObject
-223 0 obj
-<< /Dest [ 137 0 R
- /Fit ]
- /Next 224 0 R
- /Parent 219 0 R
- /Prev 222 0 R
- /Title (3.2.3.1. Core Application Intents) >>
-endobj
-% 'Outline.4.4': class OutlineEntryObject
-224 0 obj
-<< /Dest [ 137 0 R
- /Fit ]
- /Next 225 0 R
- /Parent 219 0 R
- /Prev 223 0 R
- /Title (3.2.3.2. Intent Overrides) >>
-endobj
-% 'Outline.4.5': class OutlineEntryObject
-225 0 obj
-<< /Dest [ 137 0 R
- /Fit ]
- /Next 226 0 R
- /Parent 219 0 R
- /Prev 224 0 R
- /Title (3.2.3.3. Intent Namespaces) >>
-endobj
-% 'Outline.4.6': class OutlineEntryObject
-226 0 obj
-<< /Dest [ 139 0 R
- /Fit ]
- /Parent 219 0 R
- /Prev 225 0 R
- /Title (3.2.3.4. Broadcast Intents) >>
-endobj
-% 'Outline.3.2': class OutlineEntryObject
-227 0 obj
-<< /Dest [ 139 0 R
- /Fit ]
- /Next 228 0 R
- /Parent 217 0 R
- /Prev 219 0 R
- /Title (3.3. Native API Compatibility) >>
-endobj
-% 'Outline.3.3': class OutlineEntryObject
-228 0 obj
-<< /Count -2
- /Dest [ 139 0 R
- /Fit ]
- /First 229 0 R
- /Last 230 0 R
- /Next 231 0 R
- /Parent 217 0 R
- /Prev 227 0 R
- /Title (3.4. Web Compatibility) >>
-endobj
-% 'Outline.5.0': class OutlineEntryObject
-229 0 obj
-<< /Dest [ 139 0 R
- /Fit ]
- /Next 230 0 R
- /Parent 228 0 R
- /Title (3.4.1. WebView Compatibility) >>
-endobj
-% 'Outline.5.1': class OutlineEntryObject
-230 0 obj
-<< /Dest [ 154 0 R
- /Fit ]
- /Parent 228 0 R
- /Prev 229 0 R
- /Title (3.4.2. Browser Compatibility) >>
-endobj
-% 'Outline.3.4': class OutlineEntryObject
-231 0 obj
-<< /Dest [ 154 0 R
- /Fit ]
- /Next 232 0 R
- /Parent 217 0 R
- /Prev 228 0 R
- /Title (3.5. API Behavioral Compatibility) >>
-endobj
-% 'Outline.3.5': class OutlineEntryObject
-232 0 obj
-<< /Dest [ 156 0 R
- /Fit ]
- /Next 233 0 R
- /Parent 217 0 R
- /Prev 231 0 R
- /Title (3.6. API Namespaces) >>
-endobj
-% 'Outline.3.6': class OutlineEntryObject
-233 0 obj
-<< /Dest [ 156 0 R
- /Fit ]
- /Next 234 0 R
- /Parent 217 0 R
- /Prev 232 0 R
- /Title (3.7. Virtual Machine Compatibility) >>
-endobj
-% 'Outline.3.7': class OutlineEntryObject
-234 0 obj
-<< /Count -5
- /Dest [ 156 0 R
- /Fit ]
- /First 235 0 R
- /Last 239 0 R
- /Parent 217 0 R
- /Prev 233 0 R
- /Title (3.8. User Interface Compatibility) >>
-endobj
-% 'Outline.6.0': class OutlineEntryObject
-235 0 obj
-<< /Dest [ 165 0 R
- /Fit ]
- /Next 236 0 R
- /Parent 234 0 R
- /Title (3.8.1. Widgets) >>
-endobj
-% 'Outline.6.1': class OutlineEntryObject
-236 0 obj
-<< /Dest [ 165 0 R
- /Fit ]
- /Next 237 0 R
- /Parent 234 0 R
- /Prev 235 0 R
- /Title (3.8.2. Notifications) >>
-endobj
-% 'Outline.6.2': class OutlineEntryObject
-237 0 obj
-<< /Dest [ 165 0 R
- /Fit ]
- /Next 238 0 R
- /Parent 234 0 R
- /Prev 236 0 R
- /Title (3.8.3. Search) >>
-endobj
-% 'Outline.6.3': class OutlineEntryObject
-238 0 obj
-<< /Dest [ 165 0 R
- /Fit ]
- /Next 239 0 R
- /Parent 234 0 R
- /Prev 237 0 R
- /Title (3.8.4. Toasts) >>
-endobj
-% 'Outline.6.4': class OutlineEntryObject
-239 0 obj
-<< /Dest [ 165 0 R
- /Fit ]
- /Parent 234 0 R
- /Prev 238 0 R
- /Title (3.8.5. Live Wallpapers) >>
-endobj
-% 'Outline.2.4': class OutlineEntryObject
-240 0 obj
-<< /Dest [ 170 0 R
- /Fit ]
- /Next 241 0 R
- /Parent 213 0 R
- /Prev 217 0 R
- /Title (4. Application Packaging Compatibility) >>
-endobj
-% 'Outline.2.5': class OutlineEntryObject
-241 0 obj
-<< /Count -5
- /Dest [ 170 0 R
- /Fit ]
- /First 242 0 R
- /Last 246 0 R
- /Next 247 0 R
- /Parent 213 0 R
- /Prev 240 0 R
- /Title (5. Multimedia Compatibility) >>
-endobj
-% 'Outline.7.0': class OutlineEntryObject
-242 0 obj
-<< /Dest [ 170 0 R
- /Fit ]
- /Next 243 0 R
- /Parent 241 0 R
- /Title (5.1. Media Codecs) >>
-endobj
-% 'Outline.7.1': class OutlineEntryObject
-243 0 obj
-<< /Dest [ 170 0 R
- /Fit ]
- /Next 244 0 R
- /Parent 241 0 R
- /Prev 242 0 R
- /Title (5.1.1. Media Decoders) >>
-endobj
-% 'Outline.7.2': class OutlineEntryObject
-244 0 obj
-<< /Dest [ 171 0 R
- /Fit ]
- /Next 245 0 R
- /Parent 241 0 R
- /Prev 243 0 R
- /Title (5.1.2. Media Encoders) >>
-endobj
-% 'Outline.7.3': class OutlineEntryObject
-245 0 obj
-<< /Dest [ 171 0 R
- /Fit ]
- /Next 246 0 R
- /Parent 241 0 R
- /Prev 244 0 R
- /Title (5.2. Audio Recording) >>
-endobj
-% 'Outline.7.4': class OutlineEntryObject
-246 0 obj
-<< /Dest [ 176 0 R
- /Fit ]
- /Parent 241 0 R
- /Prev 245 0 R
- /Title (5.3. Audio Latency) >>
-endobj
-% 'Outline.2.6': class OutlineEntryObject
-247 0 obj
-<< /Dest [ 176 0 R
- /Fit ]
- /Next 248 0 R
- /Parent 213 0 R
- /Prev 241 0 R
- /Title (6. Developer Tool Compatibility) >>
-endobj
-% 'Outline.2.7': class OutlineEntryObject
-248 0 obj
-<< /Count -7
- /Dest [ 179 0 R
- /Fit ]
- /First 249 0 R
- /Last 283 0 R
- /Next 284 0 R
- /Parent 213 0 R
- /Prev 247 0 R
- /Title (7. Hardware Compatibility) >>
-endobj
-% 'Outline.8.0': class OutlineEntryObject
-249 0 obj
-<< /Count -5
- /Dest [ 179 0 R
- /Fit ]
- /First 250 0 R
- /Last 254 0 R
- /Next 255 0 R
- /Parent 248 0 R
- /Title (7.1. Display and Graphics) >>
-endobj
-% 'Outline.9.0': class OutlineEntryObject
-250 0 obj
-<< /Dest [ 179 0 R
- /Fit ]
- /Next 251 0 R
- /Parent 249 0 R
- /Title (7.1.1. Screen Configurations) >>
-endobj
-% 'Outline.9.1': class OutlineEntryObject
-251 0 obj
-<< /Dest [ 182 0 R
- /Fit ]
- /Next 252 0 R
- /Parent 249 0 R
- /Prev 250 0 R
- /Title (7.1.2. Display Metrics) >>
-endobj
-% 'Outline.9.2': class OutlineEntryObject
-252 0 obj
-<< /Dest [ 182 0 R
- /Fit ]
- /Next 253 0 R
- /Parent 249 0 R
- /Prev 251 0 R
- /Title (7.1.3. Declared Screen Support) >>
-endobj
-% 'Outline.9.3': class OutlineEntryObject
-253 0 obj
-<< /Dest [ 182 0 R
- /Fit ]
- /Next 254 0 R
- /Parent 249 0 R
- /Prev 252 0 R
- /Title (7.1.4. Screen Orientation) >>
-endobj
-% 'Outline.9.4': class OutlineEntryObject
-254 0 obj
-<< /Dest [ 182 0 R
- /Fit ]
- /Parent 249 0 R
- /Prev 253 0 R
- /Title (7.1.5. 3D Graphics Acceleration) >>
-endobj
-% 'Outline.8.1': class OutlineEntryObject
-255 0 obj
-<< /Count -4
- /Dest [ 182 0 R
- /Fit ]
- /First 256 0 R
- /Last 259 0 R
- /Next 260 0 R
- /Parent 248 0 R
- /Prev 249 0 R
- /Title (7.2. Input Devices) >>
-endobj
-% 'Outline.10.0': class OutlineEntryObject
-256 0 obj
-<< /Dest [ 182 0 R
- /Fit ]
- /Next 257 0 R
- /Parent 255 0 R
- /Title (7.2.1. Keyboard) >>
-endobj
-% 'Outline.10.1': class OutlineEntryObject
-257 0 obj
-<< /Dest [ 182 0 R
- /Fit ]
- /Next 258 0 R
- /Parent 255 0 R
- /Prev 256 0 R
- /Title (7.2.2. Non-touch Navigation) >>
-endobj
-% 'Outline.10.2': class OutlineEntryObject
-258 0 obj
-<< /Dest [ 187 0 R
- /Fit ]
- /Next 259 0 R
- /Parent 255 0 R
- /Prev 257 0 R
- /Title (7.2.3. Navigation keys) >>
-endobj
-% 'Outline.10.3': class OutlineEntryObject
-259 0 obj
-<< /Dest [ 187 0 R
- /Fit ]
- /Parent 255 0 R
- /Prev 258 0 R
- /Title (7.2.4. Touchscreen input) >>
-endobj
-% 'Outline.8.2': class OutlineEntryObject
-260 0 obj
-<< /Count -8
- /Dest [ 187 0 R
- /Fit ]
- /First 261 0 R
- /Last 268 0 R
- /Next 269 0 R
- /Parent 248 0 R
- /Prev 255 0 R
- /Title (7.3. Sensors) >>
-endobj
-% 'Outline.11.0': class OutlineEntryObject
-261 0 obj
-<< /Dest [ 187 0 R
- /Fit ]
- /Next 262 0 R
- /Parent 260 0 R
- /Title (7.3.1. Accelerometer) >>
-endobj
-% 'Outline.11.1': class OutlineEntryObject
-262 0 obj
-<< /Dest [ 187 0 R
- /Fit ]
- /Next 263 0 R
- /Parent 260 0 R
- /Prev 261 0 R
- /Title (7.3.2. Magnetometer) >>
-endobj
-% 'Outline.11.2': class OutlineEntryObject
-263 0 obj
-<< /Dest [ 189 0 R
- /Fit ]
- /Next 264 0 R
- /Parent 260 0 R
- /Prev 262 0 R
- /Title (7.3.3. GPS) >>
-endobj
-% 'Outline.11.3': class OutlineEntryObject
-264 0 obj
-<< /Dest [ 189 0 R
- /Fit ]
- /Next 265 0 R
- /Parent 260 0 R
- /Prev 263 0 R
- /Title (7.3.4. Gyroscope) >>
-endobj
-% 'Outline.11.4': class OutlineEntryObject
-265 0 obj
-<< /Dest [ 189 0 R
- /Fit ]
- /Next 266 0 R
- /Parent 260 0 R
- /Prev 264 0 R
- /Title (7.3.5. Barometer) >>
-endobj
-% 'Outline.11.5': class OutlineEntryObject
-266 0 obj
-<< /Dest [ 189 0 R
- /Fit ]
- /Next 267 0 R
- /Parent 260 0 R
- /Prev 265 0 R
- /Title (7.3.7. Thermometer) >>
-endobj
-% 'Outline.11.6': class OutlineEntryObject
-267 0 obj
-<< /Dest [ 189 0 R
- /Fit ]
- /Next 268 0 R
- /Parent 260 0 R
- /Prev 266 0 R
- /Title (7.3.7. Photometer) >>
-endobj
-% 'Outline.11.7': class OutlineEntryObject
-268 0 obj
-<< /Dest [ 189 0 R
- /Fit ]
- /Parent 260 0 R
- /Prev 267 0 R
- /Title (7.3.8. Proximity Sensor) >>
-endobj
-% 'Outline.8.3': class OutlineEntryObject
-269 0 obj
-<< /Count -5
- /Dest [ 189 0 R
- /Fit ]
- /First 270 0 R
- /Last 274 0 R
- /Next 275 0 R
- /Parent 248 0 R
- /Prev 260 0 R
- /Title (7.4. Data Connectivity) >>
-endobj
-% 'Outline.12.0': class OutlineEntryObject
-270 0 obj
-<< /Dest [ 189 0 R
- /Fit ]
- /Next 271 0 R
- /Parent 269 0 R
- /Title (7.4.1. Telephony) >>
-endobj
-% 'Outline.12.1': class OutlineEntryObject
-271 0 obj
-<< /Dest [ 193 0 R
- /Fit ]
- /Next 272 0 R
- /Parent 269 0 R
- /Prev 270 0 R
- /Title (7.4.2. IEEE 802.11 \(WiFi\)) >>
-endobj
-% 'Outline.12.2': class OutlineEntryObject
-272 0 obj
-<< /Dest [ 193 0 R
- /Fit ]
- /Next 273 0 R
- /Parent 269 0 R
- /Prev 271 0 R
- /Title (7.4.3. Bluetooth) >>
-endobj
-% 'Outline.12.3': class OutlineEntryObject
-273 0 obj
-<< /Dest [ 193 0 R
- /Fit ]
- /Next 274 0 R
- /Parent 269 0 R
- /Prev 272 0 R
- /Title (7.4.4. Near-Field Communications) >>
-endobj
-% 'Outline.12.4': class OutlineEntryObject
-274 0 obj
-<< /Dest [ 193 0 R
- /Fit ]
- /Parent 269 0 R
- /Prev 273 0 R
- /Title (7.4.5. Minimum Network Capability) >>
-endobj
-% 'Outline.8.4': class OutlineEntryObject
-275 0 obj
-<< /Count -4
- /Dest [ 193 0 R
- /Fit ]
- /First 276 0 R
- /Last 279 0 R
- /Next 280 0 R
- /Parent 248 0 R
- /Prev 269 0 R
- /Title (7.5. Cameras) >>
-endobj
-% 'Outline.13.0': class OutlineEntryObject
-276 0 obj
-<< /Dest [ 193 0 R
- /Fit ]
- /Next 277 0 R
- /Parent 275 0 R
- /Title (7.5.1. Rear-Facing Camera) >>
-endobj
-% 'Outline.13.1': class OutlineEntryObject
-277 0 obj
-<< /Dest [ 196 0 R
- /Fit ]
- /Next 278 0 R
- /Parent 275 0 R
- /Prev 276 0 R
- /Title (7.5.2. Front-Facing Camera) >>
-endobj
-% 'Outline.13.2': class OutlineEntryObject
-278 0 obj
-<< /Dest [ 196 0 R
- /Fit ]
- /Next 279 0 R
- /Parent 275 0 R
- /Prev 277 0 R
- /Title (7.5.3. Camera API Behavior) >>
-endobj
-% 'Outline.13.3': class OutlineEntryObject
-279 0 obj
-<< /Dest [ 196 0 R
- /Fit ]
- /Parent 275 0 R
- /Prev 278 0 R
- /Title (7.5.4. Camera Orientation) >>
-endobj
-% 'Outline.8.5': class OutlineEntryObject
-280 0 obj
-<< /Count -2
- /Dest [ 196 0 R
- /Fit ]
- /First 281 0 R
- /Last 282 0 R
- /Next 283 0 R
- /Parent 248 0 R
- /Prev 275 0 R
- /Title (7.6. Memory and Storage) >>
-endobj
-% 'Outline.14.0': class OutlineEntryObject
-281 0 obj
-<< /Dest [ 196 0 R
- /Fit ]
- /Next 282 0 R
- /Parent 280 0 R
- /Title (7.6.1. Minimum Memory and Storage) >>
-endobj
-% 'Outline.14.1': class OutlineEntryObject
-282 0 obj
-<< /Dest [ 197 0 R
- /Fit ]
- /Parent 280 0 R
- /Prev 281 0 R
- /Title (7.6.2. Application Shared Storage) >>
-endobj
-% 'Outline.8.6': class OutlineEntryObject
-283 0 obj
-<< /Dest [ 197 0 R
- /Fit ]
- /Parent 248 0 R
- /Prev 280 0 R
- /Title (7.7. USB) >>
-endobj
-% 'Outline.2.8': class OutlineEntryObject
-284 0 obj
-<< /Dest [ 197 0 R
- /Fit ]
- /Next 285 0 R
- /Parent 213 0 R
- /Prev 248 0 R
- /Title (8. Performance Compatibility) >>
-endobj
-% 'Outline.2.9': class OutlineEntryObject
-285 0 obj
-<< /Count -4
- /Dest [ 202 0 R
- /Fit ]
- /First 286 0 R
- /Last 289 0 R
- /Next 290 0 R
- /Parent 213 0 R
- /Prev 284 0 R
- /Title (9. Security Model Compatibility) >>
-endobj
-% 'Outline.15.0': class OutlineEntryObject
-286 0 obj
-<< /Dest [ 202 0 R
- /Fit ]
- /Next 287 0 R
- /Parent 285 0 R
- /Title (9.1. Permissions) >>
-endobj
-% 'Outline.15.1': class OutlineEntryObject
-287 0 obj
-<< /Dest [ 202 0 R
- /Fit ]
- /Next 288 0 R
- /Parent 285 0 R
- /Prev 286 0 R
- /Title (9.2. UID and Process Isolation) >>
-endobj
-% 'Outline.15.2': class OutlineEntryObject
-288 0 obj
-<< /Dest [ 202 0 R
- /Fit ]
- /Next 289 0 R
- /Parent 285 0 R
- /Prev 287 0 R
- /Title (9.3. Filesystem Permissions) >>
-endobj
-% 'Outline.15.3': class OutlineEntryObject
-289 0 obj
-<< /Dest [ 202 0 R
- /Fit ]
- /Parent 285 0 R
- /Prev 288 0 R
- /Title (9.4. Alternate Execution Environments) >>
-endobj
-% 'Outline.2.10': class OutlineEntryObject
-290 0 obj
-<< /Count -3
- /Dest [ 205 0 R
- /Fit ]
- /First 291 0 R
- /Last 293 0 R
- /Next 294 0 R
- /Parent 213 0 R
- /Prev 285 0 R
- /Title (10. Software Compatibility Testing) >>
-endobj
-% 'Outline.16.0': class OutlineEntryObject
-291 0 obj
-<< /Dest [ 205 0 R
- /Fit ]
- /Next 292 0 R
- /Parent 290 0 R
- /Title (10.1. Compatibility Test Suite) >>
-endobj
-% 'Outline.16.1': class OutlineEntryObject
-292 0 obj
-<< /Dest [ 205 0 R
- /Fit ]
- /Next 293 0 R
- /Parent 290 0 R
- /Prev 291 0 R
- /Title (10.2. CTS Verifier) >>
-endobj
-% 'Outline.16.2': class OutlineEntryObject
-293 0 obj
-<< /Dest [ 205 0 R
- /Fit ]
- /Parent 290 0 R
- /Prev 292 0 R
- /Title (10.3. Reference Applications) >>
-endobj
-% 'Outline.2.11': class OutlineEntryObject
-294 0 obj
-<< /Dest [ 208 0 R
- /Fit ]
- /Next 295 0 R
- /Parent 213 0 R
- /Prev 290 0 R
- /Title (11. Updatable Software) >>
-endobj
-% 'Outline.2.12': class OutlineEntryObject
-295 0 obj
-<< /Dest [ 208 0 R
- /Fit ]
- /Next 296 0 R
- /Parent 213 0 R
- /Prev 294 0 R
- /Title (12. Contact Us) >>
-endobj
-% 'Outline.2.13': class OutlineEntryObject
-296 0 obj
-<< /Count -5
- /Dest [ 209 0 R
- /Fit ]
- /First 297 0 R
- /Last 301 0 R
- /Parent 213 0 R
- /Prev 295 0 R
- /Title (Appendix A - Bluetooth Test Procedure) >>
-endobj
-% 'Outline.17.0': class OutlineEntryObject
-297 0 obj
-<< /Dest [ 209 0 R
- /Fit ]
- /Next 298 0 R
- /Parent 296 0 R
- /Title (Setup and Installation) >>
-endobj
-% 'Outline.17.1': class OutlineEntryObject
-298 0 obj
-<< /Dest [ 209 0 R
- /Fit ]
- /Next 299 0 R
- /Parent 296 0 R
- /Prev 297 0 R
- /Title (Test Bluetooth Control by Apps) >>
-endobj
-% 'Outline.17.2': class OutlineEntryObject
-299 0 obj
-<< /Dest [ 209 0 R
- /Fit ]
- /Next 300 0 R
- /Parent 296 0 R
- /Prev 298 0 R
- /Title (Test Pairing and Communication) >>
-endobj
-% 'Outline.17.3': class OutlineEntryObject
-300 0 obj
-<< /Dest [ 209 0 R
- /Fit ]
- /Next 301 0 R
- /Parent 296 0 R
- /Prev 299 0 R
- /Title (Test Pairing and Communication in the Reverse Direction) >>
-endobj
-% 'Outline.17.4': class OutlineEntryObject
-301 0 obj
-<< /Dest [ 209 0 R
- /Fit ]
- /Parent 296 0 R
- /Prev 300 0 R
- /Title (Test Re-Launches) >>
-endobj
-% 'R302': class PDFPages
-302 0 obj
-% page tree
-<< /Count 24
- /Kids [ 47 0 R
- 89 0 R
- 121 0 R
- 135 0 R
- 136 0 R
- 137 0 R
- 139 0 R
- 154 0 R
- 156 0 R
- 165 0 R
- 170 0 R
- 171 0 R
- 176 0 R
- 179 0 R
- 182 0 R
- 187 0 R
- 189 0 R
- 193 0 R
- 196 0 R
- 197 0 R
- 202 0 R
- 205 0 R
- 208 0 R
- 209 0 R ]
- /Type /Pages >>
-endobj
-% 'R303': class PDFStream
-303 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 1782 >>
-stream
-Gatm=9lo&I&A<G1rrL0KdieGHa/sNTUm[&[-WZEPH@\XY7SAjN7+mcRT*6[c,V,!2m#acT+gD/nhqPUJL`umBgAGPUK[+5oofJ$Z6aJeI!Xgj^Lu-EP:VJbp\fEC,@LU9iCjPh)H:<&PE(i6&&j;bV^g$&PU)58?7'e26'Z4F*^RHstdS3<%O'SDckc\[n0:Mjjbl50KIc"FY*\Jd3;bY[1otZp5O^#2>`j]"X'?OFifC(3$r4BPZR=J'o:W],<K#M_uhSO3&k;$);P.0YLC=[@J6]S!i-b.6-9NrV5;pY$;^SuSB]R86ME5:Rd^G<dUKYJ3/&fk'pjZ)C?EIct*r!^t=oZt\8<[NUkE:g#2Y#K7U9k!</kX*TiBkgS3,6/0RbK(qiSQL%fgMpTWT:V9d'k&7!Gg-ktn3Sc%2[XX_F;"@64]qET>5b[;EEAobR&#NM8q';!X(kLFoV'J_3\(Qe$s4aTf@o*I*&im>ceI..Ha7OJr_RJ(0\gNbmcX0KQV8[eaTT&2'+q)@#FAj7n[S6339$[=K:',Qm(,D[\):pW#E6i0QhB&O;[EaUW@+EG(]bA;i,f?;"<:rlk>h]HEDmdnZdoggJ0q@=CVo_+4d+cGKKV#T'?nKcWeI!Q?qG49I$<qRU'LDP:km@6]rj7Oe*F8Y*2B!<?9]j=6b!4$+<dt.dZ#h((FI!T[_/)tPWHoJ)I)WnR_(gMF>$Xn(-4ruf,siM1`f!7#1:J-18Fu)R7.-"'g8Em'"-uf7<R"Q3b9<+(jk6c\m2-A<.M76C`!(eGB!d[Y-hQ(oc!Th6"K+s38^)I8(Yn`V674s1uV/$JJLBj3,h"d\;27n0\ZaqK#.qKp:&%N&#NXV_+$hALe%CHPSD0f(\+GjJO3fX+2utp7rdUVJIW/Tr(U`[3a8]nP:<DN>D,,CA:$-th.pe#4sb['k`GpJ5aq@<9hM:h'#6A/WB=,FqY1,i=[N=P6Wc-@:^.9LIEPPr64'$>V<jC6'S:T6T\\q3C+.$lS%a;o(@m+]b@`c*!]gK+,(McVFW6N/s&]Vp$kSZ,7R'!ePcQ%k"#Q+c%k-UL!Te`4j.MDXp=(tVf/;R'@%OcBO;OWS/.'H,[q?rGH/UDn&iU,:Y4'lRWN7S@!bg(%qoVird8siD%8:fAZ9)"MVbECaoTpe_dkj.Afq(n]kd\OA7*$,l9`&*4o[2[g`^EFB\`\:4e<>4W2Ca9$L5,=s$-7W*CSBtcE+).%?qW4oWptnBdh%]roMkc_S8);/[@(sVmc8W%GL4KEG>eT0gLh8NaiQJ.Q@*e^j-qNUQ!,3phkoWb8ap&+:]dS>8aYp?-ku>f9KK,%)1^@^>G5htrMLF.>kk3R"SHe6e7P\$URn%#1hFMrTV'HQ:>@@j#GhPA((jY>>aON`.2im56GPLTOFXBRU;-9DBA%*![lEM2)bh_>GX)*mB4*F-+*%R%BCNA%0nA4qS(q!,$bYBZ^ru9<HoM&"JrVi!,%)+?Fj,L1hT9S)H4ugiQUu*Dm2,V*(DV`HLh-13^&Z=RT??<akiV\D/Oc%=%SgLZn9CaNEKB_dST@'P$aX.Sl3C3uNo"!J\hf*Y5NuDkI\P7f/@W5<_H4#I*=-ec0gQfcKkf3:B+T0H"%>6\lU$9jIUAr[M-D.7afO'i48YS<`Pt[I(icTH3u2)dg)_M)hh&J!apQ4IHoL03B!nXT4_6)9C]%]Pm,upK+fdDNlH1dRlpPJh<bQiuEg!C.%mEbUrEDS_Mkja%S?gku:85tKD8u[<d-8YJM37pn~>endstream
-endobj
-% 'R304': class PDFStream
-304 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 1512 >>
-stream
-Gatm<>uTK=&:J2Gs0.ROSO'Y/b9)d1"2in%V+nIJl&0NadB.8^Z301Fhj&c2VSQ::6XUaB2tHC.ZY)32!rSbZhn0(OR_bm8$C&Bn#&$OoR/I,Ng&Bj3p-kUt70nj7=J/IYSAG;T4sP'_.2-[8^PAFR2]'FYM$2$pTTnBhq"aX'QjA%Md/KD:pqT)1lp$m9e_^;5IJnKkkNg<HM,NX6.$&:q45Jep+;>@kKEVYd;F2:cZu]'ZFNBRjB`7-c3I4/rF#N#N@smaeQR3tQ3_(Et&IG(JAXKdK8aG##Zji%YL^p;N[],8n,F$"$Edb&G1N*rA.>09=hin__d+(FW=8;nMZ9*2u2+gq[DObg-iMTr4@iceERD#EANKb0VC:S).pXt+Y(Z:*ZGGo]Vc%Ad*A'@g>HFgWhYb*/X9MB"tCU55fUX=lcpdKgc5ZbAp?:\b`3>qp)bdVge<u/$cfbeDU#4Djb1>O"13"!6NH[tq$<h$E-h[Zu,&7B4bW(kZ<`.$2G6DRuTa)+9KM[.@p7'>V5QJ@7@/dlB8.2uuUM8q3cca2@u2K%Z5kL7W=Qkcq&FDZ,jl_PT-'a0OPa+oYY9.Zkfh5k)fQOE0t=G"O^5H%I;lR0jO0G[m5S(eG_0[J/DoH10QkH)e`=BCd3)g-qpq8?kAJ7g7p1#&uip1#uk8AMo<)s(CF:M'tbg<>K.;;6s4GV,;0)3NN,AG'u:WuVB1gENQA-Be`]D'O`V+24chp#G)")fkhS=CET(c!nm4EHNE\F)[ja0h6>Njf24(X7miB+'Q[VX%JYX&jN/%fB+G#B?TXF'qX=lHmZ_EiX6CGpL,%2GFXrHA3PkmipU*,>KR+5/+]?N.J70X:C-]Y5`R9fL*b2p^(lq`hcai.\Z0P>W\FoS@6&C<FOg;W(On%q*+#5QO^-ho]1Y-[?K&oiMc$cp?C@e5d=N*^qm:-O]SNie5sHjk\Lb-k6WVH?g1Z]+mMGuE6_fdQi,h7&H%T!;'>e0Sd^1<Y;d/Cnl+&(<mu60e>V:r4"q/mKB&oGe)t:>2#0#uC3[W-d=48CT0R0+49j@8/?B3>J]7P_05_:WQ^g^'p0k0<ABl::,ZRV;B;3tDOf/.L5QeDU!?Ptr6T'Np<`a$QjMXB'&WH;)FQd(W(M@dAm6jPT63f4K[G&,3=F;D%>>/(LjiPk-CRZ5TiK2P?c/7tmHH>FWp/[qq/5.B>J(Q_nQ24W4.)#^$P[Gl8%$<aRu7[EHYUA>iF\.M_D,@U.ni+\\'Uq0JQJ0jKCcfDrWin(F3KYj1ukn'I,]*^1^0\&,,4a+t3,B/UE)cV'C(g5k3h0%]$ra[&6j#]h('_oM6iDc0Q_&N,!m[.1rp[:+rkt3gc;MLd!p>ag?rfot/W8XiuXgt"`DPWE'-$C!L#G<W,r.ZNOh^(:&Y$GCI+rmoj09li`3uRfW!0*ObLR#JTcEek00'%a0K2o,j_mqbM)n6gQ/6Eusc.)n9_SLDXI"XuDg#f>@=7%CUm-jl`Ut%jt~>endstream
-endobj
-% 'R305': class PDFStream
-305 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3315 >>
-stream
-GauHOgN)%.&q*PUrW2,+fZ]WjhJ[\_A\=5,GU?p9`t(79.>WX&N(JU%5V(]phZcVKU1.?V`@NMoM]s+U3K;MD!:1gIIN7s/=s3HdJuhTM3A-cEOQ0gm9g5=Z-Egd)1EWNC4ReL!i[B>$HM8G%iN2J+aS$T45g.c_^oGj@']D"[d%ipeKAgUMY?Qs)TUW=5O-l\$hTom+2k'Zn[/PjVHs9nSZ/(hh$*e42RJoHeT'_<T%io[qm"SiroI7Ub*4<J#OlKke[F[,<UJI^!4KDE"Gkk#lqgAn5"=N&a@Q%@CM)([R"YCI`-2\NH;2NeS,!iuo9Mk\Q^-NG_C8oREU4Ol59#O.f"e'F^$9i#]7Fd!VqIQfO8pO8G`MRU(aj^C*.l5"EL0X*(i>;^F4rA*@2U>\/lh.:k75hp^7RHGHROen@JF3#h*8PFPS7$SR#_Ec@Os3(WB,[AJoB%t]\[cTDbk/;JO?Dta<_pd?YOcRY[=/c#"Rrb[jaoUb+];q9N*"_m8:H;D]F#M&A:=;cEf$TD#DgH%n@m$.N0Q6KA6iPkE#g;ls"Rk=_peduVNTOTV=GTdh,hkRrjrD2DK$^o#GM,lC=(58e><VG,D+2rHI#KH=Ae2"H)Wb*=%-c8)t4Kfi(:*M(d<"=ZMtMr/-5o1k7oN1nB:t'>S9=Sa_+4Q+Na6/4=BF"KSMUq2a&.oqlqBcqGptWH`WWUcSR!EWa@S%c:a7DA+DBhB7;9I8-9FqN!PrK8+D`*lJFN6O;Q?3+&o0O<,)Kdb^X:F?o_-rkbIiqVTkWTXKXJ)lcbGn5'3A?_*Z:5`O4Q6kaiB"Ba/u<;n<4HG0n>10R,N6aba<iKI?nN>"s#X^b^Pbm[fQ;-f4Uq&BD3p22J;VA&1fSS0[D^g[FTPfafG2p4gMLgBA_P:<AM'mI6RdcDMi$./eZi"e.DTDMcdN25(XCp6HugM'=+mR&OCcft?H)-l97`l-t`hkW**e25.fm.d`4tIt1/W]0@c5k:I7WBIR`%NaL&#`d?ro-C+;#/XOH?dYnbV'pO6ES==+kcMi/Z96=ZC(4?emD]%8N1@/l$YTD#Q6i5,a=teFBT^-c4DX/1ln!Y;;gC4Rt@sciNJm)Y,3@X.e",o?r:67K'd4q.^bp?r\LFESflFtJN[$jYg7d1&Mi_l5UcLpP"?16)($JM/K3((q=!Se(fE)0S2o^alTMd;EQFM#mkL?(cj%ceOS*iGf%Mh_Z/To,ZX=<FmS$!QF9Kn1*#8.L8(Ts&63fH-/%Y7_!9:.$;YTO^a!:][2@LBn;$I,GU'?8;fP;]W@+X*Ue`Z!sS#"c%jg2OgtYc=&,n3Y1%SiubSmhNm'%]lI/C-5P[6JTU"7H)^%1RgF1ep;_N?2H;I6K+ArNkr8Kk3mm<Ne4cu5n]`@1opF$IU-b?f0Vq)JR)U-uc1%.$)g$3A"c)UM61#[0$iODn/7f1XJL#9YZ4'9r54h5=E&%'/ReOH1T.6[]1$U+PnG`5II^XH]BCHj,S*3%Y]m0)UW&RJKFH<#N5+[fYBA:L`?!kXIkinVI;>u-#Kh4d9.Hg@bKVQjSLQQMa"b34Fp"$F7b9^b"bqS3gQC+NFT/M8NG;U@QcZF"4T\\Eh#<(MNJ[5SMEYt>SkLK4mcWX/h\KD(PrLSmn7[Hoeh0:V#D1I/iC\@><@ShK#`sYo._pN\f;5!Z,6P#AA$%#ZZ!`M1$:Q55sZ"afbLBD>h3u1XfL9830>;lR3m0SS]a4QGK#4@gR)_#;25uo/FKTN)S?56&+LN8_==VXNs+I:4L]\6#KOgI1ei7ARj#CYrk(rrPl^3/cq<"ob(*K>ORi1[ZiGHEBoZY,A"i2X,t-P]K@QFr!b\ZiK]oO`XZ9Upop'p;h]pGL.#e$6]bAM!6UI5h`)d=D/6_3*3-X79ep4imhGYm7*mcBij2!3.?O%\j/;bthq*4$tLMZs$]2C/EiI'`d4o+r'$M'7N0uS-UK^q^%fi0njQ1oM8"e:msc5FfaU^2QbQmScj<.83nBOM8*t=g[=1l!T`^cWUe2=-WcpmkHa_+P^U`cajXfi;lP>]+B9_iZk`YP\l`umB,+81Z3oUYn2pr]MQug0Ym1QI&&G[ZFQDGs*=B-.F\QGB8N$]k`+QEHPn^'j,"=7'IEpsEdPDSN2\$6.egfiAY5M:7D[$-Z7X'"hiOIpPYe+/"6L=D\<<l.g(S]iZAX"E.k/ZCtN#[M^S&Ag9]JH4.Kj<+#qs+@cNr@q9k'lMu\)%?HV`a.e64nf1i)pq4GaM`?)_YL49@dP0a2(kN1^!#Ef7X!2'6t*YiCa4_)P.O0beigVi&=t'&9JK5YloPAAa9IY9);1jY*kG+L\iI4bX/Xsmt[[p]lG7X5r&r.O-d1#5jor>n(A`XP6k6Q**n\KT`_4Dibk1[mD]oofe?ZL0Pp)CS0Ob)B$=Bq:ZZ#8Jh2p.gUkYW+Ft4QlBb"e_<0fBr3!&;=Z30mcbt3;6\)OEq^p6rfiN5f-S(9O)O"Ma.bVJL3j9\RSi`7,n#fcDP/Q5lPluV3?6G:-`moC-jUbH,Y?7eRYtAL5MUhF#20oBMg'^EFA9SKP5WlIOPJkA::Ffk6j=PK>?)+<Rd=R&7SBl7k-s>*&)jTb^dOrJ\fF`ehiAbZ?Y%Sgp)Mia7jh"@<-8,pVD\Q'V7.5st/2`>H%hKqDqk$X(OJQf4Wn:+qZo]R#.T*+D(5Gn%:9s1:jlpruG*g:4NruRMNC"V10-G*jP_aD^Z+_K).ZRdA,#r23(0cEH:Eq5Z7Z'%jmUB<8a*'[u%:\\kZ*uf^O9m:ThpDDER[a]YQ8*Oc#@TUG[dWY$)/:)Imurhus'D@GqonIW\g;W.&Ug6j?S^=H@M&VJQGZ-$p+DZ%]d!dh]Q)R@:eE)nNr.T#8SjhX2&k0'nLVY)hVYV,J%a6bV+ES!P(Qa!*+`7rs8)PQOL%-GC?^K6,?sj<Ol[maKp2U,\=I#?H[@chiU@;JiRq@<&<c;gc1Lh;k$2B'ruQ57H_/c!7L\na0iQ.&a,2CZpROYfa$J4A1`s@'$O$=V-F%"?Qm/D@%<WI'9`HQ]&WAu30NOFk?0B8>K'Cn_[Z0[jqf'FZiT2).0ZP0Xfgh-oPGhMjllJHJD3)TRJ1YK^[Jk.j08Zp>a&0%R2=&lfcNVZA-+]J*kVJDu*^1L2N^;'e:\.ai@=;i"b8d&pa5L^JA]WH1gHR4kaF!nZXH),d<Q0Z[0iqs3'Z/$f.O[Gr@:ieWb/VM(fedY-0p+CqHl93i&E;($o)c=YHhnJF'stAX3W@*1Q'6tRWWY_K@jd<qC%Y3g_[_"klMi?.(1$~>endstream
-endobj
-% 'R306': class PDFStream
-306 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3224 >>
-stream
-Gau`V=``=W&q3VVrW?p/@@\tV+t4S]]]F+@1-7KCf$;Hb+".bb0LHH]5fr&9^YJl#:t@q)S%'FA7sCa*lg>:f?/iY,=+="d6Ja<8jJ,@QO"=>Mor1_&^QQdZlW6=CQWl*RI,]E.$=HYJga-I>)5E<MFhN=\]RC#^h,[B@B44%@3H8=3di]_i7PmAqNrCQ\jMHC6(4VFb5IC.Ao[f/d_f,Fl7%SnJR_pISRce?UX8_>$`RLU81,R08U(RA&T<DT:i4V.AcX8l2IP:l9E\a31W8k8f)7f%#A6dNN25MHIEl]Ffj.s1UV;Nds6rC4`U66u%?5+p(hTE@fUA1-i@uV8ZZ)ObokK+u\4-k_d8_T$B-^(U!A4=?^p#r1e$o;YH'21>bSi%Z0>6Z/Tf3YQ:81tZ,pO&nZO#fQk<.ROA4*j[;X=I="+\<l29R.4ON2SL,fOI:UM.LuH9/\Nq06[\T#=g/3cgV>r&g$LXGXA%JK;]TWl'+A%E8G/1<XDW?aP1X**ZL8R,A[D^r\IleZ.e>c/8lUBQe;`MAU66_o8#GV04fNT:;cQ=U@LLnR>cua*'gXlc;TCobnq[3#N]l]<?J_#ZhX60VsX>4(Y/2JLIEb7?`YXN!t&=)4f=oE^-hk_fm6QVASSmU*'npR>_:X%oq1/i=MfS`kP_VQ4q7JSl'(A6nKbYSa]@utQ@Nbm2^WUK'OY4/f'2peeU#D;2Q9*d'/`XpnFjaE!p'Y?er%>NOc$@Xfl?S5*kV#V.!fgT;NV\JKfWV^U617rdBsPON9N<dP8JJ'@HY-1cXYd[B.fQ5_cd#mO1k&Y/e-V;pO^_2ED+6-<#_\O5ZW`D9UI##)G&!rhm&EA>dC0J@%ARUB`GQ),0,+k@u3^RjQaXt7QM3#Ga=I<,HG[D@-s"2fE0,H.\=QrWJ'-N$h/(P=qNDq.'?Cbhc8_&Mc:tV]P/LQHn#D*SAYbn]\,Q%_'Z>+H]aZ!AB?W$`=He($a-=Xc)@R*^L.E@CcRTsPcK$\)+rpS=)]`.5^I08c1#/B#j;M*YMaL8g_Fb.%CB6-gG'&l\Kqt`2MF>=b,UhAMNh$*@!ucbc+7AX?mNk&3#+*cNp0):d[.FT!S/+[,.P.AAS#>l422eW#X*/>gd>]cd/!;j4onkd`t.?WnE5,I$ZRsH&EjO7[)Sb/gaP\1p0]kVj@ZL'lq#%]F+?9)Vb>bBOp3P6dik(BK`udq3#,o4#ofZM!V1m5aQ!?CC5O!(NOn(8"/?`f</J^pUcJmK(^!;af^k:.GPn6Q&[b=k,ZYg2TC`;MW*<9,*-\jm^L>;?<3-L9ehB0SaT@Y.RYMr!^k[N'!,1buaQV%)LN!?]`n&RKBk$+9KP'!naDCW1@1pLEL4M;j!7'4L#1GW7U\(ZtZ8E6Uaq\10!4A;@a+XX(5Hl/`&Y>=,CK!ifci:^_B]W&KFCp,3l:h#YKbB&3Q-#WcKYtXn8)XGe4+SL!Ap;'#AU@`n4/=dA%;bm^Ft*7B+e`8"L>.WI+D:%($[0,_qbEeGKQZ\OkN5me3q3(\Ud>%R`J6G-nNY&eW7gG.)oDRU/u.sXMB/%X^eeJL`TWVNj3<VNfS1akZPtj.d&iGT%aABm"mkA30@lp&>RSC6$]"g#;6-`rnj"t^)\n`E$8<H@_)?hbD,D,j>#KFsh`ol93XtPh$+.]d\?kJGl;:hl:`ZE!ds\G@1l4'+F'rdj-4t-Tq9V&1oP3rh4YlZC@/qP3[o4WPruI\:^qh+Kepa48WB5dOSFZ3:Y6uOp?>8<`<TFR?XIWmU)t9a")J\nFU(`'PF*q2,aj'qENsmbkjhHdd+i^5Z!UR"CPuUOY<65ce_Vti$%DI[g-8HqsbWX`&T't<-kk;tei`4u<#YMH:3H2@[&q.A9c+R%'p'p*XVM/R85YX&_e-7.!)'>[[K<,raDNL;"N`uHuYbN>#!`dcm["PAe\\[-uj+lG#3j</"!g:-JP&h;o!ZPPVDg(t&OZ'Y)?,$EB1r$s=Pcu?t>hgQ-E1ri5VtnLL[33fBX%2e(D`0[mm.6;jAGg.V0NI!KlngVgfn9^DmAT=XR1_Yd#'m>W&)n,M]AbgiMZPZ=,?pq?SEheXN!uB`!A;qD%l53L_HPXKq@02u4Qfiu@53;0;Kdu_oaoBX^n*kl#Yp,`T`gd5eSAmO(H<NN/NuJbCsH]M_jW-bXeJ+#WmTQGG_Ts9:#^6sb8KruK>ak:ZfZl2&;oV(Zhs7hZTf2rmU?P["6c0GC,=YVBm:`cHIU,l1-H/()o7,pH\DrPUW=A&jQica,Ekhbgm4duV@;%SdrF`9XRDZZN3NN,gKi,:M9]bih%ah%CNbS5"Eu6tq'%;co:UeQPKU*r19OH'Sc3T)k[=n&*-#PWR8%OeV_XEnP\'U))h_c`]YlrIDbuALD0_G1D_]U<L+sQ^U)S@g"e@RSb9@etAounBNHtV%I;<L<FAI0Zen(h``__VPD8$/H"dQ=pRP;-N]4:DOg;n'e^kJN:FnL>ei<;fY=K,6?$hoe8^[2f9_%AM]7.MYQFo[IHEWs?CT^[iAiZ%#t*bH+pK+Sg8(bZ#mD+8\g[`+Pr8-*<CAhN4CWR@#@aaa_%Xi^j\W[(A6bnXN&MG7/,cZZ_-WjC#*X2BgaX0mD&)kJ*,Mlegbe?G<foJ'G;2]OsGpD]R';gdR5UUr`9ckF^8bR0)9<gue#cJo)EMjOZY9@p1P<b^+`'3]M;k=JB#dGHUl?[_eIKmpf7p%%M#jh:RNSK<$j5&0N]7g\CYiLK]1PJkZGC(&5_UG!6V\cu61*L'b+,eUG341cNb0+r69DL72:9ZRFmPhKr)G)kOQOQr&f8Q`=('k^@iF^F;_Kd^&u"k+7jRhY8HO7AfPaO,j='g;$jXs7?PnUH+QohmsZ7Uq37pr@e.P[5+Cd)6=ug8N!tKM?H>LZTjeVIP"D^YNDk.5[6Lf#&9mm#`I5)G%!C%T);#,o'WObLB?4o.sM<a=lbt5JTQ.re\_q^R0'*h]'d%TJ/1%F"VG0qQnJU69?Z8(Y")IauR-2KHOQ=&'Cnbp@c"@#]!q^;U9[6CnoAc]O;^u@6Ls+B4#/\dam(<3H3.$Z3QoLg3ht_#A8%neDe,D@VKXjqKpq[g=,3U6&g:g*7p#4R[O/H3uY`-qqaJVb2]c4SCHDCm&W_>]-QSLg.>[H[-)8fS0M52c@84iY&`s5mV+Ckp:Y_C1e0s*4&N?/3g6O%jRoSR!D#KKNW~>endstream
-endobj
-% 'R307': class PDFStream
-307 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3151 >>
-stream
-Gb!SnD0+Gi')nJjr!/1X+7)(G(9'7Ih\99iFVEN/XE:>AmlE938Sgpo+\4-KYJ163Jfsh<T;/8r4#'/dqo[a6/nc9uiEPLF>96-"QK[[)8%O8;/#3]`+^0=[ZfTq#?hf\R^dgb&(trL'1qEKElKROrD:0Ni`X(tg^&bCJ&2_e[a!7t`OKNB'%/cO3M)JfeqtrNXUQa(S>5j)=s5;=Ti]geuMk<s[-55cU1:lD<;\iX)g!()mI;XueR?E^CQjmPRV"K_@Xr>1oqb?43g6lF`47F7po;VF9Ea2iGH+%sbhqr/>];rp;G':?bI]0MR;Tfo:Qsuh3O>f0bli6o=rtl!pTT.o/oPD)N7b5SWR%U??$9&gTpt;o+EkJN44\S0^^b+iQM&A?bboq1e/SF0IWE2idR,="?ii?)o"@2/<Hh],",#1"TI>mB]L=kf9LS.B&RA:X,dl*h'/6K%P^b\=e/N4/6oXk(oYXE^09D!m7J9qmI2?F`$S^e'';2EDna><4BOnifS/n9l-+(8V'TF7]QVC:5<*QrQXNEBhTZuRj&!#GWYL^iYn7_=XiD%n3dj?8&e5Wn_7^qr7X-XkrFi'ij2_/D4["O7%lcD67H$U!%.huJ!/DTl%L,;U(95UQCR4rF&@EWYZSML:TY2i=/i=1Tnaiia-SL9Ldl-d9,\7'=^TB&'W"%JP[5!IHM]-_8QCWR`]9GlWn[\orOBETEX;G<]A<+-qUABQSnYbaCCJ1gPUUe4[Ym?^Z3MK+Wq%N>^A1(.::GEZ@aC%Ae>.'qD]rV%-^Eb_o_""sALY&?/7t5P^t.`,pce<;BW8*q5$bGqhEj+^-V*r)cUU$;QfA'*S"#iG(PH&0?r"Ts`iq"2'Y!1I1a$2SbRAOqO>A$rYuTFT1m$g&#jEqmG=nd(7!drr(.b3ZKM1TT__U@5o->KB">r@X<6#+q07eUMNH@9a"pO8bcgReagDU8bQGgFDI("J&76-P:hpNB?-$+[u53=Bi*E0ZjhCEZ<2+lV2=,1PqM9n1_K*BB=BF,c_(JHAe=J!!OSN6CU[&uCa[B'#l=Nu6T;C"dJLB<g!B8jfg3/'\EG$c@(nTD7f@L2^#%$7NQK=G7fgp;[eU^i[Cq>"JGL;s*=l))9\4uWkWf8@X?SCE_(9I)TiFX?s1`=E?jsfi`fUAsAq'K'[eRA"h_"/:jiO<Z3N)L1NSrc@agBYi4U>ltAUOMV8CECd^,7+[QO(5#XH05u<$f6K4@B]EhLGB@*=i6!oa(cQ?Kl>eN^r$MG?o\7Z[g/-lU#$ojN^e9lA*Cn^:-:tT#'O/`VoJ-X(D2P/hHNMDaY[C0B"[W',RtcZfsi_5#3#[%$<9pns>CDF?+dLn9CtQ/PhHIT;@([d_/mie+3!r[u[lbN)(7MQ2\KS[)(F3EAa/S%0iSc9/cUupaKC=Kp[V.cZi5YV6X?4_5"f^(7p==5rcf',F]33^gV"^X?N&'Bn^r1R]he`aW&0t:K+dJg.ms`WT0-:j?I/<<1b[CFW#Q[b!]E#!Y"-j`\3q%A5.8C\:I6bCE`Iq&WNHdR$:N<`!-g>%kTP14hn=,-BO40//tlE2Vu#[;c[jr^,@kVH2DIEc&_T0%>@:-*rCSQipuXIP-\V:ToIg7Ls6))K$(!b'HCr_AlgZ;P@@mS$@Q4G)-f2#:hF_>Jf.g44F@o'`\;uan:4gkMWT\R+3%]i*>%F)*Bo:,>gq>FKe+u[nV(*SL]G&k+%a@n=d4cS@_qn>1.nlM7d?#f*(Y5r]&g'@N/O%\6),1Yk4!FOjC+F1aEeT3r7jscL+u&3LU%T)aIsR2'CIQaJGQ=.*@9d-^?B"MSiW,BAp)?>9(o*"f]j?&Qq`U10t6o/Zbqfbp%/1?E$Sj^Tr(3B7eD?@_W*HBGD&C-YD5\?-7P+s[E&lu9Q8rpH$h`DdtJeC#G5uAXTBFliorLJqCCjDi:Wg#f<RFj355B[X$/YEL;$:,-6;Sa@;EMn^[P;n/g.CaDqSS8-Tmh8eBWcVR"Wp4QlecV6L@SuhEjW7"ng.L*7i/\!lRi?BfnJ%a4/='Cg#"71s+YLM9s6*q!B]'Y7:os8_GM?oPW:O4jWIl]J\@M,9+1t6h=r/Y%`e@"Y*F$UIG9VLu_9:HLW7TR9e=!#Wq%^G*e8I*@^O^^Vb9o@cU+aX,a^UO!i!)oU#1(_p0I@\Vb)YKQ.nMchcLoh!rk.&E84ofkuH(.GM?,qcs#k(@,5SO.P^QHp#X/klKJpr4PYVVhe:0+<p/d<ZM7FjRee9Oegsq-Smpu>8u1F9$ACjkgh+>(DjPui?l?B]MhU5oI"sXS:#W3=EW9aemVQ+4e(`@f/BR[8Zq]un208\g[kpH0,@-/5Qm&!f*&(f([kLKnAlaMEI05f`lWQ5(Ho#"U]-@YYi"`7KPgfE7RdE?]D#bXim1l0%$1HX%Q\Zq_Bqdk;+?FXYc'i,7Nqkj*6PY1&]rb6E*oBUp)[+6ebH'Y`<#4q7!LIjegCP63Fk<O;!H"mD2Op$e:s/tJ0Kb(D/r&0'5R)4UVQRE;HVKFW"-cHin_9qUEt=65`p]gOb+2f/%$gPZ;DQ1+p!Q@b-]8&'qSO@G8^XnpQ37l`^dEb_Y\^X)#Aqt7Nqkj*/'@ePk\@[:!o/ag+X-G:ukHM9o_bm@L_1.'\M80$EG'eeY5#GIY6q-=BV,8\O`:e-\mOC<,,;&@"T5b+C-Tt(U]>1e0ic(N<W6s4d';Rm?9"&?]8>TGo9B.+C.qq1LK2SnV7J9Wjc`>F)\^h;AQ*%nA:Bf[_>d53tLCS<;W<q_%r4N2dV6&jGQHl;YVAi83U!D=1qQ`SUnbS8m.B2_$a&3gA4trm6$J?;<`^*"C#DT!PAgd$'/.e)I\'&bcWE@Wh-2UaH5qL8u"pNJZ>V`XK:R?_U=CQgt%WGIbPFe/`#SD6OF.)Q<BV[2G,a)`"1B23R!SJTLPZ/<P;UOAMrolQKF"(D66./`JN6mngb,13A79D<m-"baj*cJPrd"q4#nsl.nIt$"`IIH>pl>2jYDH<gFLkNON\1`4FrXU-7]F_YZb5mQfShpT2\JEj)2N(d&7Q\;Y>(,Q.<NO==OnafNPj9S^U.(Eb@5g^9B:s;JT10jlI*lVI..$,fC8EHPKSGo4tQU-'E)$:V5!.2ua&mKGOI~>endstream
-endobj
-% 'R308': class PDFStream
-308 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2527 >>
-stream
-Gb!;fa`?,q&A=tks3RUc,Z?TG;O`l?ChFW`ZIHg]_c5_!OcY55";lZRUA=ZM#!n.#/38u*@P=u\@d2L(IR$+CKJ%_.mb]u-\/<,I=!<5/N2I6\K0G7O_TVJe#@H7fkaN+Z&4OEKJ:0>ILN"/4c[o$'(IeL/5(%mUL@ms0i+tB'E=-+ki+j=)AfLsVR^26CbmYX&+2dk0N.6&Xs6783<58@AD9Ss5Vm0ptC'6K]P?3/<]+.K`5Z7:A&VSSk/KjIUpDB,\4"*cK7Z/P=2Rk/g9S1$^?[fWk?Ghe:0Ha"`]0VcI_U`nus)l6UkUbr*1&i4-90$YfL#iNA?@\V653M%"T,ur!<oc;Q3D\G::QP$'b@/C*2sr-'Y4+WD3#BATc4(#5hb&O[?OC4db#N=F.lY&aGV#^9L8d'jFucP+0GRh>-hVHVCWs,tS5A;9m]Yq2]`0[?#nC328S6Fb4O*F3f\?`i6^p0.:QL._6P.'Qo(-L9i/g,lYl41RCN?S!XE*/in[msN,2nt3%_@)_R!pr"KJ[f$V/50R<;h$P1g`\(B_0dN_+qbDRd-2Ys1@5OZg='hG8=rDh/0h[9A-1&b:RB<%XAI[eZFC:+3tAAHGOeM]kB@TH9i8;!k;,gAcc6&1h4(`#V#=E42)gVqqXDgG/2071stWtUkt8rL]OSI?m4.;ijmtT%T7)cjm"\R74+-1"?)Yk4UB:+$."s..puL,7I6UKU'OG:b@B-LiANT'Jn&_\L#K=J)"#c,HOektF/*Qr&rn"Q2]sct[F,9V9NF.<6Gsj3MC-`$e^PBckkJb\'B0b6,iq^FU7nQp]-8'&#r87l,!fsB:q>X,+Y5=%6q5e`:qo`J4P(`9#0:rN0k;_oAL\sbNLL2IKM"k/iZIj3(1M+h\d>Xdfg=UB8=@9@nb']>Q=l4s?ZS5]:Og6E%g-)(\/1[=(I5B_>$F$I)n!-HOO4=l$sP9+gqE":()_!?S>?qqcP2+e:PEho<(/jaf\tBr'>!>s4onkqJ/C/eE2hfJ&km=e!\s[N$)?B7Y/hF^4OO#f"Ob0HG*kk0U1Ub:XN''OJ/<TC8Mug0Km2^0A!14I>cYANmA:W&'KI't.nnn89[a/gE]MM'ms%=t=apB<09JmIqNZ9_*o"k+FST,^-0Y9471E7g3Z;t8RB8.In;=O8.jJsV#>?jK53H3V"HL;tmI[7rRt3p"^^$7f\\RgXg8[l"OC;s&=X-U\RPBGRYn8P2r(P$fBSb2RG)$@rqEO\X:?aI_;X,P?f7qOl_F&fUF>\'@bC_9cm)nHQh.Zhi4fGT7)l!9b)V.,!1c9r=0-5NK7jDX\=g['^V/oi:l34XUE%,pWdiN85HR+'T/D:K,QWOm-L>"j]ikI%m92F=0ToSt>%Via6f!rMJQbERUiD/oh5G7j9\384<ke8D0bEN=d*[pG+pCl_*-Lmn^^81$aq_Y&E!EJCkPLl=mGhsK[pZu4<IEMs4cgS*moU[*c)#^aBhpE=J4j^P)T'#;qcZ;3J[ccO*eD44)p9j8]W">"1G!W'/('ta/bQqM,=su@E-j;S&RULX.j:i47[SG>CXI.q%*R[SO"3&EGWXGmXN0k=T\h*2m*VpZRRV@uWU]W&MOW_Lf(5I*tdZZ[q\69KhOp-V9D@567?Z#GH_uE/UEoe4*J?+*EM_E4EFoj/%]nCeV6Jg2.K$mc70lqt1)?$C,96\9?0Tp[hICf-!=^!bLDstt#PEpDf%VSXLm92(Mk+hAp7;oN5B(K$RkXnk,G+n5EUUo;nFpE#(fc#/50LnWoYMV((XtXU(]n*"<$*J6Uhg6;Wa._-L`u<a6#[#SdFe3:7PNKZR'G4P['OeeP6g_=!8YK<t=Mm5nm=5A-EYL3GB6"6D%t992*7Y,_#BZ+pRV>R3iRtKRn'Tp/Z"aJ?]=m7[f%q2gec>`-\?)&g:?kMJ2bUc.kYs>F3?phbN9$:*A,$bK=2cJX>^M=]9:7'S+K=YSGmRPVRa,(lg/>O%)H::VcEOq2Kg>ekH-r$kbKDRe@8C#LoB1mKcug0D?L,F$i`Ja5P0^WOQ-,r6f<4"%chGXnG=49sARl"/aXQ6TA?2]WWRJ!j9pP!$ZaNEhDpm'mQKp!"Z+^-tW97V6BV[Lkq5ZgR`2]P(oL2V5[M5_1[fVDj$jkZ%AERu.f+=fX?=)&#KUEHU/Eam,M;GZ>Eg(mgALXaJ2\[^P>+gMW<7IplD;lO$8q'<ZCnL:WE:h$]IXU8K*_j$[qVr&'+%G..VJ;7Tr@f(sfc+8Q[dNI@<3>G]WXi(j0(0KWlWP^NXB^;aqnd$4`6@@*g+f248`s&lIQ>.=n:#d)I<e#*q>/"L^Kk<544XkEn!ummZX*NZJD]2%](:-BiI;4BgON.pf\W@jKEdI2@+[KR@5GKkVsKgjWR\(Fn$7j01T&)T/k(fU;:I/YN\!qK7hZPk`h.R#NF#9Pe`D\-`4,PK;Jr+H:W"9VQ#Es3\MZ+@B2eoAHd'Kh@,gVFhQR.cajdC7T>qStPM8fr_qPa>_[$2Cq043.~>endstream
-endobj
-% 'R309': class PDFStream
-309 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2436 >>
-stream
-Gb!;f>BAQ-&q8/#rkgoLXc8.dc0h'>8_i#p)_(0EF56"F,U=NV!<iJbW5$'Yi'ilA8!K4/M8lhQOT_nTDnfR/'L3Ue!rk2O!DZ/Snl5ZU#bq\/?.O_W'jQ]h5PsMK61K3'$Xq*\4WLeO4b1GC]Z(0C:([-WmeJZ/25h9/YbQXX7O\H@_qR.8XZ0]O>-dOFbS465(GP[cUEBF!^\QKZo$)+IKc,R"D^\>i.8>SOXM_UX:6"CU`3"Ybjb.[J$Y$9^fKT^F;\:+#]-_d#brSSc31<DP+3qE:9AoDe+sZNO<YgWbQCnu&R=KS"h*d_HS;)$[@3gfl;O*^!9r4DN/87cbH32KQX/W<Go4_gl`-9uBcj$SC3<*<`Keuu03!CgleN-R4d5!nEF?2p;`ef4J/7aET?,%JAC-m18Z8'L-]3%[YlPa3pW/`"b:d:`<7WKll0!.Ja`I].Y^i)KD`PP)6N^\m_<O1#0_t.4Xeknn7H[E$[IdRB@o49T[XPN49O,c,g)RS2UG`[9[c]/2E+:B9p6aFVf#)-7e3;N4[c3dLm7(Qr>Bm[l@7e$6m>WrA>DSZ*7",L9)`M_pP8B1d*VNb%YEpYk_(@i\<>iBUai$C]tY-EHl]tKN4pR]Ds%H"trr$+l\!fNhW'jP"W!bQS(M-u,=@mJD-,:hj95cim?JXW'A-CortAd!`"]-`EB0U's'L/]_d6H+bM1:T+;A<J5fKo7(l/M/HHRF6q`/e=T\"roXc$6t(Rb0mOK'O`@HPtn18VK-O3J8?R&@ck+AEdDG<?^-9nB=p8)je09K(&*>f^?UqXBHbIabHkR5+.g,,HZP"L%%7"ZMT72R[2<.D:p/S1+ObT[WmDmECN4_Lh$d<X,`la_A>E67,iV*9]lYrUoCi.5q.d?Q((]AOU((tdRq%TE]B0.I)hcrIngee3QY`Fk,X\"$S'C-M30-%PA#U+["[1pqC9C:?]hOu=8i^KL*eZDuO%GU/r^Un6DM(6HLInSL&YC"V[G[@L-_<!8ZY#d*1dDUC$]:l/'-d>ZC#K%I91*E`F^2m&_!j-en<,B(^qmPVq<%8A70Q:6E$6SR]*#X]_);@C(fK8<*?.1ULtb&BU6Th4,#M.U[k5^`jCWugGL`E,.0^4gA'[R/"%k%37,q30GQj.?R%QZTd\-%A3ArjsFD2pR)>d6JDX3tUPN(HQRR^4e0ZRRi0Z!p`/5]f!PNpb]RbP4U'K#"*QXL'b*5Fm]s*97UH-S6?>BZIW,\G-kJ)OoW*)BR&F'#a'XM<)c0C5lB6?^l0"4pRBhl<WjdT@Vi(W';F%-HVhQ=67"\pH9dM=82,6Pg%M).niKF*1g_N0@1'&P>>GA3m;H(0i2V=J[]f2Rgs;SlSnD=CN9dF'q`8!K462)0GI^^V:6/?Wen<#Uh`"g*9hO91TK+Eq^en2TYVM\GM_7=67WZ\E9VT\(fYAqS_G,+UOa*=_*f)\#\<kpQhgUgD&153G-_fBTBLQ^2h9%<&3RW>%MsPj,_H-Dtj"70#OEJWnKT.2qGK[*:@lmj'J+QS:]_idhE+/#I&CVa86k=J"uT7`W*[)2Sr@sZ&A=C\Fqf0;<p2-p#Dn.WJlr&e43qj;80NIM=j"^s8)"i\-W'p];GSWD<ibh2m9FC@L*!Mmp_!rnNP".[mG>s"Q=5F#e-+<hm3VA?=2gj(Zeq2#+O_$^q9t?]9?MoJpZWC-AE%':(<iAW$c(tF00G/]#TapNZV^mXJ,`M3l?Bo<RF1m=Y+\u)sr01n>O+J*)ZDbl9S<K$p;Cfe2Mi.<<f#-V2\oc50iu@pW-D`>J%;qlDE4H8LHPp3@oKP,Q22uDR:)QY'6&VR1#Qf$>tQGTEg,)8<$&NFIYecm:79YP'UlQQ_4i7[Z_,rh8X.5=!0\"l`_M6>/aU=eIFL9LS+%kDr+O.V=g/SP+Dd*L*oRap2\gB>1J'pPLnM#l\@3:`\U!(KqblC_(4F1Q#qu/X]AbX44@>!J0P.%:-CH&^AG>S-9lqWrSlX_^nT0)1g,E,Oj8pSniI9uS`n@"Vf5WDB\d/5(@o_T6uYt0)<]pf^$s:1R7QI"\KqB\l."Jp!H'Lg*s]A_#(MI!'2NY$cqi='./D,3YFe$XH-m>aL7*a4OtakW'T%fF<n@s$rem\hFD/6NR[SS6@%)H7M[ErKisVh\l1RWZh03?+;*'Hor*>2lc!GUYE,4E^r^JLpamr3f9gsC/8(F_HbWj:W@VH+<B!jqFLG9n$_-3pdT3]mhT6SlMKh"V-*$pg)"#kk+9P)(8Z:%UbitC=h!MgR*7KFu1?])(3,Rt#,%Q$^t:=n`M'ga1Rpl%\.(i+`>q*Q-(ZlmO],Hj&?T5JM9QblY2eZ%t+;n)\EaQe_OTQ!\q6M!.2l`8lN`94j'MDht3jW7$A3s7R0N;r<ILq5/,!Ud5?1s"YOZ[VsU6Uo<~>endstream
-endobj
-% 'R310': class PDFStream
-310 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2636 >>
-stream
-Gb"/)>Ar99&q1@Qs"FreN`%9@;'^9E3@J:UDW=cXgIOn5*;*`//u<E0$SQPM?f.8WP+o+V>R*iY^kOF\Qb0T]HugSCkhqMqr]1(q`<=K#2o+Xo_umnd(/.2:20o&ZKDIH_l*^cO0'h8:cc1)0Sf?cKf'etqf7po8:N0=/g8N=%4W>^K(^@ld>b?3+1Rki>W1RT1Xhcf\quN""eaC2Nh[eh(?ab[QGIk.^1MQQ4glTqM0XHUtPD+PYcqP_K_JLhj(e8l2#`q@=Ma2q5cX[_VSr+4;SGT@Sr?O0i7-KLrL3!pb>_W<cBRPf-W"+=N]if7+id)Da-YDgY`c.Vq;VW#9.`kj&/qh,^5JV,H$=T0M-[7+R^*j#!iGPf#$9sE!K+eE.+r2@rjUq_/Ba/9(1BCgHi%XS#'/s3nR0_Mg]<!)Q,UqN]*Dbmp9)^X_NqB+LH(8K'huV&Bl+7LP,mH-#M3UcRJ[UYM0J4.#^;'O5&P?m1TkF&e@HWBV/VE^)V=#7f6dg:Wl@T2@WR:/b_+:SQBssXRRUp7hNjJ.o$[i1YqO\"VApYi+b*dbt:Bg#WBaS\*A4EO]X\CI*!]="m\M/b1X`^DS)4FR%`H7Ni@'W%dlK)R?ppl<[_Un]W77O*Co$AQ5\1b0'i43gBaV4O1acCZSX]nmESWU`H8;a/)^K$F3Rt6d$=VSqAMkd%ae-pI5Qkuu_ma,p92G12?1N=2b[k$NGhbJ_!\>*5B-5LtX;*6s19u;'n>VrKRVR<+_2mMM08"]`Nr_Klh'H`-CO3V30h@#0*#=q6&,oO"$[]5t2U6[QaWUptq9NsEGZVKDIkYLI?r6/anR'oI>bWigl[kB61Ho#WQ]6Z9I^3r.mp4C#<DI8urY)4kk\!L0kkqfglDOoa?Mmq<5bNUgqF<72\[>N9eXf&:n?;5<,D=HZa[8Zof3:A)^rsm/'l92IMOIKo1I0!jGnO2ZS[gf@"^?jgO\VnlSW$:CLHE#UF(t%`Jd@$65jF/^R<nDIkEhLpi$4&a*^i^@@2j2-$oN4u5PhoNI.!p"m\iLp?2)Y]ODr$Thm(dBFRIM`$^c'^.rD(DEA9nRTpsncdd3W8eqpCt'F?R@WfH)Zm-C&3f\=G#YZXedidIE>4om&OCd;I_(>Hp^C4E=`]&YbIXYEW$6JP1<0SgS4)IY:S/&k]&)c1TOAr_;0$S]rB7?S0qNcVlTjIfuR$]7*FEY:guLk@nF\h7PAgK5Z3`qBU`sNHboS%H6<;!Nm#"GM$F(IdN:/j24=/.K6+Oa-?Nm+iWicprg#mc!q+=\dCtOTNh_E6UB.Ts!nrZ^9ll=OfB*KD8WRrd[U21GK3R\.M)eC16_h$o"-bI/VC(99dteSH@&UN()Z4!?Xo+`VNE)`V&4D3>837bWhMU^o7Fds2Qml[L#(7H?uuWi5hCA,Z8E6`/nXb,<tl/T)t\.KF3K*;TMh&SK><ANaRad/6_da/qYCd5)kCg\2b/.$S5PZ$C7onZl6a_g]G;C?UYng6r1B.G[?RhMoZ-DCj7B&@)@slt2dfu&]XGrI=<_"@/cu#SnBOHj)9BL5m61TA]0fl9H,F@6bmt$&12Zs8L'9-*M-cc;<nFe9r!'/l;6.GD-B*u,"q?2Qe#MikFep_#n+"q.U`d6!-[bWgq3(SD=;WEQ>EZT^WZZ@e5o\M@hW:d<EK(.n8)[c\gq/KP]aH>(#.mJE?:PkZ(d'=4$gN0UXg12.[jW+ig_=@_/#cI0:g\j1W</"K'[3%0^;Qt\(+i^!5.q/r]gmCMKZ1u63#'YWKpf`lN%#8!iZE24an@bl@u01'jVd4=Yge@UKuTi8DVd'$LZX58V@Ug0FEFCqX\3Iq?GV\Mai@.#j/a(HF$*O$*7G)A4E-"pF2'\XeN:l??_hC=G`[@c@RLb0S':dFLl`BK'*;9.Y.IYIcMa:L'lA@#CAmR?(OJd/]=SH8afoYoE03P4e5LXLC.Dd'8a:X[(U?.#/FDs*NCg8'19ono&c'N1lBq7/KJLi`#Vd"_F^KuaE(1Mg]Vo0cp8r:TrnBo_P#qLN'f.W(/4'a_o+a[7#&;HRY\<Y`GZAq\n8AT\6PlPFGTirOHf[YZ7If1,hs/gsmCJH>:*N:H>[;p(`-i]uKUSLu^%ZV^of:ae\6P/j;9]5$<+.=Wh\:lJ`X+Kjglk>-c)3YTgCusHV$j7D8>qR6SsEiJgE3=ho-8F*-\UtVWHnfEZ+Um3XWd"5NuX/jYeJE'C$TX['X9UNp/PnBBPHqI<B]TGF"J!/cQ/i)XM?bf_k#fRZ]p9m]JQ\m<g#>D$+lMr"_H0_hQ!eq)U2Ko?`V&mnMLMX%(Q?4R]lp9B>E_8%rD/lXU)[BKO7,9BOJXA*V[JVle#6V0\@r[401[5CDuj_OfkX%$;t`l3&X^h\L=%iA#B:16H?kuFjSe+%bORlU[=uInIZ&uTM%>JeQtG^:IuqACdfM/X^^A8Zk`'AH%<k%)L7^hA'lHd`D\dm$0GUrB#U#(4(r1\bt.6%m7du-lA6O$@dC_&@\\QoB4,6\T50(p7A<#.D9"2>a"/*eM3QQ6)T[?0Np5'$8XGoZ?0D`Wc^YG,2#?G,\+UGjK,*NRCqU"85UoUdR<0-B]Q,1Z+0o&n\-FI-qW'<o-5S6~>endstream
-endobj
-% 'R311': class PDFStream
-311 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2626 >>
-stream
-Gb!Sm>BAOW(4OS'rkk/:XHScK;-/,!fi^8#Y'6=-CSfLNH647BP)tb*$\39)^OFK08<C,nMfR;"AB,UL";3]'mp$IB!<6O&5KNr?T>NUk@Yfdn?U?l8`\@E)?HsWWqV?SZlLi79L;R[__*'mG1%aLP/Xd,<nSeQ]O!!>[E?I)r:8\bmk7GZG50!2Ni[gN0aas?<.l]P9$M+c^J**^0j?C?1?[fT.bUaf(pG0(m6$sHeZ"'Irq2@9>jR7J8EYZo4N]#gs-0+CPH5RZRpWNJdDa_GO]RG>jLGs/7^bX(jfJSFX/:"Nq1(HpcIMeY4BglJr/V-4(2#\mZL7>UTVa[pLQKO@.]MOba$We^Q9\-uf>]NR2H>oHXYn;06KBGj1I-I2&)j,0sX,V)8D%^,;]uMHY$o/Z]TNs,^0_$"iZ=elO^tUY3Z=\-rSJ?%@gK5e$VGenQc@mu>abOPCn(De<lf_IV!B>VW+<#BbH]I[%L"[*hN!3WT.dM&Kq3jr$2EV%ekrC@N.i'<raM=>+bEo'0*0KoAIX1T#/1qeo@O8uk,cECF']N"^V`)t5OYOII3X>Qf$bg3lTesq4[;^3u(8Z.IYUk\6&hb5CFGf2b0l:Z#Wj>-#A3<?nPNO>Zc:cFN,QcT7Y2-g5R;+$GG[#+nQ`AOA#P<WZ4L#L2;WNR'=*%u<lp9o5dO&Q-LR8$cqu4VP:mq_JriAMaW8J*u)-`csD?N$h(9Z7/=YCI5$b,an1Yb9T0Stb\"7]Z&@giX#p>-m67ce_ONDAr'lZ"bKN2NSOHU*JodHk]3OlfGZ:`IuqCP-I<9d;WIG6)VaN`K]SE1M9ESAe?QIrOZ1(0tEjD4dZI13Mu8L\uU3(_Y3m+j$*;=/j/(1Wp5r`1]?U9-JQfMlkb-:UE;">-0X)F!4VH@:1PS+S;]7e6C<LFP8+SD?Im\;.O?Y8*<o02Xr;1+,SN"O^@(a(-0N;lL<g/`0A'Z78Q6i?U`b=7a*!Fq.k1!bqSM>&#:j:"+3?q7F/Q'3gh#*itj<4Vdj6XNt0-a032+Pb$u^9]K,p_Xic%83_%hJp=6`)7a1(W8\Fe:Ho=,ur'/ij]Xo[0$^kO:b.C0tnT9-m:quMfVb(?_6CL#+HLdK2-l89LZ7YQA=<4(FZ'<%m8+'>UTub1ElY:Z:\Wd>?DV$A77`m)sWh,TsjGTFjlHps%C7\o[K\P:?fG'!%9>RsaF>'`8j2"SaiiB>I.lGWPe[A4%Z$":!UpjW>el=/%b?+G@(#="_?uOiDYR#D`/FKDsW[d#-n-V(JWiBE-;N386LIO_YD,<70DXlffe%9cq7$a^Z.uX:k9l"LjEWnbL/?(=FNoPP>^3L5FY5e?Oh;k^H"k,@+6eU]eg%D$L1Xb-td;4%U[J`)pof5.F9:o"YKdDF_[pZ9i?*>VP^K&mVncW/sJp_6-TDX*h;Z6g"H2S>%5Vtl##7;REao[X_/.]S#eT=9"JY#B&@o3*2dcmI6_6XQ5?WYWT=6$5e;7Bdbd.@Sh!&E\2#^;"2CeAkj+Bd8s&p:Sq%XaX/1a+An`/+Y@2sH'4.nCi)VN^ZkIg*5)[SU#kD[N;t*ET#P0kJ-T?ZuK-)'1T%g=IWrDc.LSnlB9IF?,\1<ba,m/]Ls'X1GH;<7IH#9<L/*(,a+-;^ANLQk]R?C3Pl'QJH3U7ME^eO[T+-/h.[8Jo.@6.c\o4U2!(KBOi!*qA(%^IW4`u<47l<7!&Qurlo96Wuon\R`;j+bk(9aC+6[g9+.R.S>W>/O]Y)n$(C&5PenfMWZj69*J5iD6%>uBP90nXc54PYo2C_.`YOKZ?996@ZLQ^-e$td%Kk;6?83183CBV7uj*r8Y0sV(CMq+=H`u&(mPoSIq?B&\.SUBU$:@M94Y>4dAJ#clbE'(no:">C\3<j&*V:"XMaV3Ef1Jf_]%AO7Gb9Tf@:^3ebF,dg"Xu;f1r\m^Ni\n\!C'q'kFuUK#\u*<BOuuDlpLYZ#n?bcOW$VWl3>8E@=_9:N/k_UWeBrN]H.bqXmBuOq[@Pi6q!)R3Do>cf)`PV>>=JM;%3b;uN,$11<L?69OB(?'Y*aR;()SQ,G'65jj%!:?1jZqMbX#qX$ZL%-l`$ne$9IG1Lr>@qf>CJ`0Om=\K(fK@Ols"g)Pbf=cQV.U.&S.5]0m7D\NS%ZIA*WYB"^8RHJeR5Z/L]S7C[s)=6,%4<dWeIRID]B[4.7^guQbkp-M;gMR?LHC@,Mon^5IBg791oaeK5^7p'=6+1SZQ9V^KJ"MY4Z9:!D0QE5eQEMq0Oj*3KLIL56\rqs[o7hWG=8JI5*lSKMULts%TI_%kIIqN`rYeL+N-J"Cb?%b2u?p)Ng"j8g`,J<rmPL@$HJZFtN07UsN]@^<T/dtFiP>Lm2:fNp%C9Y7;qT\9No1^e7b^EU/_B>G'B:dq/GDA[N3cN.9kJZOF'^FsmK*d@WW[0q_;;#Y;)l9:QqsL1X?2%:/]0_j'-9r)GMA<OSPo;(QB:2*b@MNT#_h;V6_lphQ5[WV1l=*T5\'<e($f&YtXi5#q\5H:%>L!"+X%2Y?*'7I/F1XQP%^/SP]X?1eWl^\4T#60fkfV$)$@&/&8F>s*?u#^8J`S_?pBG]u7GV$gN[sVod=22T`7n)~>endstream
-endobj
-% 'R312': class PDFStream
-312 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2892 >>
-stream
-Gb!;eD/\1M&cNgos'ah=9a[:9;Ueq>PHWU#!r+BlB*F'bl%^"aP-u^J%!QDSs1U9VE_4E:6G"t0,"=n_q_C8)bVRR]Hl1lcTDspLJ0.h]h;<YM"'BEU&%rNT\+$lWlW9_Sa017o6O3a35/fOqpHDjZbr]i-T(p,9p9.i^WkR5$mO`$L=JasQ*e)-%BudbCV(KacVqAj*J,C'_s+]'rH2HLokB$7agT`VWJ)UpFk+#lZde!D<QE><CDR-e!.Y^%tG,'s0<#-ck/.EGe8r2S]9QVlp\G>g2!P9!\7$?b^qZYklfP,bp;t7uhU?5jb9VF:&%q!Ig,9lBgO7GS*&lb;I16n7B<p@iDcQDUVNJlZOp:A=f+fqK9$nc-\(5jAkO7+SDGakWg<Zc6G#0K;Cg'E?4q#sQk1)[tJhsJ)bZ02F%[euH$#Te>Bi[m:MK0N>JQ.?AQ.pNPg8G2NIGHY@b&C/:e+6&-/Kt!R)n0*L)\a[Vp<sdZQ>l^MZpo0^mn0VT@qsh%b4!nHU1*fX6,fXkWnM240dV5j?":EdK/cfC2YDPXbHlK,&95rguM;$&7&1+Ua:g>-h',B%?6c^Aa[%V'hl6ah-^L'89=c(<UR/Y3iW/N+1I[<Nj"_)9.0^@!>R*,&NH-jg4&%TpBNb:X$2mSM_5:'4cr[u"igkmkFG.;8,eER<W:`nU<X3<<K)9E+o4:f;]Lc?HlK9H,_<cUtZ;uM7/22=)o.55sZk)PV[7"plYnC3gXT>=>+GUrF"fb!"$jq6UGT5X]0VHb(@ChYoN,/Fd-q@nus#It:uoDGLFb!Tq/pu0\+%rOFLS"U&SIerR(p;\L<YV&pbY>s_4D9<idb6%6Ja4V\lBFV[siG=)^l"m-'AKgA!_Wgj7WfW?;%^9#XV_UG@@qX,6B3T]inrun7Xm,M;7Gjk5p;j#J#h5`G<Dc;YBI+Qh43!?@^g%@pTcXt08:Zi5?n1UF]S0sN=_6)$e(3L*`MK'FAE$NnoE7"s6NZ#c&q/]S0A<F#_ahVH$\REhFm1rS,.E?V/nn,$1N0Rh:BqO,:`7[-T&Zoq;B[8L*9s3^%K.mb"#u)liB7.7foLFQ,StPgfM+seU7HpDPR,_Thu\P2V_17)pL&"ZnWtL]qusj"=_n@cl[m0;YjQ=OQLT_S`Kg_ZU)4BQE%rH;0Y3sK/19;!#3"2BlH"]NSKWu7mk.W2fogWh,6WB^`,^#m$2h9&I1sYYS4:5ofV:)%X.XHXB4=5sNi=]Z#sQoG+L9#R`u&bH@&"?dKs[!:l"q+'Qm5mX+sZUjU)(e*)F6I^Ne?Tso7Oh3&RiU!&?jiOi,rc(jZp="+Zmj5f.A=^/02#m>dij0?+=pDeWRb>IsiI*S_7l-4/GaL;<Y6u.AL1pQ@>:,_QQn?8MU$0@JrVhdMlAs*YGM1`>\RK$+Vg\^G&#N4LgTLBF3\a2Yk1qPkZ6mT1ll]MhAYG4e>C*DjcG0l1tIAKCL[Vc]`^bI5C4bf+k<WbjETJ8"]g7)Fmog-9L"!'>5/QdpZ9]GjnI?Z63m*c5-/16/i`865S`O76AX583.T@.'l*p'-*=2MQ#+;hGaCoWM,M*Uf'7G91hf=7][$,Qj;*&J_R:`<I,!2%m-0DaN\s%N&!\qdd%o5(oKK#aH@R?9\2Jaf"&rXXWU#el?u,sXaJs%hMKc3Kpd):Udd"I".!C#2a4Eg39oc6Vop?U%52qOmNJIDYZmM'G7dU.G9F1YnJh4rEmbs>M4E*),-6kM\[IA6M[gpF1Eq"HL;R(gcV*RdH.fXgAR"';-=[99a1*1D)jdV__DGN3Lp+'(^cXaIbYd!dI+2CG<Mlnk(YJ2\A7<f97k)T>S61?J9tG(UWakDXhNOm"^EYTk.RV=D,Zl\P``1`7nl+<b'1^O>C]n>TXQ<2>.'1@05Ib<TenGS?\ZQBc[`N?DK$kq]lc&S):WOYCHr^G79@]Ym2"fN`Pri]!-4u>\etkNIR0Ds@-4bN;oZ!Uq@gWPITa>jU/I?3Q8VG5ubu'<`fZoH\l5RmG)RAusL:=0H&,KUUZ*PlI.egNa+7X=LjPkAQ0g_t:dN*UXG_0N%_AX`=>+pXq_JN^8$_F%gr)qr0a7EX/(m'$LDr!Htdur]r&XJ)#53EZ9j3sL/,GQ)]dOG1#:;O*+PF6#Q+uRj&26mA81Ku!8S)YI')LXRQ;2$D"Z(ZIs@#ai."/NnY>>0l,&<%DY\"*\&n>b6'8%4]Tp08d9mX9lHjn46]C9:UOU`r0ko)q11rl\Yb9Kfn^mbeU$dp,`2)/Pq[>WeS#H8&VI*VN>kRj7G%:G8Sb7:O89@sPXHEbb??g0sG#pXKfXNuQH@Fh&9F9Vm^sc\3ZO2r"WWQ)]MKhGdmjWYdS/GF!:^2+o6>#bFX,QT'kG6&sYX)i]Yr<QB9"O7']R:^?s7IfUF4%OSN$(mk2SQ#4jq_GlLaN,<do(PIX^k6";CN*qfF0_T?;e:odinK<Z.])+H*;-,Id2]RPj67C6Bj9f=ToV]Ma\@M2lQU>Z9RWV#Wh*1e@a9IcAH*%aR+[sr;YqD?Sk/`Z-ipN<>_>g&Y*[*ZrK\;?Haca[%p4"R5B39=3)u*SRci)I&58"=T%*8V4H;?fC2s_OmAO]bB\RhCr`oQ.\S^38k#52PYEhjA6PJQbHVK5n&TiH]3I8j)8ESsa2(RfGo_j;nBDSc(eA86Ypi6GAPZ'?TtCTU3@oD?b_8a2PYfO3brD>B\31`.*S*6L*N?*#dTBR"S/PG69#BIqniVUYJ^beYc*jI6&[)XU`NTUj"kUFUPIUTIAa(`s4!)-qU*g"'MHG`"/?s'(og<IC/l0Z\@@1f9st,ZO#7bK4)B&KOS0-PtL(8q_T7U8PRXB.Q0a";W&nHrsZ.i^,K[orJ)m/r?j-~>endstream
-endobj
-% 'R313': class PDFStream
-313 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3636 >>
-stream
-GauHN=]=*H&q5%Xs$MKI(@O.JV3:\">7A5X^h07[1D.eo<4Akn7RpZ\K@sVHR8l:?-P?W"LM9_UQ!%ICH'Egl'E1o*s#M:`h3&b*TS-KZ\KTH\CpH/Hn!C4brK.%m-LTO)ZAb1R3gJlmm*km#0f']T*-1fM($nO#6Si49FiZ<\PT$b7qkM,uiLib@rf+,&*i3esniL"R;k!_Rrqhh-pnR9%N(sgrXiDS=a%UikBQuos_j[m!Eb]#VkHiAaMbn$DXqf9!K,ed<^:37((PUq/YAa3$(LE6!.+lDCQ03MYI?4,&f;J4oZ!`3h</]o]?bZr)D;0fOJEKkKG0oQ*fF,l)f]<d=>W`Mr@r^h:"n@2H0*2`_nurE\rUXJi]J)pfmh6bR,i4790Qc?rF3,ARDf=KoNTZ4Qn:Y&':rGI2/m7"ooNI>8S8Zk8,`Nui2Hfo=(Y65qY!nh>\+[==lumCH48Fqj;7V]nSVncI`G:T0LrG6/jmdh[iL&@u($>%R>:'?/Wn,s-A>!-:24.Z5Oe@J_dCE\kW[O><;&9[=S';D_ZmqgDHtpkGV^AITeWjRe1t_:/-g`Yfno[OBcW!/cKa7.)AWSU]]g8ph6(&GW4QW9G&P:]Wmkj^4QlL2If"1quV.(IUU2L:jfHFnHhBn*^SgI"<A@K9"SD8,F,u;Wg[.@S/NQ!Kb!0<jBA2N/];32G4P<@lQLnE9r*/et)h\2pjOT]BheGrqf=2A[6H7Fb2+W$cbrcrNh\@)KdLi4h&+r2=mn$Ye+$Qdfl")3pl0p/V<Q)_.i8B=gI-U@eT_A?H#aaK>0?pq-tM&o3QVlHhY5u)WQl35&tp`mt]1M$ZpqT1Om4cqWa*sbaq&M0G<H-4%2cRfj1<a/]TJ[=*J'W2(I>i,[J@\!MZP'-,nKNmq\-2ct%0h!gW"@AoI239O9;Eb/B-HP>MS`^@<\Bm,XEe@g"5oTQN6[hP!5UQZp.c7dC7&!tuh5-=P/X:bk8[a6.5WVT[[G^KH)E#83ALFeU`$'5T9E^@mL6-1Y()GBlE;hoBHC2IE@o):Z-@\a"[`IYo20AOA3`O3oJ\E"C0cYg/ZkkOYJ_=T7=!>=,rC*mO'LR=+l,Ac%.>P322!n#u"$_l1M$a`3q%1%BOb[KrC:S(1OD;6G2LGp\Zq9`E@DRc245'U;=kdC^b.C3H*6Ri2P54t+XU+YSA2bWDEV(:,)U9)P@1RA>Gm_V1Ar\!BPR>s&_Q<!NN1qgE(KCFRdudFfc3\#9!:=bWqZ145jS1l[!WXc#^l^]9iiifa=6tO(M"AI,Mr"=`O4/I>(XV^$Ud/a7.9iJ^iZNb[:*ZKZQ%qYi.*IVZn[dkfM_W2*S];P!mdAZ*ZHV-/0+kAXWuc7P);#\5Rq+qk/],dFSm#8I91Wq$Xat2;hb4"W7,c236eh/c"=A7'-@%+C%FZ-&*0r@:lc=:D$B<sM'Sbj^1A4dpZ39Vp^;@]S<bC>\8/aH4e6OJfCCc/5ZLUm5]5o)+j@$G9+9F8k_C-X^6'`,oSmX0BP!KB3T*eF$n`,__CI!'VK00:@e6#X=gPnTulLrR@.+?O?GjI`Nb6pr);7:DY[nu"nS=G++.O<GB\!5*3;dLN&W51##\mQSlrsXMtFH/r\<Lm*s0h\]gfA>%8:89gOfh%n!7&otA-_.t'QFlC.JX9g`gd%J_4Ni:W7YfHKbt[50)H5%PNo^6]%rY2Om[0'7LellsMD6>l)2[=GX%k!E/3(iiP2UHR;1lVAeR[K)Al:hPHmrg6>Jk-XfWo1+W\:7D>>a^')'b%'rCP]U"k6KWEi:7t#9R?qP](:fm6+1Ha=qM]S/KR<-'ui2hUFM:D[NRXcjk'6lT'm3-afhiU5kq7S',RKQ=KRqYh?ZX5\Ht%^dYo55OYkln3@D?T]J-dj3k3&c3EDhS(!_ol2qHR#=fA:/(De1I#uH0bf;9%FM9G4hN0nWbEgRtG^)VONXegMB;:&NS_4;D7LfT@@ieN*:STU)\:FI>D!Rc7BqW>Z5Zh!iFVLpiYUGi`#K>gqA@jGN7*&\)V^ArWD%g&9'+X[N7^59L2<^;rmfX&2F&]C,2kU(.MKj6cg29%uZ)[k:c%f"jm,Qb:\_K!neb8R94Q>VYqiCV44q"fBGu$:!RpWnKhGCb2a8Cqt?OAMaj*Z:NFr[Jop9TtZe,+R_o9R80i9S.tHK[J@g1;=/i1UF[nM]Eja1,ln%cgDi+\pAX^UtLe*S@.^?(INu_e(8VVIAanL8Aoljt5Nemt.LuPOo#tX^pJ%W71R@'(X\Rs"uRsFA,@+e[R83!EZbbW?DYYQQ@En"cF7>Vhffq]V#Fmi6cps!Q6)+LP>Q*Nh)cH;*:5j>Ad1hdGOSI@(sr<o62Sfg+7b=c%$\jEpr5J3Aa"bBX_qda3.<Tin-oujgFl(mi)Un@`e5^6$6p#Orr!@(UMT:a.GkaKX"l3aY+0di&"TRAJW##Bo!\gpuI$SK0(aqN!1T->dOq1pZVo?2+9$_mIAs%L#I_L-c+/sk!'=5Bh?/4j`5WeE5)6s6G>&_e^#VU;n.Up"+S[]&WMbh:nBA[FL3;24a05OT>:a2&)[ghNQ#TBr?NT+O\n/7e'nWE3;n-u<aq`JP#9BlW<N^pGes>L\m%sVZYKU#ldZaG(<%eBi0?+5#X>e*AD@Xh-"+To?<rPm=&?'d`FAA=hOP[XNf)]-Bpe[N^=\)phcG(]h8eh2re-HT"Pa2Xg[;68*A-,go,"n]]@Vt6rn$,<pIL0'If#4R(ASE1p^T3[ph*(]?h$'Rd()79<>)6=Q4-^mrQ`^'aaVP=bm1(9p(ZW4%f+u+/BZIOgQ'6^?'F9!_X(j,/u-.C17"*Nlq?jLLI!r,7@rX'k)3ij;Qi%-&c&.P-r6re2-[-IkpP"MjQB;(l6RjZSLNG]'?sRSI(!51D=O85f0.IpKBt2U:`H*kcW9AC<81arBm?:"[RHk8`h4aD)tZOl>lkm/kHgZZq>s:O9/S:1rEKDD:nP?NfA]_/0*Sc!k^,P6H;A?4"&>ltKk\8'e(!B[9;p0r\9FY'@j".qksJcY0;\!UGG$0j50L:HZ68n1Ps/uA3pO%,U?_>XbIW!KW/!duqm"`,-02V-SElGo3o\kfDY[_Z].E:5V-jNCqlQ45%I<E\a`FfTe4r0\X@5Lc>->2LM`%,KeP](*/SiaK=Nr/X3SfgA4^2P:_cjG>HnO#R1RC2NmG.PHKM0ijKU]"tT!ZRG<jbE)lt%cilKbf7H^`Sg<HB<(FK4lFa(d'XLhRP"Sujg0BNa*U<cuqj[LptHF??s\(h$^X#N9h4N2q96().A3m,gqu/Ic8s6@J:->`1sL]bJu5O>#0A>HF1>N>T.FUXt%51gd=uC9c>9RauiFdVE4ro"'-+nf8>[F&lO(.LRZH=K@aB\h:f;pPb]R<7OW-/L6:_C:74tV<]l)LeFoPKdgN6RTdpXM5Ks;\F^[VK"S8CNI6M7])H:&Rl.)AP,58Y^8$[PD:PI--5GW?:;7%![@u2m+^:"M7m-Wkcc5%O/i5.qb(XXpcCILMmlg_g9t:r)eogp$?S*R96ah#b=!AYCWjp[<#ZRk(foXhFQnOnf#e&aJ[A*fECrgC3b88Dm`&_jQhsga6E[;/Xop1HIIeA399;X`~>endstream
-endobj
-% 'R314': class PDFStream
-314 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 4060 >>
-stream
-Gb!;(a`?/pp?jF1"3OVB,ps>M[?or0nflg;bG/1^bXE=+$$A&ddO*Y14't3s=@a"Y5[!A#[O\6Ep'&56n/Mh(jL7SX)^G^&^-]$K/7dGtl3:CoiM*AKkhXe\BA_npMkbVOZ>F+>&Xp_LKha0RB$<uiZ9<=(r#+I.<J'AQ@cjAb"Bh$V^k=pCS/WN*2!OIVNK,Re-+`pd?2[11s%`TA'-Fuig<=B"aqaPJk,U9S=XLPpQL#/n%N$m,)N2/<>cO)dTK-VBf3sTn[cM#YYOR-'&l6]B&Y34c.?GjSmF_S<B>.39Ebt(gfX*IEYkJ/-mKhZf([p2kfIMfd4muc^Xo&8#]Zmd*Nf,*m*K#ZS_SS@$L.G)d*_MU-T[Df"o`!n(UduOp.8<%scoi\?Gj&`Ii:WK6>^W,$"!:mFBgI)$qXB;do1)gCp%cS&E':Kfdphu<PQ@2J/6T@GOpBgfru6YOe)/F+q7pV!$\Z4+$#HN8j)gMn&*is$L-9T)jlPOg1bCR,?Q\J0`<Eh:17\%2qB`_0@U)T1=KL2nAo(6[h+;$;J5XkUaEZt7e#/Wl2_8`b9`6e9kG4h8EFCEO]%8ThmRPadI:=*Ar3@Bo]:c?c/u)qr@s!iGT]`*Z3/j<TP2J#T[3tUNOuE.G2#3=@T#%Tj;ZHae*gEB+V,U+i)He\Md3T3HjNn*`n96a+!F(-#0^-"u`W7l(#KE3t(iHQM/$+CE+_uW'0k%!#)BaKFZ0IH:L/#;'0K.]t)E[7c;"CGo+K7750n;S\)n;.8.hMN<-1o7`P3TE@E5NrR,Zo[oZ:[E^IdEBG:A)&3NPn*?8HG$J%GG\/)AKI]JsOG`:BnuN$/2&[C<d/YVZqa]'nIMG>#A*5$q=Y:&$ga++?c/".L=B]YY?Q86c,Oh!uePAeR6e?QGUVWD<ePF'tThAK+T%7_`Z5\D/(LQ,b1/9UJVsBUDFN!7;kRTiK+H6>agJMOMhJsP=G,XN53/SUc'II,d,LiW!HLhY![5hXN%t1.RW!Z)[3<7-Uh6/BM7cQ`"7,%Dp-)thX84Ap6`iJT[@`_^U_[0X?KcZ"I-U#!<H.,;.uc8<a\AUJEQh*1:L,:66jIU!\4lg4PnD.e>F$iLK?S8%>-:&SFmF9\=S:$q65I]?5J+%DQ&K&H3E0'K%DF,(kS1e/ZF9G%]]oB6;h0LbP75(173K68u)+iNP#pX*(A!\!Kh(W,hAo/p:2C?`qcno$]%J$jdcft9B8L@8,N(AH;u<YpM(3C.p^+Hd/^C#\=OuZ:p,X$%//L)=n.!*]LH_eqXlm+/A9&(A(qZT5lot1;6NQ.kq[ODXi@p'lN7314>2omHbK_P51V1+S(Ye&3SFp1Tt0#:!.\dl.AY#lW7d&AO4S`H12iRt$7V,>C:5>=lbad@@t#,&OsaHm#Td.GQVQ//QMb?3)5cTB(5qn*&ZI"AF*;iEY/^8(0Y^5AmghO5N#Ch!LQRYSV*PmV>k<gYZueC5hKiMZ2=A*sdr9E34l52Q.):Yq(aV-nrA)OD!aU9McQAe9U*pK1?&0*Tp7Rm+7t-"%5M`+$#*g-d&o'-%,^rmh3%@N?&jg\s"5nmK0pVi>gT2ft<K%CZ+hPY$3'Tl$Q:TfKl@Ss_bt92A.n0\;$V]Z:<7QR+oh-"r_,h?/]_%&ZC^ZF((iB15]^p4B.j^#"U@cn7+!Wub67;i`VO-*%(2if%>f*ounJF^=4=6?9X29,bjp-?eF2'D*Nsj;6\@_kQ3@5pr0R$W1Zl]ER*_,B4Po5i(A8)l8*[*.f4BaIp!j)$Ns3M+nfq"h/>kZCGg@qNVfX>dVE>@q&%i1!q>bEWJD;(ftL:^.oCoV^la7"jb-qg9IdV#s(ITO1^DmX#k[%?*W5K$_XN.pp]SrQOsn/aljN[M!U,bm58MbVN:%\qNXQ:RH'`[8h"_ru4Y`V@uQ/;47`jRX6ps7E[?M3c?&B_eNoG8":]Xgr:"4Pj<8=IPfK_J&-r[:9P+\69oZo(;k'alh:)B#/;$f_/QWY9/1jEe,su/1fP[dFZpWhNnQkQHKj<)_JdQphSTR3J;SqO"A36)0=Q;]br+2hdYSi$c@"tf$#l;nPh@,ZY?\DB6$dj5`6Ic?<,rWU*.djRk2POc3VaX+hf+XN'M`4jp3];&..qZ$4VQ(e1>A,8uj1;P]TrKA="o`9mi>!U8T$bF?>eLjc#F)k2HER6gi?,fs,qWY2Lqc=n?jF5k;nS&6dnr"d1MILX8l((ubpRlPVM!Ruh%`pf%``RS3Hj*:le3RX/9&L`4o#FXnT*_ITJd1IFiAEqH>TLJtW`+PUkR)B]&654V^qheqI&n/GBF;*^.<42S\4O(^ADr.KkLfQ"R-!,G7X,/;'t/V]l2V8]:dDm=1+cR81?Y4rO<VYj9^,b)CN;+e<!JkafDV%TgT%;TZ2S\MQkYH*t:BXN;nO,iZ5LJVbi7NFmnak_'YCedV3=rm0P^,_R9/dqPmT@nO;^m#1g>rm+.LBpChfq_Un1+j9K;&s7IaGl[ZS:5sdb%.u"g/[:rQ7L]6JY.dj!qDIpFfu4sQd2-9dXAHV$usAWO]6s'W+G$"fp53i,EnoZMAfof6^+1ZV:NOB/RrrW;2heMdc/b%C2g1qE_P5$q,U-.UTBTb3&QO2S8+U"diiAuqhSaH23J`Q-;fEE@/amI)pMlX94ol<J]4$AO`4k8CA8Wo"'mk5LGe!829%TdKk*f-lUg-423o::KksAElUg0523o::KksAUlUg0523o::KhO_mp#M+qG)K-lIZGZaO"V7m^D/G<[]C%O3:KVAOgnk05^sE6o`;g#(If[DBQ-g^VBp`8Z>P5`\44s.VU/&,!1H57EK-j;9qe%7#rI>cH(rQc428/""%/7BUK]#0&ZUr"3&PBH:5rlB/)W$sL,`j\d[bc6;lhcF,rA>6$Ji)MdhKr\,rA>6$Ji)MdhLN&IUh.I3o-HePE%[V+*G//PdA[!K%_T/@@JK`!c(unN:CLZV?X`LS<b('r#(d!5qapiKn#%GUG=^j"m2&GD2e?gNn(K]4^@^91mUo&p>us5\828pLM?Aao<')#L(i>3$u7SrUs@0";X`&tIiFnE>Ea/3O#DFfGP!'G\DanYm;!]qIUl8*R??l`T[Sg[n@i.lIU8aRG_1gJc7-mUqoNhRO,dlp@uo#8cW%u2E@uH4\O"jY2Ur09>2bHj)eF<bMn[s)s&V"H)r2N/P/U(5F62._^sTPIT2W]oX6p8!W+i\7IEj$GFH46ZCRs2A=TC*sl'f&QD0+^#Zof*6?""F:"a#9KqL)2E]SrZJPP*8dY0?,$&m@Yl?]_*qT#D6')f%/M>?@DtDm&B^7.(-SI1r_,qL4cDh]q,?*:M9L$r;1[-:T<:`no^ffG3Tsa5;&"%JD4&pphK230+F+ki,ZCCiL$BYU@+oFD]>TWqMR-_Ulh]0V]R=qX>:P&["\iofYK_NS-NS)e%9Sdd=354ebdkh+$L4b.n&laGqfbll?fm:#[s.A37*hD6l<oUDVnJ(gS4h?@9>5$':[qO5O3cO(]Wo3%WFCo1N1"4W&lgF),q#O_$'.KI0751FGorHM;\MIh0(rGItJ3F"SanojY>T`)2EjS>:J!6W5ZH&90D"G.ND5BTi#Gj;@atKZ0WnaT9KRq8?IP#g)8%/XsU2NubGJP[o"'B[W:[#A<bV?"gO,F]Kkm8lfE,b*H1*\#VR[8Q*tA.oK+AX(R7h2qC0(6)&A3T,1_IKfrH@h"r8@,mATF8\=h3ZP*;dY,:VF;2f3`#)dA`do)$5jfX9\-.UA",Ue8r4Ap,apG48Y?819NTX/"jgGl'XhIO`oCl>>BL@s^]]`6A+:Y)+uDKb+oB1kAr7KqMcIL;gFmL;'7Ghkg*oE$*$?5Vm`5!'P#*7@Y$FKBfUabD?*PcRD<\a>YtNp`W$LA]t73_IZI^88&bhL11(LfU#h9(AHcrKfQNLm%S:W<$\adX^iB6bSqbCU-:B>N@F2f@1N`_78heZY<Q8k@;FO1A?Tn#QJ[lQq/1f#ueU7s!3.OW8688fc=&\]BqZR6`(2Y<UmrAZp;s0r>u>%CQn~>endstream
-endobj
-% 'R315': class PDFStream
-315 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2874 >>
-stream
-Gb!SnD0+Gi')nJjr.c;BEc,DgI$#hbT:BuOb?Wi0[;qg5EuuM;P#.>F6]b2f^]&BWOs3?.d#N16AF):a!!8)7B6TtRd"W]mg%o=m"2(/?GHYhe*LJFop+-_dDrA[ho4K0;[p;`NH/LZJ5Jh&:TA+<r=.`Xpd']DVCn<l/<UG)WhjTKo0T3cU/KDe'Bh.&!d?[/uPqCtCG$i&O0:;]4DuZm;r_WRalb53i4get0'Csf,E9*!+PE%p%d.4*K&SZ&Ur)+l>'!Nh8aDrlB/j^`?%Ej#0CemUT(3/\8Xmp*;)_-3UYH?94S::;lLPX.t5U`"4P(h:!6G=!;%tQ1N<uaVko5)YqR.G^CGljHMra>MlVND-d/n>#$s%m["/,d"b3/uR6c@UD))3+nV$ULXPe'eO]/Mue?%O#2;J6.'0'QG&]Qm]FIRK[uQ,*ZlgQQe.>eLOdAbE=F[&Q=Q;OGfu8$9,ufE"04<=^I\"E&E/NijpYVf,WtXkUIB'#JO=0!7.<q?j0.<-tDq4b\H\Ip%J&3&BHg`P&_WPDY+7./NJ[1En"G-'d8?7"IVqb1?#HH=h%lXf4kRO8rpaQ%DI2N<gL>8_+]a5Wb,JI(!=(p<A3>!+)g&M\Ug.>*)KkI[&dhM16]edLj5d@O0kSaR/m>]n>Q1CGF[\Xr<N,%5RW</B-L6L9@A;4P>IW&U6^%Y[M5[H6V!(Q=Unsnnf7CmfD]e.*`STYhk-EqG1OtUJmREXl*tGiV6\$@;cDTJQ?>#)T9HZ'Ot`?X>/H#%;\HI'mc_IJHe\;&A0faZLga8eg[MRB/cloE"J)ou*,9gddA)R;kZMTe7g+iqe>NJ&n\`fLBilY(5oi&\E3?W!k:qQ!UD`GI_T4]>.Q9IWksDpP+O($,<ba'V!W$$KG:`KXYU$emr7+m^;[A*`N95hg."WY<Ud:,Sk#6-\pQm5b@XM6$_L_G7qO?%,^DR8NEfh'A:etb0TbJC](aql4\pU$,849/>bZ2g=4_B@h[8luY-LTTn1gQCB!tD/+as+sU!/$@U,2OFFD$u\\!J;i<8:TATmPj.23r"Tno6@?FBr'dT5o1_DH"D35=X;QZR$n;lF54d`CV`9oaoh^MfZqg:jkmFDM`#mr_!OkBdY4k/"gs,X_a856GV7@(aquZ3oII?4\&Q4#cd\t,eRSKrB=6tCcoD2[Y)A46J\5*>r)"6s%f2B1"lUi7_fn_RL`ejICMktI=RcA$PM:tlo8bCV(HHFc64BjS$H$RIF\Rl"8q1=7NVj%#[eaf9#jMn_HReLbPpBqn_]d$Q-kaV,&Vj>56,]&RY7o5DBDO8^-O321dE*c9`#V#ipjG^`3D*sU1#D+-'k@.(RPJ6S@eSKje%!`Nqhdb`iRCDU)*O["3eORoI6]UJ@3%MW[`0=si,fM0Zcr7>h:Bq*koOaBR-[8T)MMnJ2#]+$U:S^rT52o3!\A^(HC_go35pP/(QleJE)Yp_4e'9^a9u5^H%IfZ"-N>rOHQ%f"=ochH("Ji9O-Ae]:3).0WRf*1XZo(A<\P1KZk3W6UNP5&sd16<HG]:HP6i<<scL]R;Y.g>O^ZCU%4'H-[\j)o,9*UcHM0S"H=bb:'+[AMgEWYZG[pkTdYhX/Id3Xc+4"tCnIdRo)MHgC('l_M9P4?Ci7BNQKN(n^eW];PA/TLUs"^N236YH6>sVXLZ?GJ[EZAAIX:uE!>fOYaV7=NNt]Ts@W6b9E]h,,=Tirh]`^-]gF#D%?D,7JdPG_OFhgr0?,$E'>.D9F""0qp<`VYhs!R;+EcY67**qb:#[q=S`>08[OeQX?>]^mtqFR`meqN87o^L6\0h"9jek0H<(Za;+Z!3OPc`E%Mh(?+o:H`1:7uI,%,L+O9C6(H*4_BrPDtNjYOMR\DSq#._D]_TS1cUQ5*4:Sd%mRh"oho@N6or&!:!VT"3UY65:V4)%Lq9iq?3a3,EUuB8e\&0kVm5[ho8'>,bbU3OdBUI1/s=dUAWS-:lY/"3EatdP;H\Qe>Qpkq)&:[OCCsU6#J58*2ug8C0'.XdR-r:n)S2q8:fJU9ghtD!;$s4;7)%qn#2.J!215aEfgUfHA1c&VArdqT#%qC>7ja`d_kH1OE+8e!IQ0F.Ih"rW!ut]]YBdC+Q^J,Ge/5kpW.0DUSV?[@/(t=:Vdb4h*t._ug0T2(KHN5c[DI2jLddF/AcWT&PX.T.*eDtFN^$SPES,>fORX/T;d"h#WDCNQbOl?rF++)1MC9Q[8q@pk:+UCBM5*m0]4(eU7VS70S;<,#Z-K(4Q;gprLCDQpK%ZpHfkBk>`q.-d/FSX'OEMX[3r-F=^1#Dmgm;cgPt3_d2r*ps"0Val0T=PKJ8CD/!45JGmt9tBeT]DmXsA>pJ'c?>4dW@cA=)7JDh3<iWViOHKq#e#V@7Nq8ku..]D?MQ@iTQPJIYRWOZ^E^&52'`HY^+T/=pXfT$q/T;_6q*rOD3NG45M;6(b[MgP5fZr&EV9Y;240bdOas=Ni]Z]/T2#`9a'/Z"%Pr,$gAqP-FaW#0'6Q_]u;<)>2%2A5/,e]+8k[>H)Xf,Eh'HeXY%[Uq,87%JK+Pg?Q-u&4nM)WZIq,pG*?\fssC;MMf!KN:hE.@StJ\&?%hS?N\Q6Y_:&MDVi=IMR`;m+/!f0Q/$%#]VR+o,o8T>/s9%K<%USR9asn!\2b9o)>3d4jf%t1PL%+E9.rbjKZ"8F@qjA[j16,@^+lNd1?S4(NG=^(HE_C#@($FMQ-1$$h7YB6<I3[g3N`$/i'cNNkWP/6U\'koO^dPd.3O=BeCgb,*UVIaUD^W`IZdr_8\%TEK^)[<A[ru5L)$'+c@CUQJq[c9KpU!N5g\s2\7mPt)/3]9Pub:A8T_i"i;'_Z!gRWA$N~>endstream
-endobj
-% 'R316': class PDFStream
-316 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2964 >>
-stream
-Gb!;fD/\1M&cNgos'ah=<=5-+8\G>l#PV-R)=@*EB3h]0h%)#V-#H!:1:s=rh64S]?'6BXfqP#OE*u%pq6D["bWPL@XF1rDO)I7X']?09G^Jh1+2E71rm2V$r#bF;q<M+Sm&sb[4rQa!G`r`Re%4tbV-dO"-A0YU7^.=>$:jdTM'h)$4G%hc^@1#t*1pi5GU&Yt@"7eUHN*CCbWio@cZ]/WmI-t<bKksER0:D`bGds[BJkc<e-kRo3+Q307*K.C.Lj-!)69ljJ)Btcn,F"IB74/CXtNNG+=&L;^4n>O>_q1l*=qPh%G+&tBtQt0fA>;-3qHtBj4hHtLP+Q1Fp,8rGeobR-H'QRGWI9.&&8]=1/JAPM$H7!*H.A.n=<0-QA^Gf7)&!$g0j&;C#!U?EV=0`2acIAq]3?49#b%k(kb1JjBRiKEs5gS7D^51)\I'$BpS7Qj*be.DPT;9nZnBoKDXMEZ?ZdM(?Gmq+<*dB0#aj;GahA4=#o>W%Ygf"Ee,=_`&Ior<(8*N[E*Us?`u1FbHaN(DC?KZje-n)""!?%)lA<=%'1t#d/6OA@A,\6B#@#G2j:GQ.TU?^:,Vq!m0t[cN`S(;<![>b8Pn>D#`7LP9aW6!iZeq<05eT=-4uXLcaTFf)@BYU@n(SJ5o0U0$H[R05V8HJ=RZbPSXpC]p5VN"T1\+/:Q1:CXh!<KL9KuP/!:$W+Xnm\fOWSsLdoju2]@1>>IJo6*-bm.-G*C^Wr\D];T**1aI(7A<$Y0+9cRT[.>`:1G??YI0N&f@Nn7ba=(GK-7;,44?d^(/#0qX4J4&X)$c7t>hTbe4=P\$SdAT#BXt8"1J\`O@bG"@\ruGP`(%l5]d'f`uZ$_k/TjZ=d05*M"m)L1&)L3KdjMGrB2m^Y?FI(G%FF#UF64B^5+]HC";he(2a1LbW0cllsX0W+B7^fK0rnrdm]g%q;Q-lm4]9RH6N]E9rRrG1)-t.k3[hM`MBYEks3D58Rb)9P:U\d!Hs"nQ_-Y"UC\d7#DU<KJuDX_7^/4[P0&::Za>&V0h5pR4nbr1.jhnlX3dTfIC,1WO4/=RQC'#cW$>[ghkZUX`%,8SS;n6>QL$N64PCDE1,Bo]_qJh58s2Cp:,%L6OA<9.mTCstt"`.G6Qpf;h06,^j<%OfUL:`J"DN(m]:;D%os7;,OJI^<!u"RSF'RTjL5"o^OAR=g_84%Y<:"1"]6_s-*I9";"]B:e!Po0U17:erFJ@n+1#*lPi^W-V<5Q;3)P2@$OLFQe`?14bSZKP,'HGJo7)!0r6`74OS8Urub)G"TYkQT*@0jMsYk-hR[23pu>egP3W11GO!trUTpQ<t`Ahi_=$0II%D5;urg,U)rr^q^W!.4VRSaV\DbfKe/+[=<LbMH)>[i?YM!b7SSG:Ko-B7I3Y,eM+-atF]coE>OhW/B6'SM<PnRC/.CrnpM\3pl_X;G9N?m-LI$@QL+2#on(hD@+BPIqW.M(O:6(XYS5Suu2ct"[?C#oH/GdFgr'r+(;]cNag!,0Lg,fde_XeR]<2$FP"dAeS_tnl=*QOe`@e\9EGq^.sVpj[f)kag-2=oI9QH[Vfg(gs__0]UrK^GjUrEcgH/L&YhWStc[]@?F9*XkAR0Ym!<qYIufGqeg&E7DC.^&1M2R]7bA]Pq6)@$OE6!l7M]cAGkh)^?G%JJWeYMJ,u%5aa3J<V<OSJDdEDE=nL[>.Bs!KW=(&I]J?:H*[^T\Y`A+;lR:gQo/SA>>]GmQ]MtY#G6:k(T3&&Lh8;5<?(7(9a]/!Whr>@B<<`^Y1UlOG^8(X%CF:LmN`[1#%nlC:MIiQa#5:u7mFbH2"_$dCSB=-S`jL2G=R-Xg[H@A^A8?SBF88$Dm^=t'UO[&4FpVmPI;jjhm`JT#NImV546!E99gc;91=(]I<MeO_njP9Sh\]P'j)2k<DA/1,ad/(A:Y>t!.$\+7+lm!X9OLb>M2@"Lu3JjLk==TXG=GjLgop!jHh*Ir4rBm9QWd5)OufM(Q/>`$8WQ?(g)6ciM`3&R$,;tmX)iqiVa_=MnV-<bj^KSIQ&db7jj\DZa4rK7Dfh+WZgQQ>,jumG!o6:bA;jR/PVX/"m%2V<8EtN"jQRCPR:4-(XMO#O+K#/mBVH0R)dW/EGp<YeRf1Xc#f;r%?e3/&A#3+KY+t*<2`)l;)K.qru6$]jI![kdlZ/60;VC6P*_W6I&ln[_ZjXUhU$(-NXT#m1dZbEPAlLn6n&D=Lt7g^bInH7_P2iMEd'?>0o*C%_2T,].JodFE/GrNVC];R/2$(I0Wn(;8j(]^`Xp(Gc.H@)P>OtR,WY3uF:595r:ho??bZtPLGn1=?ghic=^+fR!^a&7F*?=AW]Ebl[:sK\X]rAZ^-,n9b9^+si0mgYlIK)QbW/<f4Ou#d'dBN=%4f(p7s^Q/m`OQ$/ET#!Qp2&[hbo4,Z&f%]DFpO<<]o=:[eK+AP>7u;6'qB,i7ld.(Ukb,a$nP)M!9.bg7t!,VGrC#h^VH*V@<8M#)o@1.ciuc,Y=+*Bhp.UDC>H4Dj<'V"CDH_:J9mJcGN]dpbAk^[Q6$;`EZfF:-"L@g-r*i$aK!%csC*@02\')]"kA&QqL[d[TQ'XV'e&ics>o"$OQ6FMW]Xp@DfLL<%o2rGl&9ur+>h,3-2G#R@m]>WT]GWNq11t`2`KDoWE%./Wm/P=t,N61m-6#%-`OC$^?unaK(%^X(0-5[F3;5L"PU;EE$5I3*Wr.&G*R1Qj;5VaKbp$Vj#F^-0"7.l/;.IE@cNIX,;Rf@\@LTCFeCCn/%u/D5sh\gR)M)802)"doo7cVuBgtI`:11@m*.NL%Z4n6u"B&0Z4TAcUgRTmSo9OZ)=Q!dg)\.-@#>N%k4A^5u$=dIPoo9s3bk'PG0;H5-6!&9O5&lWBIo!=p$WV7a,Q>6YgR=;RlNQ`T%K+K<,TIJ3GD3%=4E.]2$C4ldOtq]l\V>eF<=b+2ZsI*<~>endstream
-endobj
-% 'R317': class PDFStream
-317 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2526 >>
-stream
-Gb!;eD/\/e&H6"/s5C18F#Sl^AGIP+0Ha$:Zrke[[>/0mL4PY(S#ms9'P5nnot-u*/B;[LQPLMQ,W6s2a60&+H]E->K0PCplULq>NT'+X#94Q";fFk]_>#<]NupU_@"4a,p7;Mlb6C+WAn0VI1T)4&K21$<Ha%nq#\S:[Ka)AGn%gsba'j31kGK%"X@Gp,m#R`(bNV0@nN.S;A!_[TIm9/>hV>SPi-Io;.;.LM:!JL:Ygu^@3F'LR<\aZAFW&uBSu\\i#i14l9+n'19U3WDrZ$;#:ZX.Vgdi0X+B-A@5\Q8L6DR)rlo=JoJ0a2q/->\sLM:?U/H@.mkls!sQXk;9%Y/L/JWBJ$hJfs;0jo6o_3I^AoG--gUSXS@2Qf:2dd56Fb:gTCH2K&pYCd%&HdHD3Dhnm`_!CZ]6QaLF&4W;3YUcu?^&T#sTnl*Q$Fejj3Z<Vdf!W6?>5/:;4Np3^].4:5-t%jO(a'Ag8a_ft=@f#Il^#`%Gi?fhaH./3e`!Qseq--Q:qdGqnZ>>^VL=T8_*,!)jlZTbR`"$,fn79/*d1q->R<XU)K?Vi>)4"bH%7_1dlD?lP2.3=XRC=7[g<X!OsH9@iI7'=J+W:=h&4SDJE:$FGc1A?;Y`7L_9BluaoDgkBjf]k5M2*!EF4$X:Q[`Qp#EL\\Ns[u10bHk6o,U8i0ME(ME-?<N'`oS:_;9th@eSo:)4Z<`N@?a9\caeoP7"f??Faf)N/RpD<,g^Z`%_>'masKMS15D3O'U>a[sePRZT;8qRNmZ:juH5e"!DNoAO=pWlI_`^=KSHZ+5Qpdl_sq=ZqQ5SH`W<<)J5_:I9Vm+:8gs0&7AG@NJ)_e9Z$e=`(YiMunQq%8.?tU:E+*4*ipt;P,>5\*HsH(sfb/P1I&_cW>iL9<78oBosa,/*V@s[BEM&VB7L=R\JN`?#kf<mTO1/:;6KD;A%@L#7[kTRbJrj'2hML(7K7M\qh<rYmr8d'*64&Q(lA7pKH[@6*!IAd$A4V$`U7."R&p\0Lk8_qC(CW=823\WQSRKQ:<>8D9,Vf+&n3bnB*`%V^VKZ^'0iH[k>r6`X)[!dd:RkD@dDDYg\8]=*=3Ooob9kW0u6"CW7J7r!Y7!VXCHB-<LkDVuhV\a+Gk:QIQYFQ,22mP)N\tAJV>m;rLkC[ZFs$(0rg3VAAZFXh,rt@ZRgB](kAUg)O\mghC)o4uH./(j)t>7e:.c,3-Q70`pu]fuio@?bW*Q&lrS4HC]le#$Zut336W58eGD2"]rC;T^9t;"4,=u5s9N]m_:-.GRYRYEucf/L9tadQ)^gWZ$SB+]PSKPRQ]&5+bR0C=cs[TGZ5PK:RmEG/q[N<HA?%gS%(r6?iTunWn_`.c[&HTF\\U#e,MbNrF/7u<ftW)#*nH7`kFro@Cm_Fe&oXcV2Fa[9Vq-^@dN0oX4L>Q5op`$A!YmP(Q=4Y6HQf5/+S,;'1#OKGeBRH]>gdnc[/06rFe]H:-_nEm_-uYEs;_^(E'X8LUl:\[Q)4_LrXmtFJ]nlp=4>d#kMBIHLp]RjE)eSN_k\S1J3nd8ekR&\I.brCjE6;-T?QoNq]2fUmKt+km%@h&GAh.LsV-DL^O6M:G9K][Y1DpKNS[4Q.B_7W\[Tf\VEL3+b0EtE%Z'3WnQb>f7#%=,:D)%0Cde*BDgN>;tJ0*[9i#PSciK8VkXiD37pkJpF;1-9'g5r[gS9j"UJ%r"V464.18EsYgbMbCit&-@?["o3u#KoJ.tr;#tT79c&^-kYUmOefN6e_e4Zj$r@l-TDBj,hG71gU31'*7Hm7;K(PR2fljIKdph8!]I-as3\(S)>S35dXV052$CN3Yh"-mQ+8dZTQ&94B8=ZPs-,"k^oMQ\OdqA+&QeK_"@=)1J'Rom4BIGSTq>86^HRaA\PG$Mp8:aO][rE6X-qCNZUF^f(16?gdhrPN1U"]<V3%u8mh!`Qr2+K&J:d32bg@g`?U.Tr+SM`AgPfm,G6Z0*n*iFMYbPFiadb!R(@0Q@k&:s5Lm`1DsDd`CG;02(\P/oG9NX'/T8lh`3kb%h?JVR.sDWKa-94R&f_m5h?GE(BCZRh3N1_9ZRJ;(/H6>DE&86EPb%\)#[qQZUM\Gg+&)LW6Q7.oQ.3#,ehi8):;tIl@$adl\79V;J'GaNl[tc`/9;-`I2=\2Gi]WX)UV'pfQ2O0+Jr1"CD/P;1M]ljP-Q%&h(D;Wdk.0rRY0H(dN<K669g4ZQ_jp/,n?om=_-s.>S9el,#u',%"sW#\hg/9F]TG$ieT[Bu=[G_kI7'%1eQm!/cDI;\F,8h4"A@roLK,Nj<'rU8a&*GJ)m*X"57-jRS)??r(/d$D*>4YYE#8;0WV$ln`3@/J_>11)DY/a.@?k..n/Jg;'8"*acL_,!V&e41MZ108SIA6AAY+qO8o`H-$T>7/,3CtdJe-2>)Y&FMdBgi-QJpP%GKrV)$=T(C3Ff5J^Eg]#T?cZ"G6Z:9fj>8PVt%pAc'L_<[OY>fm]'V/gJieugHHLl@Bm]l!Tiq`d!5PbUUKY/E~>endstream
-endobj
-% 'R318': class PDFStream
-318 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2852 >>
-stream
-Gb!;fgQL;L&q+ths.Lr=P:[4p;AVrp-YI;"?*SGij^DpPWIdZ3_O;``!0k]TrH88g7?&W=C-30ajkE<OJOZ9\h5?_P@#2Q!pNN,.I(t2EY6"tr=KEV^ZS=#f_TTpI-Qh.4TY>h0L+m/c"J7^L5(LhLq2Rn];%QK1p[ecp)RLGPCc7j",(h"GGT#,2*@!J9/Vib\?Gf2cr>$1KK>g(1p:n,p+.=:#\S4bPN_c$`]+(=5k@@2ss'K*B\.57SR7;AUIRnsoSd0]<r'-i0Bn8XSnk6%+GQTt`au-Y+je)tTch3"JE!t)&+QHJnK[i26^Z9)iJE4#oaT.Q[h+!4mqV++0GJe]>i90d(?i/H)5CJ^4.%ISV%T>9WbRi227aZkmA%])B.YXp!E;+9P$dbVEg4J,dLm?O8[]nk-.:@ktEs=gT2/8_ri-D&^9N\B:.rrh?0^N-r?cdGi*CaiU=8d*MnHJjBIH<%,"+CtSPr]ZdjCm1Po>^ac)mec[lA\n"B0l%6OPRnRrJ!J>.(%^N6m.o*i'ugURGs"O$D!q^[fT/H1e;`%?L_,_-K5K\V9']Z"JHDV,"P"O8:a=-Q2)?J$EX#9#Dd>"i(CBC:>-/iac"Ta4.c&Oa:M-lRBL1^Qo<7)=Q#ob@4W=]_/kZ$r)ALMo#a7R9;96XO4,ir"te_:Yd_oBd^lcHR<SqNGp9[0Ym2)h.0f8.5qg@"]g]X!E-u(T,m58;:PZt-7P&'p#!_NmIkN;#hf)i6G9&^>j1tc9!Lrdk+eej<ARYZ.6s_naI8@Y[b1pE_!,DVP)!$S8.9P\6fC5Me>/<'lj>pf?_SHX9.oODBmMBnschMiQ.j--!>AUiDM(U@dlYRX=OXlgZ_9._bL)+R-P8#SmP4PD=AaBj[\<11'\?YhZl^rWQqZ<'(K1#cFacVSi4c>quV6tQOHaj,,8r'mbG*RfVbG^]^TjJ#.(<2Z/m.)\[GV63?#og2OXU9*&GLK\EJ,UaJpPr="kSQ\'\B#r!kK8B[RM],$1?Lr1kW3b*)6K58:7XpSUqCFo7'h.<d$`+18!G_eM'-mJ#>``!qs:eI_?d<lOVgU/7&&iNS:cTZR>K7<pkQ`4jd]eTE_KJ(S21f",T8jq^)/*<Lash'6Ia,[^P1_Dh.l&&&bD^nci3WlZ`dDe;L!*SQKW#V!;/R&0_rpZnl%rd41N(*K*aL!"coLD*uIS:h5#$4mc0T&h$N66V-6r+LDW/dM<H)!41r?=k;*h)qer"=IP?3%dFqo:A'I&A@Xk,T7OqM7U1*;,MVf*t:Zt__Ao1O-bFG.T6nDCpmZc^ZZGLoTpNR_1T*%s_[3gU=>+)[833LC\XY=<6!qgMa=Q(XZKjs!jPcNJnJFoH"3j)f)5ZXa_@WH=(^Q01lYDjbb]t8:gCcE;.B="AU&.Gi(N4^g@N'a2??F=DUlPHSW/!1cnNo@n7.HA_&[\Fubo`;6.WMn5=rQ=`(hfsiOlS"1uNj5R[YSG--EMmk$@2];YNjS.Vj?do36T`-RU=MPh,iGOs.#H\R]$P/dC8K?Xm@9OpQcAbq\DNd@'19J>moq?melKe%b&u<"ha_NCh/O:`Gf[H^PaY&d)UF/=MGt=NU&,tHEO+.ZQbD*gIOA;62a`d</XL]7J#9Xl\9dZI,UtG$eJPqc,K*)IlO7[gnI0ClMWTqk?coTb*/n"H*S-1I!Ll4<YQe6&76i!E3jkbKX@42BqTP<!Nt$;qGf%c2:0*f-@m=JsibRL#!rBFT`$mW9bW?/,(u9P#1Vs@p6u)L+91*"BZ2LHF9+)H0W0SD?539DB`kt,+kH1u`N*8Taf#%8:hVq/Z(\K?N!#00lN6EOnKM:$X9)>IGd5Y[Q)*\)+#A?chP\W?DX*ee\;c$64f'1UorTfAA2]XKN)Et'PFQoN6KtX=U/;HBs<eZhBl#),"][Lu_<GP$(=;"G6X:_?kF=;8E!N8+gBM_W'4fHQqhNIT4?aZHA[^j"Y$dDu@GouAG4#^+uA$Fe.q=nD9YgK5[_P"`.$O+7D#`pn")(NPqi5#j\']8^I<*'JH_[r1JSQ'CPDIL?bd+M(_(-\5oNVE#WWNW.@UXK-YIMg=)7DRphOt2fS"+fDr2H>cm`VMd6=QZ371bX_@X":5FCHNVp#d#jQ\E/'CJIJD)#Hj@A)B3f9O"'u&ih`QaBr$E'.QZppgA>Le0!A@^>V<OQ8?'u/Gg5&s%/d1%?EKL)U1(6]r-8N!l)OoUO:tfF.&E&L09M,dAME&jp-ei[*fWr%KuX4=d31*@:7$-#kA-?IZ#DA,r+dmIH/JB746$2J1]Zl#1>WSo$!/LcI#9[#H)fUS03)`7C&eO```7=[SJe<=2P^&:nb[HQZ@CJ2[_$QA>!j;R<?bqfSuKim&o:l73Jae61IA2R6C(ArU^-2kk'PrB*ba3V+6$[U7L\0m<eot#_/g\#(qH1WJ'tu;5'l;fH6NX\i8QH%j<(446J3I@7\=\)"<uDg(q2_j/["IogOgpP\j[Z;QH&@6hF+0,N);uZd9e.$?o!DeIo6V[,F-TLaCKaW,(K3bkD4i.NE=Gil%=.8<;n=B26Sj*Cf/f?==K4JLa8=d:aTbfh6^Faa5(>Zl&60t:;_[Qc,gh9.Mtt-P0.,UF(q"7jMd:7lGAdSZE;Rg.kS\sP]Bp:6/[cd_-3T8ZP>MZ>[saOV+'fM^>7^'Q\ipW^nKU[@4Pffc63'6r9Q$5VnX@A>qVuHmiPie(KZTkqE"bjS?Ft&eo+0>7ErnrieiRG+Lu6-TpI)n2T0_.bkr(0b<&31kHct_h0gf'aP\(GkJEfnps3\,reA"VFUisg/X^#Gs+D4V;SK16DD1qD"]!TrGl$M$,?#1$~>endstream
-endobj
-% 'R319': class PDFStream
-319 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2269 >>
-stream
-Gb!;egN)%,&:MkuraEiC:<#akM%lf[.8>-19Un)M17_1r#De%$,UC/*TH3.[]*hq=>II-cDGlNYYsT+]h6Ub?0&Q_!p_ERRP60[?"[)Z.J7&eD'a,Zf@IY7b?9E]/aaXQ?lVRrJ0oI8]F6RrMLI(fr`M6!YNo9j*,IAA2)oZVONF5UK&2=#!mF.(MMeL:rs"\BB&)nt@p]-5MIf"?gqc!C8];sf,j7$F2\_`+ueoPl.g],8(p.p=NG)cF250,djJUnlU5?Yd"!+4jiS;(#(nk9l3B0nTdgd*WGhnFV!YVq(p@<MWl"Vohgqgq`#rr(HhNtb:-0cL?OARRF5>SSrL,8O#D`V*.=-XV^?U5Lea^q"P)\4j\ZPo;5QYX2Iq0[\UM;B^j(2qEfe\4+1RQaoXQW_7-!+2>+#\o3:Q^O0k*;mb0F_Wo8h_B-K<kWZ'Gq"s[i)k<VdHq#hRADSZGo[MDAYT2&WC(2-k=)7hP,t3jh4!W8/A]X%6I&\Rq8G,@ad0]EPcimc,iFGii(lmP@!Q18o1BFi"V8P\jXE]n-L*mq?og0TP*/$:rd.6@>i5cP6;JoA`aYV&0e-_FX<=aAl'o[,1l$++l(\SYh6"p/%.(HHM2VnotAeY)o?]S!;3ucBK3cpR(_41\F!;'VBd"qaZFXmgc2]d&K-bm?Cs8"#K@ZjeAAHogQ,8*;5M8:^<WmB)D;Fn4"2lo(@l)n3u\e)*oVEk!enEfU`CF-!%9$?tEM'Q$j;ro=#O@g;ZMt!$RSU<Q<9q<iRE6XCA<HIUPiur#^A$esP3P:<Gl#aFJh^\<b2@Sr+OpM>klrD?9R:]dcldj3RT0R7u1\'Vpi`\-40<S8,/G=]Km?9p:=]uG(OUHf[TVA=h\^dgUF=6mQQY_.5@bhR41D!%5H"+A*G$G;j.ms8;)qfdAVp.P.;E\Hu:QHg1lVqn9T37:iQ"$UfC`S+W!5'kBr[\GA?lZ8"K@+@ckbBK"M%UJ$Y;gqc*9,*8ToV=J7eOC=lHsLos*nO!?ZSmK_U\tN\'XJt_,%]UT#!%7EP,L1^@E7kK1m@Ms0F)UbLZ&UUPgEu4E,#-1oRaGkpuE\%IL7R:.)p4qOiVkSHU(jZ+RtnnrOe`4eT8S2e5l3/[5I6'$?sqXJ7-$:Ofp=%QSV9E4/!Bf6aA6$9r.,aFl![=o+>,5.L4i$uV7@Rs_%V/1YrCo]7^BCF-iS!rFp#K9bEdB]"ed4k"kspO&r1&)kk.rJe$Ad%b3*(WYuaSnjXR_sK4^Y]l2fraLVR^X7.E5dQ<jE&;B#8[lO@;VKEm<"MF-gV2,SZ\cHK@CI(U-IM1L;"-Hnm^<OobeA;e.6F`:p7>Nl1Nu-eiB[Y;J)BR)Lps!lV;&eBpMmEij68-Pl#msV#&O,NLUSe5klP[aE/TAGe[="qp;L7Lj#^>8QQJWTg>]FY&,E3CP4UhU><bjO%&$4;S!1j'K2$'h*P"AM?pX[mm)XLdM1m5,ep$EfWsA#=V89$>2P"b!D'1^L$uP6!caN#E&emWc`g7W_%=d1C@W-MFMT"CD?O0m)84M6T*d1^X@gF-0Xd+>Pac*CR=m\*sfM4@\I[p][.7DY!Ta*EZ?T52"^J#O*Bl:Mo=p$[?_WbmFI8_k0nN<u-5%X?kJ>QcpmU*-MOMOTX35!U1&X1KoZGCD_o6Q%-F1(R.\8uLN6IKoi;kGrSD7TKMa_6o([UD2T4$8:`n?(!.U7.[mi(.g0T#k4W2#0=WqQS4,g#,S5V(#;GY*E86KHnafG[B9r25Y[/ZG*=.5*]]>YBp:YE0INUPqQCu^*sSZJhoA(@Y#>E9_N&dX3:AtS4l42A\ijIr?2PFF$qXZ^kWS:5/2eaGPq,35gsZhfCldXp.4gPU=*)FXq!TYh**Wo:+FC$k%uCQAu`e#Sk,(.)raN19mTR91a;+BlBXG+BY$FW6kF[P2Mg@UddrZtmXff#5aHK&A3,pEDLkTD86K934F.L;XpkSb&>R?CeCVFZK%Dc25Ep>e<@(F)$?p/\6'G!<^/JiqdB%HgkG,=<,rU='fhg1h5KHhT;doShLsmNYgp@(pjD?sT$'RJRp.>?%=-b&tH<M-./(LRZr\n[t=mO,"lOq_CZ`96C%A(&Oi:H!8Z'C9KJ0WE*qT,M-5F<^e/8S=g%g/)IE2<-6<j_C"He-ur?_=p4&K+G\;]#ESD`"F>#eLAFeLn.&W7l!3fZMkJ)Hl)5J)cHcT4amimO=:J?kImNkPeYq!S'\2RHZ*(bKqk9J]EiN!E]SENr~>endstream
-endobj
-% 'R320': class PDFStream
-320 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2691 >>
-stream
-Gb!;e>BAQ-&q8/#rkgqR*LR\BX4o#@P*/N!fX6sPB9(;[+;0jaO9@q$[e9+$$h,K9ZKX>_Hc@+r,)O9JpY0U>EhSIWY5.BR!,q"=3d&:3@(lcQlZ?S7!@IEiYJ-B22h/Nm"j_5o4^>=9hh;`Q\E=:S*S9Vnh<S,jeL`]u35^1Ujq5,+K9&knm5T'2Zt8"iUanEFLW;+K'BVNHm=-k*?]'bK*bmKEHR,\\3r:S>PjGcJ:(o3LEKEd)JEM%4@e:aEE6&_(5fOB)>N'W,HHe8L&n7h+`."'W*&J1OZBk"begq9u=NVYOdsFEhTIs.kn7@h</J]Lb4/(9\EcIof9Z";[$BlLDPBZqjV_&HQ@/1EH;%iGU`u;pZJeFmo)SM\IJ5"pLHnhY._rVdh50`6?;HRO>#V&I[RGnHVU=UAS=7>`re4F_2*Qq9^2@b\jcD=_!)DnkH6PX9)UBYV:J14`P,*V<aHN:C3QN#6R^);+->uV6&Y2_P3IPR>,&<Z4gE-(Z@R#7BnjuR\3)XDW=?2"c:IO9sH@R\-"h;tOFj3gMA!$Lh<3fug+iTEa_>ZSmOS?>W?C"rcmIHT`0hDYOI$(:Wb<p2_H&gVjmVHbE&%RdrZUBiUF$t+=tDocYuOO8(+9pfoPV-Z+3X>fKo%34_]f5G$2MS\V):;;e_h#Y5E`,eE+S[G#p?L:c!Z^8#X\.OHtAHpL1Mj;TlE`PIE43J#;G[e@?#*0WV-K:afde381o&AY>_2+bbV8QZ\+TYYn.MheM`!/uCn^"_7T2k[aY7Y?*6-$Y#8nKMmE=4g6q95;cIg;$3=J<ZNMM-2s@U1Hel'A,c.72`RAcA.J*-pQp9G,$GTB!]02j<-9@*p3bi9NraR-#\LgH]Nq!57ebP=Of7lZo)c6n%[3k$2VfAHEC+3uh0B\h;$S0?Mc.9AtLsG\TBp`+.4m*rFOKgV.j(b`)r5o@d,:[]FQPVVNYYKqE]$9rk*D6d5&rNq5$>)`$te9GqYTe'\G!R*l89`<K.j2BN[0=WA)0TpgqK?A55&nE@.:?SY#:Le2eT"dbYqI'ZX@8=3<;_!<O\nO\fdro8<(O:>'.T*JNA[imq-&roY2d1_u'FYZg5CscI.oUi*em<W-P)AU>=ecQTPe3\YM?sAoY&PF$pXLNHDO!pb!$,aU8mr+Y^c/=oV;T+#F>efT4MQRq'L7ee08<C-Gm'ma33u`<bTJRiAmsGhg@FbZV:3)-O@(jhV0l2st']oHL-'c?*sEl#_6uGIfr,k5)70VlSg;a`993XG<9kg]V$-9j'g1a"6%+AM"uWI9:Ne.Hm(sN6GKqs3k\[OEXYTo4>#N5u&%Q=3U]g<r@QgpbtWmC:6DXM5F>+bu%e4f$la4M!MGWWnRK82!#/fVQ&_7mWP5D%/V:K)gZkO@1?F4j"DZjT-^?_^sGb8`>d4pa73\t-<(=(Y,o+p'W"oDRf?^n^XFsCBs,(@fa>u<b(caK/_?2M.AWgrc(a?r=u5O5ZaTbJR]kUi]`)<>k3HE"oY#0Jni^"(f/pW^hC4?XO-ao%i.j^FNMEMXo(S'Ca/Zl0E3^V>e""ol/388eF]Nm,H<AC>;Y.P\``609FNRan[G5Y\'i7^_2:V_0^F]/Kh$TQ.LL4]HDI2j]D,Tg_E$8[&AJ+&ZI4*LiE)+5_9"jAeFp<GGAU5K4>8K6cL'+:j`:i7_3Y'@HmY`BgnF1D5[s*lG0=2Oi,ifAL4PJ<OTeta>"/a@d?G$1-6Kh@eIF;qcJC;qZ:$rm9BG<"12PMV('e5oC)[i\\Mc5aA1`$Kn`c!4VGW35Q[:&RkanW/Al=Tqc(#DFlVg*+6Ubm:;q]@HImSIc#b`_WgOcsOoX%[n^<&A1*0lN)OLS2H%2Cr>%`]=9[.-A8&_S#Rueb_Q&YfaeIB;lW^[<I3`7BH9n4C,@L%jk#qc0Yt49'n:%jc8qp,u$o\=u7CS=GtEI.9=Sf.4fY#o^If\oX^([pd&/_h<Xci_d1'bS\a!pSu(mP>0Qdn5M7ri+eP=3#eSCE/W"i*1La]X@#*Oa`U`^+B]!Mp;X--*bU9ptk+$^',QF$I@1J=jp1k.sp+/+]F`AEoh_[8I/s/m0UI;nUp-#<@M.**2[adVc<"cL]:R7N(mCP*mW+a**.4,t>F.4IKpIK'c-pHh=<ZpV](tFo"Hd;1i*:QdO,?s-_IB#)G5j?]*fEkaT\)/!8Bb+^[^,"/o4KOATDK-%U;6`MqMN*e_O(q-6,(XkM9n:*T/SlIdm\';RfY"]s^`=E)2D)#<Ymm>f3aucH^?bMf?QU64@l*LmG-sQ7T$qVi*NIloO'=:h9s"Sa%'sDL=4T&H(>LF+LjL1,K2oVY;n2VSg*DH>YmM:H6<"U?Q>(WMP^\@WJaor);EqZu!Nd8CkM0P/J1268B!@NX3bgulSK:C[chKuPD%E5tM1;Y0.<?@o0+hPWDF$,GA:-C+6h,Ni'E^1&^_=C.=>"=9L@ng1OiCE?HHurHml_H`qB=I6Xq-q()knRIS`^<bi\pD@Ab.Q\6AW<De^lH6VI,<o2%;jVi7mM`X[M>%72"^+kEm)&fWsNI<9F&Qn;L6c[dGQ'a2fGTJLu7aP;+S08ur0>SgdPhVYr&(27&]!eF67SpcX$@)O%E(\gXKt@$0=l[ba*[Rsl4!hYhG63M-.'qD>tBSKGrF&^\>Z=+:6\B^E\~>endstream
-endobj
-% 'R321': class PDFStream
-321 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3044 >>
-stream
-Gb!;fCN&":')`jos'_!BFY;7VX*qVYj>_:#ELSqi[fqZ##e1N!b>o5jP-VFmoll.d?Mh%ZZ&;i=0^P&m%VO(W3AY[]IJaH>cR8sA1P^HeL(Fi&^4^G>N*uVeHoliRifj<NrU&VW$jOOiN6ejp&)f>r57=@e@5o+ArQ?"eC05=0%;(eYbYneb!&*C/[,Wt[e!>FZV/G6;4F7P/5@FID]D[faqc!=6O.4]o_dUpBRb`]YCVmD#$ob:-DHh>\_titT5/+XTqsDG)pL#RiSDo2>UVrl\>_?8_.rV@%3k8WI="O-^'`MROdbAQY`?.2t!PFbRK39p]5D4b^B%eX[1'=f"oeU<4ja"-9,Ol6R0u"A6s%:2'&;`C^)<eId4GClE=aKao*YK&@6=rBnf7;)f7>-OoF/I/")E2@Y[)d.ZT1._Yr;M9oaaus2DOi.7&C5d@gq#=&HV2p"[KDF0"G6\,Q-@J:-&_!*(G3ZjB`;O'GfIC@CVpN(bnH]>bkTi'49$$`(*uDn&T:<XrmI5'iZ>o0KZ&,ej5lJNpS0k_k3MHU+'\UQG[U9N)lGiodoT&rHf=$4S5-1lACR<[mc`DL5@;`F`U:g$MJJUoeiT,5"qo4gJR?,QLRSsHN^EJJ1?s?1c2*N[cTKT6YIf-1*$6N/QBR(%@//ehl:?d)hAr-\rb@HMYm5lrZtH<`.hVqWWU/Lp^Yo%-pArK2cdING\pt'?o.3p?`%VIO(aKPOkE/l(#]u3l;RuIhgK%;:f"jdX(@TNK9VBg],hSs'/JPZ@d,)]tpoQNEf'-ReVqOffI`F1hQC(9h]ZN!Ub4;]B#gl[oG^%/toEYEKS8/\f&j;26f9g!XLfWS;<Z$+nPYm"Z>:*%Id$#d`DI*FW@j5?>KMuiu4g+$`UpLC80olW*f2tcsSVc@Dm_0^fcMj5l[:CVLp^?VL7<skf=siG8oWAIE!3&de.eFu0:(t9=LkX+f[RQ$(YkVj1s2fE-kGYTS4n@u<-AfCeh$_,F1?qPYRqh;8BWnZab1SrCDhi,5P1EdI<D-2aZ.oBo$cdi4,aH<+cDemFC'3?B4rDrYh$I],*^r3M8m5p7aD*0IMWtDXK#mN"gq:'X\\W?K]-o[3>AtZtgjT>7$1</\[rc+Z.#"S8I78F[,I1l7HU+5E-nrs\A[g8ehn=E"_-f51_C:.:]KS\E;]*_*_0A4Q.mH\bqB/DA(.=4Hd[^grD9Eaq9RdF[6h./6RK2>iIT7&05#N(f$sAMhiPe<iN(m671KQ)Z'iXWc;`sOn?$#Vg/U:>dpZBC%Q_n#Chs<l$giT'Y:_4?ki^h#*@<Kg8oli["Y%6<;gRV_S@<WBF%J5pNhB`_=D#!Q,BHA>-2OO2`khMo3,F`'!Z.6P7gpq[5Dcn9HDd)sAWfl*'^ci/)(rpK!)P)SQMrW^9jp.@NI?i6+d!AH_lk]Q?%!;S!82<e2M8[&]=1Qh84TDELH0"j.bipZJd`1nj:;gkZJXAMd](Q2F,;\+EY4Mp#'HCU^.C$M!<*au&HV9PP;lk;b1.8JnP^O8,i_IQ],MBH%#/Lm7b@is(cL(Xe@YiN^,KrfC@4GZe-I!E<(^*a:$OP[0-Xn]VCigU$%3hu\:6.du9nb=iY*?steCmHI$U2SLgXjHoB-)F/K17KuD`G2B6E9In%jqm0+jW"BT\rim]%C2+9%%M6:SFh4dj<tP/N=Rt4=^">G]=nOb-uT';r#c"FB?)Lrof`8m#/s4G;IQ1NANH6[\QQNc)e5'Vi%fNC=KRa;B<Jm\<I?N/iFhT.:/JQYDX[kgNlE$\bHCJ[('+f?S<02lJlR)s*4LY#-d/g9AR.APf*As[X/#p:1f"-Y\*B$.%asJZQ3&bDhYW@BY(E$U?r7?ei@SLL1-ifYnaG^1ae-\G;:]/:08X0l%L>:qoDj$/n;AtZ)'(Q).'4eCg;C2?*"M8m<?X>f!`94..>llcj#ei,5">baZo_&QU(m>Me#MlmC&el4K#J6FNZ@V:dNiH<ha%8of@1eA`#KSQ7NcZT%5\K]1ja%)?Z_S+E.-Ts+jNsZNhCDqn[N/W\,-J>n8b!B>GJA=ada3"!*$54uRsfcK>A^k)8@]cq]PZ18)nFi:Yk)U<&1K=u%+5AO`/k%.Ot-",8\lg:k<fX:ftc6b?6cQ%SZ8#1V#SGnhb0BlRe+!?r+FE#eqA=-YeZC05$d^P&nm?GQERaV*@rOT6sHQ,gqPIHS-&-*=`Pm7_((%H$NR'%=4t>ra3F8Y;kr$,<ea:Rm<7A>ciCr\Xf;J)cM'$-q++-i93D`u%g+@p-Hf:=G5&;C:jW#hO":iQ@m$28H=oRcOY7;G>269D0`o?_KN!BPp$hm%0u)_74h954[<+H;-lbMYEh:;EU,ORJ=sfpI]&]Gg<#u&umV>89UtD/4$k67TJm4,GT.N`SFf2=K@!ikX>f@G`RU>'X/d>\OtEei@:gSCgBp.;e#VjX-&:ic!(Vi.j+#`;OEPSnR*Xe\+='))]4%6O;Y&<NGRL)6_:*V_YF_WCU[d9?pX'`VTVU)W0pBI^"p"5?W8'%@-6.DdCaH?3aHUGPK'frdcSogPq!]>HXoU)4-Yu$fC-O=$>Mc4;s%Cb&_;Caf>MJa1>Q+CbW=oWke'4]\R-qLWXc'aJ*UoX3!m?aC%`t*_aO(XiPrs905<J+L[%m.`sqR;\X)o%dnZiNJb[Ukm:p,f_@gjHLq+=6jWnE537#=eNMfrY^QT"OpD^dKPqAS,$6_^Q2-/_fA?fbpWNM1^S,G1ZN</[fB*n:ALK2`,[jAp%WIRL[LkJmY>iZj&?6otXXb@`lD0_R#1e+VG1A8-,4XW+;P_.Oh9UO(O\g'BYL;DqiRi2M0nRs\ID4r?D#Lg#YK?kece``.a_:6L(,_1)$Q"k.JFFE4TjD8Wkpl^-rl$%#kk>lOG6!4OfkkD%R7t@J`'K/jhBXLa:n.&G+!^pNNV]G\T-10Pap1R%A$j%T1nO@-U<l@dtX9V\e9G1%$J(!j&@J?6i)*QuoDT5!;FOQ_Mr&4pK7"NEI>,934!FEM8+4t7Y?2~>endstream
-endobj
-% 'R322': class PDFStream
-322 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2616 >>
-stream
-Gb!SmD/\/u')ipps'a8-k7fg!l<X//Nh'L,\929bm/[EK'tKM$9("IHU_MXg^R85fU0_Y7^$EX]Y[LWX3BK=KbVRQr6g3H(aFBs!i+`U;hhMbd@601J+7s"<&T4JL?[^njYe5D2LMf$f%IfdVmmFSjX7(X;V\aL]Y^ZNXXbQL8UL62(^bga!%.H%+V\M_<J<oQkO'TP(\+9g$s+'A.]_p+Rqka/PkC%8<@4u<[c!ucfP9:9<G]kZ?.[$IQ/<Qp]\]C&`%W4Mg:LP\Q&k!4d'J@E[Nc2,:bTW7NYo=6)Tb9(Q,if1#V1da&eM70!@jmkS/ea?U@#A%`UMP"+CM=?"XCrc'<9R%jZAR%4/7TEO>fLl6.;ZX4<^L?Fb\6XrJLdH@#R=DKb++fZTC^LV!81YPho^L.3>=N?[c-1P*1G<d2+d9?._CcNa5K[EAC0k.BVR4]-G_bU%[S+b(:!tfgfT:6@Z_%MKS+?k1#W\VIG_+'3.":WQ/C0LSO"T=mP1b]XPBa_@s:\(Bl?[R3'!pu`OFG*H>SQ08o>%a$>nYB086\OAHu[V<q76ij5IcQgJ=G+?LJ!c_]K0aO!^2W61^pnFnCu7Z,Cu-/l;[_M9srm_G"DBTO"]+8<m4iO`E=q]Z:J^O;1e:+bVIRlI[!i#Ok8B;*d4D!PM#^+E_3%EgkTOV;,O;;0%#'dUmn;\0[P&g5!W;'cX;49F@2dKrR%*'oVD&<2/pmJ+Jo*XV5>$q$'th4B?b8QZjMk#!PY:R..UDCRl:S_l_9&7-hZ(=dBVWEO[GaKk%-AX1Kf"@#c\r4A-`_fu:%m],I,/A=QsC_TJb($hPrM.hrjEn]"uk5a&o>EU'0ZJP1YboBd;FdiOX"A3!t+9*(U/n\s4746j:fKkGaPpCPDC0FYMn>]/MOH`SX>rHhn^m9La>n'cbS2*BCpb^>FY3U_2]3F$!P[.=jth3;&pl%*4.o/O'Z$/Go4F^IUNU^T,,Xqh1XG-1>srl.l8B[RU$%<DAO'M3``hjG[dN2C2@1LIm)i.M'6pM;9).MJm;[[$Vbl/F4:86kbjS[pdI^-65/gjRjLeT#gQ>?:8`h'S[1";DKFIttQlC&92+@4%_=fRTNJbUB$kLUTL>]EibY`oP-t./IBd'm*Tu`s%DMqai,OWZ6/Li0R4]VDl9Gr&VOeo],&RhsRC,ICf@8k(q*X+7Tmem(8*N#O^r-2aMggU-Eh'OQS>;f2h!,R$_ffE>sVr)haX@6K.q=6c7UNfF17,*1P-dHV%2;oLeITLa\Fr+c67L#IEDlPi4[,'tf'D)3H&O7bs/9Q;T%S4"!%'F^/H'P>.mqlI[3M66qD]R/ngo+&1\PN-&49p;<B%1u!en@SV,6n@O>Q>4=bu"\&[mXK/i<rCuPV]kq08j$sh8VeF3O3$t>`9P(RF>.Km\0ZK$Qds/f/mpLhf!bNX@U'CK!ah.\-^.%_dr=qpGZrT2AiP!4(:;G?dmAP0`=d,?=PSpP]$ND^2pD=890Gq5ai<'I.Pp?M?B22/.)og#L*\c4<+\f5Sj]=aQGMGp2EBG_J`tCW<Em8k?0#8le7NL@Fk*okOW$0-"i2uNoIlY38U_#QV@V)ajdC3;\0o3.@A[cJt,,u0;n1_YA]Uu:+`t&"16+s:D_mSOZ8&K4KX)msAZ,`C@@*Eigb]LB_]BI`6NKVnQQJJuhZI]V"BW$9ZXi8dra"CS8[bNhfrre^b)#cND:8l<$)Q20=5@j9QVL;22-Ju64pk+l1[%s&s.SC6t-Rp?rHsG(:$le:og@O9_J$)P)dK!0h3JXCW<k^2pA!"OpYqp2rb>@+qAfV]8'^ZRnSL:m.:P>#G,#ZR&Bq=9@m#!>M2D:sU*5EeBaa7=PG=&4kFiM8ml/T`:kR@=*nb<Zd:,&,q4?Q!>;N<U\=M'41-m7Yhm9"Sf%si`j\``LYq.k<fLV7*joJCgJXbJbJnud0#d0jRtiFp/iO]TTtm5Nd?mp=:@4%EbQVALV:8IW4cQ;Ls/TDFK$9UUen@rojoWXZU[E=%kkm@uT'4GW8&9%<FOWQV]>'aqOW.OIHd_U>9R4e0nj+C/O.bh"9N8nQ`'#s?r/NIp[",LIoM#PuVT1/d_,+jW11:bT#]$BET_TDpd%^uM_^5*sM*<[PY6XF71^^$#1[`Q#K*6\Rc#KN(CkE3rc0cZ.B&eR3R?H;]O#@hVTa-^F,.HiF>'o2M76aor^*[V$I7Lt.I(c1Nb[k:eE,P"!Z@2<C,RX6;6HVJI5<Q5N=COIVc<a`/HFPbnO'dZ6Kf=c7utGVgE5:J0+Q$V$Pl>E5X.Nj1HKg_*uL+6*`,DT41iWH/$%U)N7C^ohk<"Vu4sX(!Cf]SjeL)N9i,mbXL"e4iUH0D7Ink8Cs`Ja.CS_o\V%l38Xq9!'rWL/"r'j6!QZdr>A3ddkJUEMMukY<#kUAeG=,1E#oL]ZmD19b%ndMPUGR4$&V"1Jad0c&jq'Nh5!U/Mu%Q[9/@^Ba9#md,g0<M8Q']dcQ.i;E1F3J[0,([u#YkSJjWa-s.>Hh^@G`NVB/pU:89@*>R$"X7CE%VJ.))jAn_)^+_,h=j[\)oo#iG:0a<*Q1fNu3Gap-H4kSf;^rPh^\S`sR,$'~>endstream
-endobj
-% 'R323': class PDFStream
-323 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2886 >>
-stream
-Gb!;fD0+L@&cV29s+gOg,pQ97]pH+T)9&m#[8u9TkB8n/5<q?$%P^PF!V.N7qsFM2O$&OeSmo<kUld'5!UN#&GFf$lIXC4$S-&VmJFb]@GWmZZi.Xo3Mmr2%naaXHoAc+s;$ao)9I!fk)Y`16X2^[/)gHf7pFfn3Y$QP'e<s#T=JXl#%Sl'`FQ1f,kXa<QX#i<2]l.?L)_A]Za8]Ut5#i-.luOuQ,KFh'm9i[PIhRFs)Hlum,h9b^7.=I!a.=Pgauq"Ce00bM<0h<k.hN<5dtD]*I3l&QEOCrZAQd5cYuY,5A[3;rA.Zu"&sKM0Rdr#],Pe(/-WB1ao$jA%(Rn,C@[7Ci_-9rNnJW/ej[\.qFOjka]j17clqJMH)o;&Rc!_o^7,Ejg%bQek%=%2-Z@p0;;2K740ClNl+NJVN_dfqaHjMe?ko;#2iN)1^^ELOcKW6?_SN-H'9rE_)@]UM%Mp]U=r^"YQc.2QME30]XQ@Tj^DE:Z/9)t^.5m-qt7H"%=k5=B<VMW+\BE5n6Wq7)6;sC>N`ZLZM9VTo7PWnXL!8U\)n?ItB4&.,C"4khY/VDE3Ei'4u`m(lqp0?`20se8@a<eb[h'>,'eWMN+Kb3L3Y?6qJ^uAU87K/)a7aXW;Yi04i6"Ft5e8+IA3TTNOa+G]%S>gm[,a,eT=n)J2-"B@Ce=:?@?=Z\T`=b'[rlFMNVhkhk+bE@QCrJp>a7UmcC^Dgh&s1cs`E>CUIG)PHilmGPdEdXp2^1Zn=iP$HTb1=cZ`u=<ETt[DI%&V!"r2D=-Hc7-bqgJn"=d&+b,j9^__(%SI9fkaq=5465I:BWfTZD0n>_e8B<'$.*9pEL@&oeJ;P5o4/aWqrI`R%W-kbfH_gG$=U_7kq6R?YQ_H=2oe"/4r(bj0q%tC@,J&?=SoJM@$^VBc5GVJ;nFL:5k&Li$`Y^B4(`_O'(m'[.Ub3c+8e+M)'hIV;kGsFMO[&u^ij?.?9)ge/"XlbAh2$f[Eb7fM9Em27P]UBjIgE:>cmR)/Bk@&I:CHM&,RLDi2>JiiG%^%3/`W4k:"qcTB.nY\=n.'8)`8Q8I--\D?#<!PeY$SMs?0@lgiiohqgI&G_^E)5qh2g^S*]cAA$rQbFU2bNomHcMHh)f^O?dUdmn*22eF4Zh%3;@*,""u-C_o_gj7HQ]2,a_aO5I^NS[B16)'G4MtIdXu\NseD@e$WHO"L-h?@#V]4$''uQ9>ko03mm#&WR91VBfoQ[$5Wu\4*Q&oa8MD^O,.om,/W7pD%%<;7Uut%2_JmUjBE4+1.W90Q25(3E;fcJYo<fM]##mR35nE6FA?mVXL;'FK]U_;fO'9A![b#n_^khHgDY=Z'&R\o$E]f.f88K;XuNgZQ81'$)eD`kna9#e^C?kOQN[,LCKW(0<_jlpl8^BUJ*N:FMbCeGM;2JO;seG_G$kRc?#2Ds&Jpfe-](QOjJlfoo43!@`>o9;9"tWT=lbrbI4BoUGo"Q9>RHq?>\LGWs#fEna+>Db@VWVT1,[#G=t!"SEK9@+<oA]<*^6>'gC=61g5i//<ZhQ@W'VV0G(@#S0YN2:IX$hIRF!D=OH,U9[<IkeN=0!8H\V/^TTT$g)2@H<@;s;Th'ef;Al"E>Ff+cYQ>OoKRBkB,[O$8qQPLV&0T:U9*;8$#L^Y2kCtNM?iH'7V\Y904`akrVoWr+e4%ME7E.h(.B5+bkS@%spP@L2XT0RBU_b+=WC<[med)VX!^UO%9'4eC#-[We+"Cs"QS15ME@'tRs2.p#>UQnFkF5Uf*YD[mmAbK6h.94;jZ/i>1cM2gOmAil2Urg>.0SQj=p/oO*m!K$U9=`(%H#1kq.d@8!;49.V7(rcl;$u?HD<VR4>$=udRbqL63QU[*'"DXh5,JH[";<.6XXjb)^0H.HABaD@(f[gMeqheWI'A>o4VkP7$e/^^c:pX,V)9\XK-Cu$$4cM\nSkAs8+b4EhRK"364(5LMuZi[AmA^n9D4r(5hTVpW.8H'VpK,C=-kM8Ald^\9""!V+=V&Qnd&6gUE0pYjf4-=[6=%5I?>Ro&cR&.k--1e'?<2%97@Z"#on17'!<<2.8$3IM$!-bX;kY!N]V$F8lT]^D^h&$O*Z_(XJN!$BjbbIaIt<[*2TW7nd?n-5BFT*gC515THKM^ahN9id>cn*SSa(Dfb&/\M!a,>ZoG>lq)_k27TA,kk2`40n!Q*[ZVH8pWV7B.Tuij>M(9i$Ku1l1IS[56HJOsqAhoKmO1XghfmLfao7A9rL89d^Rq<C%/@HO(eri,aUV+X;8"HCRP/j`/JCdlL@aq@Q:HpL+P)Ym?d(H4FHhEEda6uJ:V*\<OTXo?c'n+eup]q=?qL+#$;r_S>=o+Z7$1-0M]\3uE'Kj?\BZmA>ga=@N2S6r<"1O=,W>p\\>4qs-#7F<a^IP-YAMn2iCH`d[Dt_t\rE8Qp%k5pSK]l19/>m`-*G-qOd?SU._D<Z'bp#tY=%X>W'pW%e43q&Is,F0h]Z/B;Kd=r2RTQc+'s.52kkn.OnU'h>1O+MNJNhg/AI&6Er\UE4fi=&&i#^.6fm!bp3OP$S2F?MB5D*XIoVqth7Os0-B6g3EJaY(fOGH))659&-bm+41ejmLgbT6G-A#q7,XDP//gpXg'hiASrRiMo,h3*0-GL4ZklfQ6[hnQk+3^@f9\hYUWBA\N>[Gc&*0^4:)S]C2mMHbKg0l^!^,A^rOpcm)7kJOdh6$B#URe'#NR1b7[,,*"$V?"_:[FAuhXBh,.Z(En@.V=2%n`DeT3:qlTcNreI^:to\fQ+=@5WZ,*YCZG6m6%?,7@EpMQ[q>aRZo^#_u1LcbH1WK!p,0K((>\Kq1e/<-&]BXGP#fq-1QNV_FlC61/J9Llo&%E"8<0V?i1^$oPl5~>endstream
-endobj
-% 'R324': class PDFStream
-324 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2692 >>
-stream
-Gau`UgN)%<&q+ths'abnD_VLuhSd[&f#k,;=XOuk>?c(gL;8n@#f+53"3K?%cflJN"=ZqeD3n1!\L:q6ds\h)oYn'Pi[<l<dmAk?/]9U*a!+9s@O:#R1_u#$ik*2$BCGXTDN7N4,"\N^"Rk]*+,d>_p:Fur*6$#fgc^,kWH!.0/@q3D`1df_*8rX5duC\I6<=Zma0*C>,^CgSIu;30q"e@npO2qtf0aCeanQ0bNpG'(H;:J^pHSH2`Og@QA(=,Rj$j6r:,MSupWAfM.q.bllU!W%o5E4gnaACEOit=02r[U0bs8A4/H%gN/!_[_Te[e?<&l>=&UpL.P@_0Z+!;abegaah1=P?R*ZI5Nij-e0d<MdnEh,h+:$JBBJ:8'kHdAS\1BQR0fSJ]f*.K/E!%5PdF96DC\/7C.]S!!jKokCs<*%oA>cf1!X9,JGV/5O<ptZ<nN.:Sb"lUo$%q=aB$fm5<Y"f4E3ZWZ0i"iODP1>Oo_*YS+*eEnQItX4Be%EtVU+QNT>N]!0F<T7nh\;KieL:tD<NZ[/H3Ot+f06\H6C_AKN?dr0NS97`3tK_FXK3jAE/,>p"cO>pL>G#STM?r%889/FicOrCo8g]dacCeoR3\[b_1+DDKRqFl4K#:J)a67H-j&'Q]nD/#4B%aQ"Cd)K,])1V8,*kR3C])B?>fRamtO@a2UVtmRl&*,kEXmA;(@hcfbF!HOefZM!9'=!iWEJ9\'ZWdaMKl,X91r'Y8MB(eTaMDnOaS>b(9?HQg93!5)guL=PjmH::g^g!/3%F1WNIF_imLoFs:nrS0ClaF%)t5$qb/:$R5+>aS])O.W;^P-,l4l%%o6_SVBjc>hZ0Bb"=:/Y.[jgj:<pmA6CBDGYg*KO<ZnrB>3Q8NQO>T[;TgK<5&FZ#=/G]lC2!>/c`-D&@405";DSX4AJe1m*Tc7S_p?B,YFr/=c!*'1aP/P!JuV&&`q2B'#_[Y>aq"nP6d[[VPml,,InNs7Ei##?#B3^PA0S6\[;n42jGl-^(/icM`#u6n6JCe:>AIB9oY5Bp)jW8c<5:jXBoa2-m#3Bj:P3[)cUjrl.,<6'M=q2.uF%uOJ3+',eMRkAP;@q9F(79,0fXo*\g]f_OPrqO+u'G'TW+=go4LM+s`fg8<p+hD8;6eU6=aMeL4P.Wq1V]J6@RoEV^H<IF%89VcHAZ"mZ_8AHU;hBIfTCI]ah_Ppm[[_-+g/rT[DH;AXI!b.:\)D@Y*S/?+O-UK%Mdg^jrCZ!)\q93d@7%35]PBuqTHIO$(R6m^5OaBPWbk,l(8*XfJQUF,JdfjQH'*\45iYC[D@h9ZnJKS`j&;CjHdFi/n^d.,lpoTG="bc:EF[WL0%4(E2\$#g,O7HQ1hFd:qY1RcMWG^]_9$n(*"`Pqcq71V7o3+a*%.4.I3!Q2k'&S_p0[GFoL-hSM)LXCKkEp"2Z^A[$dZVi'tMeF)gnM!RiUh_,m.[nS$ZMQ6jfB;;C30'l6&Ci"q+daeVJb9RL.+bX<fC*%'h\i\l"%e!se5.t78bXW<r5V_J/G:N6&?8eJcuaZ39*C[;kc1?gln[I_]l#M:QW^3-/C<8IG_0<&pu]';=5:a\BB2>g2Vmg620X@LV'sNFVLN<dIDDhu\:T(m*d%]E+Zbmkl,/FU?J!H25aGcR7Z%Pa<JSl:)jReE)c:eD]7&L5PFYS88)maNcsN<qWHs`\RL<)^)F0T]DKs77'#1EL4,/U1COMrpSi-j@CIM,.\SW92oYfN-'=/8cL')9/#`>MqMi2#@i7eYWKC$j_(Nn)=57Ob0_GH#%L\t-$\^td3gi0<"l_(sIA;A<)DcH4@O4GC)ik'lf,o8KGlniLBmq#MJmrF'5)ihK\d>gRJ<u?\<Ll1.N)P9cI&$k&R)l\(:!tFW`E'h4nI<S5/*u.HG^_Ok/Y>-ZmMcf#1P=b1%_MseTXkHjZO*WH">P')N(\><J*,"u=MFZn#/F(1_eHLHd"#5gP_lunR%#ArNhFU<`-VD/&gXI;)7B^@J9NmXbVajT>)aE"4I]`aE6u;(:W1heS`QZdl-F:IdZ$hQ5G]Z];QIH/)em<>Thb8;01SK[_Q)\ctNptb@.+mr@;'&>[_/9\^Rc@I4EFb]20pbM;W=_nB?tbgsg1q@*nPrklTa[.?crXZ`7_C<?ZQ=9%`9jrkKquK$SnT>$D*VTZ-]?,2(!PO=:$Vj-@Y[![lks)AHngY9+#P9lY(G7cAg:TFR8b:W42hYd&snc@Zrs>H_0;UG!<okA!k*'0W<1p(<0c91L^Q:$4,MbtB?LaDEpd/_N0b";1r>ucA\[@5NB8HT<-![&%nqa]:&B_*Ql3&V3.qa[F"a%Fh0NMc*XcY`0WUk]ik5b;`HO:p[E0X.>[0-[f'Y]W%=1YQTabq6rE5C@7fRr-\+%F^4KLHdTN"bc`Nn'?G)/=nm3,C:#dafLV4fWS)n"(G6RE$`MsCnoQmQlgO*9/;lG.++H1dlJrII'")<@V9dY8[Sk,totdAn"3Rra)GBgiQihT7?q\nd,@>NtZa^BseO(nNm:/'`d-T9!m"%Qduen!%U0K,2]ic7'i)k_;rU"#["W0<O;0B38P^Cf*%F\!-snMuZ4bH`BC3>X]?tl.^*W\EkfB:Y,5KqW(3IM>p:p89-Q?EO7N_*&r+kqJ%sa['.brF2rEWegScY]>&gpk9D=3kKj,/.TL2T~>endstream
-endobj
-% 'R325': class PDFStream
-325 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 1542 >>
-stream
-Gb!;cgN)%,&:O;3s'\DnElUL8;P^,^V,!Ii1/lea9g<1J5!UB,+TVT^!9MVcG6*ki-/TQK:",6E(L211Sis[k@#U_ns3+)c="4(B2Llp'[")ON-BS32DplOU)ugB$jm`JjOA'0>ZSNZ<.-S[lF;tHm%(CusG\XInBM)l.$u$#65]@XfG;i8gm&h?*O1p?W(`bp=):BW)ocO,+VYfDk^,=AYnr,R>gMl?@\MIf<s.^7FX'e!]VE)9V38'gMrpK8@64cR2S>/@VRD^oZNS_q^P&(@+>jU+mJC,%"FNIp0;H3o.V;Xi)>4Ht?[&O8TW9$VipuH:.%X39FR8LB;QoTmLfuu>:rCNTrH4O\rm(^O8V4aA8Nt/f]K$#(9L3,kpTF8Sdb76p"V>:S+5D,,.%@Z,&>dN5'S?isVE,A_a<\eAnSF)JC0QgAED;gf8-(It/^;I%_J<5_nNa;_Q]r>O+rcb^9%F(3!5<p$"`SgCZ+pC8Jksc8d"^=kEcBQm2Z\XR'kkI=Y`u_/Uj'WUnJ@hZ:3HKFWWiU.HZ1$#O,`]u/H5ZtZ0cEiNq)oRHOG&JFm#[Tu`20-I,/d_4%_*N=&1k>mEb[a#/lZ7tWFl*'%;*OKUL1eXM]E]S"?hA2lbgs=60'd7Fj>M(ag*4XglsE2)O#a3*Z$B_JL%]AeAD6(f#G!.9^=P:-TBf9P$n?eZ;<98nLe5mpkfNRY-'Y,RH[NdN^c``E0M?rV2o6.;TtBSPE1_;?&&$M5s.fS-+51ANP=/D6IJcr9WeiJO.k!:Kk/J5(Tj<X'%Iamgr[&o&;7jTD&tRm&9s-/j!SEX&2^rN>pplG/XP'.F>6q+_Q7;Q<C[<K(j/cYEA]ZqXH!]Rog^os8Xqo&m!#MuB.KiLLt%6$NS8iISm3:%Y&:(41cLCJX.g/1@K]tK1K\XS5V85+r?7'9B?Bo(68V5qa%h'g/HQ,QlSVpR]RiJN&sIF:N.jK&pW"MIPO\[<14uof%pM"5,<ATp]%8^67Ao'G%$XEV;QY=X0NMn6h7kZ1i,sNm4FJ!iIo+jhXLA[We_R3/;`VF\V?=l8OK)TI;kX]3L"I&IKd?0"ZE2G>l]3l'1Kn["Wf?SW[E'JtmAV$^]2P5I5NTkC1NQ@;qA5#\&s:k*$H6Mj7Um)(+kHP-H-!@9C@6E?)QABQ-@NCZ"BnpG&o5RO)QYX:0ha:d,-e)9V@n)ol[YWt8P_KKs1HW.#[T4.9@hWs]E:q[Ok9S-f6#Q;]uZbOJ_\5E$dn:K+6.r_`CaG.YXtKVJ_cn.C::Ia(F?6U;2(io^%:YO^/N@dI\M1\;f)Wi'M+9\PB(9=_]#trgpZG']=%e<qp7KB5l=2XnpIT;^Q;llk)6EW.OO-PS$\G(6)ZO)#f3A%D-\t/a>8hEU[QPIR70(V9Q<Mm&.QMpR4$HFA,\(VGLbcLWdT9#eiuq4Q.7Mb5\njZNJVR^mod4hXC#YY7tRL_:K7A$a9:&+fK=/E6G'.Lp3K^6IYf"BZh@D-7[%*BI+^A(=1CM5X$56fAah.S^u<+:MD\]]~>endstream
-endobj
-% 'R326': class PDFStream
-326 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2069 >>
-stream
-Gb!;fgMYb*&:H4YIi.7CcGJ.9GIqcb[RD!G[[4N$PS[MtD)RQUP#>Qbr=2D%^*]/PMOVIPi/eR34<0qQ6dg]QIVesA8c^P7nE5-;C^3ECYW^0^d78F?HN!,arn>o_^'B[.Kg*5W;/SbI?C"`&hmFIHk-&-#X*3;rBFP"b7OcuuL"4hil7oYneR`*;`"Y7mG7LD:0`".\s$_Ee/:W'#[O/?`9DA.96.ha_pO_@a7CH\dJK#N&L/ou6/$g5">t_T:@G+)@dk#)qi<"=ER?Y):]U6NkaoXa7*mqJ3oF^+B/J!H[o%_5]mf0gP*4Kjs9b8Aj-sZ:!-NtHqKG=kNKU\,>'Nc+sAP=C<7,m*57LFtH4V]XtP"!0-.e#lu!M<aOKo7JtSAk!jrRIh3lSVp"56#K9#<o'\EYfuZ9\4$I"L>tG'Cdn21D]50-00Xo4Q6[+BecMBK:(N%Lrq>(1koNY0<bd1AWeU;5hfu]irrfuL&P/*.'nkD;a<-ql?\oGWY#VoSk8dRUfig2\lC2`1f%eBA]BDWZKlEf,9Vj(O:s)9J7iFcZC\l54'i@fFffI=Ndr_)8?fA)N@'$j2>7M40Y[=0MbL[sQFSsu35]D]@]"l_O6]EKJ0YIE+F1]nO;NI`2uk.cocu0o_MQNdV\.4/TSU,CD:Ob6n<m+e2<W/NIG5_]a1$d.QHakHepnSe?tqM>XQ\Hn@AkbVB'kB/i7nleU:`Es0fmU/a/^4^!A!uAQkMl(>d>W0Jh*`XmbSqd^3u)S2E>bjfll+p4U0`B_aE'JRM53FF<hH_`!a)upcPV(MCP&fBGV5*`E<=A*n(6=Ju9OLrN2'YSd%P7]q-B6L(m&69_V@^`0BlgCk!s2S#2`[J'e3!KV2HU=6kMHWSg1Gj:X$iDaT7l[6pR#J.4E@NX90LX$&s6@.uK\2!70^mot6[.(8ku0,P+@@sd)?LK/!uXS'YPE*+4[%5#_-S,[[Z$^)dU9qLeV<r[]@X\k6u[7NoURTVPIhBMb9gbT"M;K>8Xig4T-H6HEcpD).I\<m]L2oc;KfAM0kCCMqp<P0g]fRm9@27<>UPl!-,7UoQ5iUEMP[g%b;>$/5Nh@ic>XUU!i_cnW*Tb[,jlCiq`KG(3k^oTdZ+-#HS:;+#-'d$#87C+RKpqZNF@6S2CQJ@Oh,T)?t,Ndjj&&u:!8eh;'_'TPb)YP<WP[UhIU(j!a+H/0W?/S%<iA<2]Lb0o:2ois9HGkafI&`qr^:<^i'4K_!74E8?W,(s9_LrP*.em>PB7Z%4j+cO])L\Y4[?5<W?<8W&;Bf'T<%=pDr47IV]>iH<,rt\=;+2RQ+$st'&L2$bY\]5[DEF\"-;`;N.rWap!3Un2I%_/IdmHMSYm;[I.4Yp59))m]e-e+R`G1e(InCa5%1hm\[0F"i.aU*gJ[#$/Uf3:V;G*c2dj:HI7'deX"kiiT*8m:Y/!h#.U6lU.RSQdP$S3]dacKcJ4!"(kXl=SjE(Te?2!n^8V6Y,8+gjsX)cT5)>3pXp.BNsCDE:9QL`u(pA/V`]iO;K6a>KSoD/*`Klb[BS<tA]=>@<Rm3'S"NSQ_r-p;@7O_fA!4X4hM^hti81j`HHGE;[MW:Sg""$Rt%ZcKXnbB9Elhdea/>_Jt=.b?UW-8aJk>kEHTTh]?`u1lg;II[Ngf=,I9]n",R4Sm=`H89u4)ifZ]RLg3^*&Y;$Oj=mE![EB#69W<7\L-)edkT5t&m01S7Zr[^0q7`*\%8N8cZlAg[\B4=F5MPj,Q_h&.r*B`>Cd>L/4*1rbMs%VOnII;:><Q4H7O:l:)OQY6Fm,:BlL)Q;`Xj\T,V`qAdca8Nf0If@aup/lqR*Wk(4G<sQOTuO>]j[Fd(%;/OqmhYWjFr[jLK#q,fVN%rbbKTeCH)>de5e?gp8[]'T1E&>hmHO<#O;[cY*M!W]=*6C(-h$o7TQ6crVV`ateC7iO5MAId1dj-"5@oWkig.A0R0^kZ06EEd$3J4hj-==K"%&Wb"aXc)P9$D(7N*rh1AiQ56KQGKN9'\CE/?F@1H_@n\&D!p)q0AeMYc?LaCA_Wt;'!RC6PAH~>endstream
-endobj
-xref
-0 327
-0000000000 65535 f
-0000000113 00000 n
-0000000263 00000 n
-0000000469 00000 n
-0000012253 00000 n
-0000012440 00000 n
-0000012682 00000 n
-0000012912 00000 n
-0000013142 00000 n
-0000013371 00000 n
-0000013598 00000 n
-0000013826 00000 n
-0000014058 00000 n
-0000014289 00000 n
-0000014521 00000 n
-0000014752 00000 n
-0000014982 00000 n
-0000015214 00000 n
-0000015444 00000 n
-0000015676 00000 n
-0000015908 00000 n
-0000016138 00000 n
-0000016368 00000 n
-0000016600 00000 n
-0000016832 00000 n
-0000017063 00000 n
-0000017295 00000 n
-0000017525 00000 n
-0000017756 00000 n
-0000017986 00000 n
-0000018218 00000 n
-0000018450 00000 n
-0000018682 00000 n
-0000018914 00000 n
-0000019146 00000 n
-0000019376 00000 n
-0000019608 00000 n
-0000019839 00000 n
-0000020071 00000 n
-0000020303 00000 n
-0000020535 00000 n
-0000020765 00000 n
-0000020998 00000 n
-0000021229 00000 n
-0000021461 00000 n
-0000021693 00000 n
-0000021925 00000 n
-0000022138 00000 n
-0000022876 00000 n
-0000023105 00000 n
-0000023336 00000 n
-0000023567 00000 n
-0000023798 00000 n
-0000024029 00000 n
-0000024259 00000 n
-0000024490 00000 n
-0000024720 00000 n
-0000024952 00000 n
-0000025182 00000 n
-0000025414 00000 n
-0000025646 00000 n
-0000025878 00000 n
-0000026109 00000 n
-0000026340 00000 n
-0000026571 00000 n
-0000026803 00000 n
-0000027035 00000 n
-0000027265 00000 n
-0000027496 00000 n
-0000027727 00000 n
-0000027958 00000 n
-0000028189 00000 n
-0000028421 00000 n
-0000028653 00000 n
-0000028882 00000 n
-0000029114 00000 n
-0000029345 00000 n
-0000029577 00000 n
-0000029808 00000 n
-0000030038 00000 n
-0000030268 00000 n
-0000030498 00000 n
-0000030727 00000 n
-0000030957 00000 n
-0000031187 00000 n
-0000031418 00000 n
-0000031646 00000 n
-0000031877 00000 n
-0000032108 00000 n
-0000032323 00000 n
-0000032992 00000 n
-0000033228 00000 n
-0000033462 00000 n
-0000033697 00000 n
-0000033951 00000 n
-0000034219 00000 n
-0000034464 00000 n
-0000034736 00000 n
-0000035027 00000 n
-0000035304 00000 n
-0000035578 00000 n
-0000035860 00000 n
-0000036139 00000 n
-0000036407 00000 n
-0000036671 00000 n
-0000036928 00000 n
-0000037179 00000 n
-0000037430 00000 n
-0000037727 00000 n
-0000038020 00000 n
-0000038303 00000 n
-0000038619 00000 n
-0000038909 00000 n
-0000039194 00000 n
-0000039483 00000 n
-0000039765 00000 n
-0000040045 00000 n
-0000040337 00000 n
-0000040620 00000 n
-0000040918 00000 n
-0000041202 00000 n
-0000041475 00000 n
-0000042076 00000 n
-0000042373 00000 n
-0000042667 00000 n
-0000042965 00000 n
-0000043283 00000 n
-0000043570 00000 n
-0000043856 00000 n
-0000044119 00000 n
-0000044358 00000 n
-0000044580 00000 n
-0000044758 00000 n
-0000044980 00000 n
-0000045166 00000 n
-0000045385 00000 n
-0000045780 00000 n
-0000046053 00000 n
-0000046343 00000 n
-0000046566 00000 n
-0000046878 00000 n
-0000047119 00000 n
-0000047361 00000 n
-0000047603 00000 n
-0000047845 00000 n
-0000048072 00000 n
-0000048270 00000 n
-0000048510 00000 n
-0000048750 00000 n
-0000048992 00000 n
-0000049234 00000 n
-0000049476 00000 n
-0000049718 00000 n
-0000049958 00000 n
-0000050181 00000 n
-0000050613 00000 n
-0000050836 00000 n
-0000051148 00000 n
-0000051390 00000 n
-0000051624 00000 n
-0000051866 00000 n
-0000052107 00000 n
-0000052349 00000 n
-0000052591 00000 n
-0000052832 00000 n
-0000053056 00000 n
-0000053438 00000 n
-0000053678 00000 n
-0000053917 00000 n
-0000054156 00000 n
-0000054380 00000 n
-0000054706 00000 n
-0000054996 00000 n
-0000055238 00000 n
-0000055476 00000 n
-0000055715 00000 n
-0000055938 00000 n
-0000056280 00000 n
-0000056518 00000 n
-0000056742 00000 n
-0000057064 00000 n
-0000057305 00000 n
-0000057530 00000 n
-0000057852 00000 n
-0000058093 00000 n
-0000058334 00000 n
-0000058575 00000 n
-0000058800 00000 n
-0000059142 00000 n
-0000059367 00000 n
-0000059679 00000 n
-0000059921 00000 n
-0000060162 00000 n
-0000060387 00000 n
-0000060719 00000 n
-0000060960 00000 n
-0000061185 00000 n
-0000061491 00000 n
-0000061781 00000 n
-0000062019 00000 n
-0000062258 00000 n
-0000062495 00000 n
-0000062718 00000 n
-0000063060 00000 n
-0000063298 00000 n
-0000063521 00000 n
-0000063843 00000 n
-0000064083 00000 n
-0000064322 00000 n
-0000064628 00000 n
-0000064903 00000 n
-0000065045 00000 n
-0000065289 00000 n
-0000065418 00000 n
-0000065624 00000 n
-0000065781 00000 n
-0000065953 00000 n
-0000066122 00000 n
-0000066335 00000 n
-0000066506 00000 n
-0000066735 00000 n
-0000066894 00000 n
-0000067074 00000 n
-0000067258 00000 n
-0000067448 00000 n
-0000067630 00000 n
-0000067813 00000 n
-0000067980 00000 n
-0000068166 00000 n
-0000068390 00000 n
-0000068559 00000 n
-0000068728 00000 n
-0000068918 00000 n
-0000069094 00000 n
-0000069285 00000 n
-0000069504 00000 n
-0000069659 00000 n
-0000069836 00000 n
-0000070006 00000 n
-0000070176 00000 n
-0000070339 00000 n
-0000070534 00000 n
-0000070763 00000 n
-0000070921 00000 n
-0000071099 00000 n
-0000071277 00000 n
-0000071454 00000 n
-0000071613 00000 n
-0000071801 00000 n
-0000072028 00000 n
-0000072239 00000 n
-0000072408 00000 n
-0000072587 00000 n
-0000072774 00000 n
-0000072956 00000 n
-0000073128 00000 n
-0000073349 00000 n
-0000073506 00000 n
-0000073691 00000 n
-0000073871 00000 n
-0000074036 00000 n
-0000074251 00000 n
-0000074413 00000 n
-0000074590 00000 n
-0000074758 00000 n
-0000074932 00000 n
-0000075106 00000 n
-0000075282 00000 n
-0000075457 00000 n
-0000075621 00000 n
-0000075846 00000 n
-0000076004 00000 n
-0000076189 00000 n
-0000076363 00000 n
-0000076553 00000 n
-0000076727 00000 n
-0000076942 00000 n
-0000077109 00000 n
-0000077293 00000 n
-0000077477 00000 n
-0000077643 00000 n
-0000077869 00000 n
-0000078044 00000 n
-0000078218 00000 n
-0000078367 00000 n
-0000078552 00000 n
-0000078786 00000 n
-0000078944 00000 n
-0000079132 00000 n
-0000079317 00000 n
-0000079496 00000 n
-0000079733 00000 n
-0000079905 00000 n
-0000080081 00000 n
-0000080251 00000 n
-0000080431 00000 n
-0000080603 00000 n
-0000080827 00000 n
-0000080991 00000 n
-0000081179 00000 n
-0000081367 00000 n
-0000081580 00000 n
-0000081720 00000 n
-0000082060 00000 n
-0000083987 00000 n
-0000085644 00000 n
-0000089104 00000 n
-0000092473 00000 n
-0000095769 00000 n
-0000098441 00000 n
-0000101022 00000 n
-0000103803 00000 n
-0000106574 00000 n
-0000109611 00000 n
-0000113392 00000 n
-0000117597 00000 n
-0000120616 00000 n
-0000123725 00000 n
-0000126396 00000 n
-0000129393 00000 n
-0000131807 00000 n
-0000134643 00000 n
-0000137832 00000 n
-0000140593 00000 n
-0000143624 00000 n
-0000146461 00000 n
-0000148148 00000 n
-trailer
-<< /ID
- % ReportLab generated PDF document -- digest (http://www.reportlab.com)
- [(\262~\267\007\250\024\326\216\224D*%\324\240\2522) (\262~\267\007\250\024\326\216\224D*%\324\240\2522)]
-
- /Info 211 0 R
- /Root 210 0 R
- /Size 327 >>
-startxref
-150334
-%%EOF
diff --git a/pdk/docs/compatibility/android-2.3.3-cdd.pdf b/pdk/docs/compatibility/android-2.3.3-cdd.pdf
deleted file mode 100644
index d2a1927..0000000
--- a/pdk/docs/compatibility/android-2.3.3-cdd.pdf
+++ /dev/null
@@ -1,5584 +0,0 @@
-%PDF-1.4
-% ReportLab Generated PDF document http://www.reportlab.com
-% 'BasicFonts': class PDFDictionary
-1 0 obj
-% The standard fonts dictionary
-<< /F1 2 0 R
- /F2 4 0 R
- /F3 139 0 R
- /F4 141 0 R
- /F5 152 0 R >>
-endobj
-% 'F1': class PDFType1Font
-2 0 obj
-% Font Helvetica
-<< /BaseFont /Helvetica
- /Encoding /WinAnsiEncoding
- /Name /F1
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'FormXob.294f5b945901682cd975a2767b600f63': class PDFImageXObject
-3 0 obj
-<< /BitsPerComponent 8
- /ColorSpace /DeviceRGB
- /Filter [ /ASCII85Decode
- /DCTDecode ]
- /Height 49
- /Length 11548
- /Subtype /Image
- /Type /XObject
- /Width 369 >>
-stream
-s4IA0!"_al8O`[\!<<*#!!*'"s5F.Y8OGjP:f:(Y8PDPQ!<E0#"70H8E,5RU!!$kRFE18L66KB5=s+('!!3-/!"JuF!'"CsF)XEA:eUihzzzzzzp=93Ezdk,!IE,5LSzzzzzzzzzzz!"O$O=]te*!A"3N!#0'J=]te*!C-Vb!#/mE=]te*!E9%!!#0X!E-)'[!GDH5!#/pV@:T?<!IOkI!%`.i;F:Ea!N5tu!"NX@;F:Ea!Or+0!"NI;;F:Ea!QY6@!"O0^B64+R!S@AP!&/;$Bl3nN!XJc+!'"M#F(51M!^H_c!+]V]@r22G!i,er!;^PLDe&hJ"/#Vo!%;>rEc_9]"3:HB!$kZL=s*eFzS#-/c9N;&m!jGd0=s*eFz2.HUdTBcIW)6m:H=s*eFz--ZDi'@d'_[`)?O=s*eFzo@O$D!!!!"('ntn1GSq1!!!!"$b$*9"d]2go2bnl#:TWQrR_)LqmZV*rMBPp"53_T_"M8\EcqE_z!!*,F!!$MOEcqE_z!!*,F!!$MOEcqE_z!!*,F!!%1PB64+Rz!!*'"d<#?g!!!!"zd<#?g!!!!"zd<#?g!!!!"!!$nIBl3nNz!&+BQW.4jJ;ZHdt1dD$@W^$Oa-C4]4'&*Bd:d>!\<'UEb1G]"41G]"41G`QQF(51Mz!")7n+A>Tf0K(cgzzzzzzzzzzzzzzzzzzz!!$kPF^kCOz!"o83!"<aS:/:ii!"o83!9eBD:fIDp!"o83!9eKI;agZd!"o83!9e$/7S*R[!"o83!9ds%6q[L[!"o83!9e`B6V[U]!"o83!9e$87T'3d!"o83!9e0+8l,Kf!"o83!9e!3<Drkt!"o83!9eB<:eUih!"o83!9eBD6;dd`!"o83!9e!878j0d!"o83!9e`B<*'&"!"o83!9eHG;H3\s!"o83!9e3:92Y`i!"o83!9ds)6q%(U!"o83!9e<::.tWf!"o83!9e-=8Q5Zi!"o83!9aDR!)NY<!)*Ah!&FU/!&ag7!!$kQDe&hJz,4GR4-BJ3-!!'kS8:U[?zzz!!%+PG]Woc!!#B)E-ZJ<B4uB06#^dZALnrqDIY:M+>PW)3<9*<!'ittBk@>F9hbU;!!!!)!!.jh!!E9%!!*'"!#bh;!!!!#TE5)r!!!!"!!!%>TE>/s!!!!"!!!!Rzs4[N@!!30%!<E3&!<E3&!WiE)"9S],!WiN-"9Sc2"U5/8"U,&6#71Y?#7(P<"UGJA#RLeE$46tB$OdCM$jd7J$NJi\6NI5i!WiE)"Tni1$3gY<$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$47+I$4?gK!"fJ:0`c7r!?qLF&HMtG!WU(<*rl9A"T\W)!<E3$z!!!!"!WrQ/"pYD?$4HmP!4<@<!W`B*!X&T/"U"r.!!.KK!WrE*&Hrdj0gQ!W;.0\RE>10ZOeE%*6F"?A;UOtZ1LbBV#mqFa(`=5<-7:2j.Ps"@2`NfY6UX@47n?3D;cHat='/U/@q9._B4u!oF*)PJGBeCZK7nr5LPUeEP*;,qQC!u,R\HRQV5C/hWN*81['d?O\@K2f_o0O6a2lBFdaQ^rf%8R-g>V&OjQ5OekiqC&o(2MHp@n@XqZ"J6*ru?D!<E3%!<E3%!<<*"!!!!"!WrQ/"pYD?$4HmP!4<C=!W`?*"9Sc3"U"r.!<RHF!<N?8"9fr'"qj4!#@VTc+u4]T'LIqUZ,$_k1K*]W@WKj'(*k`q-1Mcg)&ahL-n-W'2E*TU3^Z;(7Rp!@8lJ\h<``C+>%;)SAnPdkC3+K>G'A1VH@gd&KnbA=M2II[Pa.Q$R$jD;USO``Vl6SpZEppG[^WcW]#)A'`Q#s>ai`&\eCE.%f\,!<j5f=akNM0qo(2MHp@n@XqZ#7L$j-M1!YGMH!'^J^eG-NC01u",nG`Ffa4e4cpM":c88PCn1>L,"M]>S:ok/CblnWoh&#FYmpsZ*f6h'8mIO]^cdki!c&P7/NgtMOeqa+M.%A^H91+Y[F`*5e<*0Mi!INs5)nE7bT"_o(ZnRPP2Nh[.g9G3_gNKo-lLr5u4W\?PoW5p3@jts8l?<$bImu"h-G_]Y9cn@#KZ+/=&hgW]6hUSBAOXXZQb5utFf-?0\bAC!hWk54??CH'+Xo;O,jZG?r;L%q4D\)X+`4lUfe,0a9]im!P8(?-k&mdiO\P%4N?n)n$Q%8b5Fp!n'):A!Ka'XdT$0Jnj:W*cqej&YZfjBR'Fe(>,CGj$GbqP,0%C8O#^@IG;jCJ**k\`QbG[BRlGD?)2bH'P!Mo.J7I.habPKfAp*E`N;/hl%*^`@[$cPM&TPC,dJ*Zp1[)*CitkYc-sl>I+ngHfO/M)V4C(nk#UJIB;1SYM_H:A!sdj,-^>D82D8Dl2B[R=?+S!,173r#XEH9g\0]*Zr/drfuTXdO0tuK)O\?6HlmA+5R1C$_NdeK?,m`.fH'T-XM&0?-thFr#p\uZgaIr8Zpk6)S!%tSk+OlB=:NoQP#<P2]:Wr2f="DrKb/,Hs9gg6Wro\]p?!I/9;=5l-Q5-Z-+3EN[-)A?ml.3+HLm^=5jbW]qG/T`EJmkoT+fW-h,o[rOd)oNn6P2=CTdF(LUlW7b[`':!8PYA<L,<_K!Qd4$>c/lfIC1APF]KP1DaBXi7%4.e$[]KU;Z<[db]32%;q>L"]b>JZ[uV==1hB9*0-'#9;<UJ:9A#k3q:d?OD68Hn^W!\u#+g/bYBLAZRMZD0h>MM%_$IUNI'E$j\(?NWGP4B3u0_qSMQI"n=4?iVB/9ID:Og%=j<7bA@^)R9b3iD:0%hP1do%p#`.@(VkB)$2ELUM*<9Vrk%0LCtK[W9<E)&G$2U_1Ft7L)CcLP2`<EVa0&A%[Y7.ZH'R9if!jdcZr'8(FbLN,5Qqj!5Qqj^kn4j[E2oZab]!RT-B\\/\V2Xfj]Ngj6R/@D<X4^P*C6NEHZ]A=<B7]^iTko40+?10fd<OX->571\j`2]`cCAdG81rWJW:1PC]=AIr!hV7'kr+(nHXkZ[FFl47[\$92t)PF@rNAdP!B&(al$d8WJeVjK9]&kMG6S-Uq)sd036duDVJI9FH,!&U:LOC<@p/JSfQC#Y;FKK?F%2Re)V+ugY6!ZZ<K?7(0+7)'=@8]k\Dn:.<lI(,!Wr,iWL1j>)SHGR+N%)B8=LT_/S.MS/gRl3N%hQ;c.V8'W3Q`G.!XMlL+:j/TbI53XR@&WT$,QBQmLC>2Hr(B/TVD9oN.T8J>?"EJ09*"l#0TalHI&S#^<a]_fm.i]oa^,D@!\!&Aso"6sZ5;O_]!9(CeE]'J*:O.qL]^aPq7!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!%=S!!9X82Hrf`t_7p8jN4`^a_VJg+@><Jio$8ff66IN^iE5Y9_ObP^)u^1+i/PZ._i7WSn4hD",-?@27R,t#BRf^t+8R0RpMUDk=_W=&e+ESsdPrA(as;]Y:a2Wf(]Y&2q=ZHV`7_U5ic=r$.QD0fGZ/h[C86u`hcVI5h$dMe.ZPt3a!^@8p4Mj1a/pu^o>;/G>?t>d$gS2=!TO]]X;OT1;mhAc,928sSepAkmHsDh_7h>/nA^aPm7159;`$;e>J+sodOE!EP"BTu,Ba&Hj!1#e>5>B$$2%e=DnL"f)d(A#e00Z]fJ`p[;H+^QO9lrs4U!t2'u\a@:0j+3`C3kH3h4`KQV)8[<i4s.h<b+-e^_)73f1j*lHKbGrX't@dnnS'ZIZZ1X&rTKiEkk+:*RgWbb0T>h\eV.f<K]lpo!'=L)pVaa8RC"/Z5>@P&12aXr75u`&!-"e/X%"8HYFP^\B3GKp;T;"RRl)[76bF?A([#?^V!d+CG^V%L,FN%maIXm=#!7-AgZ1qYJZ*oR^iK0cWR!R07Rl(qS,5:Cg&4+[/XqAD4AID)@]qrr>3(QT;sO2gZ=trX(aFE9GF>F/p&%"PlHP*o`C_*^/GQrr<N$:](TX]t<5,Xf[Z$T+,"-gS@]LK4mS@JNtOs,iF!3:ZGa^q\eWZ>X,Sc`!2,pJPDZd&_[g.*_Mp!"]P;n!"M'tkJgQ_]I#EfU&Cf(ou>P\KNBInc/%u6?YB;#F]1r&Ij:cYQi%O>iI8JC6)8:f):\;WXs?tNfbulGN0B4BJdS]\!<#"2V>PB/d@kppn8*P-f<i`%`1HcV+Lec4$V8G/a^`*o)tVB8*UCh^i1j<g:[n*DeJcjlEuqVr8bNV0)CHhPkXm;EYc5BUJ,)%,&,uX^Iae;s8M2N07hBYm:P@!^pknUD<s]4TKgc.eNBJ8!es=eTm$jO)Umo&TTCDC>"b4oYeUR'<.eKoq5IAaf5!9jc*<t*_a&0-u8TA6d(FCnW^,Al5-m_1)#UFE2-`m)]@:c;551&s#3mou1Mb1Ai`=`>SrS!iqgll)/r"=T%5PFU:Q*$!<$qAh:0uPuLb`FR;Hh6p5[uB>%P9$"5)iTe$SgnIfO0VUDk)4F];Jk*iWF*,DocW:=H_-Yqch=R3#Jf.r0+M`_(V5X+/0\#,Au_RRal'e9!#(!8!BbF^MW$-Oi1k`$P3!>NiV'Mj7DF*nF%%<%oa479jstZ9#OS@`Ho^`Xh[[:Pi![:3C)3Tshii9F._a`X'+qcq!?'g'jE@^Wq"OYiplFE1_`Q0JlJD[kdNZAf0Js7(VjKkP_u,&%Qt*LRGB>3b?8iO;Q!>@X'.bJK(s8,lUp/:1k)\/;DUmLhb=&rdC/qT`QJF*=T>qJ%SeTYgB7$h<)H:eC2B)7F['=t#gOhOJL6Hd=L$'ZuaMiDmlne1jZtO<j#rdV3%79(S!*>J2DW6ltm3"-\m&B%qP]f%crr=%1I08C<r0Y:_ra6Ybrf4Ri^[P"Eq')9*rJ`W5!9lAKD=+ZGhhs7;A8A2OgCMTXJp'jT;i5GjX/)6[D1+p"8u,be7Yci(4q8+X2ak.)o^-&]U\cU#CRCr*Ym)r(=3O&'mdg+2WS<TH#Eh4L!;?0<jm^U8Y6F]a(`$3%i;6-b`rXD*X5KSbmB&#]J'(-c&,Ps[rr>WeW;cj74'QM#!0=l)lu-9'@@DG9Q73Vj\soJu&_mplH("VW\@rm+T`l9*35lT[[_1+l.<g3t;,+M+HC%/"'S!r16#VM3TK)!?\BjfNA,&(ST>BD(r%?hSn:T#E']p@89=,!V%KJIr#oFe:#UCLj+E]Hmg"]`=T098oDXj+N#=).JN"mkiN,aaNVu@"XU)d1Q[]t4ba)to)!TAKCTuZ'rj^2@b'u]o$'4A%(ls+O0nS4ft&uO[Q_j]l=GJ;e"-W2`l]A2a;B:J@BpV.\3+hrRZ22'ML:hJ4Te0RS=6g$\$?rc;fbIIKG389C4UQEtijWp-6p$.&!f-Mg2DuTeb&+M%H^8Lu2d^Q(&J)qrA+8+oKo[bC:U;]6-%HV_;@iOPBdONH8[5o13n;jR#rmdA8!!hKQQ[l4;-0b9F`R*/ko\lXjLkqnd&*NBBPd$(!_dGA.k]8uHTH=a3oIks-rr<RAddABM?^&]gm77i0j@^.?4iod@:6gV3FoMH`;##87!+/WRkkH[ArOBW'gpMY.qR$8&dHOu'G?YZ:Tu<1po$_Q:4lmC5Qa+2fT3K8oVtP%O[>LGj9Zm<nIQL3m&&U;t%fZOf(t=K-)F>b,[5<HnAcsSRStM@o#GN.(^'B%8n?9m%>uL:3)K"TAl$$nVMoAM'7KfKGUuOO@+S>E*rl`(IDr)6/!3fB$!9d-`62pofgn#1UGd?5P?Sh(-N)OrFNO"N'e)%bXUGC*blBr[pX^tBiRWTU>MGDQs#sp-!bBl1\[sa-mUq%.cT$?fCj0+19"6anhmtpB`m[!_E>K729WGjOoTB78)5j=f%5j=Fn81'5V'Y&k+,`3HY(s!pG^2X)PJre"jn99V]1'$^@bX)ub!\on"`-u10LX?&$j9oW#!+)r1!9bW@O"AQGGciO?0GA6T:lQ8328%rs/&&\[$]LRRj4_JPn1PZ.hu3cJVi(-h$q&s4<q#oHnk3W+'#tiOOc$DD,b/BbB9G!23`j&Ib[7X2XgGjMJ&GR%/^^DPk2\rU-nKqPh`*d*Jb`@X(M4Q8%"89\QW@'sM4BcnJt8-9c*OnDl7.s[Bgpb<^5r9o"VpfLH)S]!XEZC"ZaY+qh((u[QgRfa80.5akRDklNd`AN5N2?ek4k(Bl6WgYiCP8@Fn6N"pt2j1NQ&@8EX"NL!(c\,paA"rXM4liY3!,^Q7[C`'SSh`#!$aWgGg)I$KchP+8IYK"TJJRY)iS_Uh77X]L0V_%.c#.0!oUS_pMIm/k$4TeXTQPV"NUDHKbo\LGEc@7oAdQp>+/G-@!PZ_B'He;m'@ge]OX\NuJ?L/V>U)E1o`mai>7C>PP])D1"><>N4Cu"im?P)R\[jm(IaTOi8!o3s.4\0[D]q*Aa4:h>@Jc\$YoRi<ZQ&dPX3+Z#[+B:g'G\@tEF?,bF(\?6/nqg=o@!@/NR*RbB]`/%nKlm!t<Irr<:<m?,F(GcZB1@5+&W5M%,0pt;j#fgaKOaj"B2m3d@br/`j7,d47*m!mrg?Opb]N\*W63kQ$1@S*>\.7t+V\Jb>2g@]rPrWpo#*^@V:X_h90>:$jRaH3luNK'E/Y3%:8!Pumo`Gm!.`MK]Wm+LA)Xt?E2i0)AV*RHO#c.kt&8a(?0%$&P%HLid)1H54FT2$rj3.uAQ!+3a'\aL/Mr];'O``J0Hd_a0>$%"O)bt5s@W4-nlIIHA>o7Lbhl#U1srX([D'Y&:lpj&r4&7QlI8`G_sHBeWnl'#C3_9^k/_4MPAGAZ7GD[L4tIF[\))d-d8,Xu<3+]Gk4ntR3%A%d"lZP6SB?N@_iFElbHharg(0E;-?r`TtqXh6Q?o3O7_dj"elJrs7H/Kms4,>KB$4O^0!\@+VXSkjb,Y%jA[)!/-qb\_`TC=C/PUBs4aN,5NZm3LG0>$fCeOE4B^.rTcV4ceX$m1\E=J@7A!G`iH8]?C0Q!+W7=<A)+-QZC"I>`^b`,k)9R1O]K+dd_^.eSZs\Itmg-NLdE[jOGk')?BR58!/b8aZ(/#E]_m@Ib#:cpV4,&_eV?WFI!eWYXr;d""U@c+KGU\"EB'$9OH[\BpLR?HA(Su(@\];b2!XD&kVp"9mm4OO3[?'-H7^?.Tfq$iuUVlh!YCngtTJam'c;n[-&p">nQ&04T3".)>HS;[ltbZ]JlhTVTre.H`6X()0In^2]^*C"D!)4N/hW0&,uWJItiD.nO9X92.$l/)F;')@=n(/j,t^33!)DP-jd]FJd-M9afK9]pa@Y"l?=rW)rQaQX4b;`>GHXVEXm%l1kn`8_8]ZkDt]dtorS('eb"^k08AlQ\[9F_`m[Q.:G?At43VA]WD3XW-'!8SJBg.S!#(^9Ge>A=*(MQFW@Tm$)(o\]Wj_V&f'`7Y``8OO;SU<M$faasmfn.JnDo$@nSu($Y%9=jg"IQ_B5fVGOoPK),k7#HO:REP!5lji(&n8%hc9[V^ppDBr"MF0D-Oe08thC8DhG%M&\?Gpk?g\oeeV'?Heg:?i\o%i,Y$\7)[^C+DVgc$)"b#<`8`hP2rZrK%g.`M)P.O>\*fMO-TH24gK(c:?dR33P+,%sa3XbcnF>rMrrCG*eN`OU3p?PYrnP6tIO"Wnf>4qB*i#Oe?d>n.bA^?]UlgZP)3j5cM#_K\-^$!Grr@Xi=P8`Cpm4koZ2L?Q_\&MKhln7cF4V9Tig9A]Yd0&E^V`3(.nJ6:od!,+;urOjjpe#FHu<bHACo)ao?K4k_Xog>XtgZDV&RkV;-HSiZhW!ErH;Q2$?]?+2UA3JU5JoRl9'"Yh"Y=;mtmYDmA'/_R.o39AuN1:=i)s?Z$C5HjcAD/=<40"1QH]B<f-]\r-6Z^HX/R-rL1,UM='5'jde!k@1j:lh6Y3bF,lYGoZ\-@\X*Z`/*@X'*!S<GC6`9Gbp^GD>drg<P0p=u8t0k`:<*V/1ZD3KYDIRBf!48MKlVEMh+A%UEH9''N9>18Z7@DcQN[!-)9%"%i*BFEa6]5SD\;2qHlfrPm'TK[,Zbc4nsJJDca$+'NEBSiS=pf**=d/`m1f.5'ua\I@;#8d`ta>LEN@7j^3+-;)^sFk92-&Mmnf9-daqHGL%0fT:WNJ8g1*XYphOC/%oLd&[04"&BeAHiPmj_)8J)Rl)p'D>\K1VRp:g<?ip4qD_o&&VnD9"EX53#$NJ^t2Vcu"%<@qd<\4$RW/BU#'&?gJU\<d:YphXJ\\@L1mMLpJMN+:$Jh5$d1[sJ%B[_7sT]=lF<LUqWjOl.5j8^q-&>[$@bd*E:a.-hMH&&<g(/,Lf@"3/%lq!7G`=RcoVD_19&^6*:#DBUa1jfTWUb@C:dg`3I^"`oW]r<5W<"tq+:iph7CmVP'2D(Rp:_j=`V6JN5gp,k;-oC-[Ur+5BL8@@rRLMo%!@FpUa'pK.`W+_u'9!1oJ&2VdtlWN,SoFfo+!RRsG>WdHZ[9"6k#dh)G^4WUArN:S\pnQk._T9AOi;Wd'YH7D1Y9SX5"Cbc<,\9=a!Q;U\rpDl"c>d2#e>\brR&hqu9%]SOO!7s&me4+jg3\*Z\J69`RbaQ<i,@?lj#sSu[*(FYB=lts+L7"Qe88^*<4Gp/6\)Eqj:6-"c?aT7?eJ)fh\3Xgn[$.u+$Lfl8pq=(7bUhN[CLj]B6bL7D+>P&.S'5h)'i_*I0&;$2I.9=g2<$88rm\a_[E2K$<7.h1#%T#:G:Z(_H$)jo.5:TX?EBs3'o&eQH?S%1U[(kpNt\T.:"qqf_J=^g2Fsfg#)Lkf7#1DGN!trM"LXcAb%.!#p`?QZ:MlT@>o*,KmmIQk8eRepoXEYI!#/*i*4N^[bnEOX(hO2@nA!_QSYjGFaoZM8cd'E8\c5?O0!#rWph>e;oE,6\W#c]X3,<Zq&o\;M=Dl=\ZGL1^CYKnWCo^+J&?bjhBhYMm%aR\$L:Tuo/0P;p$d<AIUXUqcB(FKeU`r<*"i`;?=3R@C4@-!-Be9dPMm8#3`X1spXd"-W3Y(^!KK!J5fnj%&Z-7`P&l2qqLXUtC2f.\j01M%4aBq-3.!KFMro_fXP6Nn)`EuY=mB(peMQt`IIWYSHu!g#G%a&l[d_9&RSqcCI7YP.":G@2gSF_H6P)/=&'V\,1;C9,_]O\\hQu1%ME_UC)>-X^$=i8PgHoM78<G0W`,"s(goMG83:2kmJYJnQ_,r6`?&c]nXHLP&p:")8-180YkrAA"mH,cf1tQg2aa\-QNi(Km&)!.D=c-WuBPs5*A#Wf`&i88elW_-.cbb/NGQYjpmu"c#Us5gmlh=5CXKIc1Pu8bKhW`QL1s@kd&'LIC7Xa#J;S_dn17iDS0[)9#`6Nt$,&r8M>h:O!]!^!]5uW0ddW_tfn*I79*uT<-j4D4T:LEVAjfP?1d]Kq4p?`hum^[O?)_`5I;B$jc)='bei%GuJ!5j9<GgUmpHJ1ZhBb$rIlsNX@A;#R^2M8Z@gRS2ZNbdi..FR.e*A"Z/K2lL+6Fs=kQYfJqjaLP/]Cc\F\Phe^I/EePp]nff/GOqgrr>pca+j%?#bf`nNo@)lg/.nB@:3Ug@6k7`,ie!)9'j</I03aE0C8]=X6I>>dOoI@I-YD\er[8e'j8ng#b[B4ahZg9H37KI7<I/?>W$/^5A8[#ifpnGD%99%pXF)LI,8Lorl8=kpo/PsX'Z-WYMk/'7[KlQq%.:BY40VW-L?8e3Wjm=b@_[m%.XTUO2#,lLAJZCY-n90%/`]-nFPJWdTkG-aV>\RiZn8aPtt\`GI@\Uq?su^=2dtfn)4erY7o+>%:&1EIJ(AtCQhB$8Chqa!6h_nJ8b`DN8l95-G6G+KcB"9(b*j7q9cKSdXK<7CO<@?FL"J@m^6o=9W@oG>4t-krMG#FBcdOhddA[#.5&:ko15$K8tfgM<!"%JgZ9]Cc8kRbpF_7-dB*EhrK]SG!8f!5GJbN,8&4R&l^%D&pH%0./`[DMHBm8[$a;W1ei8bqaQQA063sc2kH/1.gb"H*ES/K8=u!q3^ESXsc;cI;S_KC:GAdE\IumR*i7i"u$M]84f>\mKr$(q7j"%kMp`98u-2s`d*7cgFL-Ve[bT0;+&-m]Lp$H+)f8b4`p^cBAL-HV>DrV:3gHM%,9[BQ\P6Q56->?"^``/lZ*9/ED7npMB.*Zg<cRa;ib+")V[o+YJP47;*V4F-!ddPF'Wu4N,Z/jdZ4skZ)rM?k_:PQ;BZhC5n#1O9/RGjNb<&0H]8;ND3c>q-KduiP7^M5ufhC4*N<RAAbU1ohV\!ebpTX\8k#+:iI!K!@D%E*-/[mOKp79heieYA*"mOiX_@\B^2\AgY9=1+e;QL=56e[*qBmdAcSHmR3ZoH/d9):8%\G)GS._tHo3`5;a(8.f!#d"3e1m7InJrrBB,m2+cC*U'+'DYur$pk%Mb8>`f(Q/a;M^2O-Ee[@NI</)CNj,=oQb)5i_Sem,qKu1]lGu:VrBu4R2eYC<fH98=qg(c)ba][?<aaY**3dc2IjkuVhL";m&^8k^#3MI/1/ZpC9,`<cIFD;WS7EZ?p!W(EWp`JG&SJUYQ@IS'l4@.sf:eaY^:ct]bR7UI"AiCibaN=V+Y=5BI4Z:2]dr%!j>1"rSDW#bW@$G55NIb,2*Phl>`jrDC':p-^>8rXA4C)]drKk89`]TT)`Mfh?^#*Vh.+>M>]<gYKqZ_:;g.+j^j42tu"j';o;6_3@Z7%*X!k=kRIK["PH2DICh@\1`;&6\GP?g-@Q+5e^=A$Li$NS=VBu)ola+<P8hsaEKJ_*tD>f!OeP1^kt>Bhg[.2_\Tn?ZWi8b]C*i7I>+n@RV5V`q`OFM>B%RNiBWeLhV=MDKia![9&<##6u/3$_SC;W'*39]$.WQ=!Do)AQa[;cW!YnUnS+Mb,O5QF>8`a\dH-g=GjT5MA'3*]3C'm7$O1`*+OC05e/o>FS!&HO[SL:jH,S=7[C?-53#@)<VmRYAs)]M^O@/-`VE7$._&b2!OCj7i;S=2F'h,h-)X:l1c6R%t_a[.s!_!C0]1_Vn/X7DnOml-Jrn)rr@\d&AC:+bZ\VPnETK9I_XBbC+XH!M!\eZYuO/J@n'U"pL=>Qnot2M&T3%WIb4QPnG`KDDZ1+%BJt0acf\V>>=tq/85m`VRRBsP=N1m\Oq1KA5/O&.6iJ7c,$B;6b.3L'?rLFEjat-E\WhBfk1stN)>b4f="OrTIr7INps[8%hgl``4rCu_<o6`aNo@)lg//0"[jkXD\thgYESt[o,/*GEJkMXik1UQnaTJOOj!:T*VkUoG#EdBLk.&WWADFFpQWdO46]kU'C@5c.Pah)c-gVH'Ii*D`_0Ys&]>Ji]A'_3U_]A@R(4D$o+^:*136j3K3'8*dg;h#.0_%*@hhJ_7LV,KkHZ*]#ip(l(%#G5Xi-`U9g`'7R>6>4Xi7GY>?;u/2#p'hZOo&:.3&nWh0)963Ssm'*6@G$jI"?q8BVLC]"&P_L-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ig!!-ii[!U5nkC5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Qqj!5Tg$Z~>endstream
-endobj
-% 'F2': class PDFType1Font
-4 0 obj
-% Font Helvetica-Bold
-<< /BaseFont /Helvetica-Bold
- /Encoding /WinAnsiEncoding
- /Name /F2
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER1': class PDFDictionary
-5 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (mailto:compatibility@android.com) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 55
- 626.125
- 145.135
- 637.375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER2': class LinkAnnotation
-6 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 55
- 747.2637
- 0 ]
- /Rect [ 70
- 564.9375
- 117.5275
- 576.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER3': class LinkAnnotation
-7 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 55
- 458.5763
- 0 ]
- /Rect [ 70
- 553.6875
- 114.1825
- 564.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER4': class LinkAnnotation
-8 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 55
- 441.1388
- 0 ]
- /Rect [ 70
- 542.4375
- 107.935
- 553.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER5': class LinkAnnotation
-9 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 55
- 357.86
- 0 ]
- /Rect [ 85
- 529.1875
- 190.045
- 540.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER6': class LinkAnnotation
-10 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 55
- 216.735
- 0 ]
- /Rect [ 85
- 517.9375
- 172.12
- 529.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER7': class LinkAnnotation
-11 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 55
- 140.4275
- 0 ]
- /Rect [ 100
- 504.6875
- 161.6875
- 515.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER8': class LinkAnnotation
-12 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 144 0 R
- /XYZ
- 55
- 521.615
- 0 ]
- /Rect [ 100
- 493.4375
- 178.3675
- 504.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER9': class LinkAnnotation
-13 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 144 0 R
- /XYZ
- 55
- 521.615
- 0 ]
- /Rect [ 100
- 482.1875
- 184.6225
- 493.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER10': class LinkAnnotation
-14 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 144 0 R
- /XYZ
- 55
- 457.615
- 0 ]
- /Rect [ 115
- 468.9375
- 221.725
- 480.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER11': class LinkAnnotation
-15 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 144 0 R
- /XYZ
- 55
- 91.615
- 0 ]
- /Rect [ 115
- 457.6875
- 195.46
- 468.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER12': class LinkAnnotation
-16 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 145 0 R
- /XYZ
- 55
- 677.115
- 0 ]
- /Rect [ 115
- 446.4375
- 206.7175
- 457.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER13': class LinkAnnotation
-17 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 145 0 R
- /XYZ
- 55
- 581.115
- 0 ]
- /Rect [ 115
- 435.1875
- 200.47
- 446.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER14': class LinkAnnotation
-18 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 145 0 R
- /XYZ
- 55
- 516.2975
- 0 ]
- /Rect [ 85
- 421.9375
- 180.0325
- 433.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER15': class LinkAnnotation
-19 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 158 0 R
- /XYZ
- 55
- 710.0475
- 0 ]
- /Rect [ 85
- 410.6875
- 160.0225
- 421.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER16': class LinkAnnotation
-20 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 158 0 R
- /XYZ
- 55
- 622.49
- 0 ]
- /Rect [ 100
- 397.4375
- 197.53
- 408.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER17': class LinkAnnotation
-21 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 158 0 R
- /XYZ
- 55
- 249.49
- 0 ]
- /Rect [ 100
- 386.1875
- 193.36
- 397.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER18': class LinkAnnotation
-22 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 162 0 R
- /XYZ
- 55
- 698.7975
- 0 ]
- /Rect [ 85
- 372.9375
- 194.2075
- 384.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER19': class LinkAnnotation
-23 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 162 0 R
- /XYZ
- 55
- 531.1725
- 0 ]
- /Rect [ 85
- 361.6875
- 157.5325
- 372.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER20': class LinkAnnotation
-24 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 162 0 R
- /XYZ
- 55
- 105.5475
- 0 ]
- /Rect [ 85
- 350.4375
- 196.285
- 361.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER21': class LinkAnnotation
-25 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 172 0 R
- /XYZ
- 55
- 678.0475
- 0 ]
- /Rect [ 85
- 339.1875
- 191.7025
- 350.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER22': class LinkAnnotation
-26 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 172 0 R
- /XYZ
- 55
- 612.99
- 0 ]
- /Rect [ 100
- 325.9375
- 147.94
- 337.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER23': class LinkAnnotation
-27 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 172 0 R
- /XYZ
- 55
- 494.49
- 0 ]
- /Rect [ 100
- 314.6875
- 161.695
- 325.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER24': class LinkAnnotation
-28 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 172 0 R
- /XYZ
- 55
- 387.24
- 0 ]
- /Rect [ 100
- 303.4375
- 144.61
- 314.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER25': class LinkAnnotation
-29 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 172 0 R
- /XYZ
- 55
- 214.24
- 0 ]
- /Rect [ 100
- 292.1875
- 143.3575
- 303.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER26': class LinkAnnotation
-30 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 172 0 R
- /XYZ
- 55
- 161.49
- 0 ]
- /Rect [ 100
- 280.9375
- 174.1975
- 292.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER27': class LinkAnnotation
-31 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 177 0 R
- /XYZ
- 55
- 632.6387
- 0 ]
- /Rect [ 70
- 267.6875
- 197.1325
- 278.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER28': class LinkAnnotation
-32 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 177 0 R
- /XYZ
- 55
- 528.2012
- 0 ]
- /Rect [ 70
- 256.4375
- 159.6025
- 267.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER29': class LinkAnnotation
-33 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 177 0 R
- /XYZ
- 55
- 444.9225
- 0 ]
- /Rect [ 85
- 243.1875
- 147.5275
- 254.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER30': class LinkAnnotation
-34 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 177 0 R
- /XYZ
- 55
- 292.5475
- 0 ]
- /Rect [ 85
- 231.9375
- 160.45
- 243.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER31': class LinkAnnotation
-35 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 178 0 R
- /XYZ
- 55
- 394.7975
- 0 ]
- /Rect [ 85
- 220.6875
- 160.0375
- 231.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER32': class LinkAnnotation
-36 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 179 0 R
- /XYZ
- 55
- 521.9116
- 0 ]
- /Rect [ 85
- 209.4375
- 155.035
- 220.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER33': class LinkAnnotation
-37 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 179 0 R
- /XYZ
- 55
- 303.2866
- 0 ]
- /Rect [ 85
- 198.1875
- 147.1225
- 209.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER34': class LinkAnnotation
-38 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 184 0 R
- /XYZ
- 55
- 517.3887
- 0 ]
- /Rect [ 70
- 184.9375
- 174.1975
- 196.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER35': class LinkAnnotation
-39 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 184 0 R
- /XYZ
- 55
- 275.7013
- 0 ]
- /Rect [ 70
- 173.6875
- 155.8525
- 184.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER36': class LinkAnnotation
-40 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 188 0 R
- /XYZ
- 55
- 657.2975
- 0 ]
- /Rect [ 85
- 160.4375
- 170.8675
- 171.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER37': class LinkAnnotation
-41 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 188 0 R
- /XYZ
- 55
- 580.99
- 0 ]
- /Rect [ 100
- 147.1875
- 195.0475
- 158.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER38': class LinkAnnotation
-42 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 188 0 R
- /XYZ
- 55
- 279.49
- 0 ]
- /Rect [ 100
- 135.9375
- 171.685
- 147.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER39': class LinkAnnotation
-43 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 188 0 R
- /XYZ
- 55
- 237.99
- 0 ]
- /Rect [ 100
- 124.6875
- 205.0525
- 135.9375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER40': class LinkAnnotation
-44 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 188 0 R
- /XYZ
- 55
- 173.99
- 0 ]
- /Rect [ 100
- 113.4375
- 183.3775
- 124.6875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER41': class LinkAnnotation
-45 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 191 0 R
- /XYZ
- 55
- 710.865
- 0 ]
- /Rect [ 100
- 102.1875
- 201.7075
- 113.4375 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER42': class LinkAnnotation
-46 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 191 0 R
- /XYZ
- 55
- 504.7975
- 0 ]
- /Rect [ 85
- 88.9375
- 145.03
- 100.1875 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page1': class PDFPage
-47 0 obj
-% Page dictionary
-<< /Annots [ 5 0 R
- 6 0 R
- 7 0 R
- 8 0 R
- 9 0 R
- 10 0 R
- 11 0 R
- 12 0 R
- 13 0 R
- 14 0 R
- 15 0 R
- 16 0 R
- 17 0 R
- 18 0 R
- 19 0 R
- 20 0 R
- 21 0 R
- 22 0 R
- 23 0 R
- 24 0 R
- 25 0 R
- 26 0 R
- 27 0 R
- 28 0 R
- 29 0 R
- 30 0 R
- 31 0 R
- 32 0 R
- 33 0 R
- 34 0 R
- 35 0 R
- 36 0 R
- 37 0 R
- 38 0 R
- 39 0 R
- 40 0 R
- 41 0 R
- 42 0 R
- 43 0 R
- 44 0 R
- 45 0 R
- 46 0 R ]
- /Contents 321 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ]
- /XObject << /FormXob.294f5b945901682cd975a2767b600f63 3 0 R >> >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER43': class LinkAnnotation
-48 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 191 0 R
- /XYZ
- 55
- 450.99
- 0 ]
- /Rect [ 100
- 730.6775
- 152.95
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER44': class LinkAnnotation
-49 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 191 0 R
- /XYZ
- 55
- 313.24
- 0 ]
- /Rect [ 100
- 719.4275
- 192.9625
- 730.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER45': class LinkAnnotation
-50 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 191 0 R
- /XYZ
- 55
- 213.24
- 0 ]
- /Rect [ 100
- 708.1775
- 173.785
- 719.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER46': class LinkAnnotation
-51 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 191 0 R
- /XYZ
- 55
- 117.24
- 0 ]
- /Rect [ 100
- 696.9275
- 182.545
- 708.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER47': class LinkAnnotation
-52 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 670.2975
- 0 ]
- /Rect [ 85
- 683.6775
- 127.105
- 694.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER48': class LinkAnnotation
-53 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 428.24
- 0 ]
- /Rect [ 100
- 670.4275
- 169.195
- 681.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER49': class LinkAnnotation
-54 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 312.99
- 0 ]
- /Rect [ 100
- 659.1775
- 169.2025
- 670.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER50': class LinkAnnotation
-55 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 197.74
- 0 ]
- /Rect [ 100
- 647.9275
- 136.69
- 659.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER51': class LinkAnnotation
-56 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 196 0 R
- /XYZ
- 55
- 144.99
- 0 ]
- /Rect [ 100
- 636.6775
- 157.1125
- 647.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER52': class LinkAnnotation
-57 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 198 0 R
- /XYZ
- 55
- 708.865
- 0 ]
- /Rect [ 100
- 625.4275
- 155.86
- 636.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER53': class LinkAnnotation
-58 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 198 0 R
- /XYZ
- 55
- 633.365
- 0 ]
- /Rect [ 100
- 614.1775
- 165.8575
- 625.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER54': class LinkAnnotation
-59 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 198 0 R
- /XYZ
- 55
- 569.365
- 0 ]
- /Rect [ 100
- 602.9275
- 159.6175
- 614.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER55': class LinkAnnotation
-60 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 198 0 R
- /XYZ
- 55
- 527.865
- 0 ]
- /Rect [ 100
- 591.6775
- 177.5275
- 602.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER56': class LinkAnnotation
-61 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 198 0 R
- /XYZ
- 55
- 451.7975
- 0 ]
- /Rect [ 85
- 578.4275
- 158.365
- 589.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER57': class LinkAnnotation
-62 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 198 0 R
- /XYZ
- 55
- 386.74
- 0 ]
- /Rect [ 100
- 565.1775
- 155.8675
- 576.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER58': class LinkAnnotation
-63 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 198 0 R
- /XYZ
- 55
- 245.74
- 0 ]
- /Rect [ 100
- 553.9275
- 185.035
- 565.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER59': class LinkAnnotation
-64 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 198 0 R
- /XYZ
- 55
- 192.99
- 0 ]
- /Rect [ 100
- 542.6775
- 152.5375
- 553.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER60': class LinkAnnotation
-65 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 210 0 R
- /XYZ
- 55
- 742.865
- 0 ]
- /Rect [ 100
- 531.4275
- 213.7825
- 542.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER61': class LinkAnnotation
-66 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 210 0 R
- /XYZ
- 66.25
- 193.615
- 0 ]
- /Rect [ 100
- 520.1775
- 215.86
- 531.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER62': class LinkAnnotation
-67 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 213 0 R
- /XYZ
- 66.25
- 745.7975
- 0 ]
- /Rect [ 85
- 506.9275
- 130.015
- 518.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER63': class LinkAnnotation
-68 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 213 0 R
- /XYZ
- 66.25
- 658.24
- 0 ]
- /Rect [ 100
- 493.6775
- 190.8625
- 504.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER64': class LinkAnnotation
-69 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 213 0 R
- /XYZ
- 66.25
- 522.49
- 0 ]
- /Rect [ 100
- 482.4275
- 192.115
- 493.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER65': class LinkAnnotation
-70 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 213 0 R
- /XYZ
- 66.25
- 286.74
- 0 ]
- /Rect [ 100
- 471.1775
- 193.375
- 482.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER66': class LinkAnnotation
-71 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 214 0 R
- /XYZ
- 66.25
- 633.865
- 0 ]
- /Rect [ 100
- 459.9275
- 186.2875
- 471.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER67': class LinkAnnotation
-72 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 214 0 R
- /XYZ
- 66.25
- 569.0475
- 0 ]
- /Rect [ 85
- 446.6775
- 169.6225
- 457.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER68': class LinkAnnotation
-73 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 214 0 R
- /XYZ
- 66.25
- 503.99
- 0 ]
- /Rect [ 100
- 433.4275
- 223.375
- 444.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER69': class LinkAnnotation
-74 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 214 0 R
- /XYZ
- 66.25
- 332.74
- 0 ]
- /Rect [ 100
- 422.1775
- 212.1475
- 433.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER70': class LinkAnnotation
-75 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 218 0 R
- /XYZ
- 66.25
- 745.7975
- 0 ]
- /Rect [ 85
- 408.9275
- 115.015
- 420.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER71': class LinkAnnotation
-76 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 218 0 R
- /XYZ
- 66.25
- 605.7637
- 0 ]
- /Rect [ 70
- 395.6775
- 166.2775
- 406.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER72': class LinkAnnotation
-77 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 218 0 R
- /XYZ
- 66.25
- 372.0763
- 0 ]
- /Rect [ 70
- 384.4275
- 172.945
- 395.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER73': class LinkAnnotation
-78 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 218 0 R
- /XYZ
- 66.25
- 277.5475
- 0 ]
- /Rect [ 85
- 371.1775
- 140.4325
- 382.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER74': class LinkAnnotation
-79 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 218 0 R
- /XYZ
- 66.25
- 200.4225
- 0 ]
- /Rect [ 85
- 359.9275
- 186.295
- 371.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER75': class LinkAnnotation
-80 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 218 0 R
- /XYZ
- 66.25
- 123.2975
- 0 ]
- /Rect [ 85
- 348.6775
- 178.3525
- 359.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER76': class LinkAnnotation
-81 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 221 0 R
- /XYZ
- 66.25
- 710.0475
- 0 ]
- /Rect [ 85
- 337.4275
- 212.56
- 348.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER77': class LinkAnnotation
-82 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 221 0 R
- /XYZ
- 66.25
- 325.5138
- 0 ]
- /Rect [ 70
- 324.1775
- 183.79
- 335.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER78': class LinkAnnotation
-83 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 221 0 R
- /XYZ
- 66.25
- 210.235
- 0 ]
- /Rect [ 85
- 310.9275
- 182.5375
- 322.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER79': class LinkAnnotation
-84 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 225 0 R
- /XYZ
- 66.25
- 698.7975
- 0 ]
- /Rect [ 85
- 299.6775
- 144.6025
- 310.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER80': class LinkAnnotation
-85 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 225 0 R
- /XYZ
- 66.25
- 535.1725
- 0 ]
- /Rect [ 85
- 288.4275
- 180.88
- 299.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER81': class LinkAnnotation
-86 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 225 0 R
- /XYZ
- 66.25
- 425.3888
- 0 ]
- /Rect [ 70
- 275.1775
- 148.375
- 286.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER82': class LinkAnnotation
-87 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 225 0 R
- /XYZ
- 66.25
- 198.4513
- 0 ]
- /Rect [ 70
- 263.9275
- 119.605
- 275.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER83': class LinkAnnotation
-88 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 226 0 R
- /XYZ
- 66.25
- 747.2637
- 0 ]
- /Rect [ 70
- 252.6775
- 200.065
- 263.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page2': class PDFPage
-89 0 obj
-% Page dictionary
-<< /Annots [ 48 0 R
- 49 0 R
- 50 0 R
- 51 0 R
- 52 0 R
- 53 0 R
- 54 0 R
- 55 0 R
- 56 0 R
- 57 0 R
- 58 0 R
- 59 0 R
- 60 0 R
- 61 0 R
- 62 0 R
- 63 0 R
- 64 0 R
- 65 0 R
- 66 0 R
- 67 0 R
- 68 0 R
- 69 0 R
- 70 0 R
- 71 0 R
- 72 0 R
- 73 0 R
- 74 0 R
- 75 0 R
- 76 0 R
- 77 0 R
- 78 0 R
- 79 0 R
- 80 0 R
- 81 0 R
- 82 0 R
- 83 0 R
- 84 0 R
- 85 0 R
- 86 0 R
- 87 0 R
- 88 0 R ]
- /Contents 322 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER84': class LinkAnnotation
-90 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 419.365
- 0 ]
- /Rect [ 125.8675
- 663.865
- 170.05
- 675.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER85': class LinkAnnotation
-91 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 221 0 R
- /XYZ
- 66.25
- 325.5138
- 0 ]
- /Rect [ 237.16
- 579.115
- 272.5975
- 590.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER86': class LinkAnnotation
-92 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 392.865
- 0 ]
- /Rect [ 401.8075
- 567.865
- 445.99
- 579.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER87': class PDFDictionary
-93 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.ietf.org/rfc/rfc2119.txt) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 189.625
- 407.1775
- 297.1675
- 418.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER88': class PDFDictionary
-94 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/compatibility/index.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 205.45
- 393.9275
- 369.6775
- 405.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER89': class PDFDictionary
-95 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 167.965
- 380.6775
- 254.6725
- 391.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER90': class PDFDictionary
-96 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/packages.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 184.2325
- 367.4275
- 363.4825
- 378.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER91': class PDFDictionary
-97 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/Manifest.permission.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 172.9525
- 354.1775
- 413.8825
- 365.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER92': class PDFDictionary
-98 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/os/Build.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 157.96
- 340.9275
- 358.885
- 352.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER93': class PDFDictionary
-99 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/compatibility/2.3/versions.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 186.715
- 327.6775
- 373.45
- 338.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER94': class PDFDictionary
-100 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/webkit/WebView.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 171.7
- 314.4275
- 400.96
- 325.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER95': class PDFDictionary
-101 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.whatwg.org/specs/web-apps/current-work/multipage/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 95.005
- 301.1775
- 307.1575
- 312.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER96': class PDFDictionary
-102 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://dev.w3.org/html5/spec/Overview.html#offline) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 159.955
- 287.9275
- 327.52
- 299.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER97': class PDFDictionary
-103 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://dev.w3.org/html5/spec/Overview.html#video) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 131.2
- 274.6775
- 296.68
- 285.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER98': class PDFDictionary
-104 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.w3.org/TR/geolocation-API/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 172.045
- 261.4275
- 300.8425
- 272.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER99': class PDFDictionary
-105 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.w3.org/TR/webdatabase/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 178.3
- 248.1775
- 298.765
- 259.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER100': class PDFDictionary
-106 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.w3.org/TR/IndexedDB/) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 170.7925
- 234.9275
- 283.75
- 246.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER101': class PDFDictionary
-107 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/ui_guidelines/widget_design.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 114.5275
- 208.4275
- 374.23
- 219.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER102': class PDFDictionary
-108 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/ui/notifiers/notifications.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 114.94
- 195.1775
- 346.2925
- 206.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER103': class PDFDictionary
-109 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://code.google.com/android/reference/available-resources.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 148.705
- 181.9275
- 368.8
- 193.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER104': class PDFDictionary
-110 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/ui_guidelines/icon_design.html#statusbarstructure) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 162.8875
- 168.6775
- 477.1975
- 179.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER105': class PDFDictionary
-111 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/app/SearchManager.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 129.535
- 155.4275
- 371.7325
- 166.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER106': class PDFDictionary
-112 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/widget/Toast.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 96.6025
- 142.1775
- 313.3675
- 153.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER107': class PDFDictionary
-113 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/resources/articles/live-wallpapers.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 127.4425
- 128.9275
- 351.265
- 140.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER108': class PDFDictionary
-114 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/developing/tools/index.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 245.845
- 115.6775
- 453.865
- 126.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER109': class PDFDictionary
-115 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/fundamentals.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 164.1325
- 102.4275
- 364.645
- 113.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER110': class PDFDictionary
-116 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/manifest/manifest-intro.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 117.8575
- 89.1775
- 349.2025
- 100.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page3': class PDFPage
-117 0 obj
-% Page dictionary
-<< /Annots [ 90 0 R
- 91 0 R
- 92 0 R
- 93 0 R
- 94 0 R
- 95 0 R
- 96 0 R
- 97 0 R
- 98 0 R
- 99 0 R
- 100 0 R
- 101 0 R
- 102 0 R
- 103 0 R
- 104 0 R
- 105 0 R
- 106 0 R
- 107 0 R
- 108 0 R
- 109 0 R
- 110 0 R
- 111 0 R
- 112 0 R
- 113 0 R
- 114 0 R
- 115 0 R
- 116 0 R ]
- /Contents 323 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER111': class PDFDictionary
-118 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/developing/tools/monkey.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 138.7075
- 730.6775
- 355.06
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER112': class PDFDictionary
-119 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/content/pm/PackageManager.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 179.965
- 717.4275
- 452.1775
- 728.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER113': class PDFDictionary
-120 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/practices/screens_support.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 167.8825
- 704.1775
- 389.23
- 715.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER114': class PDFDictionary
-121 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/util/DisplayMetrics.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 161.6125
- 690.9275
- 396.28
- 702.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER115': class PDFDictionary
-122 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/content/res/Configuration.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 184.9825
- 677.6775
- 443.02
- 688.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER116': class PDFDictionary
-123 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/hardware/SensorEvent.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 157.0525
- 664.4275
- 407.5825
- 675.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER117': class PDFDictionary
-124 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/bluetooth/package-summary.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 119.9575
- 651.1775
- 388.825
- 662.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER118': class PDFDictionary
-125 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://source.android.com/compatibility/ndef-push-protocol.pdf) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 143.2825
- 637.9275
- 348.37
- 649.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER119': class PDFDictionary
-126 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.nxp.com/documents/data_sheet/MF1S503x.pdf) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 142.03
- 624.6775
- 336.2875
- 635.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER120': class PDFDictionary
-127 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.nxp.com/documents/data_sheet/MF1S703x.pdf) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 142.03
- 611.4275
- 336.2875
- 622.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER121': class PDFDictionary
-128 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.nxp.com/documents/data_sheet/MF0ICU1.pdf) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 136.6
- 598.1775
- 326.68
- 609.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER122': class PDFDictionary
-129 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.nxp.com/documents/short_data_sheet/MF0ICU2_SDS.pdf) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 136.6
- 584.9275
- 367.1125
- 596.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER123': class PDFDictionary
-130 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.nxp.com/documents/application_note/AN130511.pdf) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 139.9525
- 571.6775
- 350.89
- 582.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER124': class PDFDictionary
-131 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://www.nxp.com/documents/application_note/AN130411.pdf) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 139.9525
- 558.4275
- 350.89
- 569.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER125': class PDFDictionary
-132 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/hardware/Camera.html#setDisplayOrientation\(int\)) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 152.0425
- 545.1775
- 474.6625
- 556.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER126': class PDFDictionary
-133 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/reference/android/hardware/Camera.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 161.2075
- 531.9275
- 395.47
- 543.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER127': class PDFDictionary
-134 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://developer.android.com/guide/topics/security/security.html) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 220.3975
- 518.6775
- 429.6475
- 529.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER128': class PDFDictionary
-135 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (http://code.google.com/p/apps-for-android) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 129.955
- 505.4275
- 269.1925
- 516.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER129': class LinkAnnotation
-136 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 379.615
- 0 ]
- /Rect [ 460.615
- 290.115
- 504.7975
- 301.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER130': class LinkAnnotation
-137 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 366.365
- 0 ]
- /Rect [ 470.995
- 107.49
- 515.1775
- 118.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page4': class PDFPage
-138 0 obj
-% Page dictionary
-<< /Annots [ 118 0 R
- 119 0 R
- 120 0 R
- 121 0 R
- 122 0 R
- 123 0 R
- 124 0 R
- 125 0 R
- 126 0 R
- 127 0 R
- 128 0 R
- 129 0 R
- 130 0 R
- 131 0 R
- 132 0 R
- 133 0 R
- 134 0 R
- 135 0 R
- 136 0 R
- 137 0 R ]
- /Contents 324 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'F3': class PDFType1Font
-139 0 obj
-% Font Courier
-<< /BaseFont /Courier
- /Encoding /WinAnsiEncoding
- /Name /F3
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER131': class LinkAnnotation
-140 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 353.115
- 0 ]
- /Rect [ 336.2725
- 709.9275
- 380.455
- 721.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'F4': class PDFType1Font
-141 0 obj
-% Font Times-Roman
-<< /BaseFont /Times-Roman
- /Encoding /WinAnsiEncoding
- /Name /F4
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER132': class LinkAnnotation
-142 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 339.865
- 0 ]
- /Rect [ 350.19
- 633.9275
- 394.3725
- 645.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page5': class PDFPage
-143 0 obj
-% Page dictionary
-<< /Annots [ 140 0 R
- 142 0 R ]
- /Contents 325 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page6': class PDFPage
-144 0 obj
-% Page dictionary
-<< /Contents 326 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page7': class PDFPage
-145 0 obj
-% Page dictionary
-<< /Contents 327 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER133': class LinkAnnotation
-146 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 326.615
- 0 ]
- /Rect [ 381.61
- 664.8025
- 425.7925
- 676.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER134': class LinkAnnotation
-147 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 313.365
- 0 ]
- /Rect [ 307.5925
- 391.8025
- 351.775
- 403.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER135': class LinkAnnotation
-148 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 300.115
- 0 ]
- /Rect [ 183.8125
- 359.8025
- 232.165
- 371.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER136': class LinkAnnotation
-149 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 286.865
- 0 ]
- /Rect [ 122.125
- 346.5525
- 170.4775
- 357.8025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER137': class LinkAnnotation
-150 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 273.615
- 0 ]
- /Rect [ 108.775
- 333.3025
- 157.1275
- 344.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER138': class LinkAnnotation
-151 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 260.365
- 0 ]
- /Rect [ 343.435
- 312.5525
- 391.7875
- 323.8025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'F5': class PDFType1Font
-152 0 obj
-% Font Helvetica-Oblique
-<< /BaseFont /Helvetica-Oblique
- /Encoding /WinAnsiEncoding
- /Name /F5
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER139': class LinkAnnotation
-153 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 247.115
- 0 ]
- /Rect [ 110.4475
- 301.3025
- 158.8
- 312.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER140': class LinkAnnotation
-154 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 313.365
- 0 ]
- /Rect [ 160.4575
- 141.3025
- 204.64
- 152.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER141': class LinkAnnotation
-155 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 300.115
- 0 ]
- /Rect [ 183.8125
- 109.3025
- 232.165
- 120.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER142': class LinkAnnotation
-156 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 286.865
- 0 ]
- /Rect [ 122.125
- 96.0525
- 170.4775
- 107.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER143': class LinkAnnotation
-157 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 273.615
- 0 ]
- /Rect [ 108.775
- 82.8025
- 157.1275
- 94.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page8': class PDFPage
-158 0 obj
-% Page dictionary
-<< /Annots [ 146 0 R
- 147 0 R
- 148 0 R
- 149 0 R
- 150 0 R
- 151 0 R
- 153 0 R
- 154 0 R
- 155 0 R
- 156 0 R
- 157 0 R ]
- /Contents 328 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER144': class LinkAnnotation
-159 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 260.365
- 0 ]
- /Rect [ 343.435
- 730.6775
- 391.7875
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER145': class LinkAnnotation
-160 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 247.115
- 0 ]
- /Rect [ 110.4475
- 719.4275
- 158.8
- 730.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER146': class LinkAnnotation
-161 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 392.865
- 0 ]
- /Rect [ 125.4475
- 642.3025
- 169.63
- 653.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page9': class PDFPage
-162 0 obj
-% Page dictionary
-<< /Annots [ 159 0 R
- 160 0 R
- 161 0 R ]
- /Contents 329 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER147': class LinkAnnotation
-163 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 233.865
- 0 ]
- /Rect [ 500.1475
- 730.6775
- 548.5
- 741.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER148': class LinkAnnotation
-164 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 220.615
- 0 ]
- /Rect [ 515.1475
- 580.0525
- 553.075
- 591.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER149': class LinkAnnotation
-165 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 220.615
- 0 ]
- /Rect [ 55
- 568.8025
- 63.34
- 580.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER150': class LinkAnnotation
-166 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 207.365
- 0 ]
- /Rect [ 313.045
- 461.5525
- 361.3975
- 472.8025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER151': class LinkAnnotation
-167 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 194.115
- 0 ]
- /Rect [ 448.06
- 429.5525
- 496.4125
- 440.8025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER152': class LinkAnnotation
-168 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 180.865
- 0 ]
- /Rect [ 124.615
- 418.3025
- 172.9675
- 429.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER153': class LinkAnnotation
-169 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 167.615
- 0 ]
- /Rect [ 132.535
- 354.3025
- 180.8875
- 365.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER154': class LinkAnnotation
-170 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 154.365
- 0 ]
- /Rect [ 217.9075
- 181.3025
- 266.26
- 192.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER155': class LinkAnnotation
-171 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 141.115
- 0 ]
- /Rect [ 73.7575
- 117.3025
- 122.11
- 128.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page10': class PDFPage
-172 0 obj
-% Page dictionary
-<< /Annots [ 163 0 R
- 164 0 R
- 165 0 R
- 166 0 R
- 167 0 R
- 168 0 R
- 169 0 R
- 170 0 R
- 171 0 R ]
- /Contents 330 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER156': class LinkAnnotation
-173 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 127.865
- 0 ]
- /Rect [ 499.5925
- 581.24
- 547.945
- 592.49 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER157': class LinkAnnotation
-174 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 114.615
- 0 ]
- /Rect [ 257.9875
- 560.49
- 306.34
- 571.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER158': class LinkAnnotation
-175 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 101.365
- 0 ]
- /Rect [ 373.0375
- 560.49
- 421.39
- 571.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER159': class LinkAnnotation
-176 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 233.865
- 0 ]
- /Rect [ 493.5025
- 560.49
- 541.855
- 571.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page11': class PDFPage
-177 0 obj
-% Page dictionary
-<< /Annots [ 173 0 R
- 174 0 R
- 175 0 R
- 176 0 R ]
- /Contents 331 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page12': class PDFPage
-178 0 obj
-% Page dictionary
-<< /Contents 332 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page13': class PDFPage
-179 0 obj
-% Page dictionary
-<< /Contents 333 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER160': class LinkAnnotation
-180 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 378.895
- 538.4275
- 427.2475
- 549.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER161': class LinkAnnotation
-181 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 127.865
- 0 ]
- /Rect [ 207.1
- 433.99
- 255.4525
- 445.24 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER162': class LinkAnnotation
-182 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 69.925
- 127.865
- 0 ]
- /Rect [ 239.6275
- 398.24
- 287.98
- 409.49 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER163': class LinkAnnotation
-183 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 742.865
- 0 ]
- /Rect [ 98.3425
- 362.49
- 146.695
- 373.74 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page14': class PDFPage
-184 0 obj
-% Page dictionary
-<< /Annots [ 180 0 R
- 181 0 R
- 182 0 R
- 183 0 R ]
- /Contents 334 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER164': class LinkAnnotation
-185 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 392.7925
- 666.6775
- 441.145
- 677.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER165': class LinkAnnotation
-186 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 716.365
- 0 ]
- /Rect [ 258.0025
- 600.8025
- 306.355
- 612.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER166': class LinkAnnotation
-187 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 703.115
- 0 ]
- /Rect [ 462.835
- 246.5525
- 511.1875
- 257.8025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page15': class PDFPage
-188 0 obj
-% Page dictionary
-<< /Annots [ 185 0 R
- 186 0 R
- 187 0 R ]
- /Contents 335 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER167': class LinkAnnotation
-189 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 689.865
- 0 ]
- /Rect [ 259.42
- 321.8025
- 307.7725
- 333.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER168': class LinkAnnotation
-190 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 689.865
- 0 ]
- /Rect [ 381.79
- 246.3025
- 430.1425
- 257.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page16': class PDFPage
-191 0 obj
-% Page dictionary
-<< /Annots [ 189 0 R
- 190 0 R ]
- /Contents 336 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER169': class LinkAnnotation
-192 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 689.865
- 0 ]
- /Rect [ 304.7875
- 704.1775
- 353.14
- 715.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER170': class LinkAnnotation
-193 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 468.19
- 581.8025
- 516.5425
- 593.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER171': class LinkAnnotation
-194 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 676.615
- 0 ]
- /Rect [ 382.21
- 361.3025
- 430.5625
- 372.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER172': class LinkAnnotation
-195 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 676.615
- 0 ]
- /Rect [ 382.21
- 246.0525
- 430.5625
- 257.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page17': class PDFPage
-196 0 obj
-% Page dictionary
-<< /Annots [ 192 0 R
- 193 0 R
- 194 0 R
- 195 0 R ]
- /Contents 337 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER173': class LinkAnnotation
-197 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 663.365
- 0 ]
- /Rect [ 297.6025
- 148.8025
- 345.955
- 160.0525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page18': class PDFPage
-198 0 obj
-% Page dictionary
-<< /Annots [ 197 0 R ]
- /Contents 338 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER174': class LinkAnnotation
-199 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 68.335
- 666.6775
- 116.6875
- 677.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER175': class LinkAnnotation
-200 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 650.115
- 0 ]
- /Rect [ 162.1075
- 483.1775
- 210.46
- 494.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER176': class LinkAnnotation
-201 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 636.865
- 0 ]
- /Rect [ 194.605
- 394.4275
- 242.9575
- 405.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER177': class LinkAnnotation
-202 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 623.615
- 0 ]
- /Rect [ 289.645
- 394.4275
- 337.9975
- 405.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER178': class LinkAnnotation
-203 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 610.365
- 0 ]
- /Rect [ 195.85
- 381.1775
- 244.2025
- 392.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER179': class LinkAnnotation
-204 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 597.115
- 0 ]
- /Rect [ 286.7125
- 381.1775
- 335.065
- 392.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER180': class LinkAnnotation
-205 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 583.865
- 0 ]
- /Rect [ 226.705
- 367.9275
- 275.0575
- 379.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER181': class LinkAnnotation
-206 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 570.615
- 0 ]
- /Rect [ 320.92
- 367.9275
- 369.2725
- 379.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER182': class LinkAnnotation
-207 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 510.745
- 313.1775
- 548.6725
- 324.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER183': class LinkAnnotation
-208 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 77.5
- 301.9275
- 85.84
- 313.1775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER184': class LinkAnnotation
-209 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 729.615
- 0 ]
- /Rect [ 331.5175
- 245.4275
- 379.87
- 256.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page19': class PDFPage
-210 0 obj
-% Page dictionary
-<< /Annots [ 199 0 R
- 200 0 R
- 201 0 R
- 202 0 R
- 203 0 R
- 204 0 R
- 205 0 R
- 206 0 R
- 207 0 R
- 208 0 R
- 209 0 R ]
- /Contents 339 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER185': class LinkAnnotation
-211 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 557.365
- 0 ]
- /Rect [ 304.42
- 357.5525
- 352.7725
- 368.8025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER186': class LinkAnnotation
-212 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 544.115
- 0 ]
- /Rect [ 436.81
- 107.0525
- 485.1625
- 118.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page20': class PDFPage
-213 0 obj
-% Page dictionary
-<< /Annots [ 211 0 R
- 212 0 R ]
- /Contents 340 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page21': class PDFPage
-214 0 obj
-% Page dictionary
-<< /Contents 341 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER187': class LinkAnnotation
-215 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 530.865
- 0 ]
- /Rect [ 218.395
- 309.4275
- 266.7475
- 320.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER188': class LinkAnnotation
-216 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 530.865
- 0 ]
- /Rect [ 476.8375
- 232.3025
- 525.19
- 243.5525 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER189': class LinkAnnotation
-217 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 530.865
- 0 ]
- /Rect [ 369.7225
- 132.6775
- 418.075
- 143.9275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page22': class PDFPage
-218 0 obj
-% Page dictionary
-<< /Annots [ 215 0 R
- 216 0 R
- 217 0 R ]
- /Contents 342 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER190': class LinkAnnotation
-219 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 530.865
- 0 ]
- /Rect [ 102.1
- 719.4275
- 150.4525
- 730.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER191': class LinkAnnotation
-220 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 406.115
- 0 ]
- /Rect [ 334.66
- 164.99
- 378.8425
- 176.24 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page23': class PDFPage
-221 0 obj
-% Page dictionary
-<< /Annots [ 219 0 R
- 220 0 R ]
- /Contents 343 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Annot.NUMBER192': class LinkAnnotation
-222 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 117 0 R
- /XYZ
- 66.25
- 406.115
- 0 ]
- /Rect [ 326.365
- 719.4275
- 370.5475
- 730.6775 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER193': class LinkAnnotation
-223 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 138 0 R
- /XYZ
- 69.925
- 517.615
- 0 ]
- /Rect [ 199.5475
- 469.1775
- 247.9
- 480.4275 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER194': class PDFDictionary
-224 0 obj
-<< /A << /S /URI
- /Type /Action
- /URI (mailto:compatibility@android.com) >>
- /Border [ 0
- 0
- 0 ]
- /Rect [ 205.0825
- 147.0525
- 295.2175
- 158.3025 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Page24': class PDFPage
-225 0 obj
-% Page dictionary
-<< /Annots [ 222 0 R
- 223 0 R
- 224 0 R ]
- /Contents 344 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page25': class PDFPage
-226 0 obj
-% Page dictionary
-<< /Contents 345 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page26': class PDFPage
-227 0 obj
-% Page dictionary
-<< /Contents 346 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 320 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'R228': class PDFCatalog
-228 0 obj
-% Document Root
-<< /Outlines 230 0 R
- /PageMode /UseNone
- /Pages 320 0 R
- /Type /Catalog >>
-endobj
-% 'R229': class PDFInfo
-229 0 obj
-<< /Author ()
- /CreationDate (D:20110222144351+08'00')
- /Keywords ()
- /Producer (pisa HTML to PDF <http://www.htmltopdf.org>)
- /Subject ()
- /Title (Android 2.3 Compatibility Definition) >>
-endobj
-% 'R230': class PDFOutlines
-230 0 obj
-<< /Count 17
- /First 231 0 R
- /Last 231 0 R
- /Type /Outlines >>
-endobj
-% 'Outline.0': class OutlineEntryObject
-231 0 obj
-<< /Count -14
- /Dest [ 47 0 R
- /Fit ]
- /First 232 0 R
- /Last 314 0 R
- /Parent 230 0 R
- /Title (Android 2.3 Compatibility Definition) >>
-endobj
-% 'Outline.2.0': class OutlineEntryObject
-232 0 obj
-<< /Dest [ 47 0 R
- /Fit ]
- /Next 233 0 R
- /Parent 231 0 R
- /Title (Table of Contents) >>
-endobj
-% 'Outline.2.1': class OutlineEntryObject
-233 0 obj
-<< /Dest [ 117 0 R
- /Fit ]
- /Next 234 0 R
- /Parent 231 0 R
- /Prev 232 0 R
- /Title (1. Introduction) >>
-endobj
-% 'Outline.2.2': class OutlineEntryObject
-234 0 obj
-<< /Dest [ 117 0 R
- /Fit ]
- /Next 235 0 R
- /Parent 231 0 R
- /Prev 233 0 R
- /Title (2. Resources) >>
-endobj
-% 'Outline.2.3': class OutlineEntryObject
-235 0 obj
-<< /Count -8
- /Dest [ 138 0 R
- /Fit ]
- /First 236 0 R
- /Last 252 0 R
- /Next 258 0 R
- /Parent 231 0 R
- /Prev 234 0 R
- /Title (3. Software) >>
-endobj
-% 'Outline.3.0': class OutlineEntryObject
-236 0 obj
-<< /Dest [ 138 0 R
- /Fit ]
- /Next 237 0 R
- /Parent 235 0 R
- /Title (3.1. Managed API Compatibility) >>
-endobj
-% 'Outline.3.1': class OutlineEntryObject
-237 0 obj
-<< /Count -7
- /Dest [ 138 0 R
- /Fit ]
- /First 238 0 R
- /Last 244 0 R
- /Next 245 0 R
- /Parent 235 0 R
- /Prev 236 0 R
- /Title (3.2. Soft API Compatibility) >>
-endobj
-% 'Outline.4.0': class OutlineEntryObject
-238 0 obj
-<< /Dest [ 138 0 R
- /Fit ]
- /Next 239 0 R
- /Parent 237 0 R
- /Title (3.2.1. Permissions) >>
-endobj
-% 'Outline.4.1': class OutlineEntryObject
-239 0 obj
-<< /Dest [ 143 0 R
- /Fit ]
- /Next 240 0 R
- /Parent 237 0 R
- /Prev 238 0 R
- /Title (3.2.2. Build Parameters) >>
-endobj
-% 'Outline.4.2': class OutlineEntryObject
-240 0 obj
-<< /Dest [ 144 0 R
- /Fit ]
- /Next 241 0 R
- /Parent 237 0 R
- /Prev 239 0 R
- /Title (3.2.3. Intent Compatibility) >>
-endobj
-% 'Outline.4.3': class OutlineEntryObject
-241 0 obj
-<< /Dest [ 144 0 R
- /Fit ]
- /Next 242 0 R
- /Parent 237 0 R
- /Prev 240 0 R
- /Title (3.2.3.1. Core Application Intents) >>
-endobj
-% 'Outline.4.4': class OutlineEntryObject
-242 0 obj
-<< /Dest [ 144 0 R
- /Fit ]
- /Next 243 0 R
- /Parent 237 0 R
- /Prev 241 0 R
- /Title (3.2.3.2. Intent Overrides) >>
-endobj
-% 'Outline.4.5': class OutlineEntryObject
-243 0 obj
-<< /Dest [ 145 0 R
- /Fit ]
- /Next 244 0 R
- /Parent 237 0 R
- /Prev 242 0 R
- /Title (3.2.3.3. Intent Namespaces) >>
-endobj
-% 'Outline.4.6': class OutlineEntryObject
-244 0 obj
-<< /Dest [ 145 0 R
- /Fit ]
- /Parent 237 0 R
- /Prev 243 0 R
- /Title (3.2.3.4. Broadcast Intents) >>
-endobj
-% 'Outline.3.2': class OutlineEntryObject
-245 0 obj
-<< /Dest [ 145 0 R
- /Fit ]
- /Next 246 0 R
- /Parent 235 0 R
- /Prev 237 0 R
- /Title (3.3. Native API Compatibility) >>
-endobj
-% 'Outline.3.3': class OutlineEntryObject
-246 0 obj
-<< /Count -2
- /Dest [ 158 0 R
- /Fit ]
- /First 247 0 R
- /Last 248 0 R
- /Next 249 0 R
- /Parent 235 0 R
- /Prev 245 0 R
- /Title (3.4. Web Compatibility) >>
-endobj
-% 'Outline.5.0': class OutlineEntryObject
-247 0 obj
-<< /Dest [ 158 0 R
- /Fit ]
- /Next 248 0 R
- /Parent 246 0 R
- /Title (3.4.1. WebView Compatibility) >>
-endobj
-% 'Outline.5.1': class OutlineEntryObject
-248 0 obj
-<< /Dest [ 158 0 R
- /Fit ]
- /Parent 246 0 R
- /Prev 247 0 R
- /Title (3.4.2. Browser Compatibility) >>
-endobj
-% 'Outline.3.4': class OutlineEntryObject
-249 0 obj
-<< /Dest [ 162 0 R
- /Fit ]
- /Next 250 0 R
- /Parent 235 0 R
- /Prev 246 0 R
- /Title (3.5. API Behavioral Compatibility) >>
-endobj
-% 'Outline.3.5': class OutlineEntryObject
-250 0 obj
-<< /Dest [ 162 0 R
- /Fit ]
- /Next 251 0 R
- /Parent 235 0 R
- /Prev 249 0 R
- /Title (3.6. API Namespaces) >>
-endobj
-% 'Outline.3.6': class OutlineEntryObject
-251 0 obj
-<< /Dest [ 162 0 R
- /Fit ]
- /Next 252 0 R
- /Parent 235 0 R
- /Prev 250 0 R
- /Title (3.7. Virtual Machine Compatibility) >>
-endobj
-% 'Outline.3.7': class OutlineEntryObject
-252 0 obj
-<< /Count -5
- /Dest [ 172 0 R
- /Fit ]
- /First 253 0 R
- /Last 257 0 R
- /Parent 235 0 R
- /Prev 251 0 R
- /Title (3.8. User Interface Compatibility) >>
-endobj
-% 'Outline.6.0': class OutlineEntryObject
-253 0 obj
-<< /Dest [ 172 0 R
- /Fit ]
- /Next 254 0 R
- /Parent 252 0 R
- /Title (3.8.1. Widgets) >>
-endobj
-% 'Outline.6.1': class OutlineEntryObject
-254 0 obj
-<< /Dest [ 172 0 R
- /Fit ]
- /Next 255 0 R
- /Parent 252 0 R
- /Prev 253 0 R
- /Title (3.8.2. Notifications) >>
-endobj
-% 'Outline.6.2': class OutlineEntryObject
-255 0 obj
-<< /Dest [ 172 0 R
- /Fit ]
- /Next 256 0 R
- /Parent 252 0 R
- /Prev 254 0 R
- /Title (3.8.3. Search) >>
-endobj
-% 'Outline.6.3': class OutlineEntryObject
-256 0 obj
-<< /Dest [ 172 0 R
- /Fit ]
- /Next 257 0 R
- /Parent 252 0 R
- /Prev 255 0 R
- /Title (3.8.4. Toasts) >>
-endobj
-% 'Outline.6.4': class OutlineEntryObject
-257 0 obj
-<< /Dest [ 172 0 R
- /Fit ]
- /Parent 252 0 R
- /Prev 256 0 R
- /Title (3.8.5. Live Wallpapers) >>
-endobj
-% 'Outline.2.4': class OutlineEntryObject
-258 0 obj
-<< /Dest [ 177 0 R
- /Fit ]
- /Next 259 0 R
- /Parent 231 0 R
- /Prev 235 0 R
- /Title (4. Application Packaging Compatibility) >>
-endobj
-% 'Outline.2.5': class OutlineEntryObject
-259 0 obj
-<< /Count -5
- /Dest [ 177 0 R
- /Fit ]
- /First 260 0 R
- /Last 264 0 R
- /Next 265 0 R
- /Parent 231 0 R
- /Prev 258 0 R
- /Title (5. Multimedia Compatibility) >>
-endobj
-% 'Outline.7.0': class OutlineEntryObject
-260 0 obj
-<< /Dest [ 177 0 R
- /Fit ]
- /Next 261 0 R
- /Parent 259 0 R
- /Title (5.1. Media Codecs) >>
-endobj
-% 'Outline.7.1': class OutlineEntryObject
-261 0 obj
-<< /Dest [ 177 0 R
- /Fit ]
- /Next 262 0 R
- /Parent 259 0 R
- /Prev 260 0 R
- /Title (5.1.1. Media Decoders) >>
-endobj
-% 'Outline.7.2': class OutlineEntryObject
-262 0 obj
-<< /Dest [ 178 0 R
- /Fit ]
- /Next 263 0 R
- /Parent 259 0 R
- /Prev 261 0 R
- /Title (5.1.2. Media Encoders) >>
-endobj
-% 'Outline.7.3': class OutlineEntryObject
-263 0 obj
-<< /Dest [ 179 0 R
- /Fit ]
- /Next 264 0 R
- /Parent 259 0 R
- /Prev 262 0 R
- /Title (5.2. Audio Recording) >>
-endobj
-% 'Outline.7.4': class OutlineEntryObject
-264 0 obj
-<< /Dest [ 179 0 R
- /Fit ]
- /Parent 259 0 R
- /Prev 263 0 R
- /Title (5.3. Audio Latency) >>
-endobj
-% 'Outline.2.6': class OutlineEntryObject
-265 0 obj
-<< /Dest [ 184 0 R
- /Fit ]
- /Next 266 0 R
- /Parent 231 0 R
- /Prev 259 0 R
- /Title (6. Developer Tool Compatibility) >>
-endobj
-% 'Outline.2.7': class OutlineEntryObject
-266 0 obj
-<< /Count -7
- /Dest [ 184 0 R
- /Fit ]
- /First 267 0 R
- /Last 301 0 R
- /Next 302 0 R
- /Parent 231 0 R
- /Prev 265 0 R
- /Title (7. Hardware Compatibility) >>
-endobj
-% 'Outline.8.0': class OutlineEntryObject
-267 0 obj
-<< /Count -5
- /Dest [ 188 0 R
- /Fit ]
- /First 268 0 R
- /Last 272 0 R
- /Next 273 0 R
- /Parent 266 0 R
- /Title (7.1. Display and Graphics) >>
-endobj
-% 'Outline.9.0': class OutlineEntryObject
-268 0 obj
-<< /Dest [ 188 0 R
- /Fit ]
- /Next 269 0 R
- /Parent 267 0 R
- /Title (7.1.1. Screen Configurations) >>
-endobj
-% 'Outline.9.1': class OutlineEntryObject
-269 0 obj
-<< /Dest [ 188 0 R
- /Fit ]
- /Next 270 0 R
- /Parent 267 0 R
- /Prev 268 0 R
- /Title (7.1.2. Display Metrics) >>
-endobj
-% 'Outline.9.2': class OutlineEntryObject
-270 0 obj
-<< /Dest [ 188 0 R
- /Fit ]
- /Next 271 0 R
- /Parent 267 0 R
- /Prev 269 0 R
- /Title (7.1.3. Declared Screen Support) >>
-endobj
-% 'Outline.9.3': class OutlineEntryObject
-271 0 obj
-<< /Dest [ 188 0 R
- /Fit ]
- /Next 272 0 R
- /Parent 267 0 R
- /Prev 270 0 R
- /Title (7.1.4. Screen Orientation) >>
-endobj
-% 'Outline.9.4': class OutlineEntryObject
-272 0 obj
-<< /Dest [ 191 0 R
- /Fit ]
- /Parent 267 0 R
- /Prev 271 0 R
- /Title (7.1.5. 3D Graphics Acceleration) >>
-endobj
-% 'Outline.8.1': class OutlineEntryObject
-273 0 obj
-<< /Count -4
- /Dest [ 191 0 R
- /Fit ]
- /First 274 0 R
- /Last 277 0 R
- /Next 278 0 R
- /Parent 266 0 R
- /Prev 267 0 R
- /Title (7.2. Input Devices) >>
-endobj
-% 'Outline.10.0': class OutlineEntryObject
-274 0 obj
-<< /Dest [ 191 0 R
- /Fit ]
- /Next 275 0 R
- /Parent 273 0 R
- /Title (7.2.1. Keyboard) >>
-endobj
-% 'Outline.10.1': class OutlineEntryObject
-275 0 obj
-<< /Dest [ 191 0 R
- /Fit ]
- /Next 276 0 R
- /Parent 273 0 R
- /Prev 274 0 R
- /Title (7.2.2. Non-touch Navigation) >>
-endobj
-% 'Outline.10.2': class OutlineEntryObject
-276 0 obj
-<< /Dest [ 191 0 R
- /Fit ]
- /Next 277 0 R
- /Parent 273 0 R
- /Prev 275 0 R
- /Title (7.2.3. Navigation keys) >>
-endobj
-% 'Outline.10.3': class OutlineEntryObject
-277 0 obj
-<< /Dest [ 191 0 R
- /Fit ]
- /Parent 273 0 R
- /Prev 276 0 R
- /Title (7.2.4. Touchscreen input) >>
-endobj
-% 'Outline.8.2': class OutlineEntryObject
-278 0 obj
-<< /Count -8
- /Dest [ 196 0 R
- /Fit ]
- /First 279 0 R
- /Last 286 0 R
- /Next 287 0 R
- /Parent 266 0 R
- /Prev 273 0 R
- /Title (7.3. Sensors) >>
-endobj
-% 'Outline.11.0': class OutlineEntryObject
-279 0 obj
-<< /Dest [ 196 0 R
- /Fit ]
- /Next 280 0 R
- /Parent 278 0 R
- /Title (7.3.1. Accelerometer) >>
-endobj
-% 'Outline.11.1': class OutlineEntryObject
-280 0 obj
-<< /Dest [ 196 0 R
- /Fit ]
- /Next 281 0 R
- /Parent 278 0 R
- /Prev 279 0 R
- /Title (7.3.2. Magnetometer) >>
-endobj
-% 'Outline.11.2': class OutlineEntryObject
-281 0 obj
-<< /Dest [ 196 0 R
- /Fit ]
- /Next 282 0 R
- /Parent 278 0 R
- /Prev 280 0 R
- /Title (7.3.3. GPS) >>
-endobj
-% 'Outline.11.3': class OutlineEntryObject
-282 0 obj
-<< /Dest [ 196 0 R
- /Fit ]
- /Next 283 0 R
- /Parent 278 0 R
- /Prev 281 0 R
- /Title (7.3.4. Gyroscope) >>
-endobj
-% 'Outline.11.4': class OutlineEntryObject
-283 0 obj
-<< /Dest [ 198 0 R
- /Fit ]
- /Next 284 0 R
- /Parent 278 0 R
- /Prev 282 0 R
- /Title (7.3.5. Barometer) >>
-endobj
-% 'Outline.11.5': class OutlineEntryObject
-284 0 obj
-<< /Dest [ 198 0 R
- /Fit ]
- /Next 285 0 R
- /Parent 278 0 R
- /Prev 283 0 R
- /Title (7.3.7. Thermometer) >>
-endobj
-% 'Outline.11.6': class OutlineEntryObject
-285 0 obj
-<< /Dest [ 198 0 R
- /Fit ]
- /Next 286 0 R
- /Parent 278 0 R
- /Prev 284 0 R
- /Title (7.3.7. Photometer) >>
-endobj
-% 'Outline.11.7': class OutlineEntryObject
-286 0 obj
-<< /Dest [ 198 0 R
- /Fit ]
- /Parent 278 0 R
- /Prev 285 0 R
- /Title (7.3.8. Proximity Sensor) >>
-endobj
-% 'Outline.8.3': class OutlineEntryObject
-287 0 obj
-<< /Count -5
- /Dest [ 198 0 R
- /Fit ]
- /First 288 0 R
- /Last 292 0 R
- /Next 293 0 R
- /Parent 266 0 R
- /Prev 278 0 R
- /Title (7.4. Data Connectivity) >>
-endobj
-% 'Outline.12.0': class OutlineEntryObject
-288 0 obj
-<< /Dest [ 198 0 R
- /Fit ]
- /Next 289 0 R
- /Parent 287 0 R
- /Title (7.4.1. Telephony) >>
-endobj
-% 'Outline.12.1': class OutlineEntryObject
-289 0 obj
-<< /Dest [ 198 0 R
- /Fit ]
- /Next 290 0 R
- /Parent 287 0 R
- /Prev 288 0 R
- /Title (7.4.2. IEEE 802.11 \(WiFi\)) >>
-endobj
-% 'Outline.12.2': class OutlineEntryObject
-290 0 obj
-<< /Dest [ 198 0 R
- /Fit ]
- /Next 291 0 R
- /Parent 287 0 R
- /Prev 289 0 R
- /Title (7.4.3. Bluetooth) >>
-endobj
-% 'Outline.12.3': class OutlineEntryObject
-291 0 obj
-<< /Dest [ 210 0 R
- /Fit ]
- /Next 292 0 R
- /Parent 287 0 R
- /Prev 290 0 R
- /Title (7.4.4. Near-Field Communications) >>
-endobj
-% 'Outline.12.4': class OutlineEntryObject
-292 0 obj
-<< /Dest [ 210 0 R
- /Fit ]
- /Parent 287 0 R
- /Prev 291 0 R
- /Title (7.4.5. Minimum Network Capability) >>
-endobj
-% 'Outline.8.4': class OutlineEntryObject
-293 0 obj
-<< /Count -4
- /Dest [ 213 0 R
- /Fit ]
- /First 294 0 R
- /Last 297 0 R
- /Next 298 0 R
- /Parent 266 0 R
- /Prev 287 0 R
- /Title (7.5. Cameras) >>
-endobj
-% 'Outline.13.0': class OutlineEntryObject
-294 0 obj
-<< /Dest [ 213 0 R
- /Fit ]
- /Next 295 0 R
- /Parent 293 0 R
- /Title (7.5.1. Rear-Facing Camera) >>
-endobj
-% 'Outline.13.1': class OutlineEntryObject
-295 0 obj
-<< /Dest [ 213 0 R
- /Fit ]
- /Next 296 0 R
- /Parent 293 0 R
- /Prev 294 0 R
- /Title (7.5.2. Front-Facing Camera) >>
-endobj
-% 'Outline.13.2': class OutlineEntryObject
-296 0 obj
-<< /Dest [ 213 0 R
- /Fit ]
- /Next 297 0 R
- /Parent 293 0 R
- /Prev 295 0 R
- /Title (7.5.3. Camera API Behavior) >>
-endobj
-% 'Outline.13.3': class OutlineEntryObject
-297 0 obj
-<< /Dest [ 214 0 R
- /Fit ]
- /Parent 293 0 R
- /Prev 296 0 R
- /Title (7.5.4. Camera Orientation) >>
-endobj
-% 'Outline.8.5': class OutlineEntryObject
-298 0 obj
-<< /Count -2
- /Dest [ 214 0 R
- /Fit ]
- /First 299 0 R
- /Last 300 0 R
- /Next 301 0 R
- /Parent 266 0 R
- /Prev 293 0 R
- /Title (7.6. Memory and Storage) >>
-endobj
-% 'Outline.14.0': class OutlineEntryObject
-299 0 obj
-<< /Dest [ 214 0 R
- /Fit ]
- /Next 300 0 R
- /Parent 298 0 R
- /Title (7.6.1. Minimum Memory and Storage) >>
-endobj
-% 'Outline.14.1': class OutlineEntryObject
-300 0 obj
-<< /Dest [ 214 0 R
- /Fit ]
- /Parent 298 0 R
- /Prev 299 0 R
- /Title (7.6.2. Application Shared Storage) >>
-endobj
-% 'Outline.8.6': class OutlineEntryObject
-301 0 obj
-<< /Dest [ 218 0 R
- /Fit ]
- /Parent 266 0 R
- /Prev 298 0 R
- /Title (7.7. USB) >>
-endobj
-% 'Outline.2.8': class OutlineEntryObject
-302 0 obj
-<< /Dest [ 218 0 R
- /Fit ]
- /Next 303 0 R
- /Parent 231 0 R
- /Prev 266 0 R
- /Title (8. Performance Compatibility) >>
-endobj
-% 'Outline.2.9': class OutlineEntryObject
-303 0 obj
-<< /Count -4
- /Dest [ 218 0 R
- /Fit ]
- /First 304 0 R
- /Last 307 0 R
- /Next 308 0 R
- /Parent 231 0 R
- /Prev 302 0 R
- /Title (9. Security Model Compatibility) >>
-endobj
-% 'Outline.15.0': class OutlineEntryObject
-304 0 obj
-<< /Dest [ 218 0 R
- /Fit ]
- /Next 305 0 R
- /Parent 303 0 R
- /Title (9.1. Permissions) >>
-endobj
-% 'Outline.15.1': class OutlineEntryObject
-305 0 obj
-<< /Dest [ 218 0 R
- /Fit ]
- /Next 306 0 R
- /Parent 303 0 R
- /Prev 304 0 R
- /Title (9.2. UID and Process Isolation) >>
-endobj
-% 'Outline.15.2': class OutlineEntryObject
-306 0 obj
-<< /Dest [ 218 0 R
- /Fit ]
- /Next 307 0 R
- /Parent 303 0 R
- /Prev 305 0 R
- /Title (9.3. Filesystem Permissions) >>
-endobj
-% 'Outline.15.3': class OutlineEntryObject
-307 0 obj
-<< /Dest [ 221 0 R
- /Fit ]
- /Parent 303 0 R
- /Prev 306 0 R
- /Title (9.4. Alternate Execution Environments) >>
-endobj
-% 'Outline.2.10': class OutlineEntryObject
-308 0 obj
-<< /Count -3
- /Dest [ 221 0 R
- /Fit ]
- /First 309 0 R
- /Last 311 0 R
- /Next 312 0 R
- /Parent 231 0 R
- /Prev 303 0 R
- /Title (10. Software Compatibility Testing) >>
-endobj
-% 'Outline.16.0': class OutlineEntryObject
-309 0 obj
-<< /Dest [ 221 0 R
- /Fit ]
- /Next 310 0 R
- /Parent 308 0 R
- /Title (10.1. Compatibility Test Suite) >>
-endobj
-% 'Outline.16.1': class OutlineEntryObject
-310 0 obj
-<< /Dest [ 225 0 R
- /Fit ]
- /Next 311 0 R
- /Parent 308 0 R
- /Prev 309 0 R
- /Title (10.2. CTS Verifier) >>
-endobj
-% 'Outline.16.2': class OutlineEntryObject
-311 0 obj
-<< /Dest [ 225 0 R
- /Fit ]
- /Parent 308 0 R
- /Prev 310 0 R
- /Title (10.3. Reference Applications) >>
-endobj
-% 'Outline.2.11': class OutlineEntryObject
-312 0 obj
-<< /Dest [ 225 0 R
- /Fit ]
- /Next 313 0 R
- /Parent 231 0 R
- /Prev 308 0 R
- /Title (11. Updatable Software) >>
-endobj
-% 'Outline.2.12': class OutlineEntryObject
-313 0 obj
-<< /Dest [ 225 0 R
- /Fit ]
- /Next 314 0 R
- /Parent 231 0 R
- /Prev 312 0 R
- /Title (12. Contact Us) >>
-endobj
-% 'Outline.2.13': class OutlineEntryObject
-314 0 obj
-<< /Count -5
- /Dest [ 226 0 R
- /Fit ]
- /First 315 0 R
- /Last 319 0 R
- /Parent 231 0 R
- /Prev 313 0 R
- /Title (Appendix A - Bluetooth Test Procedure) >>
-endobj
-% 'Outline.17.0': class OutlineEntryObject
-315 0 obj
-<< /Dest [ 226 0 R
- /Fit ]
- /Next 316 0 R
- /Parent 314 0 R
- /Title (Setup and Installation) >>
-endobj
-% 'Outline.17.1': class OutlineEntryObject
-316 0 obj
-<< /Dest [ 226 0 R
- /Fit ]
- /Next 317 0 R
- /Parent 314 0 R
- /Prev 315 0 R
- /Title (Test Bluetooth Control by Apps) >>
-endobj
-% 'Outline.17.2': class OutlineEntryObject
-317 0 obj
-<< /Dest [ 226 0 R
- /Fit ]
- /Next 318 0 R
- /Parent 314 0 R
- /Prev 316 0 R
- /Title (Test Pairing and Communication) >>
-endobj
-% 'Outline.17.3': class OutlineEntryObject
-318 0 obj
-<< /Dest [ 226 0 R
- /Fit ]
- /Next 319 0 R
- /Parent 314 0 R
- /Prev 317 0 R
- /Title (Test Pairing and Communication in the Reverse Direction) >>
-endobj
-% 'Outline.17.4': class OutlineEntryObject
-319 0 obj
-<< /Dest [ 226 0 R
- /Fit ]
- /Parent 314 0 R
- /Prev 318 0 R
- /Title (Test Re-Launches) >>
-endobj
-% 'R320': class PDFPages
-320 0 obj
-% page tree
-<< /Count 26
- /Kids [ 47 0 R
- 89 0 R
- 117 0 R
- 138 0 R
- 143 0 R
- 144 0 R
- 145 0 R
- 158 0 R
- 162 0 R
- 172 0 R
- 177 0 R
- 178 0 R
- 179 0 R
- 184 0 R
- 188 0 R
- 191 0 R
- 196 0 R
- 198 0 R
- 210 0 R
- 213 0 R
- 214 0 R
- 218 0 R
- 221 0 R
- 225 0 R
- 226 0 R
- 227 0 R ]
- /Type /Pages >>
-endobj
-% 'R321': class PDFStream
-321 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 1786 >>
-stream
-Gatm=9lo&I&A<G1rrL0KdieGHa/tAm\=&0o-WZEPH@\XY7SAjN7+mcRT*6[c,V,!2S<:f9;cj%3n*Sj56kOtdD>n-?K\jr"lZX%?L1YKp"VteF!PP%pSpY>1F?<_7`#+L\f^tb6oSW(.iL"T,,^MR9JQ_^l.#)@h:*PO,bO*'KL0HOTdOe+\QX-7kkc\[n0:Mjjm,1h6rjM^nBt0ib9efA_pB5CM7rIAT421[30TiHEHi:+QbJ1)>bYg0^GH$ZQTi&\4*+i5Z)rF);bTi-#Wb)cs]nEr$FE<%l4N=c$EPM,sn+rNbn!o`J\cWGP4RcFL31B?'@R6^j];$@dghdNtgkMFE3f*c<RG5mF&0?kWX5ut(k0=[<rf/W'gm"Zo<B1--@(2(gU=4s1k@6UAoB#4.$(iCmA-142;$mtW\URGKgS'hH#O9.2o4msSR`0]7raCs67O\'Q>uoLMd-,nG@<>NaW#;g/<j/oZcoGt`GFl:E\TtJuN;cXjoIrCE`pVIM$C=F3k/db7N"Zf"rs+m!(@ep-*&urPZ\+XS>jT$d;g7/52$])`>*np9)cI%L,cN/c>o3SWQJcimA-<l_ET^1$j`+3;_fr43U]=+kkL"tI'72"Bkm2WD/16gGMc:'G`P@Yj<r")sB1*9sVkFNoc[&l6Co5foj#BN;e\$?1<ekW!#XC^aiM7Ds81mShB5DiP1F[I0G;Qb`-T-+!JEU==;D!!Nc>MM5F_EmjX::nbfjmVW#W%A?67R:TV^-$+d>R:a7s2s6n1jXT6Zfk6)5mOFa4W*Cg$[i,R+uAe2![$gI=fPaiUCGhMB(G#X-U?JG1)%&.0WoIEo=b++Q+Gq"Mnmjr!3Wc%,*oaM`mGN0aAX0q&pgP'2VRH;d[J<?3Uan7=5efk8_I'?NrPN!:f['C36mf'dcjSkI(YA@*/+UIXKMnRX@a*SC%uRY(8FqQ(!q2B-i(D[ShCJf(JPB::#Z\*/Cb1TV)]-Pl$cE^4[+Q*D>'uM'rMu)F/YrcdbjJk?!*+i[j-s$'rnT49]g64@B0p!pVZjJ,Z\e/f>c[?]9G]?78rDc:;Oj?QN%h_ZJ!XZGo0N8aNEl]WZ+hJ\aHafcW"7I97,H([fL:`q.&Sg*CPKif1ZR&#QY4GRgBDC[<QI0h,N/XZ*K*Q-/MhWLpM!K$dqc3)7rh**.D@KqRH9lOk@FTJ5b/@F.N&V[!kag#\gkKi1_3p"QDJg)1gW6R<iW19?2(gWP9_%=obC`3%#mRSH4D^<fgO1NBF7?.EQ$/\@5,h:Y(ES)$jL"Dsc2:a[W'KIlrWC<'CU'J$RPfY:/09p4G@ih-ENmulBdnPL_"d?o#Ps"XSZlaB,=.f3!n9Y'XgBaF"SVPqa;k=3-ER;'fqlTmb'S!1?`3Y+gh1b9iTOLQpbpJ<[p,_U\b80J"8ksU$_S'SB#Ui(1rFZ,[bDX`,ML!IJAr&j$KfZrDll!j_2cSi>5ctAa'k.o11nU*:pK7]+D$R/smLNUgno\R]+89tr>aIe[Q:tdSpK.\Vb3tTO!)1;OMq*1.hh:9cnZW`5?boGNY8Ds#/l%7<Hp[L?.J@ZP/]dhNUUrjZ_>.(q#LDW8?>T/'ddSVQ>\gG9qZ3D<TFgj(k*=.@6f)0+kFHHYo3Y(IBK^4)::)=PP6?J]"X\3m44#`(WSaJ5l<f_DT\C.cJ8:\DXG8ZY\O;7S/akP'T<S;]@;XF/Qd2G!jX/S`mB*?bM?gQI&cEaOup5%fU;\L4"S_EtKK(,CqK$AG\C/[3N1'`j\#<Y>N-U.U:Muk@~>endstream
-endobj
-% 'R322': class PDFStream
-322 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 1514 >>
-stream
-Gatm<hc&8h&:S8Hs'[#(RmC[YQ@D!u%1I;J9:KnpdMLpLU8r.-Z301&^Qf+^9nTPTL;8>F)gQYBDnfR+"SbF?T6U`^14qg;-r:,S>G*,G@J2WRAqpUUgDA\5M\$^MYs=r<3JA^SHq*+G;^UG]n,P[qCI&8u`?^9Cbf\2&G_`si-Gj(.ZsVr*5-U)%q[[:gZqp2!IJnQmjm1(pMGia73)=IA4$Pj++;>@kKEVYd;aMCdZu]'ZFNBRjB`7!_3I4/rF#N#N@si4T9+qpcSYHeKLkO*`1/(j6Uil#LgBL/>6jHXbgJl4H&PCt7\\?IZRCA%1(;cB1Dor?5f%!Wm=8;n]BD:[DCQu!Agc4O8_[j;\a#lZi1OD]a)_!:6eT04<lE^^;0>J1?mVqRURg5L3a-`X[olQtr.'T<g_b<a8<GSog"/F8"7/03'J3[2E"^X`5g,U&P?HdV<7opJ1cIj%JfbX#_68I@;N&V0UK6r.E[oV7i&`4))Bb4Zd]VnQP;oF.7%RQsum)Ns4"H*N,SOBXAk*FfCGqKJ=F=A/CL5Er&__8@.8iCSLM!+B1l'N3kq0[%$Sa3*lZP<U<1<500YY-OC.G_(8!`ocs(g)C07R*nN2<t]_I2ImEj3?tH#+4T;IJOITi`"E=E2os2k)Hsmn9j6$IDE0&opBUL)>c.X#:/56Wf;$P\0nV:'lE*Pm&4bi"2#Dn]o:%u)7"S!d++]hp2,r@(R)rDP.$LipCI;(1\L_,QlC)CUf_%Qd*6%D(30"MB'/;Na^U:o.a(hgnlG3LZp(jU^JpIJ=!`;bo:X>=36dcBN@I',)>HmYIDm!JT^TcXN:&MQV9+*!5K*$"%_%Z1HrfAmhbra['V5m(-\379RLDi^qg9nF<PGlnb]6_>D5o<!8ms`$AouT$Sell/2B6(0^kl=Se@SL9qHi.3l\eWGC0m=-a3fJRIf$KfB=s&*pH_"noVF+H=[Q67@G5CYh<c'\`^?M`\);?o)0pj4+;;V#:su]sMc3gCY3EJBW:,]'4C0Xu9nS/a+uAdafa[^\;1mm%?6'^B[-Qt57i4?`]V[:W@P>dbMd8V8HQYV@FC6i$mMN5#V_km:PZa8EX/JZBp1p,,o1SJ&RBMPi>;,YS(1XN-=iGRNfi1!^KZduK>t#$)HQn-28f^>+?+[LT3'%H!ENS+&OmqB'EQpu9W'RC/3u5/%FZhVnV3]lf(SBE!J."n#lP_Bj?&\cT-+2`RV@$J0lUI3.(S^aG(Ut&W=X.AGLu<!:b+uUM."EW/OjE+*C#[aKqh2hTa6=/-*4lP1o.\_(bl`.34sP$*XrC>bNu2$Z^"mhic$j:Gl/Ois8JLs9S)I>6%)EnW/+/d.`:pGqL$;2eK2RGqM"]<N'`O4ah5]G9*3HcBjDLfV[O$)2cj-3pN;SDVg>=2:ENWSSB-J>%!\]fFEB>'5IfLBKf+'<T]pr_0G#QI65mFAt.u&+bQ8`bGfNGFBZC7ga3/43a,5DA$[^44[ql\XO3&j%q+4@nm"o~>endstream
-endobj
-% 'R323': class PDFStream
-323 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3279 >>
-stream
-GauHOgN)%.&q*PUrW2,+fORVZn"Q2Y>fOCT8p2tuG5SStRY"($_Ls*M!jptcqX"J?+r/k,Cmc"ck!3IPEDGP92kb5I%=]AhDnI7Sh4.R`%WP`/?P:DW5+-mE^Wp3#phkPNqY%]PY"QY4T';4rjP4IhBP;aQ)j'I1(LXYa_kAb"db-H"o1f1U0F,lAdK$2Qc(AH6??r`rr%Bi*]CFg'oCKZ+pjM%nd$[cfi<)9[CnC#iUHPO5Y=m]N(KN^gF?0eFY?^(3'Wq'KF"$jOks?_.XG+k>E3o#nF;E9FHOOfc:sA';Th$BfEl0\-GQtnjVR[msbt5adQ_NF5&IpKh2Pni4_9%FI+u1@#KGS/J$aPm&O`HVgAVL^g]IB/9S8#6YnZC/Rnhs,J.2(W<Nt02Q#`lfpF'7=Cq2^jq1(r:@#8ik,5<uLcQ@R]$JWsF,Eu\&eB*a*ZP_p-b,\ID/fqeI=123n,&/2]WCR1jb7<=5fb;)e8=1]g\5la-K*o=-U1W$GNSB2bgLo"_eaNK,8,jXKoo*_9Lgq\fCJbN0]QQkGrP')'?hK>?Er5X1e/JAq>ad"E8R&^O5g5i8ArV$Shgu+;W4UUkk$:-W:dbPJ+&4XqXINr;s`$S8SnFGQI6C")6#2gYZi$jM&$pQ8.M>o:uQ@K"-b$8I-\7Z7qDHXe--'oN'LluIdmOQF2K:?&O]+Ifprp5HG^?8-P-E8Zl^gp%qIdpr.01"ZYaih?Rq3_j<%7&8B+tt0aihOTXIp^Gd@R+FP;PCb]$45KBs1Y'iUdEt%%iFa:btM;A6l)\3@`Zc2gIP1L+dPPL;=>-<,8eY3"J<#f*s&Pc<:W6^hQA1c1RC.$&ct;*-FjWE)8TlGAn:.tk<4;eB/YVcjArmui'fP`U><oio>b,0dn)g<+o12F%1(NhZD@U)*gphS)A8"K)cU'u7E+A[-s^hV.Z%[(8J5nT"f]LXp!#h)8m-ad_$ij^#*S*^,':/b+C9)I`]?:KV/c-?KkR4bEYm&$=mY]\oq[FNr^/)nOgGq1P['S5_P@?J+=Rs[9bZm.jZFbh7V0].6N..HHUrn)I2U&D/0rGHXf.7X9EqWR\J`C-f67[*>e<:1GO-t%6kD3[MN_kAhSREFE.Y4-%-DN+O@q3`T=-.qMS?0"[7DVEUTo?jV,Cp/9AH)Np$Sp*@1LR@B;A]WJ=F=UDO<s4hS1W&jq)'f>d(ER:i]Ks"18@$j-XCgI@C=&>`0F3lRcjJ_=No1YRj/A94>(CppsCXr=pK$H,1Wk&0eLa,n[.C"_%sZ@^&CZJNH2E.j1rI0Q4j!jT<o9(<3,/KUWUZ>`-$b@4<;Q#jnkd2q>LK(Uq#T>aAuZ27jGC?0PWlC)j9)JJQW3H7,MhM?t-4Q1,0RljN(uftAkhhML6m$^'D:-<R59W\BBWTc%\,QBl:]6C/Fu36+M*qLP;c"P1G>jJdrh#(3)">_jX+dMKCkPWi?2IF(.W;7Z*Yg%4Q=ZM,[,\6!iu4IDS!H(e2?m4q4!("p]h4Y.^<;W\9QK<cY?6FLYAYOVFt?TsVeb5m\q8k^,[R6WBtC]Gd:`=ik\D[COkc(/LPSF:!&EW[e"(s<;<+t"o0./=4X0>fK8m-_]N*5a[@\VB4c)>a"`\L9<<nUA;rhPh,;Bi[rFeT8\D#&5a\$E8@&)D1G1"h9F7il)AkFIX,nV5+k$iVqLWkT4^3mZt$iU(KH:\oI0Dd%VG^d&$W^(!egHm91pi`r[U#^PP"OHT1mre"^19C-M1pUKkLcY7T8gkAMne]A6B$oo_WBD\^G4s.Th"J*=^6HaDBR.(b73%Vu-O"1%(im,=p/DDkFCo0[t4'l66dK+2rJq"?nQX8&Nm/gk&U>.s94$0YB=d'_`+_k@V>")iohL;%jKIG!)t[.g"3K"W29-\hY]ioUNjLLWDgkW$rcLS8i8OOB_LGkR*mZ]ef*$$"R;<#%o%6C<qr5(oE&]'+_#<nUO!ibqZjW?^HWT8f]'_19$*TqUh*+3`s8FPtc%rIl%,W,)kC/V9#e^)j[GZV2pD%&J5brCAQREJTu'-Gi6'l0SK^BK-S3%?+34GGRiodnq6QALnmZ]BbEPmGWTl"e9T/WHHe:[3sW-=J\?&,e*P@W@gu?Ob?'ph?rCQ<X"sn;d^\=!%@1nps0.Xd$08jo_kGp'i#D:>JBkZ1qi%05G3rYE=/95;a\=*C"5,&_r$H*Z'%@oO9"18[b\"A"/t+0;jE[KS:CMP4B/.qTip0R9V&>,*\0YPSE7;eiY"<19V667n]fdPW>7K>gu3C94*/GVP3`2NmmEu>TcCX#E/.oh;/E1I1/EY?:#p>_MN!adjijZWi"#uRh0K9T%-#(,?o9gV$1)#6HO]Q/*Hr""0V+3"p<MW?24RRRf;gsZUH]D"2^74DBXW3ooZ"u4J.I6o<8JM>^d>#7qu,+L!M0&(/'[+i\$!F=AAr+0Wu$]h@dHAqWb@c,>+LGoi?@N,f_b)MY@n.4Y:dNplU('fE;H*GK8(aI1NQGJ)#;HEO$qf``drM&?g@hON;E"^>U+pJ#Ppr<c,,YTmtO3d54V7[EKqc&q;(H)#lsn=dMq_9r#lDQZBT`KnJZHrC2nSQnYU@SAPSV:-W6LfWsN4',fZ@>aB1S8;s4BTK(O"l)FRDtK`1<E?eCl2MVmRl[7F>'+'Fu79$!&oF$?M';Z(6`YZu`Wd[9qgiC^3J0*dN3`0j&hWVPM5'f_'JY-(0CD"J-moNtMb%d"g"MjCo0OV96$VP%(oYA0h.THp%f_oL^G2M,ISpU>rK:L@&;%S:HkG%X;=Z%?^Y=&Q2!DYRnVekR=Akh17/(jc<'dmN$Q4<5T#4'K[Z$"c?Nnm1HnUM%Z^=.8AOOa!lL+uV)sDBVH9n3<J*&IWH"AaC4Ek$>2Xl(X-KLSr0)k=6aC)u"<8*;VM]qAX-@6gknWm>A4o?:1a=fSUJ@I20]kgo;pV#+r,^]]iOd`]`*.@rlJ\CY3#a]d(gG#;\-%9HBW"ms$9oo"AUn4b3a7Dan0nE8)ADeG&hK6kCNfd(=]=2k4-Z1sHneqt4&<l4d^4!otkcM\PNKDd.Qa@)J#Eat<%3<][PNXFCj)c-2EM-KMK25+e,rm@ROEYHRH]3%S2tbJA3^+\At:?XH#Ejm9_2CuIeINmmj"pk&8\M6-ea35gi`J%?WIl1!`(iT44u%^Q!O=UObS-2\ZsIf'e!YBF6<=i(U9knEd;bSr.7*'SM">&b=2I80=4CHk1XDiTV_,>W#^2RT7Pi`tFA\T80(jQ2=""8;IE49~>endstream
-endobj
-% 'R324': class PDFStream
-324 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2992 >>
-stream
-Gb!#^CNJ7A&cJ;hr!1I5LH6F^,5;l@2r?T/4h]#2NH@7QWB2/iKHrB"_#TQ2s8+FaLIaWt=d%<1*'Z]/Z.sDDpFIbF/GM`ZpGbP(QPg]i-A^;f2Fk^)/t2`r50_s!qej,=Fh6`[gW"dLf6#RM)NoCU#F7_n%rL1<"09Za"N+Dna1d=@=nO0/Tm$sMVmj(X5I!HimKYTG&"<I9Gjr?@qHj3mqdYB_g[4O0jbC0cTs\s?4__?Sn\BkGA)iu#X*'o.l*#Sbs"6fO#7c8G5'FUor6174=kN;7KbR7*"ieABS7J<rdM&A^cbIj4Uo76D?Qd=5qD0n`Q$2g\9;RN<8#(a?C!$f5E0M`%ZNS<2)_G)AU%L,o1"%E0-o6&:;IsR%_Q`.O1Pe/F"5H'R)F6"p"Lo'?*AkV5PFr*+WURDK6]:pZM.@8+ME]K[XTXpQ=!lJ`TFl9@"jLO<W`DVEcP=^TW5qFe;>`"Lcq0J>GB#T=IQ5pQEu(RkrC@M>O2lDK.`]N:F)mqNX.nOh,gBkb.TW>Z9k-J'/e:OH6:A(f0pNtd)S)'n#"Kdl4qfJU5:i+]IF<hgL%(*u%SIhqQ!u2V@^8P"LC$t4`NOsVC%>r$UTV]`^^8)mg5TV0;;ab\5"_=7(gH^'iDW`#%$_9OjS>;t<[(G#kGKeL@!L0UHj!L,pe8BB+a^#JN@h=AQ"OU1NS_cl*7Q,a:s?I@=<8oKA.cfQ=GW8CD]=u85HQdT%S+S4cIIFb],)M1P_.L%DN9A,!h<WG'a:_9QK[o%qH-;VCLa-6e-/4Mb-FPXU#:==4qB&:^R>@`d]ID1k[5bt3@8+95(,mZ/%J&,Jh%nW/>a_#M3rH_Jc>mQWdC$eoe=N%3Zf,FC04H4E08?T6\:9Cena&i0EQ&ND(*D-#eY_QSm6cZr;$^o5*MsY3WFI5M9TXbo,i[;+Q;i?K5)Z%8Yi(B\YN2a.K_mFO2'eIX+,BoQf/I8%=`=jpq>$<>D(R<Z7":CLECW2IsN!f"Q-fip]if'p?)4h6Q_!EM0o72s![;S$7=gCg2\S3p?NnUQS@pb4c-q%2nbY$Ne-YiXnqc&k[U`U*joGfO2JHDiUR@r/<@G!"eq_^=_u*4]::B4Wm)NDK%B/K!MOu_s.=i"Sd#>l(_@fJBBfV;s3McQ-[%R"\0T#,rrtpVA!Bh&+YFU"ejT-E6UNZMQ0->in0^e-oo.t@m;BBL/6B;&%KjuLc\'k6ZaZ"_7uua4B_V.O6ll%``4-6G>9J)+.&?>1c0933+1_cc3%+(P'"HS<hs^[FPf>3SK,T?oU)PR;-7(?OU*f/\49ej!?nhq<b'<O$iCLLfGc&L@p(-/6DEOK(6X3=%2lLtf73U'K$WQ*X&f<?!-sgl,8?%06ctu8_iQ>S_cB1tRHH=q:]k?f;*U'/Fq.,PqU6@!T5^\UAP"H't/Y>F%UgH#+<3S5S:r3?p<=7mq`:E&o\_rmiXpuqeZ%JoTIik%'fW[2$pCtkRH)upQPen_3l<HUk:QaZ!;O0[dZa'h@*0qeF:&J/FEPA@d5l&nF?0=b**(LX3gajVXi$'Mqa7eO+F@G@DB>uFrX>fDcT2>plXI+U/A27<oWi\"`2!9GmW3bla?@L`]"T-6$lu7.M_A00e.!MPLXXT"gkSL8h1,nru:_g67U-e?,S=c$i9t,73_Fg?$oV(K?YGjg^Ac;V%4@,;M*CU6R&IDHHaL6)8.3NlUC[ajD,Sh`eh/saJ"X;/$TC<@PK'bWca["3-g5b-bNJN3E@llMh0UhRCdbSSTru@Y=_u4*9VrP-o@:u3n'$OOT#Ap4mLMPNbFV(JmNCRU;VC#JOah`-\2oMXr+]T_.cP)LrOq3*h.9uJ.KQ-j":-rt902Wu(:Tht>$mZpjU7&a,!IR9'LFnX)0#_M$P6:Z9=fTTA%I*"nG1R[uqj?a!F9?eX(S].%c?%'XG%3l_Zf,Oj"djoN"*4MLSC2N_Y&1_PXfiubNJlMnQq&k7eh3^TirV?UU2'r`/1XWPUm+925Gg6C3Ksu:R1P]7;nfH."IZ6^bb"2BmS@`@+a]=*nm$Z,IS+Jc#@YSg+1J4Td\b3(K$e,PKPi*igKtnsZp&tdakgpLY2u&]d@*#LYe7*)]'nqtUh9Yo`Dr/*fsfp'eEl8i"/8"F`Y^nfI*Df?23b\,C30j"oSWp\VFq]&[,&)dMqs-@oXQ3XZ3#6V9YZL(#hMoBp&ZoJ-`ZR6P^FgGWs^5`>B"Odk<do(,Z]1smU7Zs\,24XqmL[s]4qD,F,'*^4ZRjc'c4QS:4p.Tk]TcMdQl]FDN1cNRVoP1co7Q\e`^A$K[A=S!=Y(E*%F8Qp\riWHhN#,mH.Q-aZ^n\=,aol2FBT:b/EF>78<ko';QE!^c0@NH201a!L1ece#teOZ1CZU#Gj+0jhJVek<iR+!W"%<KrUr+/838i\i<#VK5Z-9,I9bS]HZ]cJ&a`]fOm:"=.uN7.++2jT[=ef*SWTSB24ZC)p%P\6cl3VQHdKA)i^@;A!B(`Z;H:P5oN<SB]<sOXpl6a86*dZ!`7G/7e\6^TC-mLJH_#YLt$c"3Lf45e-MmsW&&W1(h[XN\d`=joVLt@1!LrZq#4rh:k+4<[sg>7$aNENF[Z6Q0[KDPq_hnV/,geC3E8c_m5-FOZ\Agum9nZ`;TV#+%.`+_+5d[[>Hs+sGn-7P'jH=%S=;.('q(p7!1Y^N3iph=/ZoiCJ\P0+P%?2("Iomr;6o"e3^(D00(:7O8s>J(BdhQT?ZfP@mL'GjWBK)]l.VT2XUH_bfX-O)_22T=8)TY1X48J=2mA6-s*Rk7<I%UU3/:$]@b\*6pWl(7BQ;4Eat9/%+O=4%D"dQ4P4o^:Fd*^4E#<nW"E6[R]mQmY!,8cO[+D;S+r,5\/3cjB\6>$?^pk\r)*(]mT`iBERpN'=[NXCcXtYYakUo<_4])pW$WkiR6,V87Q&12m-M@@<p;9;GTbpHCOXc&f>M7L:a\]tjRdQmhHN3EJh;ush~>endstream
-endobj
-% 'R325': class PDFStream
-325 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3266 >>
-stream
-Gb!SmlZ:gj&c\Gjr!sXjI;iAH&kP7X9sNfMg;N^,b0@<VlO?6K(,(%`Hs"epoj*(n#_MMEENcc+0hL^aITYqhFr)VH_QV,]2]RM-D:%317B2)#4/@n$&__UtbK]?S?e@S#+Wlc,VCBtKnDq<aW3<)UPj)"G[4s_VIK`V0KrVqtWA9s%dDeaa@1G?a<#O/!L[<WB6C6^kB_+=>r.Q<hM>d=755ZZ.RVJU968U5^UD;2?M?^iZ?"DV8]#R!X84`ZO#%J_4A>Uhnn\p.HpTIr78-;%m$K&7Z1*=hMN=OCEYqd4*T5=.]'2Z);IAl@H<57*"ZuAasZV7a9?NnMk%6H<O_T7_,/b+t46\ab.+a1a'GqKGTKBZiaUSmZ8E@aHH!eokj+lF#?,/_DdJ::o/0h=A(RKQsX)^OX@#p5%er<b@>&7M12VNA;70i@-XP6?VYD$e*g7(uIP&3`9^##Wae96]Xki-WccXFjuk!oOT9a<B3Dgo"FgUM"C5,XC#O4b+:=,Ki+"_uWaU>/8^!F+edR'=9'oG>+8(I&:UT)JgXj"JK`ON$Hm!cLW&Me[;0U!D00s1OR6VAaCoo7NXiXCaa<R7qlgb.VuLV<9MKN;FN@Q(u2pjOSQI7G^@N5;hl9P<Fn"UWNtWk_-rOGNSF7EGGfVBd`1;`K6H?:F9c"GH)rddQ=n0:ih<Yn.6fK;&$*<HA\J#G>WaRLBi:KOPBdDOjc<m'dO-.L_%Di`XP$F<d3t<0@1b$!E6qeSf^oT7(L/0SUt"Aj;kJF`7MLG5oC*Kb^s/Dk3%9'WIH4eFmh9Lm-][!q_Sk:<d*<gHhjLD0nM:3t-0Zu1Tg<YaZs8tiG*WM%aE$U`fMi>j/cD%'^h>o4e1TKs<eG_.rd-#&)U7nlk251RqX1cm#?u!KHsa,Z)])W+5i@"rpQfak&(hCg#TjPbA[%O1dFa*Sk/R#'9MNq!$'CYhQ^=*S77GP*-TFS`0qik?CXE*NiFR.Y[9e;ehJO)N\lm"VUCI7dO81>&DeD@oA4qlp(D%C":MdZ(!uZ7lc?nm!`QXoUF>siLg0"X;n1Dft]3/Q+13$1%#SlB0k&bsZJJ86-NIDR,#Qcbl>.Ye`fajQ:5Ro\.622=%2GS',Os^B[I\<>;$;Uo2Bq'R-1%SL\d0'WgRFL@*@Mt'1a>>::;&o*%OJIQDB7gu)qZM4$!>$XaBT>&;$nTJI+tiCO-C71Z`?`m._CAZVkBaAJ09P?Pc1>HqeT^#^H-e],P'f..+cMUS/'P!;NGP(nVUC9A!7+Car8ZnX`T*F?4pe*_bV]9PIIc4M@X[(S$[)D!#CSP_RqR\ZT%!?FF#m=4*f[<dc,05-2ilIER*"G8QM;EF";Y.Ri$E#$UL3(udYB9i6YPcd&4,NBpaLGoV!O:k5amF1/6FEBiN-H9EL(uGqcbc>`P^5@Ktogdfg@/0W*#ZS75jiOq0MPp3Tfl(7kE">rq-Zes0:efF4d*8^#/\$rq2&)6BTj<&[XQge1^7rlc!^"8'n-N(HIL^ee)/cU(W[M-=V5F!P>6N7(ObEF8oWn997aX<5K6UH\d?0!cd$`:`Z$f6%a7(9pu^X"mY.q>hn0+,IQ5+`*`]E5!'ec7Guj2CY-X&U:cDW5G)^V8T`g0[>es,07R;6FfP^(odgDs$\oQ0gTBag-Nib-=AP&$BCB5Q`COj;+9;a1LP1s\!jGAQ#*67o$]\nLJ8M"PUF@=]$7YTH="IEc?k1oSAaT/&Fo-Wu^0e']2t^"4nPl-A7SH_VS/AIkR?dDrLT!F:L@e"5o+rQA-HacfaL/`M`'.aHF:]BkOt*Y%o^LnsV[qC!/V!rL"ku(0aUP"T#.X8@g9kH8T^Xqn&=;90A]lFn_rE%)=s)W1i:28EGQ$c@'>MJ*jmgT"Ga;N/0u5?u.Oc?IY0B3!'@P.brPRY7fiFM>d)qf)`RMlM+_&>4"6UAFhLJT?QBD/p$cVmK\\=M-#J**j^STJ@8[d$q+='8*s%H0Rl)`BaGG'HF+(-%@WZc536P0G6%bRF/$2`?\=W+X$+V,RDO56@Nbuo+D22r8d,J<]@8_acr6tJZAMe'N`'9=(r!Ho]O(KXrfd\@QF+aV'T\==TI,)@O)?sJh0JnW&SZkt9`he;rIPUput+DkVUGhCS9R'Ihj)CcE&i2kfpaS^;Wck'KY,>m"`P)/\r@3^7N1KPpjd_b.F!(Q&RTjSkIhPO(F+M5Tt%[Ak:>LqV.F$cnAd5TS2>[mI(HT"do%f:;_,?f5j35uW.K:0Jf\`&DTR`6<tUis#$+)oUIHt'u*,a?nl2TDMK!TV;(>sO;a+WkIJK'\&*Ml.YWdk36tLj"<n@\#IJSr\';Gl*ET+'J^4a[K77#<Cb*J-l?r(XhG3^=a6C9CLq&KF=hRmts''kH@@^ibe>^op:_`f?8%pj"t-??`ZY/#8CB[?"KUHJW5&#]qZNR1D"GjM4\=uc(0Lpj&4ND*d;1:=D6mLs%Gc#(2,Q;(Y-'n0+[_\ei1!?b<e@YGa;C2LAj[:rcd#/$2p89q(KF&Uc*4g=-'ST&GfLudt*K!AZtIKd:Jg3Lh+VO8is-8Bb\_YUT7o5"@WVH?)/_ma2Fo5:6hO#``cG#N$T\s8gm&j@hR2MfZU\O3+7.C8YYKl<(Fn5dX,n&U_`K2"@WWbN[1Xs[1Z22PDs5m91DaB:kg=;<7nI%m5.Sj?:0mS3ZZaJ;$)3Wm"j-m*eBt4Ja5k$iieV\MOJ?L6WjPDU4b9Y3MsZReSD(&_Y+n27+LM"QAQ9M(Vbu$/`OkXM@qZb8Q=qi-(:PT)pp@*N1_Sm$r)aRhQ[:P1eu\06^"B/*S""a!e*`)LsuJIJY4EBlU[c0YE`dYRVYAZ=Tj>NKJGAEVS\ADCSu0hp)9)^e``rtMA#F5/4ZKOn-B.c$!]t5'n<>R;q,>&)Tj68'IB!;aYCn!etASR$/95d&lk^%=t3"7$7CTkbZNA"jN*Nq3g-GkdMQ8ja[S+G7Erg%Ai)LpH,gi1dl:c_%8!;ZFAtb!$'Ipb8#-mHnDPQMf2%DRH)X2/e6i@cb.rdjgdMnY6Xbc8[F$[.>E.^^<9g9BJdo_Z=XTsX&Yt%7B;US,7Jp%<]<&-gfbncj.!$/:(Wb^/W*+Q9,jdFM'2bla.Z1_IV>V#S,85ufA5)./C)):BI]f&@ekk2HEH)kWaaAf11ZF#KX&iRc6`ZK1!ijgX0eTmfKTGrc"Wu[g9uhu'ZUfD@R"\EIMq#:?@[^bUTOKbn,+DVtZ3b<(qaK`AX+(4FL7uH~>endstream
-endobj
-% 'R326': class PDFStream
-326 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2764 >>
-stream
-Gb!;f>Bei3&Ur%dq%%OgqV\^n_i$-jqW-:#epEQl2c:^*Fk["\OG'"1!2R$fYO;mE&P7fl[<5a/<s]^Ojr;MEpkH)i`,A<KFT[0'1O/lT!m?>O!j&(MK\8k?2gbA[]Df'Un^.nagR*q=9Wd-&JQ9&p'@X5Q&Zf?R^fa;:bJ:QCEBYG[/BH_C%amBm7\nVbhf9$9j&[r3#.$O0$\$Vjhhr;c2@USX6^iq?(GfaLYMTl,1,U,bJu0CL&.Im[CdQP:k$]qjN4K$uTdM)D)3H]2VS`(d?bUp%rd$F`J?NF>4W8#Z7l5-c1J`:!LLbSGF:%]c:H>qc8F[8R)b=!L4FSqg%O-^W*q1lB'&4m/Qj?-j/0q_I`RJ&+57:W0+X0dE6hY+hREg=Y?`,]IF',7>$O;hNO3N+0LO#>=:tp8i"@DNsV3htr"p>hUHJF,V:4=kkR`r\c8/7K6J/PB.:hY8D_*W+u/*AG4ndmAtNPH6%#'5pBjn.j##&muo@#;MDek3YMI3sOF*_Wk+6t%h!lh=05_6`"5rkSg=\K(P'**a?ZIh2PSQTt/M>fFs#7^pacU=[+5SD@`RYn9+1r%L8cHnG4=_m]ie\M2$(VjMV%+CG;j@jY?1J`.!%kf%1-FZbnP(#&r[,*aQ'_8@]U\5T*,.%"fM_#&ohJ^N[Fo[6QmA]VR!a62]m<scQ\^01fZ*t,c&Z>Bk6*a:ia!)9NHH64g>DEb`q/cL43Oi<V73B80KVV(JQ&TF"C/5W:I<u>FYTKqSLWKc1"`Sk=M3.LRRs6Z0%*:>e5D?pbn?F<'<gP46q)sDNgWL1;,Ypku9VBN'PR:LQJ/]9E`SV6Pb5I0kPT5@MPqU=W2+0T+lmdZeRbHjptTIQ.6'W<tu4fp?Z!bWf>rnYN0ANj@2CJrdc2>uf73E;-#[iXotpcmMPqK0CDGZ`^H@.0Dfh*[e-WV?17cI_<m0.3U3^bea]ZMqm$W*+&2)c!luW45l*(r4C=&U=0>m2:)O1l29^%T;'K.t,4LP(u.]*DsD,L,,pB`.5Y\0Z'[dSdMI'7:Blqfs@1\0&='WmWsib.gM<^j!7QZJYclFDkH]b(T+oBB%(QYLm&:H6rHq<T(RE=YDraB%6p&K^S(bMoJM3^s">J8\_=<^p/XFb[Ifp_0W!?_3RmHg^Y32FjMdcc8@R>BHS2rmZIW`NlpbWajiH)&SJa<;?(Ki/Z,?FN2R[CTX"aVK<LEBBVu_H"iN>]NA&-fieag9A'YlRmUX%8*=oik2<HC5]^XY@$bMg@38dX]dLKC5glo\s7,Y]+s^al+8(@%WB>!^L)1r2n,HEW[]Xt)WS9)CBE1YrL+[S3M]f9(4D0^]:(7u4!&<-I7Q^QjL#<JZ+!;$Vj$;8g#sS^VimCsh@b6:^tIl,Y3)U*%V[7mVm76^e@ZOQnTm:^6Q/!/Y>3H!]qp4*(cfjCbhSIIH5*d^Tg]>\RCgm)/X];]S#p@-VEBU3(fnJ[\)(aY]Cgj;"\<]Qn^64,4un@73!S/7#q:G+.#@D^4Vth'2VmeOB]F&Jm^].%(tkb2@<T<[j[9,fFXfnSLf,pN,ri1A5=4AiD[(*D,2)L.SSX_CQoRsn**El3@inj/VA;1_;;B\G*`oKYF.Bjc!L2BcDN,NXaZYDs6RiggM2o=@Pm+iLN0*rM#A`n66M9(BoPu[^0nKa]&9&EIQcBm,VA7$)\ecDo=2U1_>p=rK>XQ)1::[0?Fj'@Q.tV7Kae>2:Nb'A]R[a)u>_HGG;g_Ln<hO/sRijWMHNKI/l&hb$bDEoeB0)1s$7G#r&OP>00\Z&GJ%6#=,)3[5C@8'$+-6;fdFL`F2G\G'%/:[=!bVP9r&7d`O"Wo"f.p$P3NaCN&XUjE_n-F/`<B]r(9`OgH\2&up&S;T%m<CcW/C!%!mdY*Xq*guOQ+2BgQ38kJ;TEh)0!i9+]Sh?"eRDsUY:gU>[mD3eZFA08C.X"YRk"m:%*(`c@O8iG:'(ToD;>2)YXl(IZlj4O6p'olMSoj+`YrMekkG,=-R0_bLibjM?PV3T(Dd,"^JXElu6"5UV9R7HXHq&Gp8>[DQToXKKG,b$YtFf"u2=OA(28%1HuZC*?(ZHE-];-NJ;rH_:ef5DFoUPjSR>n2QiLn`7iUG$=-AQY0MYDF4<Z*4K-B:kmkiR*^[4U7`G336;p3am5V_c-5151=nD\)(pCK]K.B0,n%(lobp2QKAC8,Vd9:PC*U9n(r5g.rb.$c`;!j2"Oc.pl`p0FGnVU(,HbNF?Hlc,U1UoNnn`75-laqZR^H57S<LtS`&'W(`<d./I&,4WQT*J=[RPTH9R<2Ndn_30P''r,SL@4>[e&JhV?&Y@+ek^D.ljhOPSnY?&Gs[S!:Y:.iW&n;9\3$%*#_mTjZ3qjurR@SiUJaLZ.LQFY8u7&%4q]))eE%Ao(,TpY]f;SCN;=DB4kE#48aHL]KbX,8g![`DrbV*6s#lBQ_S$unCdS@<2Q%&qBVj4Q*u^JAMkQKYPkVbq%Efgm?OBVuXs!u(m&RVVUn#S&e`YmC/!PBa.%j@["\de384N'b60<'p(Q:sK9qQ>%Sl+h=e'-U<$g&trlaPB81@A<K#0U(T1WA-]c"</6>T$^m=J/9.o=@f@GF@/N>["R)hL1fQhHh9XR;Quko]MgsOn:?Cfm`,7MB-P,qcBTOGnC';4d'k>id&hV9M,\ed[1denE*PnX]\LL6B"+s8&_qQ$S^US]lH3HIKg$?5'`+HZX&lh5GO8bDDI!U??l;*^E4nH@f~>endstream
-endobj
-% 'R327': class PDFStream
-327 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2591 >>
-stream
-Gb!;f>BAOW(4OS'rkk/<XO>g]W4R8GHqWbUZ.hlrfH&:[+;0hKPCN^bEn+OSEr_At0!QfP3tmT:[R:_C\UEAG:a%[c-Zjj5']<F'Dr66[[U:qCYS2+dF:6]qf<7BMh_;gYgOWBUk]_$kg@Z"P_r=kHDmmPa(S4sJ_Hk>H_>pe4K0c[KUGRIYB@*XVTM*<`h2e-oU]1NfT4%;dPMgZZqmgtAqkcWlr`OZ+%XD3>^'WUr4jhRbSBG"b&VDdQ,k/Q"QUZoI%eGA,M:1Vp`-`^P%O.Gk4QY"3D;`=Pi<WPKW$gLSR_]G>Q58W,il;ZgT5`%d`,T8n6QTC(,d`2)cjiCH$H=(8JnlstQqJ8L_9R^o:ZkF+ARWmhS'M`[0j8>o(sP$NF(7(?BdpKZj)UnMN<7D5qLg5AYmg#5B]kaY=I.V>Hs)NBHdp#<d_j:S,ZoYFM1nLqPT,e:/</cU::^?-R6b+*GT=a?lZOs0TJZ)U(NcpV,#l%%M,l'aKoC_UdW%t#^l6B5H64SM[7XIi'RQ$4:d``Y-H:X\.Ksot9Q:"W=eZ"m,`>N^EG!>;;HZOY.P*Uc%uZ-Mj2@LI#6*S%VNg'9#?"4T>!-Q:ctZ?4J`\CUbPgU7)kN/=a4rjuoL4Y7(22WK%Em:uLbi!Cn"Q?]9/d:r4G0UB5]tB_a*2SP[ThJdnIaLc$M!O\<&7$kR/-kB42EiXr0e+d0^+3J:k&(Bgum(90t/]"'rc;XU^pU?@A]jK`n_g6;dg"AljKpt*&1q^_]FG_!X]7qr,Qn#Is4f%rUP>XrVleWs#OO9oY-&M^'$h]/O6J3J7)]Di(&l_]`WMi(8dfqTg^EW9=08`=tj2$4gHL@2bB(o8<fX1nFfM>Sh_boFq?+p/*6U/9-r.@oL']]D*0Q>&/t*+Lm=_aZid*ii#B:lPj9Qs4(uAWWU9uHNd0BU24p@?U8BD]FR7eNEuZZ^=UKUd$O-p$du95,,tOZLG\_'f%T'F^rkFXh-eO<dqP;OK^UfA+PJ#][g,30B4,%C/R7;Js(6sNqo;.<Vf9W*tE`M?k`.=;c#Ycb*,KpHmmkrg2`cV-s0Q>FQ7STt2c/h9*,mbEb3u^3>:C6P>%ok8HfB:4X$/rhG0\o0_MhOQNl5##BJOu/83l`)U3e1A)(BECa\Coh#+PAHh7Tt`k]Lpl@`8T7M&?@3(WBJsN41[4-$[Spf4WOaODPoE1CcO@h#5tmBpM)>uoZN'7ICpVbR,m[3\-7ZZheq@-2l0'`WZ^%LD*&0[hlaV?;7?@P<&*K&s-O==-=oro="IL17u38HW@jpn"s_K1m-[;\01>0Kd:K"OHpb^3O"_/Ff!md:qXtp47eo[kG50r.;80>pS9UUUbFiH.RUHL<fh>mr_a;!c$522h9P4YHY?9`&/jjo`146!`,q4P'@#,a_PXdO/O<Bl;Abs<M=%G^Z".>uqar1pQYGcOd,h'rE4Qn7X!tUC_M];9WVD(ECj5&7h-cIs@\6Jn)?+Y&B",#CA^&79Xl1lEf5G-pf_nc7_o@llE26`U>TNmuZ3%N(aK&\4eB;iBdJQ+XkO]jK$Lo[gJ=;_$bs7,et[9L2"$XpftQ8[r$9$L-:!"r/:#EW;\rgpGj;9GAE5$-ILLnhO,f*RFg*jYgKX\HDlfVctTV47^_#@U'n1K('6s,.sU*l>Y[PtA'jM"aAB*Ol@I`:HD4=LHF$%8[>+3CQo1#nd/3=uaX)5M)i9X@s5A^=pZ]Z31Zsk*N]LLGu7dN8m3)7&GET@1qEeTY!SV)nP(+EtFsYH/=N^POV"-"A!PhcB,XfkXLH'<d3ntBRN04V&7U)QNOF\1MHbJ',l:cLp=s"KhJDJoh_f0lY\3Y%uC2QcIOP(16"9udtHj9i5lUWlu#c#>,6JVk!3',$D)E9?m1na^W#\2CSjdEObk=nOR<(dc*fU'WegMSBFe?rEjW!jmB:%eG#ZHbXso:C<De=D0ulgj?rojiaa:L8P$r,D]%&s"n%U5;k6W1IArMjbX1[f^Iu`fN:i`9R$Y'(@?m9$t._/u3c4Ee'B8A2rkk9eVcG$O^l;ec)7F=qlCf)c-&Um1C_^dY7I8)m;.Iq%]?2`3F2<Z#3I:Dc'O9@4p/@%n%qpk*nO-ZeBgD&15).q>6B\r+u/U)RR;PYjHWsgY2qPh3sS^,X6AQY2"k4nU,``E(piJkN)<B3(Wj#\0n*YRgJs-R6o2_+hlr9oM[bmbC,LM2a*lWBj@>/prL+"np57>+&V+1XR#q=&4h&F4[Drr)6WE"W(pq17[,%ukoeDVj9foao!5H&*43K4Dp9ZU/HV"KfR8d+_d=IEs7MIXg\Vcc`rU$mtR/THAb^GB/L2]&>@W_^?n1Ra#J%P;0)Of%?Q80dDe?LPU^#)ITL!m#u>Y)%+PrTo.RfOD)GlkD2-mQt95_;H+&U_RD?\IXtMgi+&UC@AQ0]I,S\uX!_,,NS(8.f_Vh%G!L-HV*;HXI/$H>m[N')7ZUg<JL+t$N-K[PK@EG57B9FY7I/E5(<>j*1q"#Ri7[iIK>)*,q(T^7b=WV0ok6?7`Y,EE>_>N@X%30bBPDnS^SLaW\aMRB2dM0iYPnR-Fl`;~>endstream
-endobj
-% 'R328': class PDFStream
-328 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2812 >>
-stream
-Gb"/(D0+IA&cSAir.k6tR493\(>hNjl#aq*SVqi<gl%EPAEnVo-qHZlOU=BHnbr=P!['qZZ;'SR]1]&3a,rUg=?QKI.idd3O/)_E$\6\<*5-@-EFC[-a(ISp0&_3Mr7Mnble'ek+'b.d!RB@:GMo;rNj5hO3Gni_kKe+tl4&O-=NC^F!(I@n(&+A,6Pe%W4oLShTJLfnU]8-n03Wt"o^A.;_bX!X6H<SQ"kkOIr]=_PdmC9_4I7Q!;*(C8M^<fmb?3o9+;I:c*lfIma^iEL9q"@3a3dS"PpTdu3N.4,`"Nsq**`iBM[@,7F-qcKN!.5@1):7[j<@O<1BATDhgY]mB5',ZDa>XG>%E"MZVi39^r`;RW`(J=7DTe0<D^+\;34Q;4c&2Zj-^Sg5:P<SO&J.IXu$sb&f4V<ei4=i5RZ<rkRTf<4j47go`Dlm(u0hZa26l`@,GULd":_PR]+-m0qZ;.@LTI+Ejce5%2`fo*EUJ&pHLciQ@S/l=l07pa4q_m\,\0-\adpZ/;E,3>e?&?^4WJpT\U>YDM]Y`:7%Ch$0lH>N+HObS-^H3RV5EV`LO+Wda)Z7_fPIi/!oY]ln"D8[MIoL11uF+7k*$_[;,FG6nqaMrhU\RM+O$-66Qd_Tt2qV*Z6^4%9(Mt+Z&+j#*QJYjn`PRDXl9Fg7TrI$C-g+PXLH6n0gq,NY<X[PMZe'EZnqa`OB.2H<r.Cd=hbXBU/W>'#qGsR`%K2`JGInM>)[_?$'RF,dmE)+A4OM_;MD'RMP@m&&T!N/rC$Y"<:I@'TsLL59+NFQRjr7@4h)](9]LYo'e-"k%f&Jh+D.N6:2Z<o!bBpbMZsMQ^gl?%+]Y_`(2&8<0YM0+BK8TlTOUIk<ESApJH@*kBHAMSLiRD2Qk_QR%4J1B+I(B@AdFmH#;QlBL=5Y?A\l?g/OLd8!YU+?TdJ3(`+riTZ/[%J;t]).p#YuPmoN/'bR?GJ_M=GP;J%D"sbt*MF+hBoe"aF1,6go5_1O(BTB*S\^74u[5i*B<OYNO7<`AEe"j?J$IhsAE[mgnUW8),:l#<c0p"s7pOL8$(W&^iqq(Opkb7m&Qk9#ejVjN,V"RF4pHIfr3+8a3,I&<OfgFFjg[MH%8cAI(?aS;<TiW:VKhfP*RDAE];l\0BF./q`SW9c!CY^K0%7@2EA6e7O(fA^lQEr1Qj5#GT9'!pZBote/)qW1J3C+sc,,6eiq%]g[85snu]:N8Ko]/ps=m8-qN'QVoraLq+"%C>[/RVo$4C+`DOB9C$XbpfKS?A!$G<H!Kj,Q4]Z^%b1O,J0]agA=[E`.6km:1`'B^Mj)13+I,W+.9RX6@E^%!2d!HIIgncgblNj;#A8&!0t=$_A=/VR+i&I$O[Tj-UnlX9U\T9:6K$?bqM!'o2d1e%rD:G]E]Mk/AkIG'X&_jRV)T\[jsd^V"gmVo5b`*'!n9EHua!!f'N)T+XW<7u#_VSKB;8FtmM+]^\Z[M!/o;msd/Ks2[\rY#:3T!eu)[.CPZ#1ob^[$c5()<26786<@1A"O"L0AK,?3`T':Le?1<s,XJDG*>\E::dU=H'?P(ZF^(hS>&hb=b2/atSt?G;gY2jFAl!e5V;\n?"\l)QQD2",0"G:t4a_VTiURCCNA8],03o!i.FVOq<GMP%G[jm58b&p^C<;a\4IHpt\R#0Y/s;&?3ABJ'dFFt0at'7&-)Yd<'dQOL0fW6$REV>;K(/Dn33DYo!(rULK_3kh[`<KnjQF.je9^M[`:W'U+@,[Jk_9"GWjnr-i<BQ*[2YVIh_6VfpUJPdYVt"t5TJ;5)V"mF'a&/:&_oEu1.bB_P!Z].$5?P.R/*D$FNO>Ta5H_f`rKa*Z+QudKY`pIjFU;,]-TltT;oP!.>?\lHdk(,)^kZu^l2-i1m5GhVQ4DUR40o6j0c'4]YN:>/bQi7q:+*U\-"X^nNQOH6O'("SGm+gF5bLFCTY&K&V;NndciTcb*;`uB)DZ]42%M[gEZ+[p8ZWV2:DGb2/m^?k*+=Y$.-W1^M+QH.le3@q=o0Tq<UCtS\kJO_oGq?^F?s3=`lP5Yb$c758CsiO]"O:-tD'\!VFZ)GMjRqEHVQhk'I..c]0S4Sqm<:5#u/fLVF!Do$e2Z!f#/k2qB`h[&rsq-51)#nOL68'f1[;g)V:6m(K9N&f/]5X[/!E5ok5F*Gso94.!-;`<@%*?cD*mo[-tBjt<aZ*eGkgGaIR0>i"%+KA'eCLUJl?01s6jM1T_.Th?35cH.l6-k-q</XT+*q$Q0F7^R8k)>48rmLJKd3i;UmPabmMZ+poF4l8q\.3tbIRuiWGNl/6Fl!C:=TXKPpqaLX`*X?gd%n]&[TV`QDl>Ajr_*@^PfNF8McWpa/m9G?]8*-=Y,UfUf]iWYA#UPU^G\F+HXh@XOBM^/^p3oEu%/8T*6`Wo3E<hA'n@#Ag"')t_9Y#,e?)IpfJ85sOtQoZGqEX;F<^OjV]>lcBIpT/2T8]$f")-@=RT<r*GpEnMH`>b-8rl=TTZ`V,T#EY6P0N#]0.8<FJ5\DrE_!]#")G5^oK!cj09aRo3>9K77=M.V\*9tJ+16E[]_9&=-F;Vj)^Fh,^C0:+erL1pO+n4r`/S>1'=KP!"S\u,nt&uIgGqN%Kfq_3F'="]pe5m=:!eFs]hhn#T9BQO--$+._rh0gLCI<g/MK6#<Eb5O-]qbJ2smid.NOuJs)>\J"nFnMf\^$U(5R]::Xl?(4f1?O_M&6@oI[Gm`lm<>NITma%F$*5Fg?R/Nmogd0+s*'C>j5(h_h#Gu^HfH(=s%qO3n%M2kiJGn=q6U)&UPg=-~>endstream
-endobj
-% 'R329': class PDFStream
-329 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2771 >>
-stream
-Gb!SmD/\/g')l41s'a8-QPPTrq'C3-%u3g4m;<G_gPtq;LWb+=-/)r]M(0r7p&4`8L6O!p[M,K='\aft@T+I2S9a7b(P^G[:[%dI.FF=s4anGM32"rV_GN"]fh;0UG5pD(pD[/:O%2#D"HtS&m#6^A)K*TI8UhQe`cQY/*`fE##Qp#[K'CsUAngoQHgn2%@*IC!h2b^ean\;m]qa7*-c*"SpVZ^BYFc.Ykmr$@DA)c#^\rQ[?:KS31`-\Bp`H#eV`7XJ_r4`PiK*Y66C11Y(ls<s#k*E[]\jS3qnlgq%"(+JV3!kMqn]Lp2D3uk'hW*_8N&_hj]Y*9<150iQ!#:*Oel-o?d?`YH*0k-`CeQ3ZWAg#O8h(b9%S*$$Z3g[d`'rWoH0u90*Es.S$]a`OgI7YL\3I<om_<6ZC!7oH1UpVB8;i2Rd/s&(<_aoIeMjR>t1IS&s+&Xr-Z.?rQ/h\88KOY'%UoU;t/IOU2rLVf`I<C'3gpk=@l0&@"JuYFimV8OpXnkZ.=XJdI^V2Q9om&UfWlCa';)fN-U,fN-$O@OHCVWAMAr/\^":]Q!o&;(+$E/_A<$3?I2+V)m/,X"r-MmphV\k_OE8"#6")UCc^B>;:lC+k7\B$Z[b@)E&?4!Wf<f_0FjUqT#d1!/#XSaV`5,>1foM`2Vf[6UC96U^_-U7oY(9p"f'6?6;Z"]YT@cOZ[:Et+:L@,bRB;q=,4/!'.KXjs(<ab#)Z+bbZp^7+p/>7*a-0)HB^]1C["\,Qs;eM['U"&K%5E'>Hlea<O$QPj[Lku@8-%!j*%1Q[tTqgh'/R_S'GSgl5]qak]];H9cgY(Q2t8H-nSi,(+Ne[$[9gnD+u)NTt<n6EH$(W#^8s>F*Yq/kA65`cD(nFY/8<!$-#kkJUm:7O^c:]YM[PP>)@&ESIr:a+T,CLHP\/P\e6lUJ0<LKSQ.O2%r_'k,H1Qm]"1IM?/9$eD^$VqOK>lY/S)5F'$5H8^3lZk>Sqi;'4ID$nY"^R9@=SK?Cf^]c3Jl+9#LQ!kTYVJ!MM['O&Q!]UXpu]VBKJQ7)@EkmO">q*;P#$kWO[Q>aeVpN]<Z-UA]kbd;@`i(jl:$G/I!*k(q1\)422e2q*IJO-(q!c<\VDpnaNH75Kde02%!MiTfLglk2ut@*"L2bD\Fn=sM<n>]s*:ELqtqThS/S;tC'"i!sPrBO2HL#UEY@P9;j<GSMH?cG?0:UftBj!:2q=+?='<a#7X@8/3',%71+uh1^Nk4sU:'>dH4q?flR'm:Uo>3beu%/?Q8oEr9+'NhPC=:l1RWJ(I<J[Okdg,Xfs9i.WUC1'076&<T8?dsCUk?%WGu7=,O.ScFcIUYop`5A*1YGqDqH:r)6T98Lj)f0.0%U+7g6NO-u'U9?`F+RXSOiAi]N&n0`HgJ`'/ZA(L^e76$c))@BN`_H=89[>0-dYKaAUc8C_PZS2d<MT1/1mNnnfr0$kGTu]@J[+#p#GKd(==W16W#OT>KnVOT:6DG-[duL/8G3Q6OF:3:['hu,I5otEK,KZGh^&6:K8kIQh2_lBr^J+QTCh/LN]IGak(Q%e8SsmOjdc;6/No%Wm6O0@lukV[nGM$'.9JA#r6t'uR#JWNXUZlCApN8TUL'3S8K$EZ1`VNnCU&:\jj)iAR>Y7M-6G2<EfO7gCq(:W/Q@P=!U3=eP<@Ck,_E/Aff?ige4XAXdP4fu5#cTt,e-R%\B1^_'2sla;>FUgHP&\34_LI!'&2h7e<%;&hk?0;??,N([W0FuV.-`=[2j.tYd&Qsmn1o3pt+ZJ>S6dT-L*)SPIafq5Hdf".FdT?D/)c/$8TnG%O%[\f`pWWn'\[gdQnJcLNOpAbI5qHBK:\(AJQJigr=[DJ+ESM?(pp'A`KoqeWt"5f.!Tk@omVuQAtU1NVd(tBYL,Ea&Mkbb>d%M2_5>8\p@+;[8gcYb6[2XK=rm'+8gP`@eg!q]6TGu%lPh]6'WI,@^ZZfJ6p%S\2p^6I]Z=l>BSjmVG(;tZtcV\;f,2e>RAcA!djtRk,h-DM#t**/d*qlSE^Nog*$Mn&-*>23Pl>K'J],]RR48G\;/.<]uINbm=82Z/V3l46RnV_+o:*Xisq[#K=c5up/T4`)jRkYBo>k,>g?KCOkRBepE<76WirHi'T2LQo'07FA581&?]%PUcY;2m4'H7V:)CAHDZg]rkG5&HRo?\jf#pGcO'KG$V2BV`[7ifJ_nj[e*?\o\Ym-j'](Bq3%9rLE]1Gs#[PmaJ]=L"$df-'HdXZKolkK3]%c5oV'/A7m1$Q!JE5ufto'O/nn($/LND^;F`YS0WLitC%ZGplcK't0%2)iCfL>$"=3K9]?\,In.%:W0<#-1d&$?k;"NN.oJ@=;#I=#Y/O=7'_0Z6/mHokFrF'@8XM8]mp'@u/QHG-UQ2D,o$dHJsSp-a$"$$k'qGQ^c0>ffq7cDrHkSK#5%`IEt1Mo)[@GGhZ;eNCR;!rHjWnqD&*habXOW=`X?^-CWd7'Hl*c]uNE?;R+V7h%OXJUn-s'@kTm<(+`?K,-k<E+WYf02I5lU&kXZ=7L;"/8uN<^kXiMulebR-YaEei0]B07"lfKV,d6!R,D+4D3)B(70:p@e2ZLl*,[:Q25RHj`K#``ebo^3kW"B7c,M8nY,[9G+Xe;"Z(WHm#Lf*Ie8V-/)<\=CcT,08f::(El.&qP#Yb&n&Rt;I6$K=F-V#,XGecu/'gZ8Z]a3\[k$\=MN69!>@]M&m7udOolVV_rDT,Y'FDGcd7RuUo=['<^\7u$S5#:~>endstream
-endobj
-% 'R330': class PDFStream
-330 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2785 >>
-stream
-Gb!;egMYb:&q(:PIjk)'S;"lr.I&h_jD;+X!Ks"3Q(8qSpRt0eUgB7$VRpPFIm6rX4"VnG'*MFi80kJoeQ&MBSSGbj_&q;.)^YQgfC8Na]&7n=hLOoR5-3YZg\&`+TBrac%\NRTH-TlRF#qWQ(q\<SB/,gch@0*2?f7sW#hQn*$YMJl_)a$[iZ>Jm_O8f['DnQ5E:$D,_>8YcrgPe(=8VloqXA:XU4qb@2lV&tgQ+!pUu;,+a7XH;h!o#Mr'(4320GAV1#-p^0c>:f2uGsp*(5t/4Q38J7`\QHLQAo[d!:pKA\dXlD"9Q?2_9Chp[Im=LUghZbi/!dc.i9R]n50MGUOdH3ocpdLsW:,/<-Z$rt`c</;=Zdgkc^Mnq<i/KGsis/hH?9PCDOqjsoG<"R`@?=.&klkD[0fcCQ[pB;i"pJ*crO3cV$(i6].k44'\\*5@.]di,p<,@DE&*f2usK2`E*rA_Y+_AnFEKJMA>D6A-F7O*K'YseV4?j:)cZiPCMiAJ[cY*;J"TJ7G">^>V'AQ`8-`.?,!gPP=#[L/#TO%-BokNN/YHG6ep2QggOFDUoB`0k4mF/'C&^%nGV!nZD=$[+'IghK6[[7O^*S=/\:c_mc.9P49O\U8uAGN(/SMZP5HLGI?<`2c/P7`s4`3q-!f"n,@,eV<#`rumR7cPD<Rh)a>#GNR,_B7R[2qoWp7!=3$W*SdHQOs5K/AnE8f![8*64Q79d9K7`aa"kQ-h>Hh=(EoS6m@-&'6GAZS*iJ!FiY[*jL*r(H917m)PDCO/eL8<%V*_Is(,-GGD30.4MW!O,_?dbJQtmrD>EFF6:mj3cbk"=e):DIe!C#6K#L@5JgTY$iG)eAepXK-E)qTYu7C;/G%lXno4WG];i\R2@`Q)1DX1J-YSOr^@/O1[!^eY>c<Qn]/;nr.bTCshYXhYeD%>IOY6Rk\`R3G\I*&;ET&E3dp!1u_)h%Cpudo^F2GR.g9_Ph@9OG,-X6#'R-Y&:PHnGF#cW9(OJ`RF'4<l<FX5H/;B:8a^?T#.V#"c@6.ii2lEeB+1"A+6)OBt2&T>G`0+W!@H"%_P=R?(@%)5fVPE`7%R?Jd9-dNNM7_Kl$U9k#I2fYYgcO1il04?5/@Wg#9+MNr'fj)F.Xnid1rZp$%..M!BfA")W_5N=@_&nO8=a`T*;9D?<^_s6a&MaA=Hqgq@adVDYh$Wo<ZLT0L&>;oJun>f:5*db<TDg-Ri;3IG@G=p"1m8?2aA'tB2K*04MR'G!ocYXMpO3a(4jZ+dZK3<a\#-GkuuHbuL!cm=%7;`+W].G0noEMeSIUS5&)^SKmV<^pUl4pZ6A6]%0bbNLO>2t.51Za:he>%=ju908Q``(OBX!MUD%c\[@Z_"XGN6FEs;cMG9D?XR30[(R>4]K^11pN2""-$;#&^5)!1MYq5O3j0E!El=X[.uI[2DHd\m7(I9>RohdahkP#7L1*.q40%"ljO/RUj3b.`6dZE=0,2H^n*s,D7[d^$-p)U*eRuKM(4iDb9WfOHC,kj_bLHboUE/)<p5Y=sp_1[u6gGtDqD>L,G-7La=-dT*HGDs?XQJ[K_3`UD9b[p))EG,HOKK_-H4X(s)_uP(ob#qZ<C)01)@6Cr@"X$45tnfH-?QJI/L)=i:m\P&Tm.&Fb<D^kd*053;6:H%Rc0`t5[k3/fPOCY3k+m!+C:1oCY%j<0$DRC4h)-5Em`:gGh#flKZR8e5G8"T+oeG-*Kqr..("e;kL@ebD!C)=ebZt;#6$$T"J[g<$rr9W=Q<'j+D"oA/;W!<b2^#p4a#\K1Y&_JkO!<gB?KcK=tlMTP8FNb9DWlgM8*Xd*bF^pB_Ed$1nWq*FuuV(6gH@%F>Ro;+$FoJ*JtkL=?X2acSh'iMlVlEfYW1]H--j6$rJsq7jJ_r#ZSL9.gkj@gCBqh"KEbt<%0dX7QF>I2;V7Ip12QJ3DrD>:H>6u*[;:9>L%k=l+ubQlQSo'4V-;8ilKYp8rl)(ajOlKCbUlp<q4s+9'E^3Z71!O[i8n7%[HpUS6G^!8\cRO;^,H6[3enj)8!-Vo=4@:YsY_<+.P$V^V$6)4hI2NH!c#M>"SZ.7Wp24UFoT-q?''M=]L(c;k1g:,H/Rp5se[_`-tbApm'=7gsiJhDd2n=.<?lCZ%\T0YQk3,:=cUW)D84f0fB6'M#BLX'n41ne\+jh=s+nq^Ve3Jh$Y8mjXE3p5\6.%`RmRJf[me]EHc_!C2$(ndOgKaC0DPiG&O^ZiqATsWlA\h0KgQ:48'f$+IAX-@/X6j2=,Tb)ID1<dk0CG=4q/-@rp?3;Q.6sr&3/\Va=*0pJ,8,6o^;8a>uV)qV<r[*Sp+Vo<d<"ol*;r_'i9fcAa!$D1`Iq_?k$\,%.9j_1=Y&d]15:IE2*up#eWto/:hOMC!X'ebuGV.]6?j!)G"5Lh)n)7ii]nG;]C)>/eO>+dp(&$IPFA(YI9h.dl)5<g,tMS+Oe?q:G$\g\FE\0:7[8Ps+Gu%EmRMfqM?Fc7'O<Y?8#%BVhZaO_@I#3_$]Rb%;@Y]^B,8Q70[SLb;(/YROT]"p%d(%?NK79j&e%5Z"&cp9#tq!a&]X4LqgM\$r3NhTFS;ffTOGrcnOd.Rh$l!A=?82n81@3UiWoL#8"n1Ia68\:Kjco<&lk=C!tG=Vn+0"etJco[4XZ,au)i*4tJr[XEp:"7S*jg#.-O]@,QI[PG-f,aCjFQm%XE[Q2n_&M^]1$,bIsctSHbN(liB0ST9FN!c`RjKX5JjJ[L7d>02QZtu)+G:.jJ.`0@FIfY^11^s~>endstream
-endobj
-% 'R331': class PDFStream
-331 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2270 >>
-stream
-Gau`ThfI79&:S8Hs'^\LdZ-==960Ah8m5U0,ph]Qdtb8OM@Uu'\2u"t^[LT^,Y*"`+p73XPLuf1Z+&W"hsMtG3W;GE2lcq-h8%Ls,D[,>.3M5N!h7g2gZIII:])/Se'eF8$ZV?hRaH?_:SN;3SBU#,Oi#Yd#Is(R,8)tZ,$)l$2HBJdc_+346qYMFq8ZgWj!aaA2BQ>u$_-W%s*j5tr,l]#Ek)f]/\:,c)]+p[1(dA?i>+)Cc**pCTH.R?Fui]*jcISRDG(/1!38_OT<H)>Ffjs;..sEg.p80tCm9(8$d]qre2.8Hr,BXaY-d(PD=Bif^%<3R!`MJ6eermuV=rLsO<,Yg-QS6*iOsR[(KOSZ9!<ttA:BC4.Zd)m1=(:b^JbnYe!)m$-O=rsN)%k[i$?tJ=3b@B7Q6HPrmZlc!H0*edd:XCag*jM2V:J_CF]SRF/GJ&HTs`A&%K_^HEZZm2!.E`)3(kE4LDN?1=^XCBka`#Y6T/6o[Lst0daKGM9;r.#^GJ9dh!)`=]S7rB&F(=E<oeqYCSfd'Ak^JL)7$:&p#gNJcG4MY<I;RJ5nIq5dkAG`bR6cok6G*#*H*KkBd]76"G`9pmq&0Fh(A0Vn9BON:g#TV:TB3gOc;Ek<%=r!#2tUHj-r"S^C_N^PK(JT*rTb#M'mdKC(t=3n&@_Y\h%@\0K90JimAr-cef/)m-"Am]!eI),c.WXUpQ]:1'iRgLDHKjN;%7Din=GCN/#'bI?qITC-nd>V+h,F8)mgA:::ig_#Cle)=M)Gk:o^"+S&@ggS-C5j"22Y3o$gkiI&\/D%p5/Au!8T*-^r@37sK!DtBR]+H.l#2c"XE$hoPnq-f>gf+`CD)J<JACK"k<%pV8d4%2*pYt.a)Nl?Xko.U/,"]oA$Bk'KXHWTR$0MQ&SXB)a5W]0Ef?TTXUPptncg':(S\lZqRu`W'cm=E/,(?5#QLc*)f,W>%UhorR,`F0DjiTJo\`7>".!2=t3UCp<q?QrCD@ED+<UZ/.Xj'C%(\-uG=T$Ke\th%fhst);?d-p6jOqLEX?3=5dR_<uIY=7u6QE5H4<@:XQV.poO/=6Y<XnZ>BPOhVMH-)dbakCXnQa#]+a1>)9S&%hL^=*HAk=;1#iId18Ie%S%=#UL[4[^8GHO`&f4171Q0"kALb/*H1V()4LZiE,I<f7;,s@S"Y0D,lK3ZOaO;tDs>NX:7F\+@LG6[Y,TQ+C7eJ"O+]]2*^DJ#uhZ6WtqOE\!*"&PEWi8.ri-".5Y4.+Ts4f\o@!G\.\2U5fh<#qW!H69dS@oLC*`cHWMd',JY9Tq@5@uYW_cDt]+X<d*FEHe4+04@QY]V4&P;Rr+f<7<*qM0O&6nD/`]p/ifu&im6nF/5AWrhe#e?@=Qcp4CIk3L!>D'sHXl-n_eE8TpcX<akA5aO2C58h&*)_4[caonH+C,kON`,q.2Hh9=H__)2$CP"I:k4iW*u,:bD#g0>RNX`%CXYGX_j3cL(A+1ZUJ.@E+V>582%4(IrgfJ<(tW(a6l.*FpPll.@36Mr\JcdQF8=rgOd/l't<K2IYI&3-n&bhi[Dgl[rMQu$0C>5[:N,idPKMo]n^/["'F6s1LmG%!ug#>rMFA<=mYOI-;85"8E8QXX$H4M0+-n-O59G\Rrt3ZOU;mGG.V;,btWOTRUSH)@#.F"6FHS9$T=1M]1I=jr3?a6To?ji<1t)+BOZ.QTC^:j4qoKeXAi4UC;=]=4+DapoX5rN%<EIYH1#nVrO?6@ZP^2n[TO$uM!'U91lZC3!UWD>p>nemf4@WT2abh2aLb#rOSl3MGe,$\`@%6Zt44A::6M6X+n^$1kg+`gshO1Tqhl$Y7j4i63&+K6(j=K:pSJ\?hl5LXYtfd@W\%iR*Osbd\\#l;ObJCq^>O'Ubt,T?0I7/CgT88)9,p.J%KC2AYW?J'X5d>#+N!PRE?WH"af^NI$KqR;&ap@B2Q+5j=e(%X+?p.YH1ur_,fd!?:_9]nPD_m!dc5bNSZ>8dsqm]pc>GK'9.0dHm!mep]l;CdE?d9HpUYFOt;"B2Q-V,o_/5_*o$#.DWcsk51S&D>&CqJ/FS\FcOMk4!1QG0Or=QWt#GY:gr1E[[k.b;'FXTX1KgX)Dch`1rD)M2j7T&OTH<RoQHPnNpkgm9rH>n'jp?0^JdlGZI11'cZXV@_R`K9DbY^lAf<.XqNc^M#P2ml-F/e:=tn(/l3V&%NIn%N/K@H4Fn=c=^%m5C*Y2Hb8M+IAJ).&UbgqncW86p1Pi1MQIfV^;V2k~>endstream
-endobj
-% 'R332': class PDFStream
-332 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 4195 >>
-stream
-Gb!#`=]aB<(4ORiq%%csdpQ_>Y3!mNA0XZA8E`m@mYAHB.RVu?gU,.TAq'\lYr5fa8O1gWE'fiXG8K(^-#9hr!:dgkrkGN7GdROl-S^Dh=BpG;NDd"U#i72*5PprL`]ZFW!CG0j_`V+J%$"e'(/83MUC>pAItjd,6lb0kBf);i?r?T(Yn!LN)J);gV#T.!E"Jc\@.>%8r/7$5)u]`)J,!ko;)4aU@736p5uf#!U`bE!6:e'ck=eE0&;iL:O9FASJfljK#)t/)o&m#h*;*1"KI.g-F.s\5j`grZ1?8Wbe!U607Z%eAGS9DPg7Rr9E7A&gMm@.`-G:k>]NfCQX@d*pI]PRZf>[:GVT-'p712kZ[`UZr)gO,G&gcR-H%.=R:%IDhfAP]Tj,],)TV/#n*8nQ5+#V6*Gr1@@9L!CZk4lS>g7eU@m,t,25Zr`P^>i3R=>n\u=m')De=a>TRkCmGH+O+oAI$r%.n%Z&r4E5>"6'Ui5;')t=NChco'1O,elMo?3P\)2h%iEgAqV=urHS@WTYs4HBbUeo9cad3ZRG@#Fn4te%"(-mP,mne05)(rcecAt8kE0.SK<ZG7TGn,HP(g)%G:Tk^2DX7>W+2-fIao7,%-cic^3Nq"=5poc$#].n)#0p4)\S51&Ud4:^a25Dg&gJ#[:E\ht).sXMB6Xc-g:rR*Rck%rqI-kgQT:hBAHI-bhP)@baY)H@_:d-;>:FLp^OBDQuG+,8)lHOm^&h>&+P)H@ga[OS_NGO2.]hO@SS'j$%)r34Ndo$;;YtEL5MOL?&D.U0/h;hj98.^qG,754$,G&',!CmaSPkZQpq2ijibUZ&^9&3[C(5,maJdG6l?)TI(n6%X\$EX"X5[LnAB?H!BDICGDVJ^r^Ub1(/`K&l;]%lol'K@@[Ou83GRRLN`OQc%iMc8Z**FP6[-mZ.36%G?s.qA4RD)i6B;`n?lpgGgn.i,,RaBJNlq+f[-V.^]SuT2%lR'Fg-NhNa5R"j9m%(b:NRs==cWWIp)\p#X0nJ*`?G.BsDPVG<rbTB48]B7r2e;]4aBoX$[Hs;dJD_/,TX5*CY*XXu?e$FXH=\laerC[bX1*?;N#J,Kcn,8ZC\a_GaKZTc'Ibl3,GkL!Nh%i+peJPb'[,T(P0(%#!`i?5uBXHZ^&A_g&oe?L-tNBit.>s"=;EA";3aCL`PQ11A.Cd3<K02Agei1j`Mp'o([mmWUe6^!5:UnEI=kGQ74(lW]M\\+u#mF[Z7O*mLSHgj`XMT-]s;<IX%5g_qa.`V=.c?dH&Wa^X+W3mR[aN(A@=Z,26/r/0\;6.s!hX"Ns;n]Q(0>d_O_;r2aO2tfhU(CNBQfKPNZGDSc#2<iqPPFtJ7`Mg!gd8Mg"&)BWi61!t6o-paEmbX\BTKO0>qM8_3SJq+b1i/k5a6&&olA6@q(5q\RI((%K?cuF]YX+UN*=m3AOZ^g0i]&6J,\3?jYN=gN9u>IpG&L;]C@9q"IJ;b7:Yn7tD.3h5EAQ/Y`\_KiZ?r>JB9PXYmLPj2D;!="1Q6tUGTXa-P+QushBhlmi4L=Ne)7<ELn-gLYTG[=P$gL4N>o7Z8-FAfQMcFO:WUir%0(d%7uX/HeQ>D+cpXftL*pd8QSga87#9%FTTnB-"4-2*a=0>>;arSm&]?CO4):RRfpAsEMB$:UWuGQ6FL"OgFrl\62M3'dW+8WQlLhM=*u1hSl"?2TG,3-tX$D"]`V3=jY=,Cl>VA1<j"Hh[H`EQ:,#q[UO55uTITCa=I^Ti.4CQGYWtHhd-^dEs6s=7"fuNn<VZa$f;oO(KF?6!)fa/LJ=G#['-`7+D38H$LTK1EA.=jZX+?KY!Q)Xs:Au8Zk$l:;>qT_D/brI(HFe'^79W+-]Kl<VZ)#A>*dcFE:0iOLD)KD-H<_`tn0aQ2@)3q/$>!kn9=$`#=-Z:4XQ\;=qUEg'\#Pg1lLHp`n,R5+jq(r_>5_fjrQcY"0!pn60<.2\a*D!WITdZ1ZL'_@1XNJLJWe6Cr]4NZ%gZDUn5`.t8O0rpufJ^c2"?Lq/Eg_>h,=6k/Tb=%te-VR@W(-0hpc)I;Pt8l4K'MJuTKZ+p9;Yo3SEf6:TKWBq96U28j#-_e6&,;f66u`9W_KBd_&><S%ON3)d'sgllHFA8`N<PH6Ers=AOr_*g^;Uc**\)7n[ZYVn[Y2!qebgp7U9#`aQ,16<N4*E\_0?Dng[JdQ\k&3m(<tq(C%?ZMGIb1@-<eG^C[n$]D\i%Rf.%IauQS)9Q?;)jkp[lQg6HgEAT)c_8S](DKZ;]=A!UQEKH5s*<I6&P[";4>$QuD+_!0hKbQn49nAB/r+R:%YS7,[^;iJuJ^@:N[O5up.!D)\^(Q=n$>mRK":hBilUWBb946fA3$l]Se]k.GeMNtGfdR)#aTS\Ah7OY.9c9.Uh3-TC*q7n]]EJAY`\`$!$qUTY'5bT$1B$DY$AD\O.o,KR>IXjb59*m\':,6&Kj,\u6aB/U(8!,4-D+L5Yi!L(GdJ2sS73,/db*aMmT92e9^s+#\bIFf]?=J8$'s%FHkNpEbq>D:J#[lcIp.]'LY#-)N0`5f4i#+Og@Je7GY574oFN+Rg8,B0V:^'>LlXXbdd19R4M'F/c@d<ONCalt5aiSH/rJ+dM"Cp,hf[>WT`rJMgXNHekDEEDR**Tp4PTm4pKe&Vns$&5RAYfgOlI-;O$kF5.8M$-Blq$JOn/T0O$kF5#+sSFg&7f=)#\%m_L<<*'!]m)T/+/O,#oiam,M?9;Za?m[-T$=S.b&GBW"rjR$R])Pu@a4SF.*WoW?8MoW=D"gTOXK:sb57A02VgIDO#!d)Eg$4ta7#,"UqW?iV8b>")RW`AnW>NOIukKaP=O2n[,,?LeXt0M<e"g%[r>*bNZpCfd4!3U)T1om?>r`dAQ\Z3Zs9X"joulXdCP>0jMk`(C_^ZSM#E+R&Q#bF@Lg>S_i2`Me[*UT]Yq_"mlR^OLV5b'LVt\LKklf8%*$PA`^Of6?<"IJ:DT's2KU_@Kb8S$#kU=45EQ-%,rf3$sXkf6+FQPS`X0!q2W5ihgB"_5=1Gkppaom@\>XXQ;qQ2FY<Qmh:6e20FP:jrIReb9(+p[,dq^cs.5Yq-(E5n8HHGdPp'L"aRA-/"m)T2Ea2-DTHfXX;?fF2'.@4<KCjjqW+[^V#&9I.b]7`!K.=]Im79O$#P5n.cfGpU=/jXfsIfc^*7JO&<4l1?Bn4(Wn8lWnq&ldcoUaO*k3WLc#)O6>S*?1RbE5:$1tpkjLcm/]Vg1^kk,X_WJ>Wm=d(PpIP7&F7D,kbmr5Bo;jA@pT8Pf!pOQEE.ii9naoQCYpJ!+NoTUt+_;W;&,,-HW/>k@6*)54M"JR;e6W0:>a8f(Y#,Y6e%_SM!akXB-ZRFL^8RXQ\^e#7/_l<ss\<:;?kPMLR[:oN1LCm[Tc*O<jcN?hI3S`@\cd=T\iW1=^lOUMfJYhEK]Gg9?Il'S#asN@<J*un`aeCecV9.(`G`SVcpO8kuK76h/$j,WpV&r-_i)SmED6CX;pS>b1O<!:d'plE>F4g"S_U[T7`i<mu<Q*jY'HuGPWWP0Q0Flt/_g!CXaiRJ;O54'e<b)#s9HUUuGj'PqXEA-=HQL.Tkj.2fX#YjFknP4HGVt8(h*0bS%b?qi*eF4DcbYbH4mGDr0eW!*$1\5r%eH5tqIDt*dn;k/7X'1[qGstd;EMPGWup>S]oDRGDa0'3kkBCSr][MU4rtdnRBkAh^'kg(Zr1c>@XrY0Mih,;*D7*b+_OIu</WbhMF)>H$SdlT6-nId+bkY>Ss[]dA>j4t@M`8E7/T^c)DBF1aMb".=p<="%L`'U.2gZtMpWC:qA/,V&Ru\JHW2?B,)s8K'=AC"2<X6:@i;PK98AKXdb$')0+?60F06Q=Q4[oDFP+YYNSTgXgU)7fO"SA=5@t<c*RQP7.]$t-G)Y&DKE@MIF(;8UjcLlT`G4'nW?^9)"TiP^;-VneFmpMPlA/Nb9Ed2U?q[*$Fk"jC#$rkpm87h7#:CH*$s0]hRO,#?R#SQ8#2Lo%n6I5@8p;1$Eg`IsZq,6<'?Rsk[-IH@'Hhp0*cS.)CU??<(h]?^+5Ao%(cbUZeT+B>N%M9rK3LjJ3H`EDjdKNjX=.Xu==mKn9d+2rAm:j0UG@;dCIEo4-;H/X&n1'4X:]G%i80,6:+bH<@Hq&:IWd+V2uKq(aj.06Fqo9$m/Ia2q=4~>endstream
-endobj
-% 'R333': class PDFStream
-333 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3161 >>
-stream
-Gb!;f>BAQ-&q8/#rkjb/cA^5p$qZ;eoK9\/c(-,&A%-mV$Ud;o>2DT-;KRBdf`cU8.>^Y3:Rkr.#?WMm]AMHF>%$?.9E"5^!'fAYb;U2=2V]t$)Asd0Ih/aOT0N4Sr`D1k1BQ;h-4[1mN*C74'k>8%**TcQS*/+ZCIqqP3&WLg@gDFSr4f`Hm5csAg=B6<P9jI;_\[:l2r+G+7/1'dq-<jeqlW?4A;4nj>(D3]gAL'%&QknkP$L.GZ$&YcR>hZ&Cec@i7oGQ5iBs$kF<&A>+6Y%Z97GemF]FkT_f8N2OYN@eZh'%(U$#d$?bbtUQ#/S%n<'N81Wb-*PA$A'.E/lrhM11FYT?A&kU4da7@H4jEfBP83<<QLn71M.Q8pZNX2hcSI31Sc(2diM9+f*+%sXJI<(*F5%tEBj=-K?DB-%:!\rk#H$&^2\-drfs*!CNkN<_#""(8F)^CIq&&g#]F&9:7JakIa@l&)=Qin,'MhS#G&=U5mc:SVr$!K%&j%9!*&[[^IjO=)SJ+b\/f6jlhS<H;te/rc'bG<@aaP:Z\j+M@YtRdWFt:d$rdGLl4T,hg^68!qu9iAXI8IgV6,V^6u%Mq+N!GF/UGjkYr5n/,W*L8[TSC&%Dq(*5)fiA,k,Tu4lY+cZ"[Po.H4pc2+[k,tL,>a^=<^T;@E0H+RGg\l0..i&(m2t!_KS;6?4(_/7,_MTYrL*[gAk[FHmL_*L:^aND6K9pM2`D2ana*j^bAS<]RZmO0H7&MRp(.f4;eUe\]8m0N+Wcf#kRf'Tb<JM3=rn3$5a`N#rq<?K6G5qO5QHZ$r&M!_`A.(m2`>SGi8)oUi;D[r`F3^KhMM7KmNSDEs8WG\d9k2o:4YheI>pjE+ZGWSu@#&rViP@:h/[Cqp!+"/6g>$j@K3]Yt8k!<NAPB"ZTNeNUK"]m_%p)WjiY2JBC>>nj_(M_ZU)HT>QdY:R\oOGr<DW4n%bc>]HuVU+`GM78Fr&]+m"pa/gQs%_aL\laNLa:\>uLA!B<U^?>psi:ZPkq"_I5+,ejMA$FWZ='eqj%r8W-ka@0[haT;:j'44@JU2+Y<kUq]T/8DWa+4(NYWNNA%B_adn;SPo/JC<u8T7+KAi\2AZ07GB8&0;S<sIQpN<Uhm<k=kntd#B<W&j5'6O5&SXdc,W?6p&7*3[CKpUA)DmFNUA#.417c_!cu]a#+d=hZNJ$6E-,oo_U.G:oaT,G6tQZrO'q)%:'Ec)4mO&sXGE=.oSB$Xp?@.NMEq]>S[YRVp3+DllL?C]e!c4-R\W`CE>&EF4@-(QU_2/9<FP;'R;rhj4Bh>BIN?sR8+,74p;d&3AQ@&CT_<P.E&$9\P]GTe&G'8'+NB[fiJVdcYGan;Ro:-=@$.9g;JQD3%%7kC@\8>t8qTIA.i'ao-OqO%F!_MG&5?G,MfE1@]kW_kTIu0/Qc(;0Bg:aTaABYIRV+)1X\X5-E4HRp%s)&nj0a6/q6gtVEcK9_jmr'\<$CX%rE.-"\J"K\0$0Op:ug,i!-rHJVV"g!rN/+OQE[2d7)4*%<^ZI`/Vs_*qlMHK_hCr[#@qnjEJ_`aPgpV]%C9nP4G57l-HsqjOCe1Mi:(:Z]"r(B)"qolcj_PDF@P<T[,XL'R*6lqk@8!_.IVk/eCUCSgDFn#Gp7i9gl2pJ7"6YVR5(-OQEng?n>p!crtfAdIAqDQMTri1X&`#14#^re)\9G+R%]P>:YCKhp$E2+9r9I-&/M9BgF;M4g,KJ#H+[ZE?3(6BY'K,62BlE-BC;e4kXD#DfNL\"r2IHfLJq]'"<@p\QOdH2,L8p,V/l<*>Wu8RM3<h93lC:;a%/aY*F@kX$cYd!dS!6C*.V/LIo.Y'3[chBDWhBuT'2a'5+"d!!V<p'cukXDlC@p@'Q)VR`'ELX;)sqj1q%e@b.1#$cWr6V!WTIB&?K2IP3@fhc#Lr6$_JJQcl#8E)41JE-=K1h!Ro#RdUg;NPUD]R>kq`g0mCT'5L'\q_&cfQm)pPs57_^AV!:j&pHONJ,?+Qn>NNcUe<iC)4At5Q@>qSoU/,64ZDN:V@8LFQPo0c`r?MS''9rbWatWb4d=s%,o/6:$iUZF1rPK#38^MuYCM?5S<cHr[nEIh2"\+8:WV3U:=(GJT<VsL^OhN3<e,6sQ6"a0l+l2n;H+1P9W52T8YtR'i#WYNhlmY9sTA2c3iOfrEWX`H5>4st?A='!q9;2b^L$1%&8gB/U+"^^An_AB-7TZL!1(/c)7.D`6q$Dcm>>I606n)0T(asta`+Y*l2N8?7ZRY/`/61YdXlk3-6j_:OV,V:XA]V&S@sccH+"[`CgG<t7.oJn/;nK-bX9@)#.pfF!&XccokfruQ<TIZOV&Cij(L"Kg.Kn8$p-J^j#s+QOl=Ho-QFM7;Dg+`uVBI_:p]t^Llt_Ys?S7kR9kk^?h_[sPClg,hJ%J1lSr=8RL[PVre0kca7d3&;'l/X)19(jic?H1kp\i`.-)(54']^G/,[qf=6pH\]+!d>3&F6)K,7palN^hcF1gm>XP2m]RVhG&XSPqjAUu]cr'[nun83TkK<d`?$P2#Rc%q'gO;)sC.01DgN.QJC9JV@4Hq+OEZh+[cG*8DC_+V2-#OI`"DE:Rg5WOic[J!#K]=/cHbnAU!kGQq0dkdmT-WdQYpkAN;geFWuKR."NMO8!=d''J[e1eOA[BNrYMjGH;dLuc*;q(lcdl9-(emZ,"*e2J\:]D=L2*:%A<+.0!_l>^o[X>qJA1$hC%`>H&>Tnh_5#'eX#f+A*SQ@gRs.0]Ejp!$EZ&)H.-Xm,VF9>^)uj04TWd:!OE/;YTSI$dp5Wdh?m3MW@d5)ib<_Mrr(^nW@r%BKqp+%=sMhjX/?#p%:#;2,ADM7NB0[(7M2U;mblj]86@:_uH>g/3+/Fu.["TQFMIU"]c;QAs%M"9n"-9"Xern'a0@H>)eY9SlmTUBCdCFjik"(/!k(8YS_?V&seb7)bY6Ou#cR?M(_-H2Q(KM:e)2MaWq$R676eKp67VXAsBfShDHA;R'%okVD;e+3Y)^C+FKlF<tsqk7G"jN%'ruRB)E(W&4oNG,Uli7gs'-&P.3eGA8V"D1.WB,`V,:70@gYT<7!rf.=KEM(EOPoObg>X*CXsB]Zf_en`)e+D4"@RB5t$BQuN(e0l?_)8"l'Zi:+KM`9G~>endstream
-endobj
-% 'R334': class PDFStream
-334 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2922 >>
-stream
-Gb!;eD0+IA&cSAir.c;BWRHu4OeU^d:JQ>ib?TF]4"G`IVB6onP#.>B"-?F1?f,/Y?(tl`n_H/<?d9f\@.E1.h.INV%.TBorsiLg[gVu[pF`rs/6:^*NXq'BnD3*sX3^L[/V]=7n2t>E`c#&,?+=puB?kTYEkO3o?GF?[WtDLec_f!(1585&r"I\T<N"-0Q6"[DH4?4Drrs8=KuG.9$,>,bcfHgp**P1A8'Y7q)J7oWF2rF*%?74IA4j9/aVU;9h!*=W7WpXIH>_(%K',(@&La%SRAnD\O@ba)`)84?r<3H/+^YPt6V%qC3UAY/!lLXT.C`'fW(_r=JfrMHT835mFMkr!3/KTt8o&;W,srj-1eG8ej_&c188Pi^k@Z+9Q^ZrYp'[03OU,&=P_?/H+Ar:BMkVL*mK^7j^bof9ODdS'BhBPBr]F4)5BEWucL^8MAH"FZ%JqpLUTsUP:=rH]Gn.HZD4<i!3C5PlfI\'ImXFs,j80eR?T)@B;W'+YJ6L>GL-q\8_K@?<q/^HS-<%*,SZ@0%,Fb=j[Xj<tKN[$e/cjo@LCf@l&dJ.S6N]qJ`/X#Ba*@<nWP;P+G"frIOF/>urqI'Kmj/"_#]dtipuAQ2A`V7mh^0u>40>ae4Kd_i^JQu%F!6)iIO7aK?Ap92H*?MYp^cY?+o&2r3RRoan[<pF.F7TR"-q&!Ib"@;-FD#]eq#"q$M%H@1o>Un9(]p77@oet@"nA\b>9]$K'/'sG+QIK35P6p'Tkr\E)U=.4.<u89/E(I-%VbFR*LnOa]s<pl6+_5\`Q>P6eu^$qseQDiP:&@KeS/=:!7(Q;'iR^Mb#$K%"fiIF0YHHR`c_C1b##*QLG`]jo3>/#JU'Z9PT7h$67037II<LEbY3-cIs%qF[m5*S9r1S/%L]6J0\*^B'W\O`LNi3gMH?FaQ<MC(-gQ+h4@RpD36CpM^(kn<_lQ0h)[;An?QT,=dY[FVg<k[DiY`^mK7I8S)a=S?iTirQ%Y8YEb9BW]2K\'_fQp:BStd$T/N90E-L#-7RLh<-T8VAiIQ2f0mat=_bisa+c.p_d'*Pn=1GsC(Cj'%7N%^BpA`)08F<S&=MqF@Vu[J]+';.Q'k`2@FYXaa5:U<`FGLg,48)=F1"V+Zc1H!AL/CBonm`#PBW[K:c3I>!8?lAGnS`hLq&j.d3:Lk`-ARY4q3@_Jf?!L`Ggkq`%bcEZjWtLk7sj%kWhJ"EI2mbT.W-dr:U1s;7$i\$IU;YuZ9KN2fu3DNk;=?%A2Np+o-5<eaLV\+9MCm:'-^`pE3Z\kk-aD0EA7B/Gsj\6(.q$_i7Qq!J*+u1Vmt-2qXhE:giO>Wp-?c!TJJ4\:j\7X$BqTbfHFd@gtg59%br?m&1^$]*jVVeF]Co(W+8Z.gl``_.3,W,l)&sTit##7:*(S8l=f^HEhsZ#gp-%Pi6@ef3"KZYE9R(,**>?c$tnaV:M4e8O9"s!/[I=IeKVpOqs!ZXWh#rucGJ\@2od*#>V$^4`WH$UHX;,&KI#c;>2f&)LfGdSHic,]<'`uPStO`1MEb/HH.[1lORX/T;c.RFdM.l'P1uFV(p1&VB3CH/XJ3La0dRSt`PdlVY-1rXa;@S!R$3OB-FQK&dh7m-E1HbIqF@d;AH#snpmq4Co::^s*OdGV"k.kmgCj@;79ab=^j)nVB4>bgj4Y-L60p:abtDG&g!N+Q4QlHIp9j-H.<;\'C_uUHXj#L?qT;Ir$t"5e*-t3@+2o]lmiZ)^YWC;q%;[Hhd-%jU39;=d)l0DTH%`O!@qYENBDG8j\4pW+8']3M>&&5@2;Gj:Q9E^lm;NX/M0lsd*:YCP,JK7*P_FB3R4epuc!nCcqL2gfV3p([&pA*76t@e\>7oHR?UJfGq=)>O4aQEgk78p=a4/qCF;8EZ?CcjUAQ!b+AG5,"aUAg<lqPX_]WHXR:c&'9"[]*/CoV^/l!@$Q^Y0u+JWs.DALu);L]p+$=<Np.`<K?n@5X+f4VU>)>^578.c9'\Sb:$-&SPb*.YW?X)607,X@W(W0%ijb:3D_s`kFT(.YA8UF"dTDO0=3^lN207)RSTcYD.6[q50./Gq*8Q#-("Y?8eqmo$r?9Uah+[GAiCNNEu:o9]skD3)d\&R?kr%c]B>NGM1Il%gYpf5DS7l&GsUl4G2\.4rJ7oV3n.66+JMa=RG<W_bsH<YJ:K?@YIrcj2JA_"8_Bc(JRo&+tJe[j=1rlMe\NplTI-\ro]&&p&!VMDEIUXo$MPELb)Q;_0Z';DCar<`4*JsD$/8EZT[2qTJ?IO7G?7B+,](SM<.kmIt#H3?:Sf\^!C#G@:<EJDRa5":"?*aYtCe`+JC;#AmS*dGi1<X0GUYJ[L\5(''i6S!?)\D>2K3dW(50N\p_]PSJGp<(f[iNA%c`CE==:M.c)p4W%2)\3pc^N33'8R]$W!3Dd"pTqSPCY$ie+V=gL1W]f(F5W4n!kZA=)GlB?>1\ZDI.KgrbMl9[2f5?T-i%rEhqmBg+:lC$T:@ImaOUQi:MNk#V`U.4IHDW4MH0u*(5pAI.q7I!"^kBIs]T@?9P<<;M-&uJS>A.d;`#uaR%,[E312HUiAE1r4<CVp^TUCOJ@P'mGp60i9q*U[-/Xa6>;7'i'3jsJGafr;D1/T,3BCgrP#_dY0V+^`^^0#m$V2#c"ULkL$Uh-REhG#]RKP"XVXW>]B*18sOIn#=n%h[FM<iBsm8"lJ)H-lB1)PHoIbN`r2`4;Fh9NsI$t:7oOgr5%$9;,h@GE=\-RlgSJ8.#69,*:1X2Bt=6%*<NM,)n$JR<t2W.N3fuV;I-9?L/Lob(gi\.Gue'&ZU+51"#fnEa&HM$#qp=GPc>Z;(-$#G)`f`AmVH$jQ/NZ9.`ETKF0HZWHK-k%3jWah?RP@f1*%*kQoV9A=!0D0V-n$_hq%i9Y@%5MOrR(F~>endstream
-endobj
-% 'R335': class PDFStream
-335 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2889 >>
-stream
-Gb!;eD3*F0')ipps'ah=FUl$@,YNRmXp*7LBnKaG[-Q^j\@iE[7,(B\;'@64h-]%WP*4p4monT/J/#V8]TbeoT,BiabU<H5Iff50j8e)`iVArCJe7';#U1pRq7kjCq9p^`b\uEWO!=otD\D(d#NGhi#0iMonOGk^_tN=.S@-$Tn8N4'9uf!4F8%&b6*!bnR$REiO'9@RLnDN]"3gdR9_cm1IVQUpG2&`_(nE@[@u%h.TsOBM9PN+npVQD\QqWHQAChXMkf`^=+m7BZVAe=iEA`MYI[rj6<cSTG-K/M^A>,]Y'r3UaF'_g.KuFO?iGeJdkB<*;N=TE?049",NFuo!pG`6LDrq3hTC#"R.n.<1gb$^mN.Y@:".eq5.3W-3k).W"2$_)beO"90XThglfa`Zn5ZBl+j]WE]5WE*Nhs^\XJZ'<M1s@-))j,)fiF]s=1uu'I@)5.UZ4:!6)[M4V1G'!C5a)P#.80($7X$ug+,-B$n+Ror4t0krRWt#6NfUk%T&OQHN2C)<M"W&2>Wi_mf*796cC'YI'7VQ)C;gb3*<KP><OF'UAh)UloLC*`V-)+f4pRfa8sS0")o7J'$s(^3N1./0.pcNKFN*j<)^[=loaPP6Xgl(d?9`M?\#'Xd'kr;EGFCD<FrL,Ip$etZU0&G*U,c7fekqWM#pi%*iGL+J_(0Tq4\IuE'n=72r)@m<9JWKQ#QHY_/F%oOmp+%>R/dUBm59gps8%MqaS3^5K5hQLIN4?Fe%=cP,AoEEXri!)*QIh^'*qn4:V=Jqf0YfAgC_a#ULN=g,eCI]nT8lqdaJdLqBO>\EBM$-pMG_AESui9cB*nQqa^q])YN)llY$R;&I*$6eLB+SA;SAq,rea-_^M]=8O8;?KV?`?%n$rH1,r`0)a2N(GS%)Dh?%.6CWf(;Q:fdCK*T62RcPKa)[X1([@o9ZUKS%j?C"8b]9[(j95%.E!F).,'XJ3+8:eG-&LAJ_HMYHKSDK8ooXa-MHd^#TY)#Lc*pD#sm;p+qCa5amfpKcR<HrV2HS1)*%MhsHjp>2>T-306BO^UM%H/C'X5R?N;iG4N?R:S>/pML=>(8?'cjP/Tq+3Bg+QAafJJoQ&NVV;h6qhKp\D\=$!q4W\hZ^Q0,>q3?0"grh=c]%j(lMND\&aO6M=X19h1p4js/)fr!RAVDk'."V_gGc6"iNe0)!:T8Pj=kuiZf1SKulL\/cOi0&b;itio@(..&@bIDRkBri;8V%U,NA*/37p>^KM34QnVeiI=^@3(6&L$[R;*[!_+EE*_%ePf?XjO#2WlG_i\@)@cg'K09i?MWJpXQUQdgM;"8(%a@ra[6r5>/,;""K-q\uh.74u=l;+]kAF<b4i\M4d3F<<DNl02;l`I,:VJ%^+L'X/KQXDm+=Vc%1nRdup7bUlI^q@U":_-p#paRP(O&XKE84P59$6(K\Nd4hb[I[dd'0Ae7VW+F]3T!I%nWn1(A.>YA=%Ie"58+_H\-Q1"6r\]0lXW`#hX-$\&/KEZ&T\:^f<BuMo&-X8eiEUMQ*<k,@G2H"7uU)d,#%8W0[QSO</SsC<bWt`h_(II>-^2i@/llWgu1uR;Y48e60ku*\D#PZ>G9Zg<K_k\<kQ%*D?A?.V;^"5-Hi9LgOd)_Zq%cFLkH*C[)q+PB[Bi+hkWDZ0]su7dF_X0W^Y&;P)eaZ2S50S`,p-5FVY*gJ#P;o`W'Q[6fD,`!k3%a_=]/CM1!6B'W06#qW&&N17CU\><t#hIoL.kRLTOna,9diDKblPa[+HXJh0Qo.8o]G'H"Z.d-*3HAT]U47_K20eL<Q7-$R5PLm2Rr<[-E[)nmH/%mf$\].lSH1;FTpF&iiaK2c:g@]<k!*FL(8TGMab^ek6Yjt*Ua$ls+"`sa^3<i08am.MeIk):]s_j01Zcm:Je#6PM9D&QEa10/6pbq2LukZ+@VKrikm&arC_PhODPc^LHT&ujUG'OfZp&Mp!:a"T^CR!cSrI+aWom7FQLblrA>&K8&1M43shYGM1*+g8JdH12%:kW4_p[;@tCa.oV`1IW-d88Mk.;'??)p:PMlh?De?0kf!gP4`RL$$JSFE:>i"h74@tc`'-Uka]?rPDB!ePRqDW>BQ>#jU[rj%)JgQPJ]QfBbnp_!`Nk1^spm1k-jB?@fdFq%^qsFEBe8h=?h\[Ep!UoOANN+HHO_RhAF([_PST1eGGXKf.sDonr;uBr2F%0^a,^O3h70VXgkTPNa#db.g#G@XeR?WO&"$C6SA4,DE4<\MoH6jd`nf$)EKip?)34U2B4U-b/lWM"jnq0VZmthC[-B^I5HNDQLrHN9>^5@)ZL1%@`!Q*nK"g_3M"/D3nY1[VnErCB]5oE5EFg/(XUe2)sEpI[\4ge:%Lj+\nkc%Q=VYqj;*MO%jBK\gRlJ&brc5=(VbUJoL"VRfptT?J,Fq_U>QC^aG=AQOteGB>g)QXSs/#c#*\T;>10&!>jh<(ASFdLC8r$u%<L1)"Wm816)AFnY$lp/?^^i@N!pZf\o^Xu48Rcq=!e[%`WF=FE5KF'_E3uJ9B6`S-I6'K1>W^6qaU"Y5^!`u>?T.$_RHl!D[amc[gqUQa,OG6BW%TM/Ua?d=)Ao*23ID^Z*5D//W?i=s4l=Ln5?TBYQjVXh1EZOCXfeXIoYLp2m7d^%ca,sZ;KP>qZs6(D9cm&N*;9$c:iEcb;"dqrVh`qmRB7Nft]_*M2E?O9N39i0LMZt@:cLT3`C,g_#>(*;7rHDY#b(\^>+1FDmUr@\ZT3*UV"GW/NgJa"$LddH2sjmd.$J#R6KhE\Al>`22^W',aajnH'@$jPNgVs[-*'BFaX=b]1"FT3llQ"\o]*6:c]&'iCd*.]5B4FAVr7@2Pm&Y@B;?S<r'e)f;sB-6$W7e0CFW1_>~>endstream
-endobj
-% 'R336': class PDFStream
-336 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2484 >>
-stream
-Gb!;egN)%.&q*PUrh84=R?8)D]$T/Zas<"2RTq2EVREAQ>>l(>98H/k!C1AkpX9RX'j207gH&odYpf`fFItaFd-tFn?_7-4-31g+i:1k!4<J/oi/Q@pB!:-%p@,mgp[+6LO%8.*//[E7XlgaqH.=\d%#1?<L@rFh3,AJIa7*6Ic6m+h-0:c/#-AfJ0eGJ+?[;`9Dt40G+(4fK1Z=o%r`K-imSf#FDofLnFLQ8bDot2GK4WBI8qt3ulT_OaTLG`b"hPH[.]l-Q@E%83^l?e1C#n.MaZu6Ra/K6=-2tre<,!H*99G*sd-rb+pcO.njDGf1,HYLp6Bt`%SS;Nb;jH4\7BYHKet/d[<Nd=LP%)\-8X%,@_\U,'D-jsE>sIVL'qfLd%8VG&C"NGfDu4f8rOgJfmL6_BleI#9Cs6;^$naE`Q81;d,Rd*mMHtEbF>Wq95jYh+3+0WVW%G4S1<F!f<$!]d@e.`Oj_Z?m9?aIfnCXBEg`VD:k#,^]k8P68-Ue`cB>YoWn/UI'Q+4.nDB\0$/U<2^S-)EeUG^X)-`mthe;^;;T@a;3B%mlY"u<;]12?0s1LmiN8So#u34i)!`]a=(eH^ahK0=RqHL^]i=3mmPfCh%ZqJ:*Pn@[\k-2>YZU\EhF:l-_I#IX*Pf)?+O[<>+mDsAI?2cYH>XGH^ajR,LVS$t83+;2iU10s6d(gLVrPW(AYEP1PbML==R";(`?_lNV5e_0EOl/YCPhjrj\a%jb([<M@od(B"'^tD.GI>&"p#YoWe(C4]s,.R'/4C"&=/!b>$4aoSr#59`W?!MXW@a$@'0a^=7j\,7R4\163Wp'<,:'@W]'DZQ,^:V,^TD$dbh[QBrU;IN;^2"4@G>eY(9#/or:Oi2:E^puQa'mEg0ac'2[9IVgo6Dn&.c=H16n"@BMT9'Sn*+V"<53_:]0F]bpuLH*(&i>8(gkELXf1T82YK0fe'X%tLF9@l,I\M038H)5O)'tL8sioJmM6t<M@br?F!$\]dMKDqUMP28asq>:at6Yg&%TMK,Ropl$,.CL+$o\2.Eudq'ub(Ej]/0dS4CG4V(NrG7YWL.'G7<"qNVm6N2,9)0bM!+;\ecl',aiR[Gl+oCQaBCL?d#[ODscD>HI"oV(eW5Abd1A9\W9BO?9O3)C^)8c+CI3d\p-u/JZ[i,&X%pK"?!O=M!D.3h3l"7;_?,Rk9Qp/kfs8"$:Dr.oMY9qtkZK'*2V4gusJr\ta3YS29Uf$rI^u8!EQ9>obY-_)*P_2dtl8X_(3+DX1Gt_94[YD&GOdh8JiF9fcq0k>4ej-"Ta]:6=V[*7YHI`'d$VQ<%ID:gW4;6k4'G0,V0_DY&</??o1TdZcA;.$b968NPCDpWh-0Y5aeX&K_N.n=/(S'aj9pQ?iHaBRO=Eme2'Q;)^TZ*4,.T:`0a[-&$7l371'TFg%>;FPQUqo0f[F^-r(.`hOhP_)PJ2+t'?7aLJYt!ih&VL)$&21W8=7]jn(#F<OS9o@Y!P-5b)YX/=+q&i$=V&FP[b-uKUagbtA&k'WeC&)1W8%.a-nN4VWGR89E1"\7sQ;W1jcQ-2?k2:juC(AL#3E^GGd?4,;li9m]$)Fh)c,rN)A\`i,#irj^YrJ>18$MZ`@A0FbZ3jX1p)3.NlrMVts4/VG%e3<-b")iQbZ@-MK/Co)rq=$ZWra<Z65"sUB9I;+EO*qcHpgWnEL8uu(<B<\lE+G[+k`FcA-]1%I;p&as;I\NUpm#;eOBS]Thc>'D)kC3,gQI-fFcVD#P25S\EP3e`<t5K.B>pJAf04>kqp37Yfq7[8l1nu%^aZA4!liN@rcJ&qC]>GUJs,\a9$aT5G/bK8P)IeXUOFmXQJ_^TL#W-jeEknCW2/`-V0/$FdpsDX$/\],XQJL/*-FgpU9feK%\m/!7!o&(rHl?;D8$qb'0J"Wp^3!jhWQ@pSY@\G?Gu3#09<G7\t)locTBsXG0_Y`Q^*V8lX=>66#f6I4W[h$bI1f(35c%\*2t+oiKC+e,di([+ta@ZF;Y:71etW$j[K)aql\+m1XWRFBpX0(HIL$(*P9`*'cL>$KQt[l`]B;Vlh43tLl95rmq1u]I<QGjiO[8u<,9/8;JV#g<FMj&GF+F5dSTZB`bA_nOiJeSYXgKuTb>b.f-8H[P('7sguN2%[*S5`JV]F:T^g7X^4C(=%ZcB-P)JC?lQbAte7HRn8:-2n]j4"1>fPk*+pRiaXA"F8[a.%;:*^Z]8<g6of&UC8DVd.I]LRu9B5fDE"ESAK>rR#gm^'?/YO0IAj]HY<fS>/7eC(*]]u+m1;h:c:fT>c?<d3Z%MT27Bs.#7"br<Yu9H)s^PIsX7;9_g+%74&@^<gHj\1@%E&tlr(W49c`DR_EJ]-i\qSFmW/6lhL%2%HW=BoK3/Gd%L0&R;(e0q!4$7,o^]>D!NY;8Ij`47j<U\84`_S!q;D:s*nV*Cs[n80bd7:^^.K?=sXuo6Vi[iSfE=!4#`7o)~>endstream
-endobj
-% 'R337': class PDFStream
-337 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2589 >>
-stream
-Gb"/)?$"c/&q/)"rW=KCC<&f^%uF3]PhS$3k9dZPXZgjlFp9-6#qZH;!%:A9p"]dBMNSs;;XGa$\RWZ)OT_o@O)rTu$-3[,!r"W*#l2f*4F\*-+=+8s$"=g:fk^0Gm-0^XmPh'd+2oK6Bek8p44aRT))TrY15pg(6uJS[JQ^_T!XdNl3Z4""XJinN)RsNK8%@p4rTGOF"N_Hjp*Z8VktLlorP!&2r3UB>'#mF8lI[iHg<`uKMPdcHJ+1J93_6ntB\,C`oZ]$j1U:J*:)L798lm@iSBF!;^UJ?QrfQXH`NOaN>hBeC,\88pKb\PqBqi-M`dKkf/)s4LgF'h%#/P^L`D?L)G>Fi%'#mk=9HZQP"J3C>"UV(?)T:A\3Ou`UWEUm"jHJ`&d[#DfadV<+3-7HVQ-Wf+c&_siR8tN,WKNQ?9>TZ\)^Q;0=_VK%P4aWSOTG:&?1MUd@R"q/.\1U$6)%e7cPuF:=L#qmC5#oU<,%`6<&2@0<]SXqVKA-_B2eA#/4A2[GgM:.;:7Ukn[1o5ru=S(`sN/ThuEJpl^,OhV2OB.b4?&S1?0[95LRD-X',98cUb#<KMOr<K_K$/EV0Hh'NK$>RIg.BF1caB0956U][Oh#*KK.LA?tA-pc#"j2"A9s;_.t4N3MhGf,Y0W.(S?cW"TR]9uk;5lU:%3O#n+I6Q5V(h@![l,bu$j/Bt5S)tN"U%u)V8f2rCA@^$1Ve>=#:DQj>(gRTi$6chufl%Xuq@TGb0>s0+3jH=;5aai<K$K5aTn9R&>!AgP$C+V23%9uZ<dV5asU%2IEi9I2.)_=aOQBE=*@#ZhCXiZNd9O!W[3R_:2?p\H+\abO4\qWqj7I<_2lk2g,E)rR2dUhXNM"c)Dg?6h`^#rJ6=^a$=.Fhl;qso(XNM!C\rg..FXkMGVGm-\,pC-5q\:$g;<W>HZ7P6ni-'365,Ru":9Z`[A,L7\+(aM?T%lTaoRJ\R$!a1C+^`h/f>Z*ni\P+#.Z[)MSa^%G"Y2*SXRAMP!><jjMjDUE=^\X%+d[V1GbW?(X9_JdjImh?90kg>uWM/Hu>A6ZrC]d+H:eNDX*qH!uR]rjs]0.\d;<ne?-+EljCRF@4E;daa:`te:LdE4,'\oijFoiXR+F$ZNq1GWOHP9M&mZad7bUCTq:aQ\,o:.5,AS\etW.-s4FQ$oIWPdn`OKMhG/Q`K2Nf[EGI$\#E88hNoiG]qVBoW/:>$dF/"dJ.BLf7S?#b@=_8.SN8;HZiFH1#Y.>LMC$ZXQ,b@X""f9QN/Lf=LpLE1>9:),?1_iD%\2d5eo#Y]"g2<cojq\Ujefj.2kNfFMfR5XY(LkFn>!TMSlI"ZWL4U0V5Z$,G58oG.k\\;'0L"f\[/'$6TkhO]RfpfI\^N$,Z/"lBn/0$%WL@C*c<(Jr<!BB+kf+E8[p(Ua[_!th5,5r*'*<`_Nj/*YKj:bYa*irQHh#N,AW2iX&@:'HCnYe;-"iGccI^e)ha7*<(/60`_=")CbUTS[Ecg_C9&7HF2id3eg(a!Sk6c/2O<#eQ?mj_A:ui:;%]r<!H/3?f.Y-GZr_d\?#KYQHpnX/nq`?ib!BIAp'*4Ymj]X+5FZ,>A/U<[(gXY%(_-kjf9rI,pF!Kre6bo$%>h^oSO)1[N<cqH?;W&&\&dhn![oJ[d][mEXK4)!VC#16MG/9V"ie@-,DM6"kr`'7DLe^"jdo_7G6O2X_Op1tgDD`6bsbYMl5V(*:I.H_#\M(VU*HE]Y+fe@]HMI:.Fc;M9140bRctpQ/1P]8aKf@qQ.)=9gNt*tKs+m4[4hn`4\J4A=FRNX\.]/-dj5&[;OiTaW'=+o2+UK]"/Pnjt8c)BDJ5O4qiH@7%l)e'3D_F>U_`D?f>IED"m6%U.@%OXd1n"/4d2)j!XFD`96]q-ga8900udSYoo4IWKO]KSndY,cU]%AhG.e@e'T^J@[G"7^R;A@\GehTMhpbG7]"O@'J.R_!D7F)_Q^,>A56$jP(E.\]dHm!Y4jG:=_P8l@brD-_J&*s7\/P-C8cSeW29L]"W:833'_<K$iT_`VN;cZ(Mu&c5`6s!g0M!68)&fF9ljVh#%bUjdh$niA<_ah474;+XM'Z;K@+.o7n\N(E\5(Mp<rJX9I_8i@l>=5_XEI_!TY/S_u?e%nG"pVmqLlrnq&D&*'G=p&E89+O&`X^BhaIj!Ld3l?Bq2J(LC!/&Z32_/fk^Zs[og=-1iJ[,;c%aS&T8lSITJ<uq@7%<Nik].c5@;X3jsiI,]o3#k,"(d*N<8)u]NO.6N/fi]pg\/?R@'4)fQ9DB)Fhn?_gD/g+7kIoFD^u>.gE'EW=BV'7?W`-M,mPs;&rL"+d>V;6nTFfi+RqEien2*5EiQm>Akt6hWPlm+785Y2X\XPT\l!Kd%qu_pGIg?OE6h!6l4bg1ZZneU1qcED]$M7iIIbAP4;0`06mZk%A#Wt)^D5[0dO0`&gWO]R&3B*gVC3SEp&>!%1go+hZm*=t`]\77i4&&m"=4s3)Ujf6un!qZ^#Ino+%[-2%[fYbT'24kXL8RXU&8HD]/F\-/i#A`kU@<)ZK8\]-#jqqBk5L@E+*$K6#C61,+7/VE%0~>endstream
-endobj
-% 'R338': class PDFStream
-338 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2437 >>
-stream
-Gb!;d?$"c1'n+D%rkk9hGrlcm;W$l*@lkW*f1@ku]'V>&J4N5J/kI_s.'NL5HS7oVPU/DUf%Eg<*a9hFMu.M^\H`P9Ma)di)l3P<B5mAfJ09Nu!eNW%_sAb\RD""<`Vg"kj+BOK+WCl0c-Gt^3^J1RNOleG*5MNr(MM>`&MUjU@cQDIAngoQpRke^Cd?`uh2bmZ=YTgUB"u4L0@#9Dh=$^,_p8iV)MS-n\CC#C]Chl&on6T?q`fDeluOj!3S2?UB*e.tdrYe8!IUIEYR4j%aL0A;efqF)\:pU1Kt%'cV.$>,[mE<AR0RHBXhWntXS>u7\20J=#IOOQ7>9mOL,+l@/P\jShQ>b4HP2XV#6P;,!u\?b)_cN][7\Cm[2Y.;cfN`/r*G;hN!.3Y:IL(*j&W2(^tn+e5\<kk`!Ao$f1s6H1W]b%T$AWG$s[Pg[4nK)!fY3Zdd6Q9E/QS?r#W(I)`:?jk90/!gZP=rTn'j]0L+7MK+f2OfGf:S)0,&gA+?D2QjHQN1kZUfON:\0KX!:$!+eg]M3ShgFED9kDZk]r!9kA)I`,X&&ir1]km*ufV.59Fm^V$;ZJH\aJpCd5qY'lcT<@//qcSOilo)AB*3;\PTt,$b$*cf\n0[H@SMa(S6\*'H._$]B]Xb?\NWm!nD/f1,'8,%S#ru6Diu(T$1>H-Yd.;J(P#6$]]99&^)senADiJri(5,FNBoN&&%55%i.iC^qH>r]=emPHDM`_:E'EESa.=3WF&2VYpfr8I/pO5>s4,I4FlkWjn_s1"2rKJC6`jPYKVUB?il?mF8@"3+u-QU5/rI?'O4]c?FJ5m38p\3Ou_p,lC8hGGjnI3qF<tX,sr<uK,kp86agPMEjC8?R)Lj?7tV)a$5Y\NTP)CnOL_No?Yfol#K'*D++N18=$X69.&\]0c-2r6KM2@u=;M"V[]@GBa%',3```oe:R%6m%I`.i6bMr\3u<J0#JJD;p&XnU2K+\@bD6J3]V&6W^I/6A\&aC.lUZ/UO$fTm(C]5\mR>!F:`=o2M2#:t,2)$8A0oS;Js*nUQoo93%.p)tB9I)f:?hsK)\K55?b>cB8!,crf,eo(3$'@pqn.Z\^b0O[8:mX-DK^!aY]e8Q-q+'/WJZ$M=9e<rS/@6<F(4Fr3*_p4gGWi<tq:@RV!,nk9)e[o<kVli/8i)O:+0g]%r1V&SZ8!pK*;Rk#N9Jo9b/N0G$H(NsSN^,;;Nt=t;q8/F"SEd<lS46e?%A#V;m+U<=Qh.7@R!QY))h-gUgLgP-N^s:1G^BFEPMc_u:AhU8dBML<Cp/4?YDDk5UZ.`G*pOeJDc`B070OD6$b$Zc99l9D-e'E`L&eR>3kctDC6A"CG4UAW,js9A&42GD#*E2#\j!fsH@VgtF1t%qXX-IeqJggOe8f\[G6qF**"79>8<]Z:YYCT906mj'A]bWgjZNB6fT&6)NE.6HULN8pAjPcX4C@:lVa.S,-u/2]K%7qEBVu/6+JR'0*$@`-a0QGIjMALV$b3]#'WE0h5*js)U36AP=0o"%j-B9@o):1tbk209C2._\ERi\l`l!I>UAs@"Q^P*@M``ZZ[B0f=WIXP1jf>NA>,p9[Nb!]rgV]lZP=UU:l*BnfnVWQGJ?Wm020k=,b,QoQSXRmMdDure,Xd-Lp%t"&"[3Za-7n:d,Y=,;>pn/k8<mm)d9!80WJ(6?C"3/Q:MS/BF2p(62CF?`MLSo[@c_Q8CG2;Vhh2Gue?k'L*2td8;Nj@bnm]WlonP%[.2h.ZG4ntmMmYXL[8_e'me,FReV%9:M]t`sm(%aAh3nW9l8,!c7't*9U6_9pe81u7+maY82\02e*M",qh\f\U;7S[g0&c"iQpDln`m)a;N4U7=4J&'lO`0:mB;Aoj3,KY+Uh?-pH\?+5pC;>>RNN^n?0OuXSiQrBJ^6!8(]4=lYcuLeY95rDRQHd(%j@-E&Li]5PcJh.eM32PDP-W"hs&X/$]Z9\f-oFU_NE:'[GH`AV0q^kO"XjNaH[nfG4Bl4_C$b['U;I\9a6SM#u&+eCTIapinHkOeN>X*>j4aiC<[W'=^RnuH>SMcn6l+fk3Dp$?"_H>Vmf<U_N7CZ?l*N;hnE0\?N8h3W=ks*G,EDm:m`>Y;2($D!;8a/Y=uc^*Y"miJql"Z0X4)9miC6\L8VZfl6tH''[_fn]F:u.i2$.ga".)^rq4N#bMJstW:dR81GQS[XnfNo[Iua;r]cCk)>\YZbrb0#dnCSddm@6C4a9KPeFP=k<,/M2N'Or*LfC)5*G""*A]8k/c+oB2P^?N)m9Q6m9g+Z:796%OW"N-".`"DhmtL70hXOGh_WKs%6<T)XQU2]E=SEQl?]ep<9lu\rXd=kt%ip!+*jQ=dalY=k\,-eh-O*"$2s$Nj<KZjR'5PO9f'Ead+aP2dR&&IH`%Q2[amsYcHjUn`o#:V//c8$I~>endstream
-endobj
-% 'R339': class PDFStream
-339 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2629 >>
-stream
-Gb!;f>BAOW(4OS'rkj#G3tfCl`I1[$X*#@CDPXYq=nMeB+UJTr+Xel;pNlmt'P1QDC?/ZII$7-R39U1a'n?c4Id-.,*s$a/_hXoq\cLh?kSCF2r!BOHn)&Ophtm1hgB,88Y)Qr"Y3XH`bA5&H9\lp]q>MDK[<b.eGg.O_a+eT@rYOaZZb")@dq\.uRmBR=/n"SfN.4_Lr3!cKQQL[+.ZnLK-]+Yd(!"rAa!CusJNH?-hN5&tJBK3q(,>PtcBD?M&U%AVa(k_4+ea%>k^!=BYLk)o)=T$`=iB=4O;17"I/a!,$@(omMgth^4JT1N)1Q07co?Q7Kf!ECb\7hDBuXPLA;>;_8`su93Op8O1W>[aq^.">@22>(Eb6:lc-_5mc=5`-^RAZsB[:(3!4<_IScl5`m,3lK7!Do_R$;>M7E%ArIX_;L#2LQ%BnJc(]8n.*i98+AT?8Z-N:o5$;ds[[NlK.<RUis^9p1eg4<Pr;,bFidAMdabo!0N=:FZ*(%*e?kST:*i`&TSAdYQ[Wru7N6>8lPj$stDP/!7/O=M/IuR9Zh#;i0%ULun4R+;MZk;4e37Upsd!8/@W>6l-9@\lYj$GB:>I3FPjp/&sgufr#$17FqVDT;M6(A<9KI4<!^6VVH$VnQ^OW]=K%-Q9l_d!Zj@%XA+m49U=s-\r4XL"L9R^\;=WP7.$rc^5S]6-H&U+dce/;UqQnj$H,fX1JG)CUqgQp#Djs#Zq1Mk#AhOm$u$5&"mY7'SG@4Db!HXgoD*JKeLFeC-e3j_nYgZNB0<*NI?rrNT7f@uBTn?1&uBluj-bMeKoOkEV*#3Hr,1d1&F5h5BAKjEZY'd!Tq[D/[c]L@mFS<4a">P#[aDa+b'1U+eVC+"Y;[\F9\o#;D)?IE2lu]p"ll91Nb>fJg32>WPM_2WMP[07b1^&sDOGFqc)[?hVDB'm;G>M"<]")9]3ld/LN:U1!:AVu[H<&"8U9k^k\W-*3dId/,N<uTej11;4c'"hTK1hl=&[,E?CpfMhbA]&A(,QqDNSgRh0l?$W4]=;Gt)jd2=h94SPPk1mfBJko/N0"Bl>p;NNUQ`K^6@(ihLbs\oH;+Jj8qZ=gr6W3<qY/Ftm71=SE1XLU)_k,L*6&T%pEuOPRV5=Dp6Z$Qlu4\KjR1m$\]h>_YL*<1Qu$-8U[=EB32!ja#7="^LiE,Kj+!,lo786*siIn@Uf`f#qk?#@LY$,[Ila1;d)"Uu1YOcfaSJn2&'ne`K&eL>2,Zo4Z[&L=M;Uk:XlQ@Pij^nIT_*>QK8K4B._5jRG0.1h.(EH0r1".&f#r&m`9Uf2[*E;fllak5p#`D2pe&TVP<#_]J]"`&e&&K-9)M9(\0EGQ38.[0jP>T-ooLOp<OCo`CG6aU7^R]bq<o>]7/TF)s&4rPn[$jh,7Wb*sGl[&kJ.GDTrs>p,-C0J29dod>a55s4VW;JN7W<oA9A;B`P'=0hk;LYJLd_KtIedF;Pe9atAcc@'T#rH)9Pj#(->27*?f9NiA!D\Is;VAX`:e;:4FgIu?MF3[D=f+>QOOO*'7`MIa!q,KXOM6i783QsHDChG'+%?lhB\nH2JSLoUR$m]JX6TR-qN7ro]D@sd79)+6"Wqn9'@BX#JmW;C6p#BTVGKEhEXCoOuB4,fTL8DY4[b53G6*[$a"u1s;mdCH!gu!oC]a@g%'"NO4FO+iqR`'M?\(0W2Bf'b6?<ufmb1m=5Q(.^tbEtha=DcfW81SB8p-RaljJ/2fXF+K!oikqM%+"bLn'ok)Jq^=nMqM0UnU\R5/^G]&FSG'ho(N5>:nZEL"XXWCGb@$=$ae^VoTP*L5>i-a.K*UkINAeJeR$\ljsOu82kOUYO5HreY#`"]4'LrO<5iNj@c>Y`Y'MfF9c;4*7Mm<\bL*kZUO+lU<c_=e?Uil6je[O=URe<tl5dmVcRiBd`i*&s_PbD_[`LrX14eL1:SC<;D\k*;0uJU>fJ-WT!d&K[!i*5snHY"&4>%%10Yb=bfn,aM>=QAQE]W:=Y![$]h22c@@?J9N3'Q\r"%EI#dAlC"j!Dh[p)bkPj=>*MLA%1Ck3"'`XC!T)*%O^+@n%%3p8"WjqH*NgL";6?,!`geD=6&fkF?'*-Qd+ALr,'\r'<LWL2:CWg]_M?>F^u2KiJ3Hm-$)2*BVmoN;ee(/jZ>a[R-%qfS_Q`KpU?X7.jMfJ66,H2"0!XGAksFb8M.,.[%#+H2;5)0<NTk[u@kV%-eZF&rV7.>&aqYZ+2u4WI!J>SPA%.a#mNnE6%N\P'qsU\LGHaT!+SUCDnSRjuMGJJR`g+[sKMr@O<O^P2[`m,inB[18;8Y!7M:+;7XD`Csf1F7qHK/\Zh/$)&9]N<6\9?'"+i#6dpL2i;!W%-;q-PL;ng"$a+tU3M@()CH5Hr-j#)6doDNd1A6.4ZbhYoV6@(O^>?B80;JD1(U!f%?%)--?SaA?bj^+hfF7H@!mCNXeu:gAqg%=+FF`Eu8hZ6!VXp'LVhR)DDNLH3<-<rG=K1]K6C)fC=jr="1g:^M@/>\;KO-89('VRX&T+7eSRANX+rn3_,#j9$7<fV@.15QAX?ZNB:G/*2mX"%*#mYH>b9$Sn()W=?T[C_N:$FL"c]je[@^nCp$+tc^?]l29.K~>endstream
-endobj
-% 'R340': class PDFStream
-340 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 3172 >>
-stream
-Gb!;fD/\/g')l41s+0C#Et=,YP3po4qijgDh;I"agUIEEc(^jW.d!lbW?gTDpZla0-qa&7/@F`9M[#09Qf7G%[qCHh=WdY=oRFAYm,ohpl-a3n^nrjXLYe+e?aEh_kKglhO'b(7)R:LT`Zo_@mCLW(I<WpTpBQ.$@e\3@J^irkhh,]SDfRUBdma'[XF[F4]b)mOVgmulon*092Z8h6s%+^<7R(88LYk!I)Z-ER0)15t^=OG9:F;9r9)3mRHoe]NSTp?<WE8#BCha0SHL..TK];h?*S2#g3U)a[G+]lR\@$m]n"'5*@(d+E)%%],Gp4"J2;H8(ea2GMlOU0PQqYDnL]la3$*K:u*m4,8Ks]GV`m]aW3W%<N.TT\eefXM9foDDeeF7_Y3QXU*7-(T<ALTEV_6a?5=\PG4X(I[\R?g=pCJs=%?i:rCi!'<*0aYT1r(^q&6]o6h;Gt`h%V\EaOaj(U7e'%/^3S.'HH0>A%<lLSf$\M[Qg.iE;7[BN<k/WaP,qcZ6(Z3bB';+^U5kTn_Dqs\1W>Za7)m(pNJ.uo.TpJ@G0t=R'A,4ho)tkP<PA+_3U@gpT<9=XD#57XNpj7IkT-!*kOUR$&*jO155=QFkNcWr@okD?Lis)D0Bt^J--a2.j"NNbGUJR,C]EN9HTjk,Wf?J\dC](l@o<dogPmo:K[p.<q/A-$F2#"(l7=@i+:'*GO[O/*=MP^3Np#t!,jgf^BJMX0*^;D2V1T@66:)Sen6&3S>QIZTac>C4/0KR12UGTC2Qk["#0B9ejA]`[8BE.`]BqoH96Ca5V$?Nc,?[tYDdTr.HQ4$J)F$"4=NUp8(q_CL5m2"2?!L_<<oUrO1]f3QOde?lB.QIah7ftLdN5>pe/>3rTKaSt?$HN=fp5ZTd"6r:3TWSL_XiokeEN%^+5'PO+'HGs3MW\Fp3Okn!\1TdpN)aQZkRe@b%0Qngc[18H`&"4MYhInTedbh<EJKc)kK@tSjVn8$'@Q;\Wb`4iM<d(SP$F-!-M=.1'W>,Ul!I,E&V8/jbO0>>8epA,3?-6.s@chXLsAb*3M=sI_$LYW-Xf6cYe41r9!k8e`X7Ldqa9*!G)d)YIqC:V<bVFYAe!9S.u6r&([;RpDm(8_$AW-hQcG6:D"M+^!2@F5lrrcTK>Cq1h6t#M'C)-I[V.+A;,<(VE+[TP&kPBaM]&cimB9,HJrm?"32Vj\q0sQ&?2C684I4!``doi+H1[AZGYnN%CIQHc)BF3fcNC8e(DQo!fpV"p&$jC1n4sa;1\1+M->!'m0M+"=1^2]iCS!e^\XX>d:#N:nWu&5i3&%>b5O)boU2OH*NJfe(j@T%K>'9hEi@\lTR,i<#\*IWenMT\<@sVpH'&s/WZ(Qpm+mrIV@MGeH\*3XVp9)n@Y$J2JtR/sb#jBp4ePGJ,d0gp4-nL,J_h7O\h8HaiQ8\ufffu!``rg7cnh&4)f'O3PsR+#`"L4dN2^s.Dc&\N"dM6QeZjNL*VtE'Fmq8o=:?S[p_lKDFl,pY>r!4)64\kp?ZKhkJIA-%[X1&pDaSs]Th&B_IKQD^j4\[nmIBT<s8MClVW<6CF_Td-7%=5k!4)6M`thRP9ECeC:dIla\A8L0#36+_@%JTpNk:Q5i5gpKOsIZkm>JqkI*s/AdT1A%pc[kdA%f\YVlTKBO+Vee2Kd`TYX%8o:*'b=A1#Y^<G#on25@^Gg2QZf]P*'u9?@M70GK@?)=^3BW=,:5eH7'_VKlTf?QM)(DjbPoMG687`86q$QJ_1e"P-k99le@m6;b&r&%bQD&"CD>hdIM/;/O%.RI*o@IsM#EA\mlc)[=M._gTb#$Po8Lk:r!lh6hpl4ROP5b@Bc`%aRYV)^W3466#3.W#MZbA/UPD7d!2#,Rb]j1u5=cB4(\9Kt4E3YA<adp.?sDetr:>QgD_347@_F'e0oZP)'#$T&&ZR%"*2h7;G?)Poj&P]BP@cpN(K77aOW&fYKL.Z*<n;qgC62or"*)r>MS4pJMA,nm6E`P1c/2%V`s]C>]tZO<')+:$B$(p4LYeo)G*32ekpB\nRi`#jq.I`!uDG^f"'WC;A:5H]_spTF"paLC_Q4)8\Ip+G&Qm8`R_jZ?Q_U]4?p@6"1Y9L"M"ZE>;Q;Z+njh@fj]+SP#.s7'!",@>9o%?=hf+.C2?.hH:pVGTAi6?uka9i.n4#8GsL)Nhnn/b)qWP?j[2Xes`Er$aTKRlb:`elP8d]8sh1GdMVl26:?pE[E0*gr$n)CDk7q2Oa*UGahV\6D!Yd8?*gUoYJ[shN]S6!54uPk9jM&3Q6u0[`,&Il79?%Z%Ei7]7US7/0=E!BF-`5>fa1PT\YJn4c\;OOe@Br'VNb5,5#7e)ERp@lELTqci<MgS(8QAbjD%)?[&!%@/i*ZY(n-]=dG&8_Con!P\9SXt0)Q_"B<2g9e+r?8I3&UkcSt=6Lb@F[6I/Yd;8#2MgXerFEptdWBa6c:+aZDhG\>d<DPjU!*"fF?BE4f^MP1ti-]&dt39-c$+<)os,eG_S?^]Xd0I?m3ZdlFfAO^4cZLH.?7f<5jbIQ1\%KKGr>-6/+`J(&X5N#H$bATTL4qhXt72Y*/aa.8nksURm)V,`4F`<tgn!jkW_)IV-5mR-uk>\iMhf@*4GRU>Al(]=[45]aFX92FumK'ak/"Au`.A"jsW4a]4hC]On[-\oiNa+Q@R^H#P3]GN)oDeZD%eO_n,)?-AA0T9U>mOgToGnd3a2-_rBe[Vm\f;\T?^@"Z+p8BI?VHTnd3@*d%N]nH551d+5UF>gKHMnjbAZ0PN)K1:W5PD[pq;$M44n0!7A=Y'E%&)e[)ZK=+(5]_`$E=O8d<k"6EPO<XoTT=DeT2,=3.V=IA%=h&DBi4?qHuDfk.PUqqBJcNpXXo.n6!qU'ho^_aA;MD[6W<`i9`N"B=I?;IuOErihF!=,$J$c#FOTf:6O`-6O%tE8mFKlqCmp);[kle[<Yi`aa+kD0b?\[gGD#]K+ZC_/K"3M5Fq@>l4i\P-CmSSB'b'roP1%3<N50-qSN\SAhRD9$6VIG06A1XaTB-qGopPcdO]]]g<'^E(D?V76@N(c4ogU<kDN8!F`SG)V/<BfJjT61:9+ETpI0Lmh'B4'2Hs>^]E_5EAt?]6^/#"jb[);.7X&e/*V&UDL$I4R;i+,q@W1.c_(.HMQUR"~>endstream
-endobj
-% 'R341': class PDFStream
-341 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2734 >>
-stream
-Gb!#]CMt0$')`jos+/7X.YYR`l=m#cSChNXjOIAKm0*n4e1N&Pfd2n0=,Qk?mhp/VX-Zi.EA%A4[Oa(e_`;@Ac;662j"#:;PFSnE,PL,>bi0*O9j$2/H>N5>h2Iphq<G]SlLB=aFZRpSO#7mFa6YnummY-;2t$=ko'$fiXe1Co]Jkd%#(8DPX$<iom5g4&Zu+QG'iW]K`6[-#0/i[[\a[6.rYf,@^?s<%mRG6CFND#f15b*:]M#XdN6g\?MHS1NKi[np_@roG/E+,f\G:hQFMXb.QE*ED0sM:IfpOIj1R;fdpF]pSAkH9>b5#9YQLWDgM,$ZaL8BK-I=-YpZY[jL08AR7X;EIoN/^73<pSFlIhCp$7`L*Q$98l9F<Hg;E?''*%uK<q06^khkT(K2CU&tX?o"?e+rACB/%%/!h<3N).n$,09)^CZ="0VQL"Hd)bh/F%#d"gF;tu?69V`:M7>J3;4*3%&KM3E'(U(GZo+nDB>,K]+([7)!,'r@$MEV6N`iWG9\&FMh)ZV34%^T'0U<$@<E\J-a2=?$Pi3n;Mp;SaVrA!Vn*S!&=;.El`D91Za0buRZ&<6a`%Rg^5@'?q@^g3))cIeg]^AfmeieQtLXMu$9VcCeH!c&2G$20u.3[8GS]t;kOoA']3Il!WN%Eeq!F-ejUXIY,AfD+p8pdK!Uj-E8%Ql_&^N<[glgdn[Po@=l/RD=EYIgmEakp<b\]%1j32NdK0k<%7^?-S'`+dqBi,M22*DH>bVW##VE585lkl"E$Q_p3JWS/pM!mAPA*PBdIl<JB'K;$^KEQ"66&o0O:alc_^R(<?sLH"`$6TF6=@Be2n'Qst#`VEOS.%X91qi6G507sZ,N=U=\a=^+<lX3ke7/6pJ*kGTn`1i+ME'YVKS$HGlXkJ8S`r%fg@<DRTuirLVEi%gq!SfCp,#p=Y?PBaGG;iipO`mh0Uoh'o_-n7SH>;u,2%h&1dD/B[2U>GHg?GMt<<LGS+dS#.-_JdSKJkN`SbjjKWpGu1G0_sb-h<te*0(o[(Fu6iOH3t+UMd`.V'qmNa?kBSe,1gdu=EJ>$JLDW/CO6U%3r`"O18;L8cGX!gbNO(X/'_JsP0"8"U)G.)9'$XYHi]092@s=e+hj8JE;q[W%q*M8`)@<rOWq_5T&N%RS$H^TkZesG+&S1ulamC_k(TC*B0Dh"]o0Tlo%u'UK.$pGUlp"kIh+2YrU(!k4pEYMiT`jcAXVHf)0+j!h+N@.6A[A*bkO.2Pp0UC7%m$2c<V?1_DtBp<>JF`%@%WmLo74om))`(<](aEe#>kEHS79l=d8,tY*C6!.3\=[2%#pII9(XS>:[k&'*kZS3>LZJfU@R[3?_f=SXi$A:Aj,Rdr0S@PZHrTS`.\LjBImN2,'68":Rr6j_L<?,#`3M7Rk(aLN[eYP_o(S"Z1iN229DIj!3;!?9G;'5)L6i.h0ej'JM`%$ZW?g]`%68kI9't./`oA%,PbMJsqcq\"1Vil/4FcLs'ir;WVt/%$ck+L:cMSGu]);Yu'(Yf-f[p=l/VLiGLhF3iFK>>G2[8P1+<@>_iSd7*08a8a5=S9ar:&F:PQb3FB=m"#C)PNspf@jMcRXR7UU_p]IZ?c^o%ST:5bo`uZ^ITm'r],E7t!AP0I;l_V`\LXP>m_(7^i)bl;9<>nq%e*o3!Jk\KNisY%1R8*$7'%RU[AN?2&Pee[Q>H(N2OD.:7T8^+**u+m"0c9O&J/L"JrjYZQqN"53mbQ1UdF<elHiI]uK,jV\-kY@c`B+[DC+s,+82"t/([kV#d`!;S?$</4kfEt;)=N$Q6JJfgUV6=31_uH&d[g7&$=&;En^)C_5>pAab%`erduoaX#.(GlkIPb&hO$^PKU3Q'^h:6c@C.!>DpR]qS#s)`g^#5bY:*RmV(06RIq$a[Ao#ftKm]fS]&((S$+aV'A]>ZHX*guL/'Fab6GmYhr"_T2n\e=NE6_r1PKKHsEp)uu!a-o_4k[CUgFmTa>nNrk>T.?Dd=4?n);Y49o>g(We,-2TJ)62LI(K1IArdM'Q[#0;g2V5e*c.QI70622K$m*>;PO)APKQ9r=%C:f26>AmeFsD8[Tq6#7";9uHSe(ZjmWL@kj#oh2q=ol.&(dS@,*\90L/t.Ko8J:['Ns+F*9&H;@V4h(Gs2GX&68\$Z1r!(@Jc_B1i]Q4tl+\Nb/]1P?XK\],$74HLJK/NIE\XeC##5-fVrkUZc2Qn>X.A$.TDikOa)d0F3/Sq!,3N$5fq=3cgG-\<81_e!i_L?[H4[$KM0K%aFZ(eL%4qqD<j>@>W>ifRCP_#uq+D_(c)g*C`??7KlkJ>2%"`>Fh9>\]"j&pF=*KB_::tE"!Y'S;*A5<^LR`U/LdM7U*IoF@guC3Ds12j+Mu'I>742-1h0_"D#Z_b5u92Zl^,BGf39Vqg-b\H9YX2=Q/r'ka]`1/_/!ODlr%YZ>FH;G93R)"_ZpGAW+jhr8?uDeul[+q`=(=p<#sJBn"Cu@G!E)4-AFOcF=GeBf=<(9'A_nL/7[Wl>EE_B"m`?L3oET>mk8)n%lE_g1o_LDk>9U#5oZSY$sE`-ZmCdZN^AB!*c1oLoC/ljd=O7?9Tnr*kNlrbF2&QjC!Y2B=l"pb/kd1Tid9<,(H*[mK1J5X3"3V5WQ"PQX$H:B1Fa:BtBa<T?b;3'`Zt=+Ht1Im:l+5Qb&6l//A^D.T(8'XXqKUn@=Q$[kP??c6_q%JFR%A?r*Em&#RYZ]D~>endstream
-endobj
-% 'R342': class PDFStream
-342 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2699 >>
-stream
-Gb!Sn>BAOW(4OS'rkj#'3tff-8?)LI`1(&AnMIB/mW:@8J4[gK9bIe!g<m\(3T*?%9i8.HaY`<o&d^Mt%R-E+LBBVGiu^ek)l3OQ<cIo\!QToE)B@Z*@J(]@\U+5>PQ'mti\MZ]f*Z.MVUt7Oe7mX<d.SH'#5><.iN0/7@prSTc%?n8deYJs6*#akN0^mETDSmg>k^<^r<]On[0j\4^Rpr*^HC!oF;>WD322UHfeYj[cNf_UCb&bDQ!/_r%r8l67`hfFTbUaM[<sd)?XL?OiEO..E\@FF3PQ4>#E`m;T(8sjKoh`!_-G11di0CVnuujLN>A<uX4G+IPE/HUC?8!miVfOB)/oQGC:W&:*Z1FZ7#A]4'8U1bnYfjI$&:juSK"O8\/3*g^T2rt1!=(lR%D,pk(Pg7JUQm0^EMNm%>V8@cD??US6qUAn0StA%0q1!F,eqp';co7.a#^fO$R<\6u:9'+T2#*3GO"VH2fhc7]6nW.8pS58`gEn;d1<"[>;1;::/t+M7c?"e#$1c,smDN1dPAl0Zc`qa,-`,V$^HnJR%O0V^d_J;"%pmVVE//cT`0fs3>R:s8DQ>qf=/#f-$k5b,#;i/b9\-/4.DY/[,>P'(HXnYnp40@7iQ*9B.f0eUG1VVKqks3b=P?0h50cA2\;")o]2cQmQcX(*M2$,\Y(r)mO6HA#,l3`4#Ml[)1O77<VTIBSlGS_H(1[-UHd0<boK8Gtq'#SB%DM=m0)]UY4MsCd2#1B7&6N"0YJo\55-AHeM2?JBfbA^iQe<Q6B^UA\(<s^(uPRG/cV4\MJ#@,iB-d_&,-#Cs+X)T18#)&OCp]cOY8tb+,63OEi*54BR=uFLt94k_2<^`pFm%1GjVE7g$PF4]AA^8<:^/*Q4--8R#';R?AF*:hpd"%\dVi3k\pGKGu@Mo(*jrB9^71*H;IAa\??J.Ha\2^;WOQe#'e!7AM.UbM&cS=s!+)JYUbnG))Hg793tWR^/Xrf,V]:3Kq<YhB-l]#5[gaht]f#28=;rm(+)#&Zp4]Dh)-Z2VWm;c3>Jm3tN\p3+dMX6K]k6f(HH$-Kf+gPLrQ+cWbcc7FA*U(6tS2[/A]$,!GsqAcqIM[eF$OccRfm^e1!"L&/.mZ_<>&:t7;&S^8p/XjH+ZOuO(#Q[\__a>/Sqd@4j@Q@_csWAW?Q2MF6#T!VL];`T4>?]Z9G*qu./hIFM%!Kr<t@^L2=gJ/20ZUQ,1L)ApZK>Qa3noT/fm%P%T)2,dC\cdLE+Ij`/:Z!KS]'\Jgb`$P?6g-)*T'-#Iq=k6:^blW:<@H5N%K^>Q;@K?T0sKs"<60Y;D4o6RaA",R-bR7BP/Rl_`LP8sUa;odGaf7gaR/23T`mK>BMqdpH>J'3JNSVAE`KI(]V6_@794klD(b'J2ebdD#//dbQ:89)D%p-$+$=2XS[`MAr,t*J9IV0S,dXsNWX@3?Vb^(Bd?dTk99CEa/E=$8d)eXNF2Otog%=<P&JKQ)2qr.is4QlMBR^)cW1T_@m#HlGch7UF%@"mHUqbCDMb\%*YQW9)hG',+B@sRM]M@0mlN0(#>1<`cRc]<9^/eJpG;?[gVj#rX>hk-o,nI?D',"dq"hol5^pluhr()bGM/*:e'>hZeJ,L2JTlnFiH#Em9*iZ>--*XJ>D/?Sk9dF-hP,p_!V?:nj6uubq[cd.INnAu,S7$6?NYZDV%Zfk1FU.2s4>/CZ;2[>\A)fV%h4[1ANm0S=@W1$ENanV[DG0_5SJ@X.Z#P+N'<i"N8$YkHfXSVb);O9DP'k_?5'ASn#5e2>j61[,%cBFs<V^d@Z0U'FdLUa&+O#IZPE^Jt]';0SoAE"^Boe7P"AF>-37U<JRLpR!#"orMF8W`=jXP3WMr#;nS4M>0N-Y!<,+L`E6n")Ih^UWY13<YjjXi/@cE5'%Y5Q/T*JJspC"'!u1(V;X0O_V("gIEqQYKo#2,"Sh#t5@1<?\Nc2\T6Uo(dnmqK8^<K!i*5ok^&7#G.h[.BPq^f0#r\*Q0]_[2S_'r9V=TK)b+%eWsno^N(XD*3&E1I(/LD2Yfj)Z;r^BG<D!l,XTc2HJdcU5ZM^6[H8-b+W!q;MH7hVDDt]oQ+3Lsp*^n(6oF>$Ik!lnEAcNq*"2%%5.03bq_[;X;*F=ihd>P%e\]9p:mi?'^YnCAPrKq=LS)tES(F;Yg$N\YqatC)7I>#f.W)QU_^"5e6DY4Lhhnj[K&a#3Wd9\(L0Tf;JdCjjD>M5CcPMnBlfekAk"=>t+/f]pXmb8Oh@"[Jl\Dq1/=u%3VH%gB/+%[oa/t)DdD.W2k&7AUSFin(=C[q2[(u'JL=bk,Wi^j`?\M)+jnV]#rVchcm-g/*n9P0l'h*[tV>X[J_>=aKT(!5M^+/ZZ"W%^B3r>KGo72lskgFl,@U@ls1Oe4]qr/UakiCh4=T.kh/'TQ"Xm[EC.9CaI2n_,CPrdl#mJ.-8P&%lKmXqM@+0,/=>UWa/3cg;:_#2f0Ni,FonZC07@ZKR%^?/kT[)7<Mp9h*d<S^le6E%'KkK:E8Q36k#J`a%N\grS<F%$khTZk?PP/C9H5#51`_a*$CNh]`mYDQi>a(3O2HAlkYe.mK922/W+V9fS8.[#5t]/]7^G4j_C)nG^;>UtJ>TBr5mGuR-tTcu/S[gsef6)L.D@5uq)0?tOp`^Ok5*W?5ua0X]p8@[@s6V7f/'"i\d(YN2N_u~>endstream
-endobj
-% 'R343': class PDFStream
-343 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2695 >>
-stream
-Gb!Sm?'!aM'n$USs1l*=$AWE=haLBbbp9n/A=Mr>MoDF>#?mj=mcZ0sj;I^DpKUU\AWQ6+ChA=.a<7]4P2\Y!gquK/@"%q\m/Kr*f\[M3S+cpk6FL"$@*"+>nU\AX]R98&rWRH9d?'&*T8_.[i-rIJ#Q>d:oERZA@WsJ4@+;&B^i=;0VrJ@nV"H%j6#W=`&\YVks62DQ$4!cei]"=@Z^nsop@#?fn`0.u-Gb4VSPe^NC\Q;e04/7+38jlWoAOA?fMXUHi?qh)3shCK#UYr/+QsB][G7cQ16iW39P%7^;WX<T5Q!WN0N/]TY"Mf5,^Y`o3`e%?WC/KR7FE#R8=_5?Ckjj.A\s+/Z!=8%`_9r6=#A')7[7$9Neo<!TD%)(U/tO$Um;m1oM9h[KgZUQ8Xd<?G]/WP_rd?pia;UM8e1GISdtPR1.ME&*t?9>kt.$@I6O&n*3`pJpfh8r%s&]E)'<nm-7Pe:6n-g$HUL[!Z?Ou&kr^3':%t%d`fJCB1m]h7IaI81/u1^%P;g6#[8Bi@P3FGH<@XDQ"c&n3P"?TPBN#V%MX%@0;;%D+*'J==6f[@0]Fu3MR[#Y^A9j?AG;Op3cF$3OlF(+.?;afJ@B#&@TG[>'b%`G0"=eHc?%+01;YRudBZ!6%"kdGF@%rtVs7j)hn$LG%La`jZD`i(]d:nVclL-X;b#cBrPTi[aHJc1PGL'9CM6pI_\kn+cU;p'fEI[c\f^QM<@Sc&GdktgS+Z2%.id*'"`JegR9*LV4G7M+q[tKdfi-U-?9T6Ud7mOkkJU6`,A$bTrN@*V6$#%76TXE>p.hQ/@W+F8]QT56cU($670Pa<uQBu:Y\WWiF.r.<GT8Z;4#Ebu#Rdg22EN6]PU&g=dfSa\)&,`N4rbCn,<CWG/q\Qi5J#cd40j_+!7>dG!oEbg@"ah<hd4=i8cu!%LTbIP$<8:):&nGOl<`50I50e[+C-*)B<,,uK?jsA/6ILL[T7@?7Gl!2BQZL4fe7MXB.+)UTmjaL,Gp+E?6=`Znqb-[nY[@[%1O_NT<X^dAW<qYPK<(JL19m%<R@QeU-Lj_/Rt(2&k7?0Njsf,@9$9Qq8OU$s/Q$li?_\(X65Do:#Y2C6W1,<L4t7uA#F/<``'DS]^W*Z4,C]6a1X*bipbDXCO24N@!X6([@L>S:+aHUQZ[lPhj]SM@fO%HQ`:;dAX)e"1JoP45GXbpk5l:dY&M;1Q]5ds:=K_tnmBop:Wcgrt+&Gaqm:o"DnQM^NDOlZeOmFq5Oh?`c6!Fbg=6n+FDpU$lL0d^>]Ijp<K2LrnVAi*4>)=_?pCr[#s(;D`j<kO>#4Ho:b"^2bN?/thPJ3fW719di)J`Q>B<a%_][#^iF8(>sC*EQF@5rN`%:@_U3UhQ]K5V9h`R+V@"*7:";uq\R>Bm<Y[$7uV<cAP7Zo;&Icc_eZG+a#t1dt8_]0!BPg#sr][m3Jh'XuXsg)qICL"#OfoK1"2X4Ba3V-#![cWV'D[[.!-.U>e'#h=0j%<T+F3u0>F@d&uWY[9J2[e(7N3`h&bVm=fGb)WuuVP?^F+U?umMtcBTP;EWYM8LtcR<]+IEdkMI4&Z.TZ4tBE-"2ImJ:aog%IY_^Cltm6A*XSo/\JVk7.MZlXYq_o14EWH)a=&AOF@)`7R]44ZjfEg*Jr:`RA&!_hVYQH,*c@(fXIL8hHKScW;W5]YAu,1Ro:8oKu;WPUGtO^GRlK-/E'D:MAK9-lQb?Sqc/!8einIhEA%3m%PbpMJVlhrPFe^N8^j1JUa""GLu[:+2MM?G@dR#SB,d6q3V,C6M/E.t3$47eo$j+"9;J)oU*uZ!X2<PONuls[K%YeUE'-36;]u[lKDHR*`lIJ!\:Kp^K0m@#K['Jkdb?l9&;int`tjh;ADM\!UG8Bhh*ZiaX7/:g14)0.<UiZD^L;WWV$u)iTiGEMH7gP+0i)V.D5C:6SP.O*R6s,OC!XL!R07n#IH&jhhbpKdi&OYm?MH(l=s:11m_03\k#9RfbRh`A*ElU[5FA5p&[U<QOT_d9Ck^\rTg[9F[0:I:X\pW0*"[i?Z"(GCG$s?!4*Y&\l5HG=/4*5hE9u-E?q!^gVU?r*=d:V9FU_l<a^.6gMB#W%MiTIRjq+*-EFCNB1*>YA#4\e3/r,:c:l3^V>#,[Y^.#VF<]0\DjUnTE5W_R1Dmq%>b1nb!*/Y<f.O%&/X*(P&&^Vu/1M@LJ8K/[d.8>f0]Z]uM$N]LB_MH-_=VW[&5J_[Ndm45TH)>Y43qD2VA;8>Zon8kBfZXTV?![>k;)j+RNnLY__nQ"_1^F>63^h0RT)ER!oNE.;I/Kf_QE4u2$$He//E(L`o:&gJ^'6aq)"\Z/fqEfe*is&=V_X@YCfF9AY8$ub7!fTjfpas%'G_^GSM'R2YfQ9spQ^#'MmY?Y:NM$4mA=*&.B2%Mg=,hsGGjaB=(kF\P&Z8S,4f2WO.IuS\uP3#=kf4c'eSu[*[_=Y$DC,-LH4miY4cN%P=oOt:IF"-IL?"s)Gc8?7BZ!'jYdk#c)()!P[HQDM!V#cTB6[L<a(/=&"M[S;,X[j^'RinqIU@#;FT3QRmX,;3A8!&`Y.Nq!Aeg^?aXtsF#pCUC\iFYgh)@?Pu^JUO<`h$X,PA%HSQ:j9X+.[Qe7V@T3Kd*C,-BES\p!TDf'C_Xhq)TYk=!X]i.iXb#fE+&f]t+`*b6*r!,qUm%F~>endstream
-endobj
-% 'R344': class PDFStream
-344 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2495 >>
-stream
-Gb!;e=``=e&q5%is$N,Z,&^>b"F,dFb:9rA<3=c/8Z+$QmDBJPQt$48G\/(Qs*hS,!:\D;3DQ(rWDk,s7iu)^J),uiLd)LO9aZDhQgi>i,)B]1Ae9s@(mb2VQcl:&54WXA/>%kENl>gdHOcW;E"TM(`,%DjiX'Fm5/C10'p6:E1N>FG^p7XfiZ3.,9MF[(+og2=E#t(4_=B`?s1ooWbeG7S%mM./1`OGV=?hrA5)+2u^46!TKQn8h&W.@KE5<hM=MQ>RLrjnMpFM*=rT]AsI)ps:]m@:m67&0)^K+/JkJ=/dPoah-FkW'f14F@GVUjrFSsuI;?E\IRr>(\+2_8_2'jR@q?S8LRJ\7++Q`FABoXrZ=6FE_el:*-.FA_/"^g$:R;h!iDRETTF`Aas-pN^4]Pujs#Z^80>cc>eW(H<,bqI:+E=/pq-W@d!!P;Vf/io)g[2HYe-I\Rl9E!(p.=2?0^'rXQJT19&*'XHL(?r_P%N<bm7KD&%QdZg]P:2X#->aHoD?/cJ23&O9%b)1P=FGQ^V//HY35`3L!17hfYhWk&Q-t`'RE;rlK@+bL!$\j'4i7_;;Y.lBc1TbJC1#pAC@c!.>c[jjf[mA+:"$/.P;=*m+W8CTQ,<F4b+KI!D#pUg[::]:*FeHA14Pr=GaQYJ%lP*X9d=*,0S:j2kIh%57a>+3/]dd`s2m?1flOm6&OKbl"<+%1eV)O^s'%A&)bCgRlI'-gd$mi2)eDY"CJLAkE&nLB(+mHVnio=JJY"mO^'92_A=h9!i")!@4-aLO'=[K#YB<:D0c,jP8JGLHR5Olu:eI<[jTb/_IiI`a]8)_"E2Plp!B\\AT^c[7[W-o9%M`rmr0Y)`25fHlhE7A1G=g^>2ZdoEbA.+ZBLb\W59;YAFAXSW2jFAQd2G4U<jNf)K\[!WV<u0E`]:dBIDLZXk%RIZlF=5ZPZJ/s,>+(Pf[eL$RKd`*G3tT7gEuh"QL!"M:BaMFc;B!3ZqN[0,53T#`6h"2VBMV435GCW6@euq,a@e(*gX[G\&;hR2C7V9C%\VH;c5-Sg>@YI6\PWEW0H3%T_\$=T9eaV_*o_P53u8HdiUsNIg\18.4R_/GIVMisPf*R&.b(1(d()O_\E;MR;JUQQp*uL;-03Dm"1H_Do7k(.BJ>u,Z=o^DEn)7ZUH,dTU\b?Cl8T]BVt8Z,0t,``;3R"&@_/1l8)0+Ek2T"JgFAJ[6*b2#bl6Ts0]@LZO)lfG>XZs]Ci#PlM%m6la]b"a($$-g@3Lh"%<2Wi*V4C%Tn`!.l``a/ZeJb8F<o6BlpT4h"e=]N7\+ZZ^TQErR3G;:\7k^/@)lZ;5'lM0)]IAKg*>MeO8itl?6LIZhRk`q[8nPrNHA_3Pr1Lh4#L'&)mB,jgC>ebX-hi.3Dn^TDpffe]*%b&A?abC(!k1T(qA.)"J`4\)Z'quSp+=)`>d8=+SlmSN$:!(J6W&Ee,=&mb84in$`P^)qq'#llXu<J9plrg\r`mcQI32GC'o"Bf34oN<lXpk<f6(X#;Q!t[aNhAd7alBX>'d"EbIFW]D/hnlEI/%hG;JpRq.8_r#Z%(lubS4c6@q"()^?c)n\!3au!-(6h+KM)_MlN)_9h=Y7q3g4+02^4D<*fSED<H2bNMd4f,_d8m8gT)Mj!ee3nd9@e@/Akn9:V!WOmgR?`"\dWqm(dBTh0lo#P*Sn<XS]@=8jXdEjCB%+nnjL5&Q,9Fj6oYm\g5A$^fZI\Mq0Jdjn"(-=8`<;UVTLO\@H)22u/Q\+JZ)Roh`80.20r-TO6P.F,=skA3SLL/)[f`[q`]cgQA0scHkM`/\in^F$Y/.e^jrgq(:OG+DhC[Y8V/:NE'DCfZ?S]-6P`P+scV$UDAG^?0Fb4aTBs>-XnEmTH8i#:Zl;]<1d2dbof9j\lAVns<a"WKd3dYNCn/5@VNRSCu*t@bKJ);>VPL+fhHI/]fL15BF+8jkA*Y1[Z4mLooI<3T8VIiUMNK+F'Fs\VQbTo$\no3*o*^K(!1*BNRe"^N@4-1_SQKM1ts&..>%`EC2WgHCmkA&PSDd*p4K':+G0W@p]J'APN9rKu,#9.pajF8QSTnE~>endstream
-endobj
-% 'R345': class PDFStream
-345 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2066 >>
-stream
-Gb!;f>BALX'RoLEs218;PjEo:gXndKP&*5I9XDEcmSdGF/O5:I\WRrT^Y^9hQtm>P&oTgA(a@Y]dAM'"oBG7$(I,)$N`(DN&cDI]"kSCS"PfTtK@)&k2gYGfVu:\[a+GFXT$n5>SW.Y+3ps;tl$%R-$Xiu1't.:/iAt)lG6VIUUU9q8q_5_WS\T@%[3%D_Q5?(/kQd(GYU4b*Im98a^2@0)G=0FEpkVf"S_rgg_nB*]T&YNR^G'KfKS+_fRKp"aR$K\4]>ubMA+g9_TECNP::1XZ"s^-)I$#VIEA$K#"5'tE%/WfGY79aqT0#F2]8g5'l-YI,Pt3^*fpF'Z08a2nj@iK[4A,13.YrntD`o<`,&pC)N/;!ULl=rR;/d'[XJKmP@jtLghqh^g^:mpkk2OQS#<mr(`L#>PY[P+Db7p$a?EHboC!Kjl)ci%lTg^4>(fNSqPXA.5=[Z7/(`Gb$(E0>^Ose?Q1tk]7(bYknd.UfM1?Y1t.A3*IF?N?3fnb8JkDK8_.G)\9?'YObZ\52X<gZ]dG5_AO"=-hG18:!Rn17?Amh@`ha/^AOY)Vh&1LSBUP&+rNUPY@"otA6RNqA?;0-<6X>LOn,bf:%,)+X!)6Sn(DS6*]V'JY+=ag.b``;!i[+V5gR;'M>40/i][7Q<JmiXD42<ZOc%$mpt;bsd>53TG&DK8'M@KD6&**i>el:kf1M$CM,L>.8CaDlkgmm@OKVc._e[N+9mZ7\AE'PEeo_N0Tdo3C3/S3D3i._SeeR$+1?QL0_h_'X<ojSIi(sd&ZKJ)!*S!nmV/]+t8?bE6#qfQ[hLN#q!"g#ej_(!i^ui!Y["\MtI#"`mi:%5s:c66'D]`C;jn"78Hi*ij8Tc*&gg.[GgTd\i;T4n"C$1CDaf".[>Q!nPW#uOPUAV4KJDVb_!J4(W6dC5=:$1pG?%&B?J"3ekcD'TGJ(Bqt[M_oS97K#b?)I:ggO<^^\h>Ar#l<.nu2f^e$qG)E_Ho8I<O^:.S0IQ=i*rJ4$V(\7Ys$Uu[Q%)*tqb6AP%[&!SLc_RM)j^HQ16f*T:u+nJG8=m75Z5V"Xj%>9`JKV^T+ND+7EGgc+XMN$F@1>Aet876UVK>Ea#mppfS7J07nU?pCXB\EXJ@RATeOmb4ZCei+lT1I8&fp6l1@$]P$T<VpBOUs<;0L<_a\:E1Z1*=58f(b"m2H^`G@NS-+)&>ll\\saG,$CVi"sH]]:,?0dhH]#\F*ns-:!?-PVD_$+M];+*M<n!>O".!2A6^[u$'Ri6R@JZ4^4`RN,$Zf$`_!]LY)UsLfEa;!1*]^l6)h-S:U;-f^N%u@2I^38H8Sr:[k\Ac'JdWq#NK%\FPFsgEhRVMH%(*h!-U46l,ufFT-#7hKgd[]ITcL";W]'QUQ*b3UUHhls!WJH06Fd"qJ#D_=Plrn_X/8i:'E8I;Q:G!/chdoRT8PjeF'g:K!8CNFDOMnMG#<iq^F"3M$<a;KbTQD=WRuH$0>/2']$)e[>+pFr5ru`BcYZk?kQ/d@dAY;Bj"P\e#JJ'2]O_KSDbnor6B.iY'Jl=(W:W()clK65(IEXNCCuTI3_S"[5IY6)U]5@/^83G%i\g@04k:O&:rg5HHr`d1&<s;%*s-e?.(ir^t=e3%Hn2G*AkC<Gn,8-POkDF?lZqJi,s[i2oo@%^A'phKfaCGA\dJp((V&9L:4T;d2dh*;0,9AN[Y-*W@iD:TcdAcO+_M^2KYS@Dl:jJhe8o-7/a5=fC(Z13'(b/`"=BCP7Ls&fBbidV"sN!&C!7n410_/P6(6%2_P(FR_H0s-=[_qjX#Tu\MknH.4t!lb\%=b1MDs2UeMS5e)"rGUghn&"dJ_g]ODe+VQQ3oRtG-j7mbW`k:trL^9T;l:+/PC=slmMR2GrP%cGR6/(2r@A8PT<-u@7bj5r\bWRZA2+Y]Nc%Mu!&VAUs:U;+!e782Gt)_u![?D"`ER3SMB]<X20K1O`C2A&LnF=tS$RbbDicYq,;1sELFfsIL/ZKrE8RnA7lhsR4Rfq@T&Ap@tdZio1>$UJF4f071g1+H.cUhD-$N99'kX+(/do.1[~>endstream
-endobj
-% 'R346': class PDFStream
-346 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 210 >>
-stream
-GasJJ9a\`k&;Bk0gu0ici7NlXj''fpS&1]2[Yfbk=r1N&,d^"PW6?q@DgpQ`a?spH<<o#sq[8#cj:8V/+]k1&X$.hjj3GLYnh0;,k_pNX)Ys<H`o4%"\2mD>"jPN$E0+u8#*8!5a[OrH`UH-)M@HA8C_K.'ZC`3"P/nU>#ALc^7e?j>_e!u^WeT]=WG)NL6,Pm(8*A6O<Z`u"7:u~>endstream
-endobj
-xref
-0 347
-0000000000 65535 f
-0000000113 00000 n
-0000000263 00000 n
-0000000469 00000 n
-0000012253 00000 n
-0000012440 00000 n
-0000012682 00000 n
-0000012912 00000 n
-0000013142 00000 n
-0000013371 00000 n
-0000013598 00000 n
-0000013826 00000 n
-0000014058 00000 n
-0000014289 00000 n
-0000014521 00000 n
-0000014752 00000 n
-0000014981 00000 n
-0000015213 00000 n
-0000015443 00000 n
-0000015675 00000 n
-0000015907 00000 n
-0000016136 00000 n
-0000016365 00000 n
-0000016597 00000 n
-0000016829 00000 n
-0000017060 00000 n
-0000017292 00000 n
-0000017521 00000 n
-0000017751 00000 n
-0000017980 00000 n
-0000018211 00000 n
-0000018442 00000 n
-0000018674 00000 n
-0000018906 00000 n
-0000019138 00000 n
-0000019368 00000 n
-0000019600 00000 n
-0000019831 00000 n
-0000020063 00000 n
-0000020295 00000 n
-0000020527 00000 n
-0000020759 00000 n
-0000020990 00000 n
-0000021220 00000 n
-0000021451 00000 n
-0000021682 00000 n
-0000021914 00000 n
-0000022127 00000 n
-0000022865 00000 n
-0000023094 00000 n
-0000023325 00000 n
-0000023555 00000 n
-0000023785 00000 n
-0000024016 00000 n
-0000024246 00000 n
-0000024477 00000 n
-0000024706 00000 n
-0000024937 00000 n
-0000025167 00000 n
-0000025399 00000 n
-0000025631 00000 n
-0000025863 00000 n
-0000026094 00000 n
-0000026325 00000 n
-0000026555 00000 n
-0000026786 00000 n
-0000027018 00000 n
-0000027251 00000 n
-0000027485 00000 n
-0000027719 00000 n
-0000027952 00000 n
-0000028185 00000 n
-0000028420 00000 n
-0000028655 00000 n
-0000028888 00000 n
-0000029122 00000 n
-0000029356 00000 n
-0000029591 00000 n
-0000029825 00000 n
-0000030060 00000 n
-0000030294 00000 n
-0000030529 00000 n
-0000030762 00000 n
-0000030995 00000 n
-0000031229 00000 n
-0000031464 00000 n
-0000031697 00000 n
-0000031931 00000 n
-0000032165 00000 n
-0000032383 00000 n
-0000033052 00000 n
-0000033288 00000 n
-0000033525 00000 n
-0000033760 00000 n
-0000034014 00000 n
-0000034282 00000 n
-0000034527 00000 n
-0000034799 00000 n
-0000035090 00000 n
-0000035367 00000 n
-0000035641 00000 n
-0000035923 00000 n
-0000036202 00000 n
-0000036470 00000 n
-0000036734 00000 n
-0000036991 00000 n
-0000037242 00000 n
-0000037493 00000 n
-0000037790 00000 n
-0000038083 00000 n
-0000038366 00000 n
-0000038682 00000 n
-0000038972 00000 n
-0000039257 00000 n
-0000039546 00000 n
-0000039828 00000 n
-0000040108 00000 n
-0000040383 00000 n
-0000040944 00000 n
-0000041227 00000 n
-0000041525 00000 n
-0000041810 00000 n
-0000042101 00000 n
-0000042398 00000 n
-0000042692 00000 n
-0000042990 00000 n
-0000043272 00000 n
-0000043544 00000 n
-0000043816 00000 n
-0000044084 00000 n
-0000044364 00000 n
-0000044642 00000 n
-0000044920 00000 n
-0000045238 00000 n
-0000045525 00000 n
-0000045811 00000 n
-0000046074 00000 n
-0000046313 00000 n
-0000046533 00000 n
-0000047020 00000 n
-0000047198 00000 n
-0000047424 00000 n
-0000047610 00000 n
-0000047833 00000 n
-0000048138 00000 n
-0000048411 00000 n
-0000048701 00000 n
-0000048941 00000 n
-0000049182 00000 n
-0000049424 00000 n
-0000049666 00000 n
-0000049908 00000 n
-0000050135 00000 n
-0000050333 00000 n
-0000050573 00000 n
-0000050813 00000 n
-0000051055 00000 n
-0000051296 00000 n
-0000051519 00000 n
-0000051931 00000 n
-0000052173 00000 n
-0000052413 00000 n
-0000052636 00000 n
-0000052968 00000 n
-0000053208 00000 n
-0000053450 00000 n
-0000053684 00000 n
-0000053926 00000 n
-0000054167 00000 n
-0000054409 00000 n
-0000054651 00000 n
-0000054892 00000 n
-0000055116 00000 n
-0000055508 00000 n
-0000055746 00000 n
-0000055983 00000 n
-0000056220 00000 n
-0000056442 00000 n
-0000056768 00000 n
-0000057042 00000 n
-0000057332 00000 n
-0000057574 00000 n
-0000057810 00000 n
-0000058047 00000 n
-0000058268 00000 n
-0000058610 00000 n
-0000058852 00000 n
-0000059094 00000 n
-0000059320 00000 n
-0000059652 00000 n
-0000059893 00000 n
-0000060118 00000 n
-0000060440 00000 n
-0000060681 00000 n
-0000060922 00000 n
-0000061163 00000 n
-0000061388 00000 n
-0000061730 00000 n
-0000061956 00000 n
-0000062268 00000 n
-0000062509 00000 n
-0000062750 00000 n
-0000062992 00000 n
-0000063234 00000 n
-0000063475 00000 n
-0000063717 00000 n
-0000063959 00000 n
-0000064200 00000 n
-0000064442 00000 n
-0000064678 00000 n
-0000064903 00000 n
-0000065315 00000 n
-0000065556 00000 n
-0000065781 00000 n
-0000066087 00000 n
-0000066377 00000 n
-0000066619 00000 n
-0000066860 00000 n
-0000067086 00000 n
-0000067418 00000 n
-0000067658 00000 n
-0000067878 00000 n
-0000068200 00000 n
-0000068441 00000 n
-0000068680 00000 n
-0000068919 00000 n
-0000069235 00000 n
-0000069509 00000 n
-0000069784 00000 n
-0000069926 00000 n
-0000070170 00000 n
-0000070299 00000 n
-0000070505 00000 n
-0000070662 00000 n
-0000070834 00000 n
-0000071003 00000 n
-0000071216 00000 n
-0000071387 00000 n
-0000071616 00000 n
-0000071775 00000 n
-0000071955 00000 n
-0000072139 00000 n
-0000072329 00000 n
-0000072511 00000 n
-0000072694 00000 n
-0000072861 00000 n
-0000073047 00000 n
-0000073271 00000 n
-0000073440 00000 n
-0000073609 00000 n
-0000073799 00000 n
-0000073975 00000 n
-0000074166 00000 n
-0000074385 00000 n
-0000074540 00000 n
-0000074717 00000 n
-0000074887 00000 n
-0000075057 00000 n
-0000075220 00000 n
-0000075415 00000 n
-0000075644 00000 n
-0000075802 00000 n
-0000075980 00000 n
-0000076158 00000 n
-0000076335 00000 n
-0000076494 00000 n
-0000076682 00000 n
-0000076909 00000 n
-0000077120 00000 n
-0000077289 00000 n
-0000077468 00000 n
-0000077655 00000 n
-0000077837 00000 n
-0000078009 00000 n
-0000078230 00000 n
-0000078387 00000 n
-0000078572 00000 n
-0000078752 00000 n
-0000078917 00000 n
-0000079132 00000 n
-0000079294 00000 n
-0000079471 00000 n
-0000079639 00000 n
-0000079813 00000 n
-0000079987 00000 n
-0000080163 00000 n
-0000080338 00000 n
-0000080502 00000 n
-0000080727 00000 n
-0000080885 00000 n
-0000081070 00000 n
-0000081244 00000 n
-0000081434 00000 n
-0000081608 00000 n
-0000081823 00000 n
-0000081990 00000 n
-0000082174 00000 n
-0000082358 00000 n
-0000082524 00000 n
-0000082750 00000 n
-0000082925 00000 n
-0000083099 00000 n
-0000083248 00000 n
-0000083433 00000 n
-0000083667 00000 n
-0000083825 00000 n
-0000084013 00000 n
-0000084198 00000 n
-0000084377 00000 n
-0000084614 00000 n
-0000084786 00000 n
-0000084962 00000 n
-0000085132 00000 n
-0000085312 00000 n
-0000085484 00000 n
-0000085708 00000 n
-0000085872 00000 n
-0000086060 00000 n
-0000086248 00000 n
-0000086461 00000 n
-0000086601 00000 n
-0000086961 00000 n
-0000088892 00000 n
-0000090551 00000 n
-0000093975 00000 n
-0000097112 00000 n
-0000100523 00000 n
-0000103432 00000 n
-0000106168 00000 n
-0000109125 00000 n
-0000112041 00000 n
-0000114971 00000 n
-0000117386 00000 n
-0000121726 00000 n
-0000125032 00000 n
-0000128099 00000 n
-0000131133 00000 n
-0000133762 00000 n
-0000136496 00000 n
-0000139078 00000 n
-0000141852 00000 n
-0000145169 00000 n
-0000148048 00000 n
-0000150892 00000 n
-0000153732 00000 n
-0000156372 00000 n
-0000158583 00000 n
-trailer
-<< /ID
- % ReportLab generated PDF document -- digest (http://www.reportlab.com)
- [(/\(,h\315\262\327\227]MM$\306\353\011\335) (/\(,h\315\262\327\227]MM$\306\353\011\335)]
-
- /Info 229 0 R
- /Root 228 0 R
- /Size 347 >>
-startxref
-158909
-%%EOF
diff --git a/pdk/docs/compatibility/android-cts-manual-r4.pdf b/pdk/docs/compatibility/android-cts-manual-r4.pdf
deleted file mode 100644
index f16b6f9..0000000
--- a/pdk/docs/compatibility/android-cts-manual-r4.pdf
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/compatibility/compatibility_toc.cs b/pdk/docs/compatibility/compatibility_toc.cs
deleted file mode 100644
index 056605a..0000000
--- a/pdk/docs/compatibility/compatibility_toc.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-<script type="text/javascript" language="JavaScript">
-<!--
-function nothing() {}
--->
-</script>
-
-<ul>
- <li><h2>Getting Started</h2><ul>
- <li><a href="<?cs var:toroot ?>compatibility/overview.html">Compatibility Overview</a></li>
- <li><a href="<?cs var:toroot ?>compatibility/android-2.3.3-cdd.pdf">Current CDD</a></li>
- <li><a href="<?cs var:toroot ?>compatibility/cts-intro.html">CTS Introduction</a></li>
- <li><a href="<?cs var:toroot ?>compatibility/cts-development.html">CTS Development</a></li>
- </ul></li>
-
- <li><h2>More Information</h2><ul>
- <li><a href="<?cs var:toroot ?>compatibility/downloads.html">Downloads</a></li>
- <li><a href="<?cs var:toroot ?>faqs.html#compatibility">FAQs</a></li>
- <li><a href="<?cs var:toroot ?>compatibility/contact-us.html">Contact Us</a></li>
- </ul></li>
-</ul>
-
-<script type="text/javascript">
-<!--
- buildToggleLists();
-//-->
-</script>
diff --git a/pdk/docs/compatibility/contact-us.jd b/pdk/docs/compatibility/contact-us.jd
deleted file mode 100644
index 2aa2aa1..0000000
--- a/pdk/docs/compatibility/contact-us.jd
+++ /dev/null
@@ -1,30 +0,0 @@
-page.title=Contact Us
-doc.type=compatibility
-@jd:body
-<p>Thanks for your interest in Android compatibility!</p>
-<p>If you have questions about Android compatibility that aren't covered in
-this site, you can reach us in one of a few different ways. To get the most
-out of any of these options, please first read "Getting the Most from Our
-Lists" on the <a href="{@docRoot}community/index.html">Community page.</a></p>
-
-<h3>For General Discussion</h3>
-<p>The preferred way to reach us is via the <a
-href="mailto:compatibility@android.com">compatibility@android.com
-address</a>.</p>
-
-<h3>For CTS Technical Questions</h3>
-<p>If you have specific issues with the Compatibility Test Suite that require
-you to disclose information you'd prefer not to be public, you can contact an
-email address we've set up specifically this purpose: <a
-href="mailto:cts@android.com">cts@android.com</a>. This email address is for
-cases that require disclosure of confidential information only, so general
-questions will be directed back to the public android-compatibility
-list. Note also that this list is for specific technical questions; general
-inquiries will also be directed back to the android-compatibility list.</p>
-
-<h3>For Business Inquiries</h3>
-<p>Finally, business inquiries about the compatibility program, including
-requests to use branding elements and so on, can be sent to the address <a
-href="mailto:android-partnerships@google.com">android-partnerships@google.com</a>. Like
-the CTS address, this address is for specific, private inquiries; general
-questions will be directed back to the android-compatibility list.</p>
diff --git a/pdk/docs/compatibility/cts-development.jd b/pdk/docs/compatibility/cts-development.jd
deleted file mode 100644
index 7a2f5af..0000000
--- a/pdk/docs/compatibility/cts-development.jd
+++ /dev/null
@@ -1,130 +0,0 @@
-page.title=CTS Development
-doc.type=compatibility
-@jd:body
-
-<h3>Initializing Your Repo Client</h3>
-
-<p>Follow the
-<a href="{@docRoot}source/download.html">instructions</a>
-to get and build the Android source code but specify "-b froyo"
-when issuing the "repo init" command. This assures that your CTS
-changes will be included in the next CTS release and beyond.</p>
-
-<h3>Setting Up Eclipse</h3>
-
-<p>Follow the
-<a href="{@docRoot}source/using-eclipse.html">instructions</a>
-to setup Eclipse but execute the following command to generate the
-.classpath file rather than copying the one from the development
-project:</p>
-
-<pre>
-cd /path/to/android/root
-./cts/development/ide/eclipse/genclasspath.sh > .classpath
-chmod u+w .classpath
-</pre>
-
-<p>This .classpath file will contain both the Android framework
-packages and the CTS packages.</p>
-
-<h3>Building and Running CTS</h3>
-
-<p>Execute the following commands to build CTS and start the interactive
-CTS console:</p>
-
-<pre>
-cd /path/to/android/root
-make cts
-cts
-</pre>
-
-<p>Provide arguments to CTS to immediately start executing a test:</p>
-
-<pre>
-cts start --plan CTS -p android.os.cts.BuildVersionTest
-</pre>
-
-<h3>Writing CTS Tests</h3>
-
-<p>CTS tests use JUnit and the Android testing APIs. Review the
-<a href="http://d.android.com/guide/topics/testing/testing_android.html">Testing
-and Instrumentation</a> tutorial while perusing the existing tests under the
-"cts/tests/tests" directory. You will see that CTS tests mostly follow the same
-conventions used in other Android tests.</p>
-
-<p>Since CTS runs across many production devices, the tests must follow
-these rules:</p>
-
-<ul>
- <li>Must take into account varying screen sizes, orientations, and
- keyboard layouts.</li>
- <li>Only use public API methods. In other words, avoid all classes,
- methods, and fields that are annotated with the "hide" annotation.</li>
- <li>Avoid relying upon particular view layouts or depend on the
- dimensions of assets that may not be on some device.</li>
- <li>Don't rely upon root privileges.</li>
-</ul>
-
-<h4>Test Naming and Location</h4>
-
-<p>Most CTS test cases target a specific class in the Android API. These tests
-have Java package names with a "cts" suffix like "android.view.cts" and class
-names with the "Test" suffix like "ViewTest." Each test case consists of
-multiple tests, where each test usually exercises a particular API method of
-the API class being tested. Each test is annotated with a @TestTargetNew
-annotation to indicate what API method is being exercised. These tests are
-arranged in a directory structure where tests are grouped into different
-categories like "widgets" and "views."</p>
-
-<p>For example, the CTS test for "android.widget.TextView" is
-"android.widget.cts.TextVietTest" found under the
-"cts/tests/tests/widget/src/android/widget/cts" directory with its
-Java package name as "android.widget.cts" and its class name as
-"TextViewTest." The "TextViewTest" class has a test called "testSetText"
-that exercises the "setText" method and a test named "testSetSingleLine" that
-calls the "setSingleLine" method. Each of those tests have @TestTargetNew
-annotations indicating what they cover.</p>
-
-<p>Some CTS tests do not directly correspond to an API class but are placed in
-the most related package possible. For instance, the CTS test,
-"android.net.cts.ListeningPortsTest," is in the "android.net.cts," because it
-is network related even though there is no "android.net.ListeningPorts" class.
-Thus, use your best judgement when adding new tests and refer to other tests
-as examples.</p>
-
-<h4>New Test Packages</h4>
-
-<p>When adding new tests, there may not be an existing directory to place your
-test. In that case, refer to the example under "cts/tests/tests/example" and
-create a new directory. Furthermore, make sure to add your new package's
-module name from its Android.mk to "CTS_COVERAGE_TEST_CASE_LIST" in
-"cts/CtsTestCaseList.mk." This Makefile is used by "build/core/tasks/cts.mk"
-to glue all the tests together to create the final CTS package.</p>
-
-<h4>Test Stubs and Utilities</h4>
-
-<p>Some tests use additional infrastructure like separate activities
-and various utilities to perform tests. These are located under the
-"cts/tests/src" directory. These stubs aren't separated into separate test
-APKs like the tests, so the "cts/tests/src" directory does not have additional
-top level directories like "widget" or "view." Follow the same principle of
-putting new classes into a package with a name that correlates to the purpose
-of your new class. For instance, a stub activity used for testing OpenGL like
-"GLSurfaceViewStubActivity" belongs in the "android.opengl.cts" package under
-the "cts/tests/src/android/opengl" directory.</p>
-
-<h3>Other Tasks</h3>
-
-<p>Besides adding new tests there are other ways to contribute to CTS:</p>
-
-<ul>
- <li>Fix or remove tests annotated with BrokenTest and KnownFailure.</li>
-</ul>
-
-<h3>Submitting Your Changes</h3>
-
-<p>Follow the
-<a href="{@docRoot}source/submit-patches.html">Android
-contributors' workflow</a> to contribute changes to CTS. A reviewer
-will be assigned to your change, and your change should be reviewed shortly!</p>
-
diff --git a/pdk/docs/compatibility/cts-intro.jd b/pdk/docs/compatibility/cts-intro.jd
deleted file mode 100644
index 5d80a45..0000000
--- a/pdk/docs/compatibility/cts-intro.jd
+++ /dev/null
@@ -1,93 +0,0 @@
-page.title=Compatibility Test Suite
-doc.type=compatibility
-@jd:body
-<h3>How does the CTS work?</h3>
-<div><img src="{@docRoot}images/cts-0.png"></div>
-<div>The CTS is an automated testing harness that includes two major software components:</div>
-<ul>
-<li>The CTS test harness runs on your desktop machine and manages test execution.</li>
-<li>Individual test cases are executed on attached mobile devices or on an
-emulator. The test cases are written in Java as JUnit tests and packaged as
-Android .apk files to run on the actual device target.</li>
-</ul>
-
-<h3>Workflow</h3>
-<ol>
-<li><a href="{@docRoot}compatibility/downloads.html">Download</a> the CTS.
-<li>Attach at least one device (or emulator) to your machine.</li>
-<li>For CTS 2.1 R2 and beyond, setup your device (or emulator) to run the accessibility tests:
- <ol>
- <li>adb install -r android-cts/repository/testcases/CtsDelegatingAccessibilityService.apk</li>
- <li>On the device, enable Settings > Accessibility > Accessibility > Delegating Accessibility Service</li>
- </ol>
-</li>
-<li>Launch the CTS. The CTS test harness loads the test plan onto the attached devices. For each test in the test harness:
- <ul>
- <li>The test harness pushes a .apk file to each device, executes the test through instrumentation, and records test results.</li>
- <li>The test harness removes the .apk file from each device.</li>
- </ul>
-</li>
-<li>Once all the tests are executed, you can view the test results in your browser and use the results to adjust your design. You can continue to run the CTS throughout your development process.</li>
-</ol>
-<div>When you are ready, you can submit the report generated by the CTS to cts@android.com. The report is a .zip archived file that contains XML results and supplemental information such as screen captures.</div>
-
-<h3>Types of test cases</h3>
-The CTS includes the following types of test cases:
-<ul>
-<li><i>Unit tests</i> test atomic units of code within the Android platform; e.g. a single class, such as java.util.HashMap.</li>
-<li><i>Functional tests</i> test a combination of APIs together in a higher-level use-case.</li>
-<li><i>Reference application tests</i> instrument a complete sample application to exercise a full set of APIs and Android runtime services</li>
-</ul>
-<div>Future versions of the CTS will include the following types of test cases:</div>
-<ul>
-<li><i>Robustness tests</i> test the durability of the system under stress.</li>
-<li><i>Performance tests</i> test the performance of the system against defined benchmarks, for example rendering frames per second.</li>
-</ul>
-
-<h3>Areas Covered</h3>
-The unit test cases cover the following areas to ensure compatibility <br>
-<table><tbody>
-<tr><td>Area</td><td>Description <br></td></tr>
-<tr><td>Signature tests</td>
-<td>For each Android release, there are XML files describing the signatures of all public APIs contained in the release. The CTS contains a utility to check those API signatures against the APIs available on the device. The results from signature checking are recorded in the test result XML file.
-</td>
-</tr>
-<tr><td>Platform API Tests</td>
-<td>Test the platform (core libraries and Android Application Framework) APIs as documented in the SDK <a href="http://code.google.com/android/reference/classes.html">Class Index</a>
-to ensure API correctness:
-<ul>
-<li>correct class, attribute and method signatures</li>
-<li>correct method behavior</li>
-<li>negative tests to ensure expected behavior for incorrect parameter handling</li>
-</ul>
-</td></tr>
-<tr><td>Dalvik VM Tests</td><td>The tests focus on testing the Dalvik VM</td></tr>
-<tr><td>Platform Data Model</td>
-<td>The CTS tests the core platform data model as exposed to application developers through content providers, as documented in the SDK <a href="http://code.google.com/android/reference/android/provider/package-summary.html">android.provider</a>
-package:
-<ul>
-<li>contacts</li>
-<li>browser</li>
-<li>settings</li>
-<li>more...</li>
-</ul>
-</td></tr>
-<tr><td>Platform Intents</td>
-<td>The CTS tests the core platform intents, as documented in the SDK <a href="http://code.google.com/android/reference/available-intents.html">Available Intents</a>.</td>
-</tr>
-<tr><td>Platform Permissions</td>
-<td>The CTS tests the core platform permissions, as documented in the SDK <a href="http://code.google.com/android/reference/android/Manifest.permission.html">Available Permissions</a>.</td>
-</tr>
-<tr><td>Platform Resources <br></td>
-<td>The CTS tests for correct handling of the core platform resource types, as documented in the SDK <a href="http://code.google.com/android/reference/available-resources.html">Available Resource Types</a>
-. This includes tests for:
-<ul>
-<li>simple values</li>
-<li>drawables</li>
-<li>nine-patch</li>
-<li>animations</li>
-<li>layouts</li>
-<li>styles and themes</li>
-<li>loading alternate resources</li>
-</ul></td></tr>
-</tbody></table>
diff --git a/pdk/docs/compatibility/downloads.jd b/pdk/docs/compatibility/downloads.jd
deleted file mode 100644
index 79ad81b..0000000
--- a/pdk/docs/compatibility/downloads.jd
+++ /dev/null
@@ -1,59 +0,0 @@
-page.title=Android Compatibility Downloads
-doc.type=compatibility
-@jd:body
-<p>Thanks for your interest in Android Compatibility! The links below allow
-you to access the key documents and information.</p>
-
-<h2>Android 2.3</h2>
-<p>Android 2.3 is the release of the development milestone code-named
-Gingerbread. Android 2.3 is the current version of Android. Source code for
-Android 2.3 is found in the 'gingerbread' branch in the open-source tree.
-</p>
-<ul>
- <li><a href="{@docRoot}compatibility/android-2.3.3-cdd.pdf">Android 2.3.3 Compatibility Definition Document (CDD)</a></li>
- <li><a href="http://dl.google.com/dl/android/cts/android-cts-2.3_r2-x86.zip">Android 2.3 R2 Compatibility Test Suite (CTS)</a></li>
-</ul>
-
-<h2>Android 2.2</h2>
-<p>Android 2.2 is the release of the development milestone code-named
-FroYo. Source code for Android 2.2 is found in the 'froyo' branch in the
-open-source tree.
-</p>
-<ul>
- <li><a href="{@docRoot}compatibility/android-2.2-cdd.pdf">Android 2.2 Compatibility Definition Document (CDD)</a></li>
- <li><a href="http://dl.google.com/dl/android/cts/android-cts-2.2_r5-x86.zip">Android 2.2 R5 Compatibility Test Suite (CTS)</a></li>
-</ul>
-
-<h2>Android 2.1</h2>
-<p>Android 2.1 is the release of the development milestone code-named
-Eclair. Source code for Android 2.1 is found in the 'eclair' branch in the
-open-source tree. Note that for technical reasons, there is no compatibility
-program for Android 2.0 or 2.0.1, and new devices must use Android 2.1.
-</p>
-<ul>
- <li><a href="{@docRoot}compatibility/android-2.1-cdd.pdf">Android 2.1 Compatibility Definition Document (CDD)</a></li>
- <li><a href="http://dl.google.com/dl/android/cts/android-cts-2.1_r5-x86.zip">Android 2.1 R5 Compatibility Test Suite (CTS)</a></li>
-</ul>
-
-<h2>Android 1.6</h2>
-<p>Android 1.6 was the release of the development milestone code-named Donut.
-Android 1.6 was obsoleted by Android 2.1. Source code for Android 1.6 is found
-in the 'donut' branch in the open-source tree.
-<ul>
- <li><a href="{@docRoot}compatibility/android-1.6-cdd.pdf">Android 1.6 Compatibility Definition Document (CDD)</a></li>
- <li><a href="http://dl.google.com/dl/android/cts/android-cts-1.6_r1-x86.zip">Android 1.6 R1 Compatibility Test Suite (CTS)</a></li>
-</ul>
-
-<h2>Compatibility Test Suite Manual</h2>
-<p>The CTS user manual is applicable to any CTS version, but CTS 2.1 R2 and
-beyond require
-<a href="{@docRoot}compatibility/cts-intro.html">additional steps</a>
-to run the accessibility tests.
-<ul>
- <li><a href="{@docRoot}compatibility/android-cts-manual-r4.pdf">Compatibility Test Suite (CTS) User Manual</a></li>
-</ul>
-
-<h2>Older Android Versions</h2>
-<p>There is no Compatibility Program for older versions of Android, such as Android
-1.5 (known in development as Cupcake). New devices intended to be Android
-compatible must ship with Android 1.6 or later.</p>
diff --git a/pdk/docs/compatibility/index.jd b/pdk/docs/compatibility/index.jd
deleted file mode 100644
index e4e30a8..0000000
--- a/pdk/docs/compatibility/index.jd
+++ /dev/null
@@ -1,64 +0,0 @@
-page.title=Android Compatibility
-doc.type=compatibility
-@jd:body
-<p>Android's purpose is to establish an open platform for developers to build
-innovative mobile apps. Three key components work together to realize this
-platform.</p>
-<p>The Android Compatibility Program defines the technical details of Android
-platform and provides tools used by OEMs to ensure that developers’ apps run
-on a variety of devices. The Android SDK provides built-in tools that
-Developers use to clearly state the device features their apps require. And
-Android Market shows apps only to those devices that can properly run
-them.</p>
-<p>These pages describe the Android Compatibility Program and how to get
-access to compatibility information and tools. The latest version of the
-Android source code and compatibility program is 2.3, which
-corresponded to the Gingerbread branch.</p>
-
-
-<h2>Why build compatible Android devices?</h2>
-<h3>Users want a customizable device.</h3>
-<p>A mobile phone is a highly personal, always-on, always-present gateway to
-the Internet. We haven't met a user yet who didn't want to customize it by
-extending its functionality. That's why Android was designed as a robust
-platform for running after-market applications.</p>
-
-<h3>Developers outnumber us all.</h3>
-<p>No device manufacturer can hope to write all the software that a person could
-conceivably need. We need third-party developers to write the apps users want,
-so the Android Open Source Project aims to make it as easy and open as
-possible for developers to build apps.</p>
-
-<h3>Everyone needs a common ecosystem.</h3>
-<p>Every line of code developers write to work around a particular phone's bug
-is a line of code that didn't add a new feature. The more compatible phones
-there are, the more apps there will be. By building a fully compatible Android
-device, you benefit from the huge pool of apps written for Android, while
-increasing the incentive for developers to build more of those apps.</p>
-
-
-<h2>Android compatibility is free, and it's easy.</h2>
-<p>If you are building a mobile device, you can follow these steps to make
-sure your device is compatible with Android. For more details about the
-Android compatibility program in general, see <a
-href="{@docRoot}compatibility/overview.html">the program overview</a>.</p>
-<p>Building a compatible device is a three-step process:</p>
-<ol>
- <li><b>Obtain the Android software source code</b><p>This is the
- <a href="{@docRoot}source/index.html">source code for the Android
- platform</a>, that you port to your hardware.</p></li>
- <li><b>Comply with Android Compatibility Definition Document (CDD)</b><p>
- The CDD enumerates the software and hardware requirements of
- a compatible Android device.</p></li>
- <li><b>Pass the Compatibility Test Suite (CTS)</b><p>You can use the CTS
- (included in the Android source code) as an ongoing aid to compatibility
- during the development process.</p></li>
-</ol>
-
-<h2>Joining the Ecosystem</h2>
-<p>Once you've built a compatible device, you may wish to include Android
-Market to provide your users access to the third-party app ecosystem.
-Unfortunately, for a variety of legal and business reasons, we aren't able to
-automatically license Android Market to all compatible devices. To inquire
-about access about Android Market, you can <a
-href="{@docRoot}compatibility/contact-us.html">contact us</a></p>
diff --git a/pdk/docs/compatibility/ndef-push-protocol.pdf b/pdk/docs/compatibility/ndef-push-protocol.pdf
deleted file mode 100644
index 2300a6b..0000000
--- a/pdk/docs/compatibility/ndef-push-protocol.pdf
+++ /dev/null
@@ -1,471 +0,0 @@
-%PDF-1.4
-% ReportLab Generated PDF document http://www.reportlab.com
-% 'BasicFonts': class PDFDictionary
-1 0 obj
-% The standard fonts dictionary
-<< /F1 2 0 R
- /F2 3 0 R
- /F3 13 0 R >>
-endobj
-% 'F1': class PDFType1Font
-2 0 obj
-% Font Helvetica
-<< /BaseFont /Helvetica
- /Encoding /WinAnsiEncoding
- /Name /F1
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'F2': class PDFType1Font
-3 0 obj
-% Font Helvetica-Bold
-<< /BaseFont /Helvetica-Bold
- /Encoding /WinAnsiEncoding
- /Name /F2
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Annot.NUMBER1': class LinkAnnotation
-4 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 14 0 R
- /XYZ
- 55
- 511.3263
- 0 ]
- /Rect [ 70
- 613.115
- 132.5125
- 624.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER2': class LinkAnnotation
-5 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 14 0 R
- /XYZ
- 55
- 439.0138
- 0 ]
- /Rect [ 70
- 601.865
- 109.5925
- 613.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER3': class LinkAnnotation
-6 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 14 0 R
- /XYZ
- 55
- 344.0763
- 0 ]
- /Rect [ 70
- 590.615
- 120.0175
- 601.865 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER4': class LinkAnnotation
-7 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 14 0 R
- /XYZ
- 55
- 307.7975
- 0 ]
- /Rect [ 85
- 577.365
- 158.365
- 588.615 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER5': class LinkAnnotation
-8 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 14 0 R
- /XYZ
- 55
- 230.6725
- 0 ]
- /Rect [ 85
- 566.115
- 124.1875
- 577.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER6': class LinkAnnotation
-9 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 15 0 R
- /XYZ
- 55
- 667.0475
- 0 ]
- /Rect [ 85
- 554.865
- 139.6
- 566.115 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER7': class LinkAnnotation
-10 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 15 0 R
- /XYZ
- 55
- 518.6725
- 0 ]
- /Rect [ 85
- 543.615
- 144.1975
- 554.865 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER8': class LinkAnnotation
-11 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 15 0 R
- /XYZ
- 55
- 328.7975
- 0 ]
- /Rect [ 85
- 532.365
- 121.6825
- 543.615 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'Annot.NUMBER9': class LinkAnnotation
-12 0 obj
-<< /Border [ 0
- 0
- 0 ]
- /Contents ()
- /Dest [ 15 0 R
- /XYZ
- 55
- 219.6725
- 0 ]
- /Rect [ 85
- 521.115
- 118.765
- 532.365 ]
- /Subtype /Link
- /Type /Annot >>
-endobj
-% 'F3': class PDFType1Font
-13 0 obj
-% Font Times-Roman
-<< /BaseFont /Times-Roman
- /Encoding /WinAnsiEncoding
- /Name /F3
- /Subtype /Type1
- /Type /Font >>
-endobj
-% 'Page1': class PDFPage
-14 0 obj
-% Page dictionary
-<< /Annots [ 4 0 R
- 5 0 R
- 6 0 R
- 7 0 R
- 8 0 R
- 9 0 R
- 10 0 R
- 11 0 R
- 12 0 R ]
- /Contents 32 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 31 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page2': class PDFPage
-15 0 obj
-% Page dictionary
-<< /Contents 33 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 31 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'Page3': class PDFPage
-16 0 obj
-% Page dictionary
-<< /Contents 34 0 R
- /MediaBox [ 0
- 0
- 612
- 792 ]
- /Parent 31 0 R
- /Resources << /Font 1 0 R
- /ProcSet [ /PDF
- /Text
- /ImageB
- /ImageC
- /ImageI ] >>
- /Rotate 0
- /Trans << >>
- /Type /Page >>
-endobj
-% 'R17': class PDFCatalog
-17 0 obj
-% Document Root
-<< /Outlines 19 0 R
- /PageMode /UseNone
- /Pages 31 0 R
- /Type /Catalog >>
-endobj
-% 'R18': class PDFInfo
-18 0 obj
-<< /Author ()
- /CreationDate (D:20110303200815+08'00')
- /Keywords ()
- /Producer (pisa HTML to PDF <http://www.htmltopdf.org>)
- /Subject ()
- /Title (Android NDEF Push Protocol Specification) >>
-endobj
-% 'R19': class PDFOutlines
-19 0 obj
-<< /Count 3
- /First 20 0 R
- /Last 20 0 R
- /Type /Outlines >>
-endobj
-% 'Outline.0': class OutlineEntryObject
-20 0 obj
-<< /Count -4
- /Dest [ 14 0 R
- /Fit ]
- /First 21 0 R
- /Last 24 0 R
- /Parent 19 0 R
- /Title (Android NDEF Push Protocol Specification) >>
-endobj
-% 'Outline.2.0': class OutlineEntryObject
-21 0 obj
-<< /Dest [ 14 0 R
- /Fit ]
- /Next 22 0 R
- /Parent 20 0 R
- /Title (Table of Contents) >>
-endobj
-% 'Outline.2.1': class OutlineEntryObject
-22 0 obj
-<< /Dest [ 14 0 R
- /Fit ]
- /Next 23 0 R
- /Parent 20 0 R
- /Prev 21 0 R
- /Title (1. Revision History) >>
-endobj
-% 'Outline.2.2': class OutlineEntryObject
-23 0 obj
-<< /Dest [ 14 0 R
- /Fit ]
- /Next 24 0 R
- /Parent 20 0 R
- /Prev 22 0 R
- /Title (2. Overview) >>
-endobj
-% 'Outline.2.3': class OutlineEntryObject
-24 0 obj
-<< /Count -6
- /Dest [ 14 0 R
- /Fit ]
- /First 25 0 R
- /Last 30 0 R
- /Parent 20 0 R
- /Prev 23 0 R
- /Title (3. Data Format) >>
-endobj
-% 'Outline.3.0': class OutlineEntryObject
-25 0 obj
-<< /Dest [ 14 0 R
- /Fit ]
- /Next 26 0 R
- /Parent 24 0 R
- /Title (3.1. Protocol Versions) >>
-endobj
-% 'Outline.3.1': class OutlineEntryObject
-26 0 obj
-<< /Dest [ 14 0 R
- /Fit ]
- /Next 27 0 R
- /Parent 24 0 R
- /Prev 25 0 R
- /Title (3.2. Header) >>
-endobj
-% 'Outline.3.2': class OutlineEntryObject
-27 0 obj
-<< /Dest [ 15 0 R
- /Fit ]
- /Next 28 0 R
- /Parent 24 0 R
- /Prev 26 0 R
- /Title (3.3. NDEF Entry) >>
-endobj
-% 'Outline.3.3': class OutlineEntryObject
-28 0 obj
-<< /Dest [ 15 0 R
- /Fit ]
- /Next 29 0 R
- /Parent 24 0 R
- /Prev 27 0 R
- /Title (3.4. Action Codes) >>
-endobj
-% 'Outline.3.4': class OutlineEntryObject
-29 0 obj
-<< /Dest [ 15 0 R
- /Fit ]
- /Next 30 0 R
- /Parent 24 0 R
- /Prev 28 0 R
- /Title (3.5. Server) >>
-endobj
-% 'Outline.3.5': class OutlineEntryObject
-30 0 obj
-<< /Dest [ 15 0 R
- /Fit ]
- /Parent 24 0 R
- /Prev 29 0 R
- /Title (3.6. Client) >>
-endobj
-% 'R31': class PDFPages
-31 0 obj
-% page tree
-<< /Count 3
- /Kids [ 14 0 R
- 15 0 R
- 16 0 R ]
- /Type /Pages >>
-endobj
-% 'R32': class PDFStream
-32 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2055 >>
-stream
-GauHM=]68"&:UO7s3Qg;.k&i9p:fX=c#/ZFPB^$6<I#1b^lu0=]JF%:rr%"5F*fNA!%?htI=,dXC39mb*5@4,^"<=tS&:^g!Q'Ha%1%_L0Y`3tq<?#9qF>)UXok!/Hl$p?ir[Lp5/qtf$d47Akm:N.Kd33a4;[-!&;&jtg*_qFF3,`[hsi:gM,uD2$1hN2pFlC+hu(BY-5^+BX;?h'%ej/BTUp'8(gKgj`<+G;nhsam;6Y`"+"f0S[S'XTMk`+46u2S+<K#c^=NE=T_B-X<\=PWfp-A6sraa/7!aPP'_f"/OSrstKV8Ms%Z5$'@q:[%,X#ND(@,ad4cR^]e3Od9cCHQVV"&4f%@r9oSnYX@C[[?1<J>^V\pgqN`7U2o9T$-H-K'3Eq7q&F71`;;$SN+Xc3-q%8YJ6X"KXCL)KM>b#hLLZo,b\ZQGJ$^Opc)nc?&,shX"lN)l7jZ-lFDi]^DtXYPsD(Jc'dC;LkIcV%)/`iTJuj[OJGa$YCfp[RDN*a>7CMdX*>_b6_Baji.F]L>Xn6QVT4k;q]f>m*k+?l#L=lO/@_ea;%3+$)-'s>7X8_k'LMu&%VJi)Q.T+9ImC3SV?si(qBO[HWYIF;*YNcMRj^bf3\eNth..^4LC#\e9R&s.RJF.9P4TCk)>-kKV2G/hOAS'L?A*#W6Z(s>Ge9VbMeQV!#2Hg!^*0,(gj9IdY6.HQO5R<"iBt0RW=i[lBc[H,YulJ7Ef1j\RnF]]OhU7cb%4rLK5PtPMoH+s$m3(Jh3QgP3kju;2N:q$nAWSD_CVV)6*fnB$UI\4+qD'Ab73k;S23oIip![1Y[fiP^6c\.cl+:daHlr%HPiQ0>XP$PC=\HnJj0O^:\<u#QOh>j.K:'s"'l#a'X_&#E6!@UaZn;C2u.PR7P_VTf$"msST`7ugMH%/h)_B3duWuFU\p3Y51?W48la@r:U]YM[Rd_">b>=O=&J=?@%Y]X-s$"Ein-%uQr"a';P?Oj_1g1=[b<&WhCWTA`rrZr&4uFV%3mPRE1Nje,EutC@ao]Ao8.25?D(tFf(<I0"l&S#FJqJW;r?NR)Lb11YJ8l:g:rnflaVG7I@e]4]Rh7,#t_AS@ZS%D-a.a13X%'qdV):Ej42]W)&u\n@R]ii/dAeY>2h)Laf#W-LQ+n=H)ojMN]*i<:i[X/'ZnHN8lmJp1:)^hrYB7ZM\QA/U=M86SCA&>*Yk!>IM7Aad8#;_[cShi?6h(D`Mn8NU5N!PC^\Q>R6n46DPK0c!*9T$rq\MX\OIAA`4JiUT?R^F`klNYrmTW:[7En%7+KL[M>FGS+[UsL9TER)pG,k:c9$psKDCCV]j=26"<YU%*Lnd8=Qq:TD_J5qmM7;jhA55$fsOE_8njC?U6:)nX\-BfaY.Ts>+4,!#d&q#7`\lURnShSEop.RJ0(cN1C'WaYI!I3"k.XL?p<rL%_k,jVmeXO`3YI$M:<\pDLrEamB`W#km_bX0U+GXffU9,4G(M`K8c-'/>CBiV?%;$&>Uh4f%=8?'MjP<aD]b=80/.Nk*@s<,_^#VA.b59f\7]oI`Y&'2[sFPaK$gY@q^ZR%\AeZ*C-(%F[9k[hNoQ-70*jO,K.>)rs>Gf=OSAtpK/js<3THa:QgDjdIVFdhWBm8-2_KWMs^Ol4sp7\l!,U#qK0lV*@d8UhG_)m-FG2"N)N(DR_">(hpLSioYQ%t^G=cRa#;Yso/;Zum`5%-=c`:#GTP_cRdTO1@9qZ*nT)N.iO`@``]aCdp>9@3YF88@1@g2`OZYk$ibmI7j9b"sD>"'MX6I,to2C<D!MsQ0[iA'Q%Mh'lrai0kYGAH>]M`c8YBh?kCIl+gP3S["MNY5nq=-QG]$RJ70)SJWf%$.@4jfM:>ne)NrJ'6VATqZK2u:/?@'qe*8G<sAgic=cMnG\d'M=dXT!@jSg_4gX,<V*Udir/nPY"k<Q1CeB*+dYWM,&th.'496%?I>T9,tS1%`YeNClRT)9Y'gklb5I*pbb*AX#$nqQE-!oX6%KnJ^kFMG"_KTh`9PM`f#Du'<u^b]s6gL07_N8rrBb=mfr~>endstream
-endobj
-% 'R33': class PDFStream
-33 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 2836 >>
-stream
-Gb"/*=``=W&q3VVr^/nr[N($W%Vso`5'CQha_'+mXdZ88@7WpUL5/)lp?:CP2o#Nk5`/NDW]\4CC^Fc3)BW.BrYg^t2L[aYG7XlSZ@qt5%QH'l=5ZcR#qS<V_t*2aDt:pt`2=8f?#)XC0o^>]hDo/:27G`hS\iS)2lP9+-CS-tZRIG8E#]7t;*W;b\#)!Y/\eVL>e*)8ngc9k+_UgLrd65'r73c<2Rb8L9W:9PqYnkEa-KA<[=shI4^*EGYe7l-a=dAB;Pq?ti`ML(kuj#Vi7tl);4i%%(R@@uJku+OO2-o@j%KlfdR3oY'Qeob2BI;"=9MAQEsA`*(VY@=P*#PIlk7.d#n);33Eri6JmT19AsqRk!qtN[;m,Kpf:6arLb0#0M?eTj'%bdS"[)\0Nkl*a,4M?DIkT^fX2^hGq\iYQSSJoGr1.5W-IEn"C&EJq6]d$2:pnqm[qV/7cl*0F+ZZrBmUWS)SCJ@Okb#sFs1F.j-i<!egTp(e3Q3utQ9'*1)<-C[+P=.D9*.R).!-XSWfP\_1>d[2<r5bEZ\MPLJI`n;6,pC^>mfc5NnD[=\;C[oVT!u&"jH1G%dh%2r?j0l/hE.9`qXIAp.+U?D,Yd*>Np(^mZ?FKJ.e"3DV6X2gS;+cB6MbfW8>S)8[ClfotErP@>Be)VSs5i*UD+!j\+X6g;\?\7UeeVF$tA`8l2.^#E_d#$ETu&3Qe>/CAeCDp41tuqDbY3cjjTG]sUAqD7W6gm70=fLp_L4P-GO.)`&n)p3mmAmF%n?Yn,p'SLQ_gK0AM8bH14>B&t-E2.I+RYt[fFT$fWb4e9f7D@Y^&D9Wl<'e!_Gc+JjsDAbA*=Qrt[<<pSCYfKT53E)pQHn"6^EQg,%aB:o^3Ju6$SucK[hCq14A1:&Z-<0E+KmRVLrYdk)GeO4@#Fi"jSmM:<QK-'t^*j\RT*MQHMAo0G3[q\++4XFSUg6=h[a3X*eD]a0h:IGHW3"tEL->Ho#q(#7s!Yu/OT\G)b670/qfcX^DX4*DeF%URJW>a9,7T"U)p9100ICs>(k%0/MZ_[1A9:iF2jAJ6E`!9]OGl#)n/Cqn#hIlLq7V;Uo(\&DZHbD(]M*%Q'W^FD[nAi;P*3`7?@q-<TMWHJatl_o[lBVlpr@V+FW(1()7t"?c:gK!0onGIp)?Dk0gCt/P.#eWAre:#o,E"NE_5r8Q"N#oosE3kXX0c5F;L1\TO&j!jtVY@Z(-S)n3QYZ<3:M+M=Hlf;$K3dUINZ-`gLL^-\?b-qbTD7S#`mJ7*`uImP2-!0n?mu+h=nVHV?#6*83T9,[:!8NN;0$6eeNF%n1o:!QUca'klT!8=Q^Il5<T[*J_1H/s7ctH:HFo6U:'>9%%9`n&S[O#gg8"HP+du)DLRC;R*^YW5i4sF=['._J@Z'(H`,S>4LYZOI_:$6AKQ6<]2r>>c4SsKE`2c-4BPL`KH).TGN7(#*\;qOK3P(90+lZ`NW&/DO4ocacVuf![9'c`CJWM7GXBECq-R1pk^t$>2\H0:J5.^gFNf<8JP"q$@!%"5K"V/!2_k%XKjYe+1Alpr0]k=Y:]M[c<alN,cn`;g8bPi9rHa!r(QZ<[*>M%)(?7^V+!G!NA45uAO5R`CBCBteV4Rk+Eqk:%=6gk]8SV6,/A:4#-kpuOKCK>bV8,-k!qI?6=HrD#1#\dJ?Y':K_FHn+0GK8_YTiTfu%QkTt7=F(YPXcE":qrBf607DrG"4n6;^ZWEbUH*;I#M)&"QJ7M*YY<bc-#fcqj2`F45QX<e!`]T&!a,3GL^K@H*Al[!6-jtp<cK\BQ,#.(EVLc>a"&MSMGN2+RYj/Or6'\Tiq3Mt)&hRfE9^/M(rkI9fQ*ZM''OJUng@,^i[:=:fdLK0Nj>-]#jN)^t@UW;&to$dicH/Dp#W/e6jME3FY\nE7dN;2:=&a@dAgK-!>:!,#7E^1fq`n\0Xf:jT]I5U\9lI8t)8`%6l-RJ4AVS?C@0Zb9W$BpYM%+3TPs5l&UEe4=kDJe3Cr?rog-mSX<,@%=/i7[f%rcq-C;gJk3(rP9:hjmN'ff&E3:4(Wql;BfU6+3dE.V!6HEdYoK_4jq(j@P.4$kbd:`,%!#6<VGu/(ned/].E9j<@,lQ2`-SVH#h0nPfq10=poI3D8s#80\LkhklX%"cP[0\6gOugRZt2H!6rJNfZgaH->1kl'(L,&IY*#edm?h$`,^0M=D?_/8juSL<5>o,hFTJQ,tPlqGp`nrE#/rW&YTrK+4]JP411U`DB'rq2$LHHJ'u08`V+U0BI:>:ZI?9[9*N^.ORcNKIJbukD3"jL5`aIGFE08`l8\6Fn'P&fH\A@j_@+HpF/&!f<P>jRF&B]L5HVkegj@qiJU>VcAf3LJmoLD#2E^sc)E[uiDl_Q=-X_K9SmM"DI6L=\dln/]7dUVC"?u&mtS1</eEME(>ML2L>+SV?`moa5P)6"9]R$?\Cea,_s%N;!'WR&]t8dhXR5#TW`rLMP[]i`B?9;)Y8DJuP`r@>`eBLh5%R#YBFbMQSl'IJ5Hi"t5Crk$o8'--](X`TN-LB,nRdOe39a8.+.:TN=qGcj?C`*<NcI7faLim8*sOooGGc"M+Sk!6*IbZLi%LBHYO@DK_h#X#eF-qOL5c#0a?6^O'U*V:90K"O5P'GG8q-u7C(I>G)jVkp4iP'(q/@N%)%<]?&SR2Q&]D=`78+cqKf^FXRQld<pd)su`\Q!81I\?UI0Rg/KBj/?4MZ^e7LP(`\?/_7a(Vnno^Um384A!Y$qMXLA.p_mi-@d(k*aC+LhbEjbNQ\i"E_MRkaJK\Qsi`400b[["mQSrcBQI^WWu^Pqr[o_[4AE~>endstream
-endobj
-% 'R34': class PDFStream
-34 0 obj
-% page stream
-<< /Filter [ /ASCII85Decode
- /FlateDecode ]
- /Length 266 >>
-stream
-Gau0;_+qm%%)#a-5J/3`&aHH#G+QWIgL7sH5Y4+>e0V3@5l5oV^l[Ki%GA%gp[%Wj6C!.CFU)<r\6BP9K6Ntle_i=Q\L`b$l"f)(crsS9G(/A&>In4b<\r/.mq%V\l.a:Z`S>tS+B"%kqNI[SB!SLY%*uGP?%ZM"2q`VKo6=uX^Q5Y2rnhL905u=e5%=-Y^^.Y=@hdgpENolm0!mAXm[K#E&@Ab/]X6mM_?@&0Lr"cdD_d:#ph<F_dlEVa]'>?+;&16&d9s?~>endstream
-endobj
-xref
-0 35
-0000000000 65535 f
-0000000113 00000 n
-0000000234 00000 n
-0000000399 00000 n
-0000000587 00000 n
-0000000814 00000 n
-0000001041 00000 n
-0000001268 00000 n
-0000001494 00000 n
-0000001721 00000 n
-0000001945 00000 n
-0000002173 00000 n
-0000002401 00000 n
-0000002615 00000 n
-0000002783 00000 n
-0000003140 00000 n
-0000003410 00000 n
-0000003681 00000 n
-0000003819 00000 n
-0000004065 00000 n
-0000004190 00000 n
-0000004395 00000 n
-0000004549 00000 n
-0000004720 00000 n
-0000004883 00000 n
-0000005077 00000 n
-0000005236 00000 n
-0000005399 00000 n
-0000005566 00000 n
-0000005735 00000 n
-0000005898 00000 n
-0000006028 00000 n
-0000006154 00000 n
-0000008352 00000 n
-0000011331 00000 n
-trailer
-<< /ID
- % ReportLab generated PDF document -- digest (http://www.reportlab.com)
- [(L\026\316.\265\347\223\365\204y\010\361\341\344\330\360) (L\026\316.\265\347\223\365\204y\010\361\341\344\330\360)]
-
- /Info 18 0 R
- /Root 17 0 R
- /Size 35 >>
-startxref
-11712
-%%EOF
diff --git a/pdk/docs/compatibility/overview.jd b/pdk/docs/compatibility/overview.jd
deleted file mode 100644
index 31a4832..0000000
--- a/pdk/docs/compatibility/overview.jd
+++ /dev/null
@@ -1,91 +0,0 @@
-page.title=Compatibility Program Overview
-doc.type=compatibility
-@jd:body
-<p>The Android compatibility program makes it easy for mobile device
-manufacturers to develop compatible Android devices.</p>
-<h3>Program goals</h3>
-<p>The Android compatibility program works for the benefit of the entire
-Android community, including users, developers, and device manufacturers.</p>
-<p>Each group depends on the others. Users want a wide selection of devices
-and great apps; great apps come from developers motivated by a large market
-for their apps with many devices in users' hands; device manufacturers rely
-on a wide variety of great apps to increase their products' value for
-consumers.</p>
-<p>Our goals were designed to benefit each of these groups:</p>
-<ul>
-<li><b>Provide a consistent application and hardware environment to application
-developers.</b><p>Without a strong compatibility standard, devices can vary so
-greatly that developers must design different versions of their applications
-for different devices. The compatibility program provides a precise definition
-of what developers can expect from a compatible device in terms of APIs and
-capabilities. Developers can use this information to make good design
-decisions, and be confident that their apps will run well on any compatible
-device.</p></li>
-<li><b>Enable a consistent application experience for consumers.</b><p>If an
-application runs well on one compatible Android device, it should run well on
-any other device that is compatible with the same Android platform version.
-Android devices will differ in hardware and software capabilities, so the
-compatibility program also provides the tools needed for distribution systems
-such as Android Market to implement appropriate filtering. This means that
-users can only see applications which they can actually run.</p></li>
-<li><b>Enable device manufacturers to differentiate while being
-compatible.</b><p>The Android compatibility program focuses on the aspects of
-Android relevant to running third-party applications, which allows device
-manufacturers the flexibility to create unique devices that are nonetheless
-compatible.</p></li>
-<li><b>Minimize costs and overhead associated with
-compatibility.</b><p>Ensuring compatibility should be easy and inexpensive to
-device manufacturers. The testing tool (CTS) is free, open source, and
-available for <a href="{@docRoot}compatibility/downloads.html">download</a>.
-CTS is designed to be used for continuous self-testing
-during the device development process to eliminate the cost of changing your
-workflow or sending your device to a third party for testing. Meanwhile, there
-are no required certifications, and thus no corresponding costs and
-fees.</p></li>
-</ul>
-<p>The Android compatibility program consists of three key components:</p>
-<ul>
-<li>The source code to the Android software stack</li>
-<li>The Compatilbility Definition Document, representing the "policy"
-aspect of compatibility</li>
-<li>The Compatilbility Test Suite, representing the "mechanism" of compatibility</li>
-</ul>
-<p>Just as each version of the Android platform exists in a separate branch in
-the source code tree, there is a separate CTS and CDD for each version as
-well. The CDD, CTS, and source code are -- along with your hardware and your
-software customizations -- everything you need to create a compatible device.</p>
-
-<h3>Compatibility Definition Document (CDD)</h3>
-<p>For each release of the Android platform, a detailed Compatibility
-Definition Document (CDD) will be provided. The CDD represents the "policy"
-aspect of Android compatibility.</p>
-<p>No test suite, including CTS, can truly be comprehensive. For instance, the
-CTS includes a test that checks for the presence and correct behavior of
-OpenGL graphics APIs, but no software test can verify that the graphics
-actually appear correctly on the screen. More generally, it's impossible to
-test the presence of hardware features such as keyboards, display density,
-WiFi, and Bluetooth.</p>
-<p>The CDD's role is to codify and clarify specific requirements, and
-eliminate ambiguity. The CDD does not attempt to be comprehensive. Since
-Android is a single corpus of open-source code, the code itself is the
-comprehensive "specification" of the platform and its APIs. The CDD acts as a
-"hub", referencing other content (such as SDK API documentation) that provides
-a framework in which the Android source code may be used so that the end
-result is a compatible system.</p>
-<p>If you want to build a device compatible with a given Android version,
-start by checking out the source code for that version, and then read the
-corresponding CDD and stay within its guidelines. For additional details,
-simply examine <a href="">the latest CDD</a>.</p>
-
-<h3>Compatibility Test Suite (CTS)</h3>
-<p>The CTS is a free, commercial-grade test suite, available for
-<a href="{@docRoot}compatibility/downloads.html">download</a>.
-The CTS represents the "mechanism" of compatibility.</p>
-<p>The CTS runs on a desktop machine and executes test cases directly on
-attached devices or an emulator. The CTS is a set of unit tests designed to be
-integrated into the daily workflow (such as via a continuous build system) of
-the engineers building a device. Its intent is to reveal incompatibilities
-early on, and ensure that the software remains compatible throughout the
-development process.</p>
-<p>For details on the CTS, consult the <a
-href="{@docRoot}compatibility/cts-intro.html">CTS introduction</a>.</p>
diff --git a/pdk/docs/faqs.jd b/pdk/docs/faqs.jd
deleted file mode 100644
index 00db026..0000000
--- a/pdk/docs/faqs.jd
+++ /dev/null
@@ -1,325 +0,0 @@
-page.title=Frequently Asked Questions
-doc.hidenav=true
-@jd:body
-<a name="aosp"></a><h2>Open Source</h2>
-<h3>What is the Android Open Source Project?</h3>
-<p>We use the phrase "Android Open Source Project" or "AOSP" to refer to the
- people, the processes, and the source code that make up Android.</p>
-<p>The people oversee the project and develop the actual source code. The
- processes refer to the tools and procedures we use to manage the development
- of the software. The net result is the source code that you can use to build
- cell phone and other devices.</p>
-
-<h3>Why did we open the Android source code?</h3>
-<p>Google started the Android project in response to our own experiences
-launching mobile apps. We wanted to make sure that there would always be an
-open platform available for carriers, OEMs, and developers to use to make
-their innovative ideas a reality. We also wanted to make sure that there was no
-central point of failure, so that no single industry player could restrict or control
-the innovations of any other. The single most important goal of the Android
-Open-Source Project (AOSP) is to make sure that the open-source Android
-software is implemented as widely and compatibly as possible, to everyone's
-benefit.</p>
-<p>You can find more information on this topic at our Project Philosophy page.</p>
-
-<h3>What kind of open-source project is Android?</h3>
-<p>Google oversees the development of the core Android open-source platform,
- and works to create robust developer and user communities. For the most part
- the Android source code is licensed under the permissive Apache Software
- License 2.0, rather than a "copyleft" license. The main reason for this is
- because our most important goal is widespread adoption of the software, and
- we believe that the ASL2.0 license best achieves that goal.</p>
-<p>You can find more information on this topic at our Project Philosophy and
- Licensing pages. </p>
-
-<h3>Why is Google in charge of Android?</h3>
-<p>Launching a software platform is complex. Openness is vital to the
- long-term success of a platform, since openness is required to attract
- investment from developers and ensure a level playing field. However, the
- platform itself must also be a compelling product to end users.</p>
-<p>That's why Google has committed the professional engineering resources
- necessary to ensure that Android is a fully competitive software platform.
- Google treats the Android project as a full-scale product development
- operation, and strikes the business deals necessary to make sure that great
- devices running Android actually make it to market.</p>
-<p>By making sure that Android is a success with end users, we help ensure the
- vitality of Android as a platform, and as an open-source project. After all,
- who wants the source code to an unsuccessful product?</p>
-<p>Google's goal is to ensure a successful ecosystem around Android, but no
- one is required to participate, of course. We opened the Android source code
- so anyone can modify and distribute the software to meet their own needs.</p>
-
-<h3>What is Google's overall strategy for Android product development?</h3>
-<p>We focus on releasing great devices into a competitive marketplace, and
- then incorporate the innovations and enhancements we made into the core
- platform, as the next version.</p>
-<p>In practice, this means that the Android engineering team typically focuses
- on a small number of "flagship" devices, and develops the next version of
- the Android software to support those product launches. These flagship
- devices absorb much of the product risk and blaze a trail for the broad OEM
- community, who follow up with many more devices that take advantage of the
- new features. In this way, we make sure that the Android platform evolves
- according to the actual needs of real-world devices.</p>
-
-<h3>How is the Android software developed?</h3>
-<p>Each platform version of Android (such as 1.5, 1.6, and so on) has a
- corresponding branch in the open-source tree. At any given moment, the most
- recent such branch will be considered the "current stable" branch version.
- This current stable branch is the one that manufacturers port to their
- devices. This branch is kept suitable for release at all times.</p>
-<p>Simultaneously, there is also a "current experimental" branch, which is
- where speculative contributions, such as large next-generation features, are
- developed. Bug fixes and other contributions can be included in the current
- stable branch from the experimental branch as appropriate.</p>
-<p>Finally, Google works on the next version of the Android platform in tandem
- with developing a flagship device. This branch pulls in changes from the
- experimental and stable branches as appropriate.</p>
-<p>You can find more information on this topic at our <a
-href="{@docRoot}source/code-lines.html">Branches and Releases</a> page.</p>
-
-<h3>Why are parts of Android developed in private?</h3>
-<p>It typically takes over a year to bring a device to market, but of course
- device manufacturers want to ship the latest software they can. Developers,
- meanwhile, don't want to have to constantly track new versions of the
- platform when writing apps. Both groups experience a tension between
- shipping products, and not wanting to fall behind.</p>
-<p>To address this, some parts of the next version of Android including the
- core platform APIs are developed in a private branch. These APIs constitute
- the next version of Android. Our aim is to focus attention on the current
- stable version of the Android source code, while we create the next version
- of the platform as driven by flagship Android devices. This allows developers
- and OEMs to focus on a single version without having to track unfinished
- future work just to keep up. Other parts of the Android system that aren't
- related to application compatibility are developed in the open, however.
- It's our intention to move more of these parts to open development over
- time.</p>
-
-<h3>When are source code releases made?</h3>
-<p>When they are ready. Some parts of Android are developed in the open,
- so that source code is always available. Other parts are developed first in
- a private tree, and that source code is released when the next platform
- version is ready.</p>
-<p>In some releases, core platform APIs will be ready far enough in advance
- that we can push the source code out for an early look in advance of the
- device's release; however in others, this isn't possible. In all cases, we
- release the platform source when we feel the version has stabilized enough,
- and when the development process permits. Releasing the source code is a
- fairly complex process.</p>
-
-<h3>What is involved in releasing the source code for a new Android version?</h3>
-<p>Releasing the source code for a new version of the Android platform is a
- significant process. First, the software gets built into a system image for
- a device, and put through various forms of certification, including
- government regulatory certification for the regions the phones will be
- deployed. It also goes through operator testing. This is an important phase
- of the process, since it helps shake out a lot of software bugs.</p>
-<p>Once the release is approved by the regulators and operators, the
- manufacturer begins mass producing devices, and we turn to releasing the
- source code.</p>
-<p>Simultaneous to mass production the Google team kicks off several efforts
- to prepare the open source release. These efforts include final API changes
- and documentation (to reflect any changes that were made during
- qualification testing, for example), preparing an SDK for the new version,
- and launching the platform compatibility information.</p>
-<p>Also included is a final legal sign-off to release the code into open
- source. Just as open source contributors are required to sign a Contributors
- License Agreement attesting to their IP ownership of their contribution,
- Google too must verify that it is clear to make contributions.</p>
-<p>Starting at the time mass production begins, the software release process
- usually takes around a month, which often roughly places source code
- releases around the same time that the devices reach users.</p>
-
-<h3>How does the AOSP relate to the Android Compatibility Program?</h3>
-<p>The Android Open-Source Project maintains the Android software, and
- develops new versions. Since it's open-source, this software can be used for
- any purpose, including to ship devices that are not compatible with other
- devices based on the same source.</p>
-<p>The function of the Android Compatibility Program is to define a baseline
- implementation of Android that is compatible with third-party apps written
- by developers. Devices that are "Android compatible" may participate in the
- Android ecosystem, including Android Market; devices that don't meet the
- compatibility requirements exist outside that ecosystem.</p>
-<p>In other words, the Android Compatibility Program is how we separate
- "Android compatible devices" from devices that merely run derivatives of the
- source code. We welcome all uses of the Android source code, but only
- Android compatible devices -- as defined and tested by the Android
- Compatibility Program -- may participate in the Android ecosystem.</p>
-
-<h3>How can I contribute to Android?</h3>
-<p>There are a number of ways you can contribute to Android. You can report
- bugs, write apps for Android, or contribute source code to the Android
- Open-Source Project.</p>
-<p>There are some limits on the kinds of code contributions we are willing or
- able to accept. For instance, someone might want to contribute an
- alternative application API, such as a full C++-based environment. We would
- decline that contribution, since Android is focused on applications that run
- in the Dalvik VM. Alternatively, we won't accept contributions such as GPL
- or LGPL libraries that are incompatible with our licensing goals.</p>
-<p>We encourage those interested in contributing source code to contact us via
- the AOSP Community page prior to beginning any work. You can find more
- information on this topic at the Getting Involved page.</p>
-
-<h3>How do I become an Android committer?</h3>
-<p>The Android Open Source Project doesn't really have a notion of a
- "committer". All contributions -- including those authored by Google
- employees -- go through a web-based system known as "gerrit" that's part of
- the Android engineering process. This system works in tandem with the git
- source code management system to cleanly manage source code
- contributions.</p>
-<p>Once submitted, changes need to be accepted by a designated Approver.
- Approvers are typically Google employees, but the same approvers are
- responsible for all submissions, regardless of origin.</p>
-<p>You can find more information on this topic at the <a
- href="{@docRoot}source/submit-patches.html">Submitting Patches</a>
- page.</p>
-
-<a name="compatibility"></a><h2>Compatibility</h2>
-<h3>What does "compatibility" mean?</h3>
-<p>We define an "Android compatible" device as one that can run any
- application written by third-party developers using the Android SDK and NDK.
- We use this as a filter to separate devices that can participate in the
- Android app ecosystem, and those that cannot. Devices that are properly
- compatible can seek approval to use the Android trademark. Devices that are
- not compatible are merely derived from the Android source code and may not
- use the Android trademark.</p>
-<p>In other words, compatibility is a prerequisite to participate in the
- Android apps ecosystem. Anyone is welcome to use the Android source code,
- but if the device isn't compatible, it's not considered part of the Android
- ecosystem.</p>
-
-<h3>What is the role of Android Market in compatibility?</h3>
-<p>Devices that are Android compatible may seek to license the Android Market
- client software. This allows them to become part of the Android app
- ecosystem, by allowing users to download developers' apps from a catalog
- shared by all compatible devices. This option isn't available to devices
- that aren't compatible.</p>
-
-<h3>What kinds of devices can be Android compatible?</h3>
-<p>The Android software can be ported to a lot of different kinds of devices,
- including some on which third-party apps won't run properly. The Android
- Compatibility Definition Document (CDD) spells out the specific device
- configurations that will be considered compatible.</p>
-<p>For example, though the Android source code could be ported to run on a
- phone that doesn't have a camera, the CDD requires that in order to be
- compatible, all phones must have a camera. This allows developers to rely
- on a consistent set of capabilities when writing their apps.</p>
-<p>The CDD will evolve over time to reflect market realities. For instance,
- the 1.6 CDD only allows cell phones, but the 2.1 CDD allows devices to omit
- telephony hardware, allowing for non-phone devices such as tablet-style
- music players to be compatible. As we make these changes, we will also
- augment Android Market to allow developers to retain control over where
- their apps are available. To continue the telephony example, an app that
- manages SMS text messages would not be useful on a media player, so Android
- Market allows the developer to restrict that app exclusively to phone
- devices.</p>
-
-<h3>If my device is compatible, does it automatically have access to Android Market and branding?</h3>
-<p>Android Market is a service operated by Google. Achieving compatibility is
- a prerequisite for obtaining access to the Android Market software and branding.
- Device manufacturers should contact Google to obtain access to Android
- Market.</p>
-
-<h3>If I am not a manufacturer, how can I get Android Market?</h3>
-<p>Android Market is only licensed to handset manufacturers shipping devices.
- For questions about specific cases, contact
- android-partnerships@google.com.</p>
-
-<h3>How can I get access to the Google apps for Android, such as Maps?</h3>
-<p>The Google apps for Android, such as YouTube, Google Maps and Navigation,
- Gmail, and so on are Google properties that are not part of Android, and
- are licensed separately. Contact android-partnerships@google.com for
- inquiries related to those apps.</p>
-
-<h3>Is compatibility mandatory?</h3>
-<p>No. The Android Compatibility Program is optional. Since the Android source
- code is open, anyone can use it to build any kind of device. However, if a
- manufacturer wishes to use the Android name with their product, or wants
- access to Android Market, they must first demonstrate that the device is
- compatible.</p>
-
-<h3>How much does compatibility certification cost?</h3>
-<p>There is no cost to obtain Android compatibility for a device. The
- Compatibility Test Suite is open-source and available to anyone to use to
- test a device.</p>
-
-<h3>How long does compatibility take?</h3>
-<p>The process is automated. The Compatibility Test Suite generates a report
- that can be provided to Google to verify compatibility. Eventually we intend
- to provide self-service tools to upload these reports to a public database.</p>
-
-<h3>Who determines what will be part of the compatibility definition?</h3>
-<p>Since Google is responsible for the overall direction of Android as a
- platform and product, Google maintains the Compatibility Definition Document
- for each release. We draft the CDD for a new Android version in consultation
- with a number of OEMs, who provide input on its contents.</p>
-
-<h3>How long will each Android version be supported for new devices?</h3>
-<p>Since Android's code is open-source, we can't prevent someone from using an
- old version to launch a device. Instead, Google chooses not to license the
- Android Market client software for use on versions that are considered
- obsolete. This allows anyone to continue to ship old versions of Android,
- but those devices won't use the Android name and will exist outside the
- Android apps ecosystem, just as if they were non-compatible.</p>
-
-<h3>Can a device have a different user interface and still be compatible?</h3>
-<p>The Android Compatibility Program focuses on whether a device can run
- third-party applications. The user interface components shipped with a
- device (such as home screen, dialer, color scheme, and so on) does not
- generally have much effect on third-party apps. As such, device builders are
- free to customize the user interface as much as they like. The Compatibility
- Definition Document does restrict the degree to which OEMs may alter the
- system user interface for areas that do impact third-party apps.</p>
-
-<h3>When are compatibility definitions released for new Android versions?</h3>
-<p>Our goal is to release new versions of Android Compatibility Definition
- Documents (CDDs) once the corresponding Android platform version has
- converged enough to permit it. While we can't release a final draft of a CDD
- for an Android software version before the first flagship device ships with
- that software, final CDDs will always be released after the first device.
- However, wherever practical we will make draft versions of CDDs available.</p>
-
-<h3>How are device manufacturers' compatibility claims validated?</h3>
-<p>There is no validation process for Android device compatibility. However,
- if the device is to include Android Market, Google will typically validate
- the device for compatibility before agreeing to license the Market client
- software.</p>
-
-<h3>What happens if a device that claims compatibility is later found to have compatibility problems?</h3>
-<p>Typically, Google's relationships with Android Market licensees allow us to
- ask them to release updated system images that fix the problems.</p>
-
-<a name="cts"></a><h2>Compatibility Test Suite</h2>
-<h3>What is the purpose of the CTS?</h3>
-<p>The Compatibility Test Suite is a tool used by device manufacturers to help
- ensure their devices are compatible, and to report test results for
- validations. The CTS is intended to be run frequently by OEMs throughout the
- engineering process to catch compatibility issues early.</p>
-
-<h3>What kinds of things does the CTS test?</h3>
-<p>The CTS currently tests that all of the supported Android strong-typed APIs
- are present and behave correctly. It also tests other non-API system
- behaviors such as application lifecycle and performance. We plan to add
- support in future CTS versions to test "soft" APIs such as Intents as
- well.</p>
-
-<h3>Will the CTS reports be made public?</h3>
-<p>Yes. While not currently implemented, Google intends to provide web-based
- self-service tools for OEMs to publish CTS reports so that they can be
- viewed by anyone. CTS reports can be shared as widely as manufacturers
- prefer.</p>
-
-<h3>How is the CTS licensed?</h3>
-<p>The CTS is licensed under the same Apache Software License 2.0 that the
- bulk of Android uses.</p>
-
-<h3>Does the CTS accept contributions?</h3>
-<p>Yes please! The Android Open-Source Project accepts contributions to
- improve the CTS in the same way as for any other component. In fact,
- improving the coverage and quality of the CTS test cases is one of the best
- ways to help out Android.</p>
-
-<h3>Can anyone use the CTS on existing devices?</h3>
-<p>The Compatibility Definition Document requires that compatible devices
- implement the 'adb' debugging utility. This means that any compatible device
- -- including ones available at retail -- must be able to run the CTS
- tests.</p>
diff --git a/pdk/docs/images/bluetooth-0.jpg b/pdk/docs/images/bluetooth-0.jpg
deleted file mode 100644
index f06eebf..0000000
--- a/pdk/docs/images/bluetooth-0.jpg
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/code-lines.png b/pdk/docs/images/code-lines.png
deleted file mode 100644
index f86260c..0000000
--- a/pdk/docs/images/code-lines.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/cts-0.png b/pdk/docs/images/cts-0.png
deleted file mode 100644
index cca38c5..0000000
--- a/pdk/docs/images/cts-0.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/cts-process-0.gif b/pdk/docs/images/cts-process-0.gif
deleted file mode 100644
index 565da23..0000000
--- a/pdk/docs/images/cts-process-0.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/cts-process-1.png b/pdk/docs/images/cts-process-1.png
deleted file mode 100644
index 2656433..0000000
--- a/pdk/docs/images/cts-process-1.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/discuss-0.png b/pdk/docs/images/discuss-0.png
deleted file mode 100644
index e2cea10..0000000
--- a/pdk/docs/images/discuss-0.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/documentation-0.png b/pdk/docs/images/documentation-0.png
deleted file mode 100644
index e2cea10..0000000
--- a/pdk/docs/images/documentation-0.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/download-0.png b/pdk/docs/images/download-0.png
deleted file mode 100644
index e2cea10..0000000
--- a/pdk/docs/images/download-0.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/git-repo-0.png b/pdk/docs/images/git-repo-0.png
deleted file mode 100644
index e2cea10..0000000
--- a/pdk/docs/images/git-repo-0.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/git-repo-1.png b/pdk/docs/images/git-repo-1.png
deleted file mode 100644
index 6bc8dcb..0000000
--- a/pdk/docs/images/git-repo-1.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/home-bugdroid.png b/pdk/docs/images/home-bugdroid.png
deleted file mode 100644
index c30fac9..0000000
--- a/pdk/docs/images/home-bugdroid.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/how-it-works-0.png b/pdk/docs/images/how-it-works-0.png
deleted file mode 100644
index 3c1c9dc..0000000
--- a/pdk/docs/images/how-it-works-0.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/how-it-works-1.png b/pdk/docs/images/how-it-works-1.png
deleted file mode 100644
index 856674a..0000000
--- a/pdk/docs/images/how-it-works-1.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/lil-wrench.png b/pdk/docs/images/lil-wrench.png
deleted file mode 100644
index 74b4972..0000000
--- a/pdk/docs/images/lil-wrench.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/submit-patches-0.png b/pdk/docs/images/submit-patches-0.png
deleted file mode 100644
index ca7eaad..0000000
--- a/pdk/docs/images/submit-patches-0.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/submit-patches-1.png b/pdk/docs/images/submit-patches-1.png
deleted file mode 100644
index 777a3c3..0000000
--- a/pdk/docs/images/submit-patches-1.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/images/workflow-0.png b/pdk/docs/images/workflow-0.png
deleted file mode 100644
index d8456b5..0000000
--- a/pdk/docs/images/workflow-0.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/index.jd b/pdk/docs/index.jd
deleted file mode 100644
index f5a9344..0000000
--- a/pdk/docs/index.jd
+++ /dev/null
@@ -1,73 +0,0 @@
-page.title=Welcome to Android
-home=true
-@jd:body
-<div style="float: right; width: 35%;">
-<h3 style="padding-top: 0px;">News</h3>
-<p><b>Compatibility Definition for Android 2.3.3</b><br/>
-The Compatibility Definition Document for Android 2.3.3 has been published.
-Android 2.3 allows device manufacturers to use the Android source code to ship
-a significantly wider variety of devices, including devices with extra-large
-screens, such as tablets. Android 2.3.3 adds enhanced Near-Field
-Communications support to the Android APIs. For more information, <a
-href="{@docRoot}compatibility/index.html">visit the Compatibility page.</a>
-</p>
-<p><b>Source Code Available for Android 2.3</b><br/>
-The source code for the Android 2.3 platform and software stack has been
-released! This release allows OEMs to begin preparing Android 2.3 for
-installation on new and existing devices, and allows hobbyists, enthusiasts,
-and researchers to develop custom builds. For information on how to obtain the
-software,
-<a href="{@docRoot}source/download.html">visit our 'Getting the Source' page.</a>
-</p>
-</div>
-<img style="float: right; padding-right: 1.5em;" src="{@docRoot}images/home-bugdroid.png" alt="Android Mascot"/>
-<div style="font-size: 1.3em;">
- <p>Here you can find the information and source code you need to build an
- Android-compatible device.</p>
- <p>Android is an open-source software stack for mobile devices, and a
- corresponding open-source project led by Google. We created Android in
- response to our own experiences launching mobile apps. We wanted to make
- sure that there was no central point of failure, so that no industry player
- can restrict or control the innovations of any other. That's why we
- created Android, and made its source code open.</p>
- <p><a href="{@docRoot}about/index.html">Learn more »</a></p>
-</div>
-
-<div style="clear: both;"/>
-
-<table border="0" style="border: 0px; margin: 0px; padding: 0px;"><tr><td align="center" style="border: 0px; margin: 0px; padding: 0px;">
-<div class="rebox lil" style="float: left; width: 30%; margin: 1em;">
- <h2 style="color: white; background-color: #95C0D0; border: 0px;">Source</h2>
- <div class="p">
- <p><img src="images/lil-wrench.png" alt="" style="margin: 1em; margin-bottom: 5em;"/>
- If you're interested in contributing to the Android source code or helping
- out with the open-source project, our Source pages have the information
- you need.</p>
- <p><a href="{@docRoot}source/index.html">Get Involved »</a></p>
- </div>
-</div>
-
-<div class="rebox lil" style="float: left; width: 30%; margin: 1em;">
- <h2 style="color: white; background-color: #95C0D0; border: 0px;">Porting</h2>
- <div class="p">
- <p><img src="images/lil-wrench.png" alt="" style="margin: 1em; margin-bottom: 5em;"/>
- If you're an engineer building a device
- intended to run the Android software stack, look at our Porting pages for
- information and tips.</p>
- <p><a href="{@docRoot}porting/index.html">Build a Device »</a></p>
- </div>
-</div>
-
-<div class="rebox lil" style="float: left; width: 30%; margin: 1em;">
- <h2 style="color: white; background-color: #95C0D0; border: 0px;">Compatibility</h2>
- <div class="p">
- <p><img src="images/lil-wrench.png" alt="" style="margin: 1em; margin-bottom: 5em;"/>
- If you're an organization building an Android device, you'll want to check out our
- Compatibility pages to find out how to take advantage of the benefits of
- compatibility.</p>
- <p><a href="{@docRoot}compatibility/index.html">Get Compatible »</a></p>
- </div>
-</div>
-</td></tr></table>
-
-<div style="clear: both;"/>
diff --git a/pdk/docs/porting/audio.jd b/pdk/docs/porting/audio.jd
deleted file mode 100755
index e82788f..0000000
--- a/pdk/docs/porting/audio.jd
+++ /dev/null
@@ -1,61 +0,0 @@
-page.title=Audio
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidAudioBuildingDriver">Building an Audio Library</a></li>
-<li><a href="#androidAudioInterface">Interface</a></li>
-</ul>
-</div>
-</div>
-
-
-<p>AudioHardwareInterface serves as the glue between proprietary audio drivers and the Android AudioFlinger service, the core audio service that handles all audio-related requests from applications.</p>
-<p><img src="images/android_audio_architecture.gif"></p>
-
-Solid elements represent Android blocks and dashed elements represent partner-specific blocks.
-
-
-
-<a name="androidAudioBuildingDriver"></a><h3>Building an Audio Library</h3>
-
-<p>To implement an audio driver, create a shared library that implements the interface defined in <code>AudioHardwareInterface.h</code>. You must name your shared library <code>libaudio.so</code> so that it will get loaded from <code>/system/lib</code> at runtime. Place libaudio sources and <code>Android.mk</code> in <code>vendor/acme/chipset_or_board/libaudio/</code>.</p>
-<p>The following stub <code>Android.mk</code> file ensures that <code>libaudio</code> compiles and links to the appropriate libraries:</p>
-
-<pre class="prettify">
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := libaudio
-
-LOCAL_SHARED_LIBRARIES := \
- libcutils \
- libutils \
- libmedia \
- libhardware
-
-LOCAL_SRC_FILES += MyAudioHardware.cpp
-
-LOCAL_CFLAGS +=
-
-LOCAL_C_INCLUDES +=
-
-LOCAL_STATIC_LIBRARIES += libaudiointerface
-
-include $(BUILD_SHARED_LIBRARY)
-</pre>
-
-
-<a name="androidAudioInterface"></a><h3>Interface</h3>
-
-
-
-<p class="note"><strong>Note</strong>: This document relies on some Doxygen-generated content that appears in an iFrame below. To return to the Doxygen default content for this page, <a href="audio_sub_system.html">click here</a>.</p>
-
-
-<iframe onLoad="resizeDoxFrameHeight();" src="AudioHardwareInterface_8h.html" scrolling="no" scroll="no" id="doxygen" marginwidth="0" marginheight="0" frameborder="0" style="width:100%;"></iframe>
diff --git a/pdk/docs/porting/bluetooth.jd b/pdk/docs/porting/bluetooth.jd
deleted file mode 100755
index 03b2d94..0000000
--- a/pdk/docs/porting/bluetooth.jd
+++ /dev/null
@@ -1,255 +0,0 @@
-page.title=Bluetooth
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidBluetoothPorting">Porting</a></li>
-<li><a href="#androidBluetoothCompiling">Compiling</a></li>
-<li><a href="#androidBluetoothTroubleshooting">Troubleshooting</a></li>
-<li><a href="#androidBluetoothTools">Tools</a></li>
-<li><a href="#androidBluetoothFeatures">Feature Support</a></li>
-</ul>
-</div>
-</div>
-
-<p>Android's Bluetooth stack uses BlueZ as the host stack.</p>
-
-<p>Bluez is GPL licensed, so the Android framework interacts with userspace bluez code through D-BUS IPC to avoid proprietary code.</p>
-
-<p>The qualification notes mentioned below are example qualifications of the particular device in question. Each company has to re-qualify their product with Bluetooth SIG even if no changes are made to the Bluetooth stack.</p>
-
-<p>Headset and Handsfree (v1.5) profiles are implemented in the Android framework and are both tightly coupled with the Phone App. Profiles like OPP and PBAP are based on java obex. These profiles open a rfcomm socket connection into Bluez kernel bypassing the Bluez userspace stack.</p>
-
-<p> Profiles like A2DP, AVRCP, HID, PAN and other bluetooth functionality like pairing and scanning use the Bluez userspace stack.</p>
-
-<p>The diagram below offers a library-oriented view of the Bluetooth stack. Click <a href="bluetooth/bluetooth_process.html">Bluetooth Process Diagram</a> for a process-oriented view.</p>
-
-<p><img src="images/androidBluetooth.gif"></p>
-
-Solid elements represent Android blocks and dashed elements represent partner-specific blocks.
-
-
-
-<a name="androidBluetoothPorting"></a><h3>Porting</h3>
-
-<p>BlueZ is Bluetooth 2.1 compatible and should work with any 2.1 chipset and is backward compatibile with older Bluetooth versions. There are two integration points:</p>
-<p><ul>
-<li>UART driver</li>
-<li>Bluetooth Power On / Off</li>
-</ul>
-</p>
-
-
-<a name="androidBluetoothPortingDriver"></a><h4>UART Driver</h4>
-
-<p>The BlueZ kernel sub-system attaches to your hardware-specific UART driver using the <code>hciattach</code> daemon.</p>
-<p>For example, for MSM7201A, this is <code>drivers/serial/msm_serial.c</code>. You may also need to edit command line options to <code>hciattach</code> via <code>init.rc</code>.</p>
-
-
-<a name="androidBluetoothPortingPowerOnOff"></a><h4>Bluetooth Power On / Off</h4>
-
-<p>The method for powering on and off your bluetooth chip varies from Android V 1.0 to post 1.0.</p>
-
-<p><ul>
-<li><b>1.0</b>: Android framework writes a 0 or 1 to <code>/sys/modules/board_[PLATFORM]/parameters/bluetooth_power_on</code>.</li>
-
-<li><b>Post 1.0</b>: Android framework uses the linux <code>rfkill</code> API. See <code>arch/arm/mach-msm/board-trout-rfkill.c</code> for an example.</li>
-</ul>
-</p>
-
-<a name="androidBluetoothCompiling"></a><h4>Compiling</h4>
-
-<p>To compile Android with Bluetooth support enabled, add the following line to <code>BoardConfig.mk</code>.
-<pre>
-BOARD_HAVE_BLUETOOTH := true
-</pre>
-
-<a name="androidBluetoothTroubleshooting"></a><h3>Troubleshooting</h3>
-<p><strong>Debugging</strong></p>
-<p>To debug your bluetooth implementation, start by reading the logs (<code>adb logcat</code>) and look for ERRROR and WARNING messages regarding Bluetooth.
- Andoird uses Bluez, which comes with some useful debugging tools. The snippet below provides examples in a suggested order:</p>
-<pre>
-hciconfig -a # print BT chipset address and features. Useful to check if you can communicate with your BT chipset.
-hcidump -XVt # print live HCI UART traffic.
-hcitool scan # scan for local devices. Useful to check if RX/TX works.
-l2ping ADDRESS # ping another BT device. Useful to check if RX/TX works.
-sdptool records ADDRESS # request the SDP records of another BT device.
-</pre>
-
-<p><strong>Deamon Logs</strong></p>
-<p>Deamon logs for <code>bluetoothd</code> (<code>STDOUT</code>) and <code>hciattach</code> (<code>STDERR</code>) are sent to <code>/dev/null</code> by default. Edit <code>init.rc</code></span> and <code>init.PLATFORM.rc</code></span> to run these daemons under <code>logwrapper</code>, which redirects output to <code>logcat</code>.</p>
-<p><strong>hciconfig -a and hcitool</strong></p>
-<p>If you compile your own system.img for Android, and <code>hciconfig -a</code> works but <code>hcitool</code> scan doesn't, try installing the firmware for the Bluetooth chipset. This firmware isn't yet available in the open source codebase, but you can <code>adb pull</code> and then <code>adb push</code>it from a stock T-Mobile G1 (located in <code>/etc/firmware/brf6300.bin</code>).<br />
- <a name="androidBluetoothTools"></a></p>
-<h3>Tools</h3>
-
-<p>BlueZ provides a rich set of command line tools for debugging and interacting with the Bluetooth sub-system, including:</p>
-<p><ul>
-<li><code>hciconfig</code></li>
-<li><code>hcitool</code></li>
-<li><code>hcidump</code></li>
-<li><code>sdptool</code></li>
-<li><code>dbus-send</code></li>
-<li><code>dbus-monitor</code></li>
-</ul>
-</p>
-
-<a name="androidBluetoothFeatures"></a>
-<h3>Feature Support</h3>
-<p>This section provides a change history of Bluetooth features added in each Android release and provides some rough guidance as to future features. </p>
-<h4>Android 1.0 release</h4>
-<h5>Platform features</h5>
-<ul>
- <li>Based on Bluez 3.36 and Linux Kernel 2.6.25</li>
- <li>Bluetooth 2.0+EDR host stack</li>
- <li>Headset Profile 1.0 in Audio Gateway role</li>
- <li>Handsfree Profile 1.5 in Audio Gateway role</li>
- <ul>
- <li>Three-way calling</li>
- <li>Phonebook over AT commands
- </li>
- </ul>
-</ul>
-<h5>Qualifications for HTC G1 product. Each company reusing this software version has to re-qualify with Bluetooth SIG</h5>
-<ul>
- <li>QDID B014524: Host stack (SDP, L2CAP, GAP, RFCOMM, SPP)</li>
- <li>QDID B014624: EPL for HTC Dream (HSP, HFP)</li>
-</ul>
-<h5>Example products</h5>
-<ul>
- <li>HTC Dream / T-Mobile G1</li>
-</ul>
-<h4> </h4>
-<h4>Android 1.1 release</h4>
-<p>No Bluetooth changes since 1.0</p>
-<h4> </h4>
-<h4>Android 1.5 release (cupcake)</h4>
-<h4>Platform features</h4>
-<ul>
- <li>Based on Bluez 3.36 with Linux Kernel 2.6.27</li>
- <li>Bluetooth 2.0+EDR host stack</li>
- <ul>
- <li>Support for auto-pairing with '0000' devices</li>
- </ul>
- <li>Headset Profile 1.1 in Audio Gateway role</li>
- <li>Handsfree Profile 1.5 in Audio Gateway role</li>
- <ul>
- <li>Three-way calling </li>
- <li>Phonebook over AT commands </li>
- <li>Volume synchronization</li>
- <li>eSCO</li>
- <li>Extensive bug fixes and compatibility improvements</li>
- </ul>
- <li>Stereo Bluetooth (A2DP 1.2) in Source role</li>
- <ul>
- <li>AVDTP 1.2 in Acceptor and Initiator roles</li>
- <li>GAVDTP 1.0 in Acceptor and Initiator roles</li>
- <li>44.1 khz, stereo, software SBC codec</li>
- </ul>
- <li>Remote Control (AVRCP 1.0) in Target role</li>
- <ul>
- <li>AVCTP 1.3 in Target role</li>
- <li>play/pause/stop/prev/next</li>
- </ul>
-</ul>
-<h5>Qualifications for HTC Sapphire product. Each company reusing this software version has to re-qualify with Bluetooth SIG</h5>
-<ul>
- <li>QDID B015261: Host stack (SDP, L2CAP, GAP, RFCOMM, SPP, AVCTP, AVRCP, GAVDP, AVDTP, A2DP)</li>
- <li>QDID B015262: EPL for HTC Sapphire (HSP, HFP)</li>
-</ul>
-<h4>Android 2.0/2.1 release (eclair)</h4>
-<h4>Platform features</h4>
-<ul>
- <li>Based on Bluez 4.47 with Linux Kernel 2.6.29</li>
- <li>Bluetooth 2.1+EDR host stack</li>
- <ul>
- <li>Support for auto-pairing with '0000' devices</li>
- <li>Support for Simple Secure Pairing</li>
- </ul>
- <li>Headset Profile 1.1 in Audio Gateway role</li>
- <li>Handsfree Profile 1.5 in Audio Gateway role</li>
- <ul>
- <li>Three-way calling </li>
- <li>Phonebook over AT commands </li>
- <li>Volume synchronization</li>
- <li>eSCO</li>
- <li>Extensive bug fixes and compatibility improvements</li>
- </ul>
- <li>Stereo Bluetooth (A2DP 1.2) in Source role</li>
- <ul>
- <li>AVDTP 1.2 in Acceptor and Initiator roles</li>
- <li>GAVDTP 1.0 in Acceptor and Initiator roles</li>
- <li>44.1 khz, stereo, software SBC codec</li>
- </ul>
- <li>Remote Control (AVRCP 1.0) in Target role</li>
- <ul>
- <li>AVCTP 1.3 in Target role</li>
- <li>play/pause/stop/prev/next</li>
- </ul>
- <li> Object Push Profile version 1.1 </li>
- <ul>
- <li>Adds ability to transfer pictures, videos</li>
- <li>Transfer of contacts using vCard is not supported in this release.</li>
- </ul>
- <li>Phone Book Address Profile version 1.0</li>
- <ul>
- <li>Phone Book Server Equipment (PSE) role supported</li>
- </ul>
- <li>Using Java Bluetooth APIs, an Android application can peform the
- following:</li>
- <ul>
- <li>Scan for other Bluetooth devices </li>
- <li>Query the local Bluetooth adapter for paired Bluetooth devices </li>
- <li>Establish RFCOMM channels </li>
- <li>Connect to other devices through service discovery </li>
- <li>Transfer data to and from other devices </li>
- <li>Manage multiple connections </li>
- </ul>
- <li>Support for Bluetooth enabled car and desk docks</li>
- <ul>
- <li>Framework support for routing Phone Call Audio and A2DP streaming using
- car and desk docks. </li>
- </ul>
-</ul>
-
-<h4>Android 2.2 release (Froyo)</h4>
-<h4>Platform features</h4>
-<ul>
- <li>Based on Bluez 4.47 with Linux Kernel 2.6.32</li>
- <li>No new profiles added.</li>
- <li>Added ability to share contacts using vCard</li>
- <li>Added ability to export all contacts - useful to transfer contacts to car kits </li>
- <li>Improved compatibility with headsets and car kits. </li>
-</ul>
-
-<h4>Android 2.3 release (Gingerbread)</h4>
-<h4>Platform features</h4>
-<ul>
- <li>Based on Bluez 4.69 with Linux Kernel 2.6.35</li>
- <li>No new profiles added.</li>
- <li>Improved compatibility with headsets and car kits. </li>
-</ul>
-
-<h4>Android 3.0 release (Honeycomb)</h4>
-<h4>Platform features</h4>
-<ul>
- <li>Based on Bluez 4.69 with Linux Kernel 2.6.36</li>
- <li>HID and PAN (NAP and PANU role) are the new profiles added.
- <li>Improved compatibility with headsets and car kits. </li>
-</ul>
-
-<h5> </h5>
-<h4>Future releases</h4>
-<p>This section offers a rough guide of which features the team is developing for the next release. This feature list may change without notice. It isn't possible to post scheduling advice to the mailing lists.</p>
-<ul>
- <li>More profiles...</li>
- <li>Improved compatibility with headsets and car kits</li>
- <li>Bluetooth emulator support</li>
- <li>Bluetooth Low Energy </li>
-</ul>
-
diff --git a/pdk/docs/porting/bluetooth/bluetooth_process.jd b/pdk/docs/porting/bluetooth/bluetooth_process.jd
deleted file mode 100755
index 00ec0da..0000000
--- a/pdk/docs/porting/bluetooth/bluetooth_process.jd
+++ /dev/null
@@ -1,7 +0,0 @@
-page.title=Bluetooth Process Diagram
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<p>The diagram below offers a process-oriented architectural overview of Android's Bluetooth stack. Click <a href="../bluetooth.html">Bluetooth</a> to return to the Bluetooth overview page.</p>
-<img src="images/androidBluetoothProcessDiagram.jpg">
diff --git a/pdk/docs/porting/bluetooth/images/androidBluetoothProcessDiagram.jpg b/pdk/docs/porting/bluetooth/images/androidBluetoothProcessDiagram.jpg
deleted file mode 100755
index 6872180..0000000
--- a/pdk/docs/porting/bluetooth/images/androidBluetoothProcessDiagram.jpg
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/bring_up.jd b/pdk/docs/porting/bring_up.jd
deleted file mode 100755
index 1d04b86..0000000
--- a/pdk/docs/porting/bring_up.jd
+++ /dev/null
@@ -1,359 +0,0 @@
-page.title=Bring Up
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<p>Once your code is built and you have verified that all necessary directories exist, power on and test your device with basic bring up, as described below. Bring up tests are typically designed to stress certain aspects of your system and allow you to characterize the device's behavior. </p>
-<p> </p>
-<h3>1. Confirm a Clean Installation of a Basic Linux Kernel </h3>
-<p>Before considering Android-specific modifications to the Linux kernel, verify that you can build, deploy, and boot a core Linux kernel on your target hardware. </p>
-<p> </p>
-<h3>2. Modify Your Kernel Configuration to Accommodate Android Drivers</h3>
-<p>Your kernel configuration file should include the following:</p>
-<pre class="prettyprint">
-#
-# Android
-#
-# CONFIG_ANDROID_GADGET is not set
-# CONFIG_ANDROID_RAM_CONSOLE is not set
-CONFIG_ANDROID_POWER=y
-CONFIG_ANDROID_POWER_STAT=y
-CONFIG_ANDROID_LOGGER=y
-# CONFIG_ANDROID_TIMED_GPIO is not set
-CONFIG_ANDROID_BINDER_IPC=y
-</pre>
-<h3>3. Write Drivers</h3>
-<p>Android ships with default drivers for all basic functionality but you'll likely want to write your own drivers (or at least customize the default drivers) for your own device depending on your hardware configuration. See the following topics for examples of how to write your own drivers. </p>
-<ul>
- <li><a href="audio_subsystem.html">Audio</a></li>
- <li><a href="keymaps_keyboard_input.html">Keymaps and Keyboard</a></li>
- <li><a href="display_drivers.html">Display</a></li>
-</ul>
-<p> </p>
-<h3>4. Burn Images to Flash</h3>
-<p>An image represents the state of a system or part of a system stored in non-volatile memory. The build process should produce the following system images:</p>
-<ul>
- <li><strong>bootloader</strong>: The bootloader is a small program responsible for initiating loading of the operating system. </li>
- <li><strong>boot</strong>: </li>
- <li><strong>recovery</strong>: </li>
- <li><strong>system</strong>: The system image stores a snapshot of the Android operating system.</li>
- <li><strong>data</strong>: The data image stores user data. Anything not saved to the <code>device/data</code> directory will be lost on reboot.</li>
-</ul>
-<ul>
- <li><strong>kernel</strong>: The kernel represents the most basic element of an operating system. Android's Linux kernel is responsible for managing the system's resources and acts as an abstraction layer between hardware and a system's applications. </li>
- <li><strong>ramdisk</strong>: RAMdisk defines a portion of Random Access Memory (RAM) that gets used as if it were a hard drive. </li>
-</ul>
-<p> </p>
-<p>Configure the bootloader to load the kernel and RAMdisk into RAM and pass the RAMdisk address to the kernel on startup. </p>
-<p> </p>
-<h3>5. Boot the kernel and mount the RAMdisk.</h3>
-<p> </p>
-<h3>6. Debug Android-specific init programs on RAMdisk</h3>
-<p>Android-specific init programs are found in <code>device/system/init</code>. Add LOG messages to help you debug potential problems with the LOG macro defined in <code>device/system/init/init.c</code>.</p>
-<p> The init program directly mounts all filesystems and devices using either hard-coded file names or device names generated by probing the sysfs filesystem (thereby eliminating the need for a <code>/etc/fstab</code> file in Android). After <code>device/system</code> files are mounted, init reads <code>/etc/init.rc</code> and invokes the programs listed there (one of the first of which is the console shell).</p>
-<p> </p>
-<h3>7. Verify that applications have started </h3>
-<p>Once the shell becomes available, execute <code>% ps</code> to confirm that the following applications are running:</p>
-<ul>
- <li><code>/system/bin/logd</code></li>
- <li><code>/sbin/adbd</code></li>
- <li><code>/system/bin/usbd</code></li>
- <li><code>/system/bin/debuggerd</code></li>
- <li><code>/system/bin/rild</code></li>
- <li><code>/system/bin/app_process</code></li>
- <li><code>/system/bin/runtime</code></li>
- <li><code>/system/bin/dbus-daemon</code></li>
- <li><code>system_server</code></li>
-</ul>
-<p>Each of these applications is embedded Linux C/C++ and you can use any standard Linux debugging tool to troubleshoot applications that aren't running. Execute <code>% make showcommands</code> to determine precise build commands. <code>gdbserver</code> (the GNU debugger) is available in the <code>bin</code> directory of the system partition (please see <a href="http://sourceware.org/gdb/">http://sourceware.org/gdb/</a> for more information). </p>
-<p> </p>
-<h3>8. Pulling it all together </h3>
-<p>If bring up was successful, you should see the following Java applications (with icons) visible on the LCD panel:</p>
-<ul>
- <li>com.google.android.phone: The Android contact application. </li>
- <li>com.google.android.home</li>
- <li>android.process.google.content</li>
-</ul>
-<p>If they are not visible or unresponsive to keypad control, run the <code>framebuffer/keypad</code> tests.</p>
-
-
-<a name="androidInitLanguage"></a><h1>Android Init Language</h1>
-
-
-<p>The Android Init Language consists of four broad classes of statements:</p>
-<ul>
- <li>Actionn</li>
- <li>Commands</li>
- <li>Services</li>
- <li>Options</li>
-</ul>
-<p>The language syntax includes the following conventions: </p>
-<ul>
- <li>All classes are line-oriented and consist of tokens separated by whitespace. c-style backslash escapes may be used to insert whitespace into a token. Double quotes may also be used to prevent whitespace from breaking text into multiple tokens. A backslash <br />
- appearing as the last character on a line is used for line-folding.</li>
- <li> Lines that start with a # (leading whitespace allowed) are comments.</li>
- <li>Actions and Services implicitly declare new sections. All commands
- or options belong to the section most recently declared. Commands
- or options before the first section are ignored. </li>
- <li>Actions and Services have unique names. If a second Action or Service is declared with the same name as an existing one, it is ignored as an error.</li>
-</ul>
-<p> Actions</p>
-<p> Actions are named sequences of commands. Actions have a trigger used to determine when the action should occur. When an event
- occurs which matches an action's trigger, that action is added to
- the tail of a to-be-executed queue (unless it is already on the
- queue).<br />
- <br />
- Each action in the queue is dequeued in sequence. Each command in
- an action is executed in sequence. Init handles other activities
- (such as, device creation/destruction, property setting, process restarting) "between" the execution of the commands in activities.
-<p>Actions take the form of:</p>
-<pre class="prettify">
-on <trigger>
- <command>
- <command>
- <command>
-</pre>
-<p>Services</p>
-<p>Services are programs that init launches and (optionally) restarts
-when they exit. </p>
-<p>Services take the form of:</p>
-<pre class="prettify">
- service <name> <pathname> [ <argument> ]*
- <option>
- <option>
- ...
-</pre>
-<p>Options</p>
- <p> Options are modifiers to services that affect how and when init
-runs a service. Options are described in the table below:</p>
-<table>
- <tr>
- <th scope="col">Option</th><th scope="col">Description</th></tr>
- <tr>
- <td><code>disabled</code></td>
- <td>This service will not automatically start with its class. It must be explicitly started by name.</td>
- </tr>
- <tr>
- <td><code>socket <type> <name> <perm> [ <user> [ <group> ] ]</code></td>
- <td> Create a unix domain socket named <code>/dev/socket/<name></code> and pass its fd to the launched process. Valid <code><type></code> values include <code>dgram</code> and <code>stream</code>. <code>user</code> and <code>group</code> default to 0.</td>
- </tr>
- <tr>
- <td><code>user <username></code></td>
- <td>Change to username before exec'ing this service. Currently defaults to root.</td>
- </tr>
- <tr>
- <td><code>group <groupname> [ <groupname> ]*</code></td>
- <td> Change to groupname before exec'ing this service. Additional groupnames beyond the first, which is required, are used to set additional groups of the process (with <code>setgroups()</code>). Currently defaults to root.</td>
- </tr>
- <tr>
- <td><code>capability [ <capability> ]+</code></td>
- <td>Set linux capability before exec'ing this service</td>
- </tr>
- <tr>
- <td><code>oneshot</code></td>
- <td>Do not restart the service when it exits.</td>
- </tr>
- <tr>
- <td><code>class <name></code></td>
- <td>Specify a class name for the service. All services in a named class must start and stop together. A service is considered of class "default" if one is not specified via the class option.</td>
- </tr>
-</table>
- <p> Triggers</p>
- <p>Triggers are strings used to match certain kinds of events that cause an action to occur. </p>
- <table>
- <tr>
- <th scope="col">Trigger</th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td><code>boot</code></td>
- <td>This is the first trigger that occurs when init starts (after <code>/init.conf</code> is loaded).</td>
- </tr>
- <tr>
- <td><code><name>=<value></code></td>
- <td>Triggers of this form occur when the property <code><name></code> is set to the specific value <code><value></code>.</td>
- </tr>
- <tr>
- <td><code>device-added-<path><br />
- device-removed-<path></code></td>
- <td>Triggers of these forms occur when a device node is added or removed.</td>
- </tr>
- <tr>
- <td><code> service-exited-<name></code></td>
- <td>Triggers of this form occur when the specified service exits.</td>
- </tr>
- </table>
- <p><br />
- Commands</p>
- <table>
- <tr>
- <th scope="col">Command</th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td><code>exec <path> [ <argument> ]*</code></td>
- <td>Fork and execute a program (<code><path></code>). This will block until the program completes execution. Try to avoid exec. Unlike the <code>builtin</code> commands, it runs the risk of getting init "stuck".</td>
- </tr>
- <tr>
- <td><code>export <name> <value></code></td>
- <td>Set the environment variable <code><name></code> equal to <code><value></code> in the global environment (which will be inherited by all processes started after this command is executed).</td>
- </tr>
- <tr>
- <td><code>ifup <interface></code></td>
- <td>Bring the network interface <code><interface></code> online.</td>
- </tr>
- <tr>
- <td><code>import <filename></code></td>
- <td> Parse an init config file, extending the current configuration.</td>
- </tr>
- <tr>
- <td><code>hostname <name></code></td>
- <td>Set the host name.</td>
- </tr>
- <tr>
- <td><code>class_start <serviceclass></code></td>
- <td>Start all services of the specified class if they are not already running.</td>
- </tr>
- <tr>
- <td><code>class_stop <serviceclass></code></td>
- <td>Stop all services of the specified class if they are currently running.</td>
- </tr>
- <tr>
- <td><code>domainname <name></code></td>
- <td>Set the domain name.</td>
- </tr>
- <tr>
- <td><code>insmod <path></code></td>
- <td>Install the module at <code><path></code>.</td>
- </tr>
- <tr>
- <td><code>mkdir <path></code></td>
- <td>Make a directory at <code><path></code>.</td>
- </tr>
- <tr>
- <td><code>mount <type> <device> <dir> [ <mountoption> ]*</code></td>
- <td>Attempt to mount the named device at the directory <code><dir></code> <code><device></code>. This may be of the form mtd@name to specify a mtd block device by name.</td>
- </tr>
- <tr>
- <td><code>setkey</code></td>
- <td>- currenlty undefined - </td>
- </tr>
- <tr>
- <td><code>setprop <name> <value></code></td>
- <td>Set system property <code><name></code> to <code><value></code>.</td>
- </tr>
- <tr>
- <td><code> setrlimit <resource> <cur> <max></code></td>
- <td>Set the rlimit for a resource.</td>
- </tr>
- <tr>
- <td><code>start <service></code></td>
- <td>Start a service running if it is not already running.</td>
- </tr>
- <tr>
- <td><code> stop <service></code></td>
- <td>Stop a service from running if it is currently running.</td>
- </tr>
- <tr>
- <td><code>symlink <target> <path></code></td>
- <td>Create a symbolic link at <code><path></code> with the value <code><target></code>.</td>
- </tr>
- <tr>
- <td><code>write <path> <string> [ <string> ]*</code></td>
- <td>Open the file at <code><path></code> and write one or more strings to it with write(2).</td>
- </tr>
- </table>
- <p> Properties</p>
- Init updates some system properties to provide some insight into <br />
- what it's doing:</p>
- <table>
- <tr>
- <th scope="col">Property</th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td><code>init.action</code></td>
- <td>Equal to the name of the action currently being executed or "" if none.</td>
- </tr>
- <tr>
- <td><code>init.command</code></td>
- <td>Equal to the command being executed or "" if none.</td>
- </tr>
- <tr>
- <td><code>init.svc.<name></code></td>
- <td>State of a named service ("stopped", "running", or "restarting").</td>
- </tr>
- </table>
- <p>Example init.conf</p>
- <p>The following snippet is an incomplete example of the <code>init.conf</code> file, simply meant to give you an idea of what a proper configuration resembles.</p>
- <pre class="prettify">
-on boot
- export PATH /sbin:/system/sbin:/system/bin
- export LD_LIBRARY_PATH /system/lib
-
- mkdir /dev
- mkdir /proc
- mkdir /sys
-
-
- mount tmpfs tmpfs /dev
- mkdir /dev/pts
- mkdir /dev/socket
- mount devpts devpts /dev/pts
- mount proc proc /proc
- mount sysfs sysfs /sys
-
-
- write /proc/cpu/alignment 4
-
-
- ifup lo
-
-
- hostname localhost
- domainname localhost
-
-
- mount yaffs2 mtd@system /system
- mount yaffs2 mtd@userdata /data
-
-
- import /system/etc/init.conf
-
-
- class_start default
-
-
-service adbd /sbin/adbd
- user adb
- group adb
-
-
-service usbd /system/bin/usbd -r
- user usbd
- group usbd
- socket usbd 666
-
-
-service zygote /system/bin/app_process -Xzygote /system/bin --zygote
- socket zygote 666
-
-
-service runtime /system/bin/runtime
- user system
- group system
-
-
-on device-added-/dev/compass
- start akmd
-
-
-on device-removed-/dev/compass
- stop akmd
-
-
-service akmd /sbin/akmd
- disabled
- user akmd
- group akmd
-</pre>
diff --git a/pdk/docs/porting/build_cookbook.jd b/pdk/docs/porting/build_cookbook.jd
deleted file mode 100755
index d619086..0000000
--- a/pdk/docs/porting/build_cookbook.jd
+++ /dev/null
@@ -1,556 +0,0 @@
-page.title=Build Cookbook
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#simpleAPK">Simple APK</a></li>
-<li><a href="#APKJar">APK Dependent on static .jar file</a></li>
- <li><a href="#APKPlatform">APK signed with the platform key</a></li>
- <li><a href="#APKVendor">APK that signed with vendor key</a></li>
- <li><a href="#prebuiltAPK">Prebuilt APK</a></li>
- <li><a href="#staticJava">Adding a Static Java Library</a></li>
- <li><a href="#mkVars">Android.mk variables</a></li>
-</ul>
-</div>
-</div>
-
-
-<p>The Android Build Cookbook offers code snippets to help you quickly implement some common build tasks. For additional instruction, please see the other build documents in this section.</p>
-<h3><a name="simpleAPK"></a>Building a simple APK</h3>
-<pre>
- LOCAL_PATH := $(call my-dir)
- include $(CLEAR_VARS)
-
- # Build all java files in the java subdirectory
- LOCAL_SRC_FILES := $(call all-subdir-java-files)
-
- # Name of the APK to build
- LOCAL_PACKAGE_NAME := LocalPackage
-
- # Tell it to build an APK
- include $(BUILD_PACKAGE)
-</pre>
-<h3><a name="APKJar"></a>Building a APK that depends on a static .jar file</h3>
-<pre>
- LOCAL_PATH := $(call my-dir)
- include $(CLEAR_VARS)
-
- # List of static libraries to include in the package
- LOCAL_STATIC_JAVA_LIBRARIES := static-library
-
- # Build all java files in the java subdirectory
- LOCAL_SRC_FILES := $(call all-subdir-java-files)
-
- # Name of the APK to build
- LOCAL_PACKAGE_NAME := LocalPackage
-
- # Tell it to build an APK
- include $(BUILD_PACKAGE)
-</pre>
-<h3><a name="APKPlatform"></a>Building a APK that should be signed with the platform key</h3>
-<pre>
- LOCAL_PATH := $(call my-dir)
- include $(CLEAR_VARS)
-
- # Build all java files in the java subdirectory
- LOCAL_SRC_FILES := $(call all-subdir-java-files)
-
- # Name of the APK to build
- LOCAL_PACKAGE_NAME := LocalPackage
-
- LOCAL_CERTIFICATE := platform
-
- # Tell it to build an APK
- include $(BUILD_PACKAGE)
-</pre>
-<h3><a name="APKVendor"></a>Building a APK that should be signed with a specific vendor key</h3>
-<pre>
- LOCAL_PATH := $(call my-dir)
- include $(CLEAR_VARS)
-
- # Build all java files in the java subdirectory
- LOCAL_SRC_FILES := $(call all-subdir-java-files)
-
- # Name of the APK to build
- LOCAL_PACKAGE_NAME := LocalPackage
-
- LOCAL_CERTIFICATE := vendor/example/certs/app
-
- # Tell it to build an APK
- include $(BUILD_PACKAGE)
-</pre>
-<h3><a name="prebuiltAPK"></a>Adding a prebuilt APK</h3>
-<pre>
- LOCAL_PATH := $(call my-dir)
- include $(CLEAR_VARS)
-
- # Module name should match apk name to be installed.
- LOCAL_MODULE := LocalModuleName
- LOCAL_SRC_FILES := $(LOCAL_MODULE).apk
- LOCAL_MODULE_CLASS := APPS
- LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
-
- include $(BUILD_PREBUILT)
-</pre>
-<h3><a name="staticJava"></a>Adding a Static Java Library</h3>
-<pre>
- LOCAL_PATH := $(call my-dir)
- include $(CLEAR_VARS)
-
- # Build all java files in the java subdirectory
- LOCAL_SRC_FILES := $(call all-subdir-java-files)
-
- # Any libraries that this library depends on
- LOCAL_JAVA_LIBRARIES := android.test.runner
-
- # The name of the jar file to create
- LOCAL_MODULE := sample
-
- # Build a static jar file.
- include $(BUILD_STATIC_JAVA_LIBRARY)
-</pre>
-<h3><a name="mkVars"></a>Android.mk Variables</h3>
-
-<p>These are the variables that you'll commonly see in Android.mk files, listed
-alphabetically. First, a note on the variable naming: </p>
-
-<ul>
- <li><b>LOCAL_</b> - These variables are set per-module. They are cleared
- by the <code>include $(CLEAR_VARS)</code> line, so you can rely on them
- being empty after including that file. Most of the variables you'll use
- in most modules are LOCAL_ variables.</li>
- <li><b>PRIVATE_</b> - These variables are make-target-specific variables. That
- means they're only usable within the commands for that module. It also
- means that they're unlikely to change behind your back from modules that
- are included after yours. This
- <a href="http://www.gnu.org/software/make/manual/make.html#Target_002dspecific">link to the make documentation</a>
- describes more about target-specific variables.
- </li>
- <li><b>HOST_</b> and <b>TARGET_</b> - These contain the directories
- and definitions that are specific to either the host or the target builds.
- Do not set variables that start with HOST_ or TARGET_ in your makefiles.
- </li>
- <li><b>BUILD_</b> and <b>CLEAR_VARS</b> - These contain the names of
- well-defined template makefiles to include. Some examples are CLEAR_VARS
- and BUILD_HOST_PACKAGE.</li>
- <li>Any other name is fair-game for you to use in your Android.mk. However,
- remember that this is a non-recursive build system, so it is possible that
- your variable will be changed by another Android.mk included later, and be
- different when the commands for your rule / module are executed.</li>
-</ul>
-
-<table border=1 cellpadding=2 cellspacing=0>
- <tbody><tr>
- <th scope="col">Parameter</th>
- <th scope="col">Description</th>
- </tr>
-<tr>
-<td valign="top">LOCAL_AAPT_FLAGS</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_ACP_UNAVAILABLE</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_ADDITIONAL_JAVA_DIR</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_AIDL_INCLUDES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_ALLOW_UNDEFINED_SYMBOLS</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_ARM_MODE</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_ASFLAGS</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_ASSET_DIR</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_ASSET_FILES</td>
-<td valign="top">In Android.mk files that <code>include $(BUILD_PACKAGE)</code> set this
-to the set of files you want built into your app. Usually:</p>
-<p><code>LOCAL_ASSET_FILES += $(call find-subdir-assets)</code></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_BUILT_MODULE_STEM</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_C_INCLUDES</td>
-<td valign="top"><p>Additional directories to instruct the C/C++ compilers to look for header
-files in. These paths are rooted at the top of the tree. Use
-<code>LOCAL_PATH</code> if you have subdirectories of your own that you
-want in the include paths. For example:</p>
-<p><code>
-LOCAL_C_INCLUDES += extlibs/zlib-1.2.3<br/>
-LOCAL_C_INCLUDES += $(LOCAL_PATH)/src
-</code></p>
-<p>You should not add subdirectories of include to
-<code>LOCAL_C_INCLUDES</code>, instead you should reference those files
-in the <code>#include</code> statement with their subdirectories. For
-example:</p>
-<p><code>#include <utils/KeyedVector.h></code><br/>
-not <code><s>#include <KeyedVector.h></s></code></p> </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_CC</td>
-<td valign="top">If you want to use a different C compiler for this module, set LOCAL_CC
-to the path to the compiler. If LOCAL_CC is blank, the appropriate default
-compiler is used.</td>
-</tr>
-<tr>
-<td valign="top">LOCAL_CERTIFICATE</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_CFLAGS</td>
-<td valign="top">If you have additional flags to pass into the C or C++ compiler, add
-them here. For example:</p>
-<p><code>LOCAL_CFLAGS += -DLIBUTILS_NATIVE=1</code></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_CLASSPATH</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_COMPRESS_MODULE_SYMBOLS</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_COPY_HEADERS</td>
-<td valign="top"><p>The set of files to copy to the install include tree. You must also
-supply <code>LOCAL_COPY_HEADERS_TO</code>.</p>
-<p>This is going away because copying headers messes up the error messages, and
-may lead to people editing those headers instead of the correct ones. It also
-makes it easier to do bad layering in the system, which we want to avoid. We
-also aren't doing a C/C++ SDK, so there is no ultimate requirement to copy any
-headers.</p></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_COPY_HEADERS_TO</td>
-<td valign="top"><p>The directory within "include" to copy the headers listed in
-<code>LOCAL_COPY_HEADERS</code> to.</p>
-<p>This is going away because copying headers messes up the error messages, and
-may lead to people editing those headers instead of the correct ones. It also
-makes it easier to do bad layering in the system, which we want to avoid. We
-also aren't doing a C/C++ SDK, so there is no ultimate requirement to copy any
-headers.</p></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_CPP_EXTENSION</td>
-<td valign="top">If your C++ files end in something other than "<code>.cpp</code>",
-you can specify the custom extension here. For example:
-<p><code>LOCAL_CPP_EXTENSION := .cc</code></p>
-Note that all C++ files for a given module must have the same
-extension; it is not currently possible to mix different extensions.</td>
-</tr>
-<tr>
-<td valign="top">LOCAL_CPPFLAGS</td>
-<td valign="top">If you have additional flags to pass into <i>only</i> the C++ compiler, add
-them here. For example:</p>
-<p><code>LOCAL_CPPFLAGS += -ffriend-injection</code></p>
-<code>LOCAL_CPPFLAGS</code> is guaranteed to be after <code>LOCAL_CFLAGS</code>
-on the compile line, so you can use it to override flags listed in
-<code>LOCAL_CFLAGS</code></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_CXX</td>
-<td valign="top">If you want to use a different C++ compiler for this module, set LOCAL_CXX
-to the path to the compiler. If LOCAL_CXX is blank, the appropriate default
-compiler is used.</td>
-</tr>
-<tr>
-<td valign="top">LOCAL_DX_FLAGS</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_EXPORT_PACKAGE_RESOURCES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_FORCE_STATIC_EXECUTABLE</td>
-<td valign="top"><p>If your executable should be linked statically, set
-<code>LOCAL_FORCE_STATIC_EXECUTABLE:=true</code>. There is a very short
-list of libraries that we have in static form (currently only libc). This is
-really only used for executables in /sbin on the root filesystem.</p> </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_GENERATED_SOURCES</td>
-<td valign="top"><p>Files that you add to <code>LOCAL_GENERATED_SOURCES</code> will be
-automatically generated and then linked in when your module is built.
-See the <a href="#custom-tools">Custom Tools</a> template makefile for an
-example.</p> </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_INSTRUMENTATION_FOR</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_INSTRUMENTATION_FOR_PACKAGE_NAME</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_INTERMEDIATE_SOURCES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_INTERMEDIATE_TARGETS</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_IS_HOST_MODULE</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_JAR_MANIFEST</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_JARJAR_RULES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_JAVA_LIBRARIES</td>
-<td valign="top"><p>When linking Java apps and libraries, <code>LOCAL_JAVA_LIBRARIES</code>
-specifies which sets of java classes to include. Currently there are
-two of these: <code>core</code> and <code>framework</code>.
-In most cases, it will look like this:</p>
-<p><code>LOCAL_JAVA_LIBRARIES := core framework</code></p>
-<p>Note that setting <code>LOCAL_JAVA_LIBRARIES</code> is not necessary
-(and is not allowed) when building an APK with
-"<code>include $(BUILD_PACKAGE)</code>". The appropriate libraries
-will be included automatically.</p> </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_JAVA_RESOURCE_DIRS</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_JAVA_RESOURCE_FILES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_JNI_SHARED_LIBRARIES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_LDFLAGS</td>
-<td valign="top"><p>You can pass additional flags to the linker by setting
-<code>LOCAL_LDFLAGS</code>. Keep in mind that the order of parameters is
-very important to ld, so test whatever you do on all platforms.</p> </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_LDLIBS</td>
-<td valign="top"><p><code>LOCAL_LDLIBS</code> allows you to specify additional libraries
-that are not part of the build for your executable or library. Specify
-the libraries you want in -lxxx format; they're passed directly to the
-link line. However, keep in mind that there will be no dependency generated
-for these libraries. It's most useful in simulator builds where you want
-to use a library preinstalled on the host. The linker (ld) is a particularly
-fussy beast, so it's sometimes necessary to pass other flags here if you're
-doing something sneaky. Some examples:</p>
-<p><code>LOCAL_LDLIBS += -lcurses -lpthread<br/>
-LOCAL_LDLIBS += -Wl,-z,origin
-</code></p> </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_MODULE</td>
-<td valign="top"><code>LOCAL_MODULE</code> is the name of what's supposed to be generated
-from your Android.mk. For exmample, for libkjs, the <code>LOCAL_MODULE</code>
-is "libkjs" (the build system adds the appropriate suffix -- .so .dylib .dll).
-For app modules, use <code>LOCAL_PACKAGE_NAME</code> instead of
-<code>LOCAL_MODULE</code>. </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_MODULE_PATH</td>
-<td valign="top">Instructs the build system to put the module somewhere other than what's
-normal for its type. If you override this, make sure you also set
-<code>LOCAL_UNSTRIPPED_PATH</code> if it's an executable or a shared library
-so the unstripped binary has somewhere to go. An error will occur if you forget
-to.</p>
-<p>See <a href="#moving-modules">Putting modules elsewhere</a> for more.</td>
-</tr>
-<tr>
-<td valign="top">LOCAL_MODULE_STEM</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_MODULE_TAGS</td>
-<td valign="top"><p>Set <code>LOCAL_MODULE_TAGS</code> to any number of whitespace-separated
-tags. <p>This variable controls what build flavors the package gets included in. For example:</p>
-<ul type="disc">
- <li><code>user</code>: include this in user/userdebug builds</li>
- <li><code>eng</code>: include this in eng builds</li>
- <li><code>tests</code>: the target is a testing target and makes it available for tests</li>
- <li><code>optional</code>: don't include this</li>
-</ul></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_NO_DEFAULT_COMPILER_FLAGS</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_NO_EMMA_COMPILE</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_NO_EMMA_INSTRUMENT</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_NO_STANDARD_LIBRARIES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_OVERRIDES_PACKAGES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_PACKAGE_NAME</td>
-<td valign="top"><code>LOCAL_PACKAGE_NAME</code> is the name of an app. For example,
-Dialer, Contacts, etc. </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_POST_PROCESS_COMMAND</td>
-<td valign="top"><p>For host executables, you can specify a command to run on the module
-after it's been linked. You might have to go through some contortions
-to get variables right because of early or late variable evaluation:</p>
-<p><code>module := $(HOST_OUT_EXECUTABLES)/$(LOCAL_MODULE)<br/>
-LOCAL_POST_PROCESS_COMMAND := /Developer/Tools/Rez -d __DARWIN__ -t APPL\<br/>
- -d __WXMAC__ -o $(module) Carbon.r
-</code></p>
- </td>
-</tr>
-<tr>
-<td valign="top">LOCAL_PREBUILT_EXECUTABLES</td>
-<td valign="top">When including $(BUILD_PREBUILT) or $(BUILD_HOST_PREBUILT), set these to
-executables that you want copied. They're located automatically into the
-right bin directory.</td>
-</tr>
-<tr>
-<td valign="top">LOCAL_PREBUILT_JAVA_LIBRARIES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_PREBUILT_LIBS</td>
-<td valign="top">When including $(BUILD_PREBUILT) or $(BUILD_HOST_PREBUILT), set these to
-libraries that you want copied. They're located automatically into the
-right lib directory.</td>
-</tr>
-<tr>
-<td valign="top">LOCAL_PREBUILT_OBJ_FILES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_PRELINK_MODULE</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_REQUIRED_MODULES</td>
-<td valign="top"><p>Set <code>LOCAL_REQUIRED_MODULES</code> to any number of whitespace-separated
-module names, like "libblah" or "Email". If this module is installed, all
-of the modules that it requires will be installed as well. This can be
-used to, e.g., ensure that necessary shared libraries or providers are
-installed when a given app is installed.</td>
-</tr>
-<tr>
-<td valign="top">LOCAL_RESOURCE_DIR</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_SDK_VERSION</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_SHARED_LIBRARIES</td>
-<td valign="top">These are the libraries you directly link against. You don't need to
-pass transitively included libraries. Specify the name without the suffix:</p>
-<p><code>LOCAL_SHARED_LIBRARIES := \<br/>
- libutils \<br/>
- libui \<br/>
- libaudio \<br/>
- libexpat \<br/>
- libsgl
-</code></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_SRC_FILES</td>
-<td valign="top">The build system looks at <code>LOCAL_SRC_FILES</code> to know what source
-files to compile -- .cpp .c .y .l .java. For lex and yacc files, it knows
-how to correctly do the intermediate .h and .c/.cpp files automatically. If
-the files are in a subdirectory of the one containing the Android.mk, prefix
-them with the directory name:</p>
-<p><code>LOCAL_SRC_FILES := \<br/>
- file1.cpp \<br/>
- dir/file2.cpp
-</code></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_STATIC_JAVA_LIBRARIES</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_STATIC_LIBRARIES</td>
-<td valign="top">These are the static libraries that you want to include in your module.
-Mostly, we use shared libraries, but there are a couple of places, like
-executables in sbin and host executables where we use static libraries instead.
-<p><code>LOCAL_STATIC_LIBRARIES := \<br/>
- libutils \<br/>
- libtinyxml
-</code></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_UNINSTALLABLE_MODULE</td>
-<td valign="top"></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_UNSTRIPPED_PATH</td>
-<td valign="top">Instructs the build system to put the unstripped version of the module
-somewhere other than what's normal for its type. Usually, you override this
-because you overrode <code>LOCAL_MODULE_PATH</code> for an executable or a
-shared library. If you overrode <code>LOCAL_MODULE_PATH</code>, but not
-<code>LOCAL_UNSTRIPPED_PATH</code>, an error will occur.</p>
-<p>See <a href="#moving-modules">Putting modules elsewhere</a> for more.</td>
-</tr>
-<tr>
-<td valign="top">LOCAL_WHOLE_STATIC_LIBRARIES</td>
-<td valign="top">These are the static libraries that you want to include in your module without allowing
-the linker to remove dead code from them. This is mostly useful if you want to add a static library
-to a shared library and have the static library's content exposed from the shared library.
-<p><code>LOCAL_WHOLE_STATIC_LIBRARIES := \<br/>
- libsqlite3_android<br/>
-</code></td>
-</tr>
-<tr>
-<td valign="top">LOCAL_YACCFLAGS</td>
-<td valign="top">Any flags to pass to invocations of yacc for your module. A known limitation
-here is that the flags will be the same for all invocations of YACC for your
-module. This can be fixed. If you ever need it to be, just ask.</p>
-<p><code>LOCAL_YACCFLAGS := -p kjsyy</code></td>
-</tr>
-<tr>
-<td valign="top">OVERRIDE_BUILT_MODULE_PATH</td>
-<td valign="top"></td>
-</tr>
-
-</table>
diff --git a/pdk/docs/porting/build_new_device.jd b/pdk/docs/porting/build_new_device.jd
deleted file mode 100755
index 271a43a..0000000
--- a/pdk/docs/porting/build_new_device.jd
+++ /dev/null
@@ -1,241 +0,0 @@
-page.title=Configuring a New Product
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidOHDPortingDeviceBuildingProcess">Detailed Instructions</a></li>
-<li><a href="#androidBuildNewFileTree">New Product File Tree</a></li>
-<li><a href="#androidBuildSystemProductDefFiles">Product Definition Files</a></li>
-</ul>
-</div>
-</div>
-
-
-<a name="androidOHDPortingDeviceBuildingProcess"></a><h3>Detailed Instructions</h3>
-
-<p>The steps below describe how to configure makefiles for new mobile devices and products running Android.</p>
-<ol>
- <li>Create a company directory in <code>//vendor/</code>.<br/>
- <pre class="prettyprint">
- mkdir vendor/<company_name></pre></li>
- <li>Create a <code>products</code> directory beneath the company directory you created in step 1.<BR>
- <pre class="prettyprint">
- mkdir vendor/<company_name>/products/</pre></li>
- <li>Create a product-specific makefile, called <code>vendor/<company_name>/products/<first_product_name>.mk</code>, that includes at least the following code:<BR>
- <pre class="prettyprint">
- $(call inherit-product, $(SRC_TARGET_DIR)/product/generic.mk)
- #
- # Overrides
- PRODUCT_NAME := <first_product_name>
- PRODUCT_DEVICE := <board_name></pre>
- <li>
- Additional product-specific variables can be added to this <a href="#androidBuildSystemProductDefFiles">Product Definition</a>
-file.
- </li>
- <li>In the <code>products</code> directory, create an <code>AndroidProducts.mk</code> file that point to (and is responsible for finding) the individual product make files.<BR>
- <pre class="prettyprint">
- #
- # This file should set PRODUCT_MAKEFILES to a list of product makefiles
- # to expose to the build system. LOCAL_DIR will already be set to
- # the directory containing this file.
- #
- # This file may not rely on the value of any variable other than
- # LOCAL_DIR; do not use any conditionals, and do not look up the
- # value of any variable that isn't set in this file or in a file that
- # it includes.
- #
-
- PRODUCT_MAKEFILES := \
- $(LOCAL_DIR)/first_product_name.mk \</pre></li>
- <li>Create a board-specific directory beneath your company directory that matches the <code>PRODUCT_DEVICE</code> variable <code><board_name></code> referenced in the product-specific make file above. This will include a make file that gets accessed by any product using this board.<BR>
- <pre class="prettyprint">
- mkdir vendor/<company_name>/<board_name></pre></li>
- <li>Create a <code>BoardConfig.mk</code> file in the directory created in the previous step (<code>vendor/<company_name>/<board_name></code>). <BR>
- <pre class="prettyprint">
- # These definitions override the defaults in config/config.make for <board_name>
- #
- # TARGET_NO_BOOTLOADER := false
- #
- TARGET_USE_GENERIC_AUDIO := true</pre></li>
- <li>If you wish to modify system properties, create a <code>system.prop</code> file in your <code><board_name></code> directory(<code>vendor/<company_name>/<board_name></code>).<BR>
- <pre class="prettyprint">
- # system.prop for <board_name>
- # This overrides settings in the products/generic/system.prop file
- #
- # rild.libpath=/system/lib/libreference-ril.so
- # rild.libargs=-d /dev/ttyS0</pre></li>
- <li>Add a pointer to <code><second_product_name>.mk</code> within <code>products/AndroidProducts.mk</code>.<BR>
- <pre class="prettypring">
- PRODUCT_MAKEFILES := \
- $(LOCAL_DIR)/first_product_name.mk \
- $(LOCAL_DIR)/second_product_name.mk</pre></li>
- <li>An <code>Android.mk</code> file must be included in <code>vendor/<company_name>/<board_name></code> with at least the following code:<BR>
- <pre class="prettyprint">
- # make file for new hardware <board_name> from <company_name>
- #
- LOCAL_PATH := $(call my-dir)
- #
- # this is here to use the pre-built kernel
- ifeq ($(TARGET_PREBUILT_KERNEL),)
- TARGET_PREBUILT_KERNEL := $(LOCAL_PATH)/kernel
- endif
- #
- file := $(INSTALLED_KERNEL_TARGET)
- ALL_PREBUILT += $(file)
- $(file): $(TARGET_PREBUILT_KERNEL) | $(ACP)
- $(transform-prebuilt-to-target)
- #
- # no boot loader, so we don't need any of that stuff..
- #
- LOCAL_PATH := vendor/<company_name>/<board_name>
- #
- include $(CLEAR_VARS)
- #
- # include more board specific stuff here? Such as Audio parameters.
- #</pre>
-
- </li>
-<li>To create a second product for the same board, create a second product-specific make file called <code>vendor/company_name/products/<second_product_name>.mk</code> that includes:<BR>
-<pre class="prettyprint">
- $(call inherit-product, $(SRC_TARGET_DIR)/product/generic.mk)
- #
- # Overrides
- PRODUCT_NAME := <second_product_name>
- PRODUCT_DEVICE := <board_name></pre></li>
-</ol>
-<p>By now, you should have two new products, called <code><first_product_name></code> and <code><second_product_name></code> associated with <code><company_name></code>. To verify that a product is properly configured (<code><first_product_name></code>, for example), execute the following:<BR>
-<pre class="prettyprint">
- . build/envsetup.sh
- make PRODUCT-<first_product_name>-user
-</pre>
-<p>You should find new build binaries located in <code>/out/target/product/<board_name></code>.
-
-
-<a name="androidBuildNewFileTree"></a><h3>New Product File Tree</h3>
-
-<p>The file tree below illustrates what your own system should look like after completing the steps above.</p>
-<p>
-<ul>
- <li><code><company_name></code></li>
- <ul>
- <li><code><board_name></code></li>
- <ul>
- <li><code>Android.mk</code></li>
- <li><code>product_config.mk</code></li>
- <li><code>system.prop</code></li>
- </ul>
- <li><code>products</code></li>
- <ul>
- <li><code>AndroidProducts.mk</code></li>
- <li><code><first_product_name>.mk</code></li>
- <li><code><second_product_name>.mk</code></li>
- </ul>
- </ul>
-</ul>
-</p>
-
-<a name="androidBuildSystemProductDefFiles"></a><h3>Product Definition Files</h3>
-
-<p>Product-specific variables are defined in product definition files. A product definition file can inherit from other product definition files, thus reducing the need to copy and simplifying maintenance.</p>
-<p>Variables maintained in a product definition files include:</p>
-<p>
-<table border=1 cellpadding=2 cellspacing=0>
- <tbody><tr>
- <th scope="col">Parameter</th>
- <th scope="col">Description</th>
- <th scope="col">Example</th>
- </tr>
- <tr>
- <td valign="top">PRODUCT_NAME</td>
- <td valign="top">End-user-visible name for the overall product. Appears in the "About the phone" info.</td>
- <td valign="top"></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_MODEL</td>
- <td valign="top">End-user-visible name for the end product</td>
- <td valign="top"></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_LOCALES</td>
- <td valign="top">A space-separated list of two-letter language code, two-letter country code pairs that describe several settings for the user, such as the UI language and time, date and currency formatting. The first locale listed in PRODUCT_LOCALES is is used if the locale has never been set before.</td>
- <td valign="top"><code>en_GB de_DE es_ES fr_CA</code></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_PACKAGES</td>
- <td valign="top">Lists the APKs to install.</td>
- <td valign="top"><code>Calendar Contacts</code></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_DEVICE</td>
- <td valign="top">Name of the industrial design</td>
- <td valign="top"><code>dream</code></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_MANUFACTURER</td>
- <td valign="top">Name of the manufacturer</td>
- <td valign="top"><code>acme</code></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_BRAND</td>
- <td valign="top">The brand (e.g., carrier) the software is customized for, if any</td>
- <td valign="top"></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_PROPERTY_OVERRIDES</td>
- <td valign="top">List of property assignments in the format "key=value"</td>
- <td valign="top"></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_COPY_FILES</td>
- <td valign="top">List of words like <code>source_path:destination_path</code>. The file at the source path should be copied to the destination path when building this product. The rules for the copy steps are defined in config/Makefile</td>
- <td valign="top"></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_OTA_PUBLIC_KEYS</td>
- <td valign="top">List of OTA public keys for the product</td>
- <td valign="top"></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_POLICY</td>
- <td valign="top">Indicate which policy this product should use</td>
- <td valign="top"></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_PACKAGE_OVERLAYS</td>
- <td valign="top">Indicate whether to use default resources or add any product specific overlays</td>
- <td valign="top"><code>vendor/acme/overlay</code></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_CONTRIBUTORS_FILE</td>
- <td valign="top">HTML file containing the contributors to the project.</td>
- <td valign="top"></td>
- </tr>
- <tr>
- <td valign="top">PRODUCT_TAGS</td>
- <td valign="top">list of space-separated words for a given product</td>
- <td valign="top"></td>
- </tr>
-</table>
-
-</P>
-<p>The snippet below illustrates a typical product definition file.</p>
-<pre class="prettyprint">
-$(call inherit-product, build/target/product/generic.mk)
-
-#Overrides
-PRODUCT_NAME := MyDevice
-PRODUCT_MANUFACTURER := acme
-PRODUCT_BRAND := acme_us
-PRODUCT_LOCALES := en_GB es_ES fr_FR
-PRODUCT_PACKAGE_OVERLAYS := vendor/acme/overlay
-
-</pre>
-
-
diff --git a/pdk/docs/porting/build_system.jd b/pdk/docs/porting/build_system.jd
deleted file mode 100755
index 686fba0..0000000
--- a/pdk/docs/porting/build_system.jd
+++ /dev/null
@@ -1,270 +0,0 @@
-page.title=Android Build System
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidBuildSystemOverview">Understanding the makefile</a></li>
-<li><a href="#androidBuildSystemLayers">Layers</a></li>
-<li><a href="#androidSourceSetupBuildingCodeBase">Building the Android Platform</a></li>
-<li><a href="#androidSourceSetupBuildingKernel">Building the Android Kernel</a></li>
-<li><a href="#androidBuildVariants">Build Variants</a></li>
-</ul>
-</div>
-</div>
-
-<p>Android uses a custom build system to generate tools, binaries, and documentation. This document provides an overview of Android's build system and instructions for doing a simple build. </p>
-<p>Android's build system is make based and requires a recent version of GNU Make (note that Android uses advanced features of GNU Make that may not yet appear on the GNU Make web site). Before continuing, check your version of make by running <code>% make -v</code>. If you don't have version 3.80 or greater, you need to <a href="http://www.gnu.org/software/make/">upgrade your version of make</a>. </p>
-
-
-
-
-<a name="androidBuildSystemOverview"></a><h4>Understanding the makefile</h4>
-
-<p>A makefile defines how to build a particular application. Makefiles typically include all of the following elements:</p>
-<ol>
- <li>Name: Give your build a name (<code>LOCAL_MODULE := <build_name></code>).</li>
- <li>Local Variables: Clear local variables with CLEAR_VARS (<code>include $(CLEAR_VARS)</code>).</li>
- <li>Files: Determine which files your application depends upon (<code>LOCAL_SRC_FILES := main.c</code>).</li>
- <li>Tags: Define tags, as necessary (<code>LOCAL_MODULE_TAGS := eng development</code>).</li>
- <li>Libraries: Define whether your application links with other libraries (<code>LOCAL_SHARED_LIBRARIES := cutils</code>).</li>
- <li>Template file: Include a template file to define underlining make tools for a particular target (<code>include $(BUILD_EXECUTABLE)</code>).</li>
-</ol>
-
-<p>The following snippet illustrates a typical makefile.</p>
-<pre class="prettyprint">
-LOCAL_PATH := $(my-dir)
-include $(CLEAR_VARS)
-LOCAL_MODULE := <buil_name>
-LOCAL_SRC_FILES := main.c
-LOCAL_MODULE_TAGS := eng development
-LOCAL_SHARED_LIBRARIES := cutils
-include $(BUILD_EXECUTABLE)
-(HOST_)EXECUTABLE, (HOST_)JAVA_LIBRARY, (HOST_)PREBUILT, (HOST_)SHARED_LIBRARY,
- (HOST_)STATIC_LIBRARY, PACKAGE, JAVADOC, RAW_EXECUTABLE, RAW_STATIC_LIBRARY,
- COPY_HEADERS, KEY_CHAR_MAP
-</pre>
-<p>The snippet above includes artificial line breaks to maintain a print-friendly document.</p>
-
-
-<a name="androidBuildSystemLayers"></a><h4>Layers</h4>
-
-<p>The build hierarchy includes the abstraction layers described in the table below.</p>
-
-<p>Each layer relates to the one above it in a one-to-many relationship. For example, an arch can have more than one board and each board can have more than one device. You may define an element in a given layer as a specialization of an element in the same layer, thus eliminating copying and simplifying maintenance.</p>
-
-<table border=1 cellpadding=2 cellspacing=0>
- <tbody><tr>
- <th scope="col">Layer</th>
- <th scope="col">Example</th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td valign="top">Product</td>
- <td valign="top">myProduct, myProduct_eu, myProduct_eu_fr, j2, sdk</td>
- <td valign="top">The product layer defines a complete specification of a shipping product, defining which modules to build and how to configure them. You might offer a device in several different versions based on locale, for example, or on features such as a camera. </td>
- </tr>
- <tr>
- <td valign="top">Device</td>
- <td valign="top">myDevice, myDevice_eu, myDevice_eu_lite</td>
- <td valign="top">The device layer represents the physical layer of plastic on the device. For example, North American devices probably include QWERTY keyboards whereas devices sold in France probably include AZERTY keyboards. Peripherals typically connect to the device layer. </td>
- </tr>
- <tr>
- <td valign="top">Board</td>
- <td valign="top">sardine, trout, goldfish </td>
- <td valign="top">The board layer represents the bare schematics of a product. You may still connect peripherals to the board layer. </td>
- </tr>
- <tr>
- <td valign="top">Arch</td>
- <td valign="top">arm (arm5te) (arm6), x86, 68k </td>
- <td valign="top">The arch layer describes the processor running on your board. </td>
- </tr>
-</table>
-
-<a name="androidSourceSetupBuildingCodeBase"></a><h3>Building the Android Platform</h3>
-
-<p>This section describes how to build the default version of Android. Once you are comfortable with a generic build, then you can begin to modify Android for your own target device.</p>
-
-
-<a name="androidSourceSetupBuildingDeviceCodeBase"></a><h4>Device Code</h4>
-
-<p>To do a generic build of android, source <code>build/envsetup.sh</code>, which contains necessary variable and function definitions, as described below.</p>
-<pre class="prettyprint">
-% cd $TOP
-
-% . build/envsetup.sh
-
-# pick a configuration using choosecombo
-% choosecombo
-
-% make -j4 PRODUCT-generic-user
-</pre>
-<p>You can also replace user with eng for a debug engineering build:</p>
-
-<pre class="prettyprint">
-% make -j4 PRODUCT-generic-eng
-</pre>
-
-<p>These <a href="#androidBuildVariants">Build Variants</a> differ in terms of debug options and packages installed.
-
-
-<a name="androidBuildingCleaning"></a><h4>Cleaning Up</h4>
-
-<p>Execute <code>% m clean</code> to clean up the binaries you just created. You can also execute <code>% m clobber</code> to get rid of the binaries of all combos. <code>% m clobber</code> is equivalent to removing the <code>//out/</code> directory where all generated files are stored.</p>
-
-
-<a name="androidBuildingSpeeding"></a><h4>Speeding Up Rebuilds</h4>
-
-<p> The binaries of each combo are stored as distinct sub-directories of <code>//out/</code>, making it possible to quickly switch between combos without having to recompile all sources each time. </p>
-<p> However, performing a clean rebuild is necessary if the build system doesn't catch changes to environment variables or makefiles. If this happens often, you should define the <code>USE_CCACHE</code> environment variable as shown below: </p>
-<pre class="prettyprint">
-% export USE_CCACHE=1
-</pre>
-<p>Doing so will force the build system to use the ccache compiler cache tool, which reduces recompiling all sources.</p>
-
-<p><code>ccache</code> binaries are provided in <code>//prebuilt/...</code> and don't need to get installed on your system.</p>
-
-
-<a name="androidBuildingTroubleshooting"></a><h4>Troubleshooting</h4>
-
-<p>The following error is likely caused by running an outdated version of Java.</p>
-<pre class="prettyprint">
-device Dex: core UNEXPECTED TOP-LEVEL ERROR:
-java.lang.NoSuchMethodError: method java.util.Arrays.hashCode with
-signature ([Ljava.lang.Object;)I was not found.
- at com.google.util.FixedSizeList.hashCode(FixedSizeList.java:66)
- at com.google.rop.code.Rop.hashCode(Rop.java:245)
- at java.util.HashMap.hash(libgcj.so.7)
-[...]
-</pre>
-<p><code>dx</code> is a Java program that uses facilities first made available in Java version 1.5. Check your version of Java by executing <code>% java -version</code> in the shell you use to build. You should see something like:</p>
-<pre class="prettyprint">
-java version "1.5.0_07"
-Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_07-164)
-Java HotSpot(TM) Client VM (build 1.5.0_07-87, mixed mode, sharing)
-</pre>
-<p>If you do have Java 1.5 or later and your receive this error, verify that you have properly updated your <code>PATH</code> variable.</p>
-
-
-<a name="androidSourceSetupBuildingKernel"></a><h3>Building the Android Kernel</h3>
-
-<p>This section describes how to build Android's default kernel. Once you are comfortable with a generic build, then you can begin to modify Android drivers for your own target device.</p>
-
-
-<p>To build the kernel base, switch to the device directory (<code>/home/joe/android/device</code>) in order to establish variables and run:
-<pre class="prettyprint">
-% . build/envsetup.sh
-% partner_setup generic
-</pre>
-<p>Then switch to the kernel directory <code>/home/joe/android/kernel</code>.
-
-
-<a name="androidSourceSetupBuildingKernelCheckingBranch"></a><h4>Checking Out a Branch</h4>
-
-<p>The default branch is always <code>android</code>. To check out a different branch, execute the following:</p>
-
-<pre class="prettyprint">
-% git checkout --track -b android-mydevice origin/android-mydevice
- //Branch android-mydevice set up to track remote branch
-% refs/remotes/origin/android-mydevice.
- //Switched to a new branch "android-mydevice"
-</pre>
-
-<p>To simplify code management, give your local branch the same name as the remote branch it is tracking (as illustrated in the snippet above). Switch between branches by executing <code>% git checkout <branchname></code>.</p>
-
-
-<a name="androidSourceSetupBuildingKernelBranchLocation"></a><h4>Verifying Location</h4>
-
-<p>Find out which branches exist (both locally and remotely) and which one is active (marked with an asterisk) by executing the following:</p>
-<pre class="prettyprint">
-% git branch -a
- android
-* android-mydevice
- origin/HEAD
- origin/android
- origin/android-mydevice
- origin/android-mychipset
-</pre>
-<p>To only see local branches, omit the <code>-a</code> flag.</p>
-
-
-<a name="androidSourceSetupBuildingKernelBuild"></a><h4>Building the Kernel</h4>
-
-<p>To build the kernel, execute:</p>
-<pre class="prettyprint">
-% make -j4
-</pre>
-
-<a name="androidBuildVariants"></a><h3>Build Variants</h3>
-
-<p>
-When building for a particular product, it's often useful to have minor
-variations on what is ultimately the final release build. These are the
-currently-defined build variants:
-</p>
-
-<table border=1>
-<tr>
- <td>
- <code>eng <code>
- </td>
- <td>
- This is the default flavor. A plain <code>make</code> is the
- same as <code>make eng</code>.
- <ul>
- <li>Installs modules tagged with: <code>eng</code>, <code>debug</code>,
- <code>user</code>, and/or <code>development</code>.
- <li>Installs non-APK modules that have no tags specified.
- <li>Installs APKs according to the product definition files, in
- addition to tagged APKs.
- <li><code>ro.secure=0</code>
- <li><code>ro.debuggable=1</code>
- <li><code>ro.kernel.android.checkjni=1</code>
- <li><code>adb</code> is enabled by default.
- </td>
-</tr>
-<tr>
- <td>
- <code>user <code>
- </td>
- <td>
- <code>make user</code>
- <p>
- This is the flavor intended to be the final release bits.
- <ul>
- <li>Installs modules tagged with <code>user</code>.</li>
- <li>Installs non-APK modules that have no tags specified.</li>
- <li>Installs APKs according to the product definition files; tags
- are ignored for APK modules.</li>
- <li><code>ro.secure=1</code> </li>
- <li><code>ro.debuggable=0</code> </li>
- <li><code>adb</code> is disabled by default.</li>
- </td>
-</tr>
-<tr>
- <td>
- <code>userdebug <code>
- </td>
- <td>
- <code>make userdebug</code>
- <p>
- The same as <code>user</code>, except:
- <ul>
- <li>Also installs modules tagged with <code>debug</code>.
- <li><code>ro.debuggable=1</code>
- <li><code>adb</code> is enabled by default.
- </td>
-</tr>
-</table>
-
-<p>
-If you build one flavor and then want to build another, you should run
-<code>make installclean</code> between the two makes to guarantee that
-you don't pick up files installed by the previous flavor. <code>make
-clean</code> will also suffice, but it takes a lot longer.
-</p>
diff --git a/pdk/docs/porting/camera.jd b/pdk/docs/porting/camera.jd
deleted file mode 100755
index 0571fb5..0000000
--- a/pdk/docs/porting/camera.jd
+++ /dev/null
@@ -1,76 +0,0 @@
-page.title=Camera
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidCameraBuildingDriver">Building a Camera Library</a></li>
-<li><a href="#androidCameraSequenceDiagrams">Sequence Diagrams</a></li>
-<li><a href="#androidCameraInterfaceIntro">Interface</a></li>
-</ul>
-</div>
-</div>
-
-<p>Android's camera subsystem connects the camera application to the application framework and user space libraries, which in turn communicate with the camera hardware layer that operates the physical camera.</p>
-<p>The diagram below illustrates the structure of the camera subsystem.</p>
-<p><img src="images/camera_video2.gif"></p>
-
-
-<a name="androidCameraBuildingDriver"></a><h3>Building a Camera Library</h3>
-
-<p>To implement a camera driver, create a shared library that implements the interface defined in <code>CameraHardwareInterface.h</code>. You must name your shared library <code>libcamera.so</code> so that it will get loaded from <code>/system/lib</code> at runtime. Place libcamera sources and <code>Android.mk</code> in <code>vendor/acme/chipset_or_board/libcamera/</code>.</p>
-<p>The following stub <code>Android.mk</code> file ensures that <code>libcamera</code> compiles and links to the appropriate libraries:</p>
-<pre class="prettify">
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := libcamera
-
-LOCAL_SHARED_LIBRARIES := \
- libutils \
- librpc \
- liblog
-
-LOCAL_SRC_FILES += MyCameraHardware.cpp
-
-LOCAL_CFLAGS +=
-
-LOCAL_C_INCLUDES +=
-
-LOCAL_STATIC_LIBRARIES += \
- libcamera-common \
- libclock-rpc \
- libcommondefs-rpc
-
-include $(BUILD_SHARED_LIBRARY)
-</pre>
-
-
-<a name="androidCameraSequenceDiagrams"></a><h3>Sequence Diagrams</h3>
-
-
-
-<a name="androidCameraSequenceDiagramsPreview"></a><h4>Preview</h4>
-
-<p>The following diagram illustrates the sequence of function calls and actions necessary for your camera to preview.</p>
-<img src="images/cameraPreview.jpg">
-
-
-<a name="androidCameraSequenceDiagramsTakePic"></a><h4>Taking a Picture</h4>
-
-<p>The following diagram illustrates the sequence of function calls and actions necessary for your camera to take a picture.</p>
-<img src="images/cameraTakePicture.jpg">
-
-
-<a name="androidCameraInterfaceIntro"></a><h3>Interface</h3>
-
-
-
-<p class="note"><strong>Note</strong>: This document relies on some Doxygen-generated content that appears in an iFrame below. To return to the Doxygen default content for this page, <a href="camera.html">click here</a>.</p>
-
-
-<iframe onLoad="resizeDoxFrameHeight();" src="CameraHardwareInterface_8h.html" scrolling="no" scroll="no" id="doxygen" marginwidth="0" marginheight="0" frameborder="0" style="width:100%;"></iframe>
diff --git a/pdk/docs/porting/customization.jd b/pdk/docs/porting/customization.jd
deleted file mode 100755
index 7c11a8e..0000000
--- a/pdk/docs/porting/customization.jd
+++ /dev/null
@@ -1,321 +0,0 @@
-page.title=Customization
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidBootScreenCustomization">Boot Screen Customization</a></li>
-<li><a href="#androidNetCustPlat">Network Customization Platform</a></li>
-<li><a href="#androidCustomizingPre-LoadedApps">Customizing pre-loaded applications</a></li>
-<li><a href="#androidBrowserBookmarks">Customizing browser bookmarks</a></li>
-<li><a href="#androidEmailProviderCustomization">Email Provider Customization</a></li>
-<li><a href="#androidThemes">Platform Themes</a></li>
-</ul>
-</div>
-</div>
-
-
-
-<a name="androidBootScreenCustomization"></a><h3>Boot Screen Customization</h3>
-
-<p>At startup, Android displays a splashscreen image while booting the device. Do the following if you wish to modify the default splash screen:</p>
-<p>
-<ol><li>Create a 320x480 image, <code>splashscreen.jpg</code> in this example.</li>
-<li>Using ImageMagick, convert your .jpg file to .r format:
-<pre class="prettify">
-convert screen.jpg screen.r
-</pre>
-</li>
-<li>Use the rgb2565 application to convert the image to 565 format:
-<pre class="prettify">
-rgb2565 < screen.rgb > screen.565
-</pre>
-</li>
-<li>Use fastboot to flash the image to the device:
-<pre class="prettify">
-fastboot flash splash1 screen.565
-</pre>
-</li>
-</ol>
-
-
-<a name="androidNetCustPlat"></a><h3>Network Customization Platform</h3>
-
-
-
-<a name="androidNetCustPlatNetworkConfig"></a><h4>Network Configuration</h4>
-
-<p>Android stores network configurations as a resource that gets compiled into binary at form at build time. The XML representation of this resource is located at <code>//android/frameworks/base/core/res/res/xml/apns.xml</code>. This file does not include any configured APNs. You should not modify this file, but instead configure APNs by product at build time (see Build-time APN Configuration below).</p>
-<p>Each network configuration is stored in an XML element following this syntax:</p>
-<pre class="prettify">
-<apn carrier="T-Mobile US"
- mcc="310"
- mnc="260"
- apn=" wap.voicestream.com"
- user="none"
- server="*"
- password="none"
- proxy=" 216.155.165.50"
- port="8080"
- mmsc="http://216.155.174.84/servlets/mms"
-/>
-</pre>
-
-
-<a name="androidNetCustPlatAPNConfig"></a><h4>Build-time APN configuration</h4>
-
-<p>To set the APN configuration for a particular product target, add an <code>apns-conf.xml</code> file to the product configuration (do not modify the default platform APNs). This allows multiple products, all with different APNs, to be built off the same code base. </p>
-
-<p>To configure APNs at the product level, add a line to the product configuration file like the example below (<code>vendor/<vendor_name>/products/myphone-us.mk</code>): </p>
-
-<pre class="prettify">
-PRODUCT_COPY_FILES := vendor/acme/etc/apns-conf-us.xml:system/etc/apns-conf.xml
-</pre>
-
-
-
-<a name="androidNetCustPlatAPNRunTime"></a><h4>APN configuration at run time</h4>
-
-<p>At runtime, the Android reads APNs from the following file:</p>
-<pre class="prettify">
-system/etc/apns-conf.xml
-</pre>
-
-<p>Android supports the following run-time network configuration methods to choose the appropriate APN from the list of configured APNs:</p>
-<p><ul>
-<li><b>Automatic Configuration</b>: At boot time, Android determines the correct network configuration based on the MCC and MNC from the SIM card and automatically configure all network settings.</li>
-<li><b>Manual Configuration</b>: The platform will also support runtime (user) manual selection of network settings by name, for example, "Company Name US," and will support manual network configuration entry.</li>
-<li><b>WAP / SMS Push Configuration</b>: The network configurations are standard Android resources. You can upgrade a resource at runtime by installing a new system resource APK package. It will be possible to develop a network configuration service which listens to a specific binary SMS port for binary SMS messages containing the network configurations. NOTE: The implementation will likely be network operator dependent due to inconsistent SMS ports, binary SMS formats, etc.</li>
-</ul>
-
-
-
-
-<a name="androidCustomizingPre-LoadedApps"></a><h3>Customizing pre-loaded applications</h3>
-
-<p>To customize the list of Android packages for a particular product (applications, input methods, providers, services, etc.), set <code>PRODUCT_PACKAGES</code> property in the product configuration, as illustrated below:</p>
-
-<pre class="prettify">
-PRODUCT_PACKAGES := \
- <company_name>Mail \
- <company_name>IM \
- <company_name>HomeScreen \
- <company_name>Maps \
- <company_name>SystemUpdater
-</pre>
-
-<p>Package names should correspond to the <code>LOCAL_PACKAGE_NAME</code> specified for each package's build target. For example, the <code>Android.mk</code> build target for <company_name>Mail, referenced above, could look like this:
-
-<pre class="prettify">
-# Build the <company_name>Mail application
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE_TAGS := user development
-
-LOCAL_SRC_FILES := $(call all-java-files-under,src,tests)
-
-LOCAL_STATIC_JAVA_LIBRARIES := <company_name>login-client
-
-# Specify the package name
-LOCAL_PACKAGE_NAME := <company_name>Mail
-
-# Specify the certificate used to sign the application
-LOCAL_CERTIFICATE := vendor/<company_name>/certs/app
-
-include $(BUILD_PACKAGE)
-
-# Build the login client static library
-include $(LOCAL_PATH)/client/Android.mk
-</pre>
-
-<p>Note that the home screen is just an Android application that can be replaced entirely or customized by changing source code and application resources (Java source, layouts, etc.).</p>
-
-
-
-<a name="androidBrowserBookmarks"></a><h3>Customizing browser bookmarks</h3>
-
-<p>Browser bookmarks are stored as string resources in the Browser application: <code>//android/packages/apps/Browser/res/values/strings.xml</code>. Bookmarks are defined as simple value string arrays called "bookmarks". Each bookmark entry is stored as a pair of array values; the first represents the bookmark name and the second the bookmark URL. For example:</p>
-<pre class="prettify">
-<!-- Bookmarks -->
-<string-array name="bookmarks">
- <item>Google</item>
- <item>http://www.google.com/</item>
- <item>Yahoo!</item>
- <item>http://www.yahoo.com/</item>
- <item>MSN</item>
- <item>http://www.msn.com/</item>
- <item>MySpace</item>
- <item>http://www.myspace.com/</item>
- <item>Facebook</item>
- <item>http://www.facebook.com/</item>
- <item>Wikipedia</item>
- <item>http://www.wikipedia.org/</item>
- <item>eBay</item>
- <item>http://www.ebay.com/</item>
- <item>CNN</item>
- <item>http://www.cnn.com/</item>
- <item>New York Times</item>
- <item>http://www.nytimes.com/</item>
- <item>ESPN</item>
- <item>http://espn.go.com/</item>
- <item>Amazon</item>
- <item>http://www.amazon.com/</item>
- <item>Weather Channel</item>
- <item>http://www.weather.com/</item>
- <item>BBC</item>
- <item>http://www.bbc.co.uk/</item>
-</string-array>
-</pre>
-<p>Like and Android application resource, the platform will load alternate resources based on the platform configuration values. See <a href="http://developer.android.com/guide/topics/resources/resources-i18n.html">Resources and Internationalization</a> in the Android SDK for details. To configure bookmarks for a specific mobile network operator, place your customized bookmarks in a separate <code>strings.xml</code> file and place it under a Mobile Network Code (MNO) specific resource folder. For example, <code>Browser/res/values-mccXXX-mncYYY/strings.xml</code> where XXX and YYY represent the three-digit MCC and two to three digit MNC values.</p>
-<p>Android loads any configuration-specific resources as override values for the default values, so it is only necessary to include the bookmarks string-array values in this file.</p>
-
-
-
-<a name="androidEmailProviderCustomization"></a>
-<h3>Email Provider Customization</h3>
-
-<p>The default email provider settings are stored as string resources in the Email application (<code>//android/packages/apps/Email/res/xml/providers.xml</code>) as illustrated below.</p>
-<p><providers></p>
-<pre class="prettify">
-<!-- Gmail variants -->
- <provider id="gmail" label="Gmail" domain="gmail.com">
- <incoming uri="imap+ssl+://imap.gmail.com" username="$email"/>
- <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email"/>
- </provider>
- <provider id="googlemail" label="Google Mail" domain="googlemail.com">
- <incoming uri="imap+ssl+://imap.googlemail.com" username="$email"/>
- <outgoing uri="smtp+ssl+://smtp.googlemail.com" username="$email"/>
- </provider>
- <provider id="google" label="Google" domain="google.com">
- <incoming uri="imap+ssl+://imap.gmail.com" username="$email"/>
- <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email"/>
- </provider>
- <provider id="android" label="Android" domain="android.com">
- <incoming uri="imap+ssl+://imap.gmail.com" username="$email"/>
- <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email"/>
- </provider></p>
-
- <!-- Common US providers -->
-
- <provider id="aim" label="AIM" domain="aim.com">
- <incoming uri="imap://imap.aim.com" label="IMAP" username="$email"/>
- <outgoing uri="smtp://smtp.aim.com:587" username="$email"/>
- </provider>
- <provider id="aol" label="AOL" domain="aol.com">
- <incoming uri="imap://imap.aol.com" label="IMAP" username="$email"/>
- <outgoing uri="smtp://smtp.aol.com:587" username="$email"/>
- </provider>
- <provider id="comcast" label="Comcast" domain="comcast.net">
- <incoming uri="pop3+ssl+://mail.comcast.net" username="$user"/>
- <outgoing uri="smtp+ssl+://smtp.comcast.net" username="$user"/>
- </provider>
- <provider id="compuserve" label="CompuServe" domain="cs.com">
- <incoming uri="imap://imap.cs.com" username="$user"/>
- <outgoing uri="smtp://smtp.cs.com" username="$user"/>
- </provider>
- <provider id="dotmac" label=".Mac" domain="mac.com">
- <incoming uri="imap+tls://mail.mac.com" username="$email"/>
- <outgoing uri="smtp+tls://smtp.mac.com" username="$email"/>
- </provider>
- <provider id="earthlink" label="Earthlink" domain="earthlink.net">
- <incoming uri="pop3://pop.earthlink.net" username="$email"/>
- <outgoing uri="smtp://smtpauth.earthlink.net:587" username="$email"/>
- </provider>
- <provider id="juno" label="Juno" domain="juno.com">
- <incoming uri="pop3://pop.juno.com" username="$user"/>
- <outgoing uri="smtp://smtp.juno.com" username="$user"/>
- </provider>
- <provider id="live" label="Windows Live Hotmail Plus" domain="live.com" note="@string/provider_note_live">
- <incoming uri="pop3+ssl+://pop3.live.com" username="$email"/>
- <outgoing uri="smtp+tls+://smtp.live.com" username="$email"/>
- </provider>
- <provider id="hotmail" label="Windows Live Hotmail Plus" domain="hotmail.com" note="@string/provider_note_live">
- <incoming uri="pop3+ssl+://pop3.live.com" username="$email"/>
- <outgoing uri="smtp+tls+://smtp.live.com" username="$email"/>
- </provider>
- <provider id="msn" label="Windows Live Hotmail Plus" domain="msn.com" note="@string/provider_note_live">
- <incoming uri="pop3+ssl+://pop3.live.com" username="$email"/>
- <outgoing uri="smtp+tls+://smtp.live.com" username="$email"/>
- </provider>
- <provider id="mobileme" label="MobileMe" domain="me.com">
- <incoming uri="imap+tls://mail.me.com" username="$email"/>
- <outgoing uri="smtp+tls://smtp.me.com" username="$email"/>
- </provider>
- <provider id="netzero" label="NetZero" domain="netzero.com">
- <incoming uri="pop3://pop.netzero.com" username="$user"/>
- <outgoing uri="smtp://smtp.netzero.com" username="$user"/>
- </provider>
- <provider id="sbcglobal" label="SBC Global" domain="sbcglobal.net">
- <incoming uri="pop3://pop.sbcglobal.yahoo.com" username="$email"/>
- <outgoing uri="smtp://smtp.sbcglobal.yahoo.com" username="$email"/>
- </provider>
- <provider id="verizon" label="Verizon" domain="verizon.net">
- <incoming uri="pop3://incoming.verizon.net" username="$user"/>
- <outgoing uri="smtp://outgoing.verizon.net" username="$user"/>
- </provider>
- <provider id="yahoo" label="Yahoo Plus" domain="yahoo.com" note="@string/provider_note_yahoo">
- <incoming uri="pop3+ssl+://plus.pop.mail.yahoo.com" username="$user"/>
- <outgoing uri="smtp+ssl+://plus.smtp.mail.yahoo.com" username="$user"/>
- </provider>
-
- <!-- Common UK providers -->
-
- <provider id="aol-uk" label="AOL" domain="aol.co.uk">
- <incoming uri="imap+ssl+://imap.uk.aol.com" label="IMAP" username="$user"/>
- <outgoing uri="smtp+ssl+://smtp.uk.aol.com" username="$user"/>
- </provider>
- <provider id="bt" label="BT Internet" domain="btinternet.com">
- <incoming uri="pop3://mail.btinternet.com" username="$email"/>
- <outgoing uri="smtp://mail.btinternet.com" username=""/>
- </provider>
- <provider id="tiscali" label="Tiscali" domain="tiscali.co.uk">
- <incoming uri="pop3://pop.tiscali.co.uk" username="$email"/>
- <outgoing uri="smtp://smtp.tiscali.co.uk" username="$email:wq"/>
- </provider>
- <provider id="yahoo-uk" label="Yahoo" domain="yahoo.co.uk" note="@string/provider_note_yahoo_uk">
- <incoming uri="pop3+ssl+://pop.mail.yahoo.co.uk" username="$user"/>
- <outgoing uri="smtp+ssl+://smtp.mail.yahoo.co.uk" username="$user"/>
- </provider>
-
- <!-- Common Germany providers -->
-
- <provider id="freenet" label="Freenet" domain="freenet.de">
- <incoming uri="pop3://mx.freenet.de" username="$user"/>
- <outgoing uri="smtp+ssl://mx.freenet.de" username="$email"/>
- </provider>
- <provider id="gmx" label="GMX" domain="gmx.de">
- <incoming uri="pop3+tls://pop.gmx.net" username="$email"/>
- <outgoing uri="smtp+tls://mail.gmx.net" username="$email"/>
- </provider>
- <provider id="T-Online" label="T-Online" domain="t-online.de" note="@string/provider_note_t_online">
- <incoming uri="pop3://popmail.t-online.de" username="$email"/>
- <outgoing uri="smtp://smtpmail.t-online.de" username="$email"/>
- </provider>
- <provider id="web.de" label="Web.de" domain="web.de">
- <incoming uri="pop3+tls://pop3.web.de" username="$user"/>
- <outgoing uri="smtp+tls://smtp.web.de" username="$user"/>
- </provider>
-</providers>
-</pre>
-<p>As with all Android application resources, the platform will load alternate resources based on the platform configuration values. See <a href="http://developer.android.com/guide/topics/resources/resources-i18n.html">Resources and Internationalization</a> in the Android SDK for details. To configure email providers for a specific mobile network operator, place the customized providers in a separate <code>providers.xml</code> file and place it under a Mobile Network Code (MNO) specific resource folder. For example, <code>Email/res/xml-mccXXX-mncYYY/providers.xml</code> where XXX and YYY represent the three-digit MCC and two to three digit MNC values.</p>
-
-
-
-<a name="androidThemes"></a><h3>Platform Themes</h3>
-
-
-
-<a name="androidThemesStyles"></a><h4>Themes and Styles</h4>
-
-<p>System level styles are defined in <code>//android/framework/base/core/res/res/values/styles.xml</code>.</p>
-
-
-<a name="androidThemesAnimations"></a><h4>Animations</h4>
-
-<p>Android supports configurable animations for window and view transitions. System-level animations are defined in XML in global resource files located in <code>//android/framework/base/core/res/res/anim/</code>.</p>
-
diff --git a/pdk/docs/porting/dalvik.jd b/pdk/docs/porting/dalvik.jd
deleted file mode 100755
index 50b7499..0000000
--- a/pdk/docs/porting/dalvik.jd
+++ /dev/null
@@ -1,355 +0,0 @@
-page.title=Dalvik
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#dalvikCoreLibraries">Core Libraries</a></li>
-<li><a href="#dalvikJNICallBridge">JNI Call Bridge</a></li>
-<li><a href="#dalvikInterpreter">Interpreter</a></li>
-</ul>
-</div>
-</div>
-
-<p>
-The Dalvik virtual machine is intended to run on a variety of platforms.
-The baseline system is expected to be a variant of UNIX (Linux, BSD, Mac
-OS X) running the GNU C compiler. Little-endian CPUs have been exercised
-the most heavily, but big-endian systems are explicitly supported.
-</p><p>
-There are two general categories of work: porting to a Linux system
-with a previously unseen CPU architecture, and porting to a different
-operating system. This document covers the former.
-</p>
-
-
-<a name="dalvikCoreLibraries"></a><h3>Core Libraries</h3>
-
-<p>
-The native code in the core libraries (chiefly <code>dalvik/libcore</code>,
-but also <code>dalvik/vm/native</code>) is written in C/C++ and is expected
-to work without modification in a Linux environment. Much of the code
-comes directly from the Apache Harmony project.
-</p><p>
-The core libraries pull in code from many other projects, including
-OpenSSL, zlib, and ICU. These will also need to be ported before the VM
-can be used.
-</p>
-
-
-<a name="dalvikJNICallBridge"></a><h3>JNI Call Bridge</h3>
-
-<p>
-Most of the Dalvik VM runtime is written in portable C. The one
-non-portable component of the runtime is the JNI call bridge. Simply put,
-this converts an array of integers into function arguments of various
-types, and calls a function. This must be done according to the C calling
-conventions for the platform. The task could be as simple as pushing all
-of the arguments onto the stack, or involve complex rules for register
-assignment and stack alignment.
-</p><p>
-To ease porting to new platforms, the <a href="http://sourceware.org/libffi/">
-open-source FFI library</a> (Foreign Function Interface) is used when a
-custom bridge is unavailable. FFI is not as fast as a native implementation,
-and the optional performance improvements it does offer are not used, so
-writing a replacement is a good first step.
-</p><p>
-The code lives in <code>dalvik/vm/arch/*</code>, with the FFI-based version
-in the "generic" directory. There are two source files for each architecture.
-One defines the call bridge itself:
-</p><p><blockquote>
-<code>void dvmPlatformInvoke(void* pEnv, ClassObject* clazz, int argInfo,
-int argc, const u4* argv, const char* signature, void* func,
-JValue* pReturn)</code>
-</blockquote></p><p>
-This will invoke a C/C++ function declared:
-</p><p><blockquote>
- <code>return_type func(JNIEnv* pEnv, Object* this [, <i>args</i>])<br></code>
-</blockquote>or (for a "static" method):<blockquote>
- <code>return_type func(JNIEnv* pEnv, ClassObject* clazz [, <i>args</i>])</code>
-</blockquote></p><p>
-The role of <code>dvmPlatformInvoke</code> is to convert the values in
-<code>argv</code> into C-style calling conventions, call the method, and
-then place the return type into <code>pReturn</code> (a union that holds
-all of the basic JNI types). The code may use the method signature
-(a DEX "shorty" signature, with one character for the return type and one
-per argument) to determine how to handle the values.
-</p><p>
-The other source file involved here defines a 32-bit "hint". The hint
-is computed when the method's class is loaded, and passed in as the
-"argInfo" argument. The hint can be used to avoid scanning the ASCII
-method signature for things like the return value, total argument size,
-or inter-argument 64-bit alignment restrictions.
-</p>
-
-<a name="dalvikInterpreter"></a><h3>Interpreter</h3>
-
-<p>
-The Dalvik runtime includes two interpreters, labeled "portable" and "fast".
-The portable interpreter is largely contained within a single C function,
-and should compile on any system that supports gcc. (If you don't have gcc,
-you may need to disable the "threaded" execution model, which relies on
-gcc's "goto table" implementation; look for the THREADED_INTERP define.)
-</p><p>
-The fast interpreter uses hand-coded assembly fragments. If none are
-available for the current architecture, the build system will create an
-interpreter out of C "stubs". The resulting "all stubs" interpreter is
-quite a bit slower than the portable interpreter, making "fast" something
-of a misnomer.
-</p><p>
-The fast interpreter is enabled by default. On platforms without native
-support, you may want to switch to the portable interpreter. This can
-be controlled with the <code>dalvik.vm.execution-mode</code> system
-property. For example, if you:
-</p><p><blockquote>
-<code>adb shell "echo dalvik.vm.execution-mode = int:portable >> /data/local.prop"</code>
-</blockquote></p><p>
-and reboot, the Android app framework will start the VM with the portable
-interpreter enabled.
-</p>
-
-
-<h3>Mterp Interpreter Structure</h3>
-
-<p>
-There may be significant performance advantages to rewriting the
-interpreter core in assembly language, using architecture-specific
-optimizations. In Dalvik this can be done one instruction at a time.
-</p><p>
-The simplest way to implement an interpreter is to have a large "switch"
-statement. After each instruction is handled, the interpreter returns to
-the top of the loop, fetches the next instruction, and jumps to the
-appropriate label.
-</p><p>
-An improvement on this is called "threaded" execution. The instruction
-fetch and dispatch are included at the end of every instruction handler.
-This makes the interpreter a little larger overall, but you get to avoid
-the (potentially expensive) branch back to the top of the switch statement.
-</p><p>
-Dalvik mterp goes one step further, using a computed goto instead of a goto
-table. Instead of looking up the address in a table, which requires an
-extra memory fetch on every instruction, mterp multiplies the opcode number
-by a fixed value. By default, each handler is allowed 64 bytes of space.
-</p><p>
-Not all handlers fit in 64 bytes. Those that don't can have subroutines
-or simply continue on to additional code outside the basic space. Some of
-this is handled automatically by Dalvik, but there's no portable way to detect
-overflow of a 64-byte handler until the VM starts executing.
-</p><p>
-The choice of 64 bytes is somewhat arbitrary, but has worked out well for
-ARM and x86.
-</p><p>
-In the course of development it's useful to have C and assembly
-implementations of each handler, and be able to flip back and forth
-between them when hunting problems down. In mterp this is relatively
-straightforward. You can always see the files being fed to the compiler
-and assembler for your platform by looking in the
-<code>dalvik/vm/mterp/out</code> directory.
-</p><p>
-The interpreter sources live in <code>dalvik/vm/mterp</code>. If you
-haven't yet, you should read <code>dalvik/vm/mterp/README.txt</code> now.
-</p>
-
-
-<h3>Getting Started With Mterp</h3>
-
-</p><p>
-Getting started:
-<ol>
-<li>Decide on the name of your architecture. For the sake of discussion,
-let's call it <code>myarch</code>.
-<li>Make a copy of <code>dalvik/vm/mterp/config-allstubs</code> to
-<code>dalvik/vm/mterp/config-myarch</code>.
-<li>Create a <code>dalvik/vm/mterp/myarch</code> directory to hold your
-source files.
-<li>Add <code>myarch</code> to the list in
-<code>dalvik/vm/mterp/rebuild.sh</code>.
-<li>Make sure <code>dalvik/vm/Android.mk</code> will find the files for
-your architecture. If <code>$(TARGET_ARCH)</code> is configured this
-will happen automatically.
-</ol>
-</p><p>
-You now have the basic framework in place. Whenever you make a change, you
-need to perform two steps: regenerate the mterp output, and build the
-core VM library. (It's two steps because we didn't want the build system
-to require Python 2.5. Which, incidentally, you need to have.)
-<ol>
-<li>In the <code>dalvik/vm/mterp</code> directory, regenerate the contents
-of the files in <code>dalvik/vm/mterp/out</code> by executing
-<code>./rebuild.sh</code>. Note there are two files, one in C and one
-in assembly.
-<li>In the <code>dalvik</code> directory, regenerate the
-<code>libdvm.so</code> library with <code>mm</code>. You can also use
-<code>make libdvm</code> from the top of the tree.
-</ol>
-</p><p>
-This will leave you with an updated libdvm.so, which can be pushed out to
-a device with <code>adb sync</code> or <code>adb push</code>. If you're
-using the emulator, you need to add <code>make snod</code> (System image,
-NO Dependency check) to rebuild the system image file. You should not
-need to do a top-level "make" and rebuild the dependent binaries.
-</p><p>
-At this point you have an "all stubs" interpreter. You can see how it
-works by examining <code>dalvik/vm/mterp/cstubs/entry.c</code>. The
-code runs in a loop, pulling out the next opcode, and invoking the
-handler through a function pointer. Each handler takes a "glue" argument
-that contains all of the useful state.
-</p><p>
-Your goal is to replace the entry method, exit method, and each individual
-instruction with custom implementations. The first thing you need to do
-is create an entry function that calls the handler for the first instruction.
-After that, the instructions chain together, so you don't need a loop.
-(Look at the ARM or x86 implementation to see how they work.)
-</p><p>
-Once you have that, you need something to jump to. You can't branch
-directly to the C stub because it's expecting to be called with a "glue"
-argument and then return. We need a C stub "wrapper" that does the
-setup and jumps directly to the next handler. We write this in assembly
-and then add it to the config file definition.
-</p><p>
-To see how this works, create a file called
-<code>dalvik/vm/mterp/myarch/stub.S</code> that contains one line:
-<pre>
-/* stub for ${opcode} */
-</pre>
-Then, in <code>dalvik/vm/mterp/config-myarch</code>, add this below the
-<code>handler-size</code> directive:
-<pre>
-# source for the instruction table stub
-asm-stub myarch/stub.S
-</pre>
-</p><p>
-Regenerate the sources with <code>./rebuild.sh</code>, and take a look
-inside <code>dalvik/vm/mterp/out/InterpAsm-myarch.S</code>. You should
-see 256 copies of the stub function in a single large block after the
-<code>dvmAsmInstructionStart</code> label. The <code>stub.S</code>
-code will be used anywhere you don't provide an assembly implementation.
-</p><p>
-Note that each block begins with a <code>.balign 64</code> directive.
-This is what pads each handler out to 64 bytes. Note also that the
-<code>${opcode}</code> text changed into an opcode name, which should
-be used to call the C implementation (<code>dvmMterp_${opcode}</code>).
-</p><p>
-The actual contents of <code>stub.S</code> are up to you to define.
-See <code>entry.S</code> and <code>stub.S</code> in the <code>armv5te</code>
-or <code>x86</code> directories for working examples.
-</p><p>
-If you're working on a variation of an existing architecture, you may be
-able to use most of the existing code and just provide replacements for
-a few instructions. Look at the <code>armv4t</code> implementation as
-an example.
-</p>
-
-
-<h3>Replacing Stubs</h3>
-
-<p>
-There are roughly 230 Dalvik opcodes, including some that are inserted by
-<a href="dexopt.html">dexopt</a> and aren't described in the
-<a href="dalvik-bytecode.html">Dalvik bytecode</a> documentation. Each
-one must perform the appropriate actions, fetch the next opcode, and
-branch to the next handler. The actions performed by the assembly version
-must exactly match those performed by the C version (in
-<code>dalvik/vm/mterp/c/OP_*</code>).
-</p><p>
-It is possible to customize the set of "optimized" instructions for your
-platform. This is possible because optimized DEX files are not expected
-to work on multiple devices. Adding, removing, or redefining instructions
-is beyond the scope of this document, and for simplicity it's best to stick
-with the basic set defined by the portable interpreter.
-</p><p>
-Once you have written a handler that looks like it should work, add
-it to the config file. For example, suppose we have a working version
-of <code>OP_NOP</code>. For demonstration purposes, fake it for now by
-putting this into <code>dalvik/vm/mterp/myarch/OP_NOP.S</code>:
-<pre>
-/* This is my NOP handler */
-</pre>
-</p><p>
-Then, in the <code>op-start</code> section of <code>config-myarch</code>, add:
-<pre>
- op OP_NOP myarch
-</pre>
-</p><p>
-This tells the generation script to use the assembly version from the
-<code>myarch</code> directory instead of the C version from the <code>c</code>
-directory.
-</p><p>
-Execute <code>./rebuild.sh</code>. Look at <code>InterpAsm-myarch.S</code>
-and <code>InterpC-myarch.c</code> in the <code>out</code> directory. You
-will see that the <code>OP_NOP</code> stub wrapper has been replaced with our
-new code in the assembly file, and the C stub implementation is no longer
-included.
-</p><p>
-As you implement instructions, the C version and corresponding stub wrapper
-will disappear from the output files. Eventually you will have a 100%
-assembly interpreter.
-</p>
-
-
-<h3>Interpreter Switching</h3>
-
-<p>
-The Dalvik VM actually includes a third interpreter implementation: the debug
-interpreter. This is a variation of the portable interpreter that includes
-support for debugging and profiling.
-</p><p>
-When a debugger attaches, or a profiling feature is enabled, the VM
-will switch interpreters at a convenient point. This is done at the
-same time as the GC safe point check: on a backward branch, a method
-return, or an exception throw. Similarly, when the debugger detaches
-or profiling is discontinued, execution transfers back to the "fast" or
-"portable" interpreter.
-</p><p>
-Your entry function needs to test the "entryPoint" value in the "glue"
-pointer to determine where execution should begin. Your exit function
-will need to return a boolean that indicates whether the interpreter is
-exiting (because we reached the "bottom" of a thread stack) or wants to
-switch to the other implementation.
-</p><p>
-See the <code>entry.S</code> file in <code>x86</code> or <code>armv5te</code>
-for examples.
-</p>
-
-
-<h3>Testing</h3>
-
-<p>
-A number of VM tests can be found in <code>dalvik/tests</code>. The most
-useful during interpreter development is <code>003-omnibus-opcodes</code>,
-which tests many different instructions.
-</p><p>
-The basic invocation is:
-<pre>
-$ cd dalvik/tests
-$ ./run-test 003
-</pre>
-</p><p>
-This will run test 003 on an attached device or emulator. You can run
-the test against your desktop VM by specifying <code>--reference</code>
-if you suspect the test may be faulty. You can also use
-<code>--portable</code> and <code>--fast</code> to explictly specify
-one Dalvik interpreter or the other.
-</p><p>
-Some instructions are replaced by <code>dexopt</code>, notably when
-"quickening" field accesses and method invocations. To ensure
-that you are testing the basic form of the instruction, add the
-<code>--no-optimize</code> option.
-</p><p>
-There is no in-built instruction tracing mechanism. If you want
-to know for sure that your implementation of an opcode handler
-is being used, the easiest approach is to insert a "printf"
-call. For an example, look at <code>common_squeak</code> in
-<code>dalvik/vm/mterp/armv5te/footer.S</code>.
-</p><p>
-At some point you need to ensure that debuggers and profiling work with
-your interpreter. The easiest way to do this is to simply connect a
-debugger or toggle profiling. (A future test suite may include some
-tests for this.)
-</p>
-
-
diff --git a/pdk/docs/porting/debugging_gdb.jd b/pdk/docs/porting/debugging_gdb.jd
deleted file mode 100755
index 17ff471..0000000
--- a/pdk/docs/porting/debugging_gdb.jd
+++ /dev/null
@@ -1,146 +0,0 @@
-page.title=Debugging with GDB
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#gdb">Debugging</a></li>
- <li><a href="#justInTime">Just-In-Time Debug Feature</a></li>
-</ul>
-</div>
-</div>
-
-<p>The current version of <code>envsetup.sh</code> has a <code>gdbclient</code> command that handles much of the setup. For example, to attach the
- already-running <code>globaltime</code> application, execute the following, making sure that: 1) you do this from the same window used to build the software on the device you are debugging and 2) verify that the symbols in the object files in the build tree match up with what is installed on the device or emulator.</p>
-<pre class="prettify">
-gdbclient app_process :5039 globaltime
-</pre>
-<a name="gdb"></a><h3>Debugging</h3>
-<a name="gdbShort"></a>
-<h4>Short Instructions</h4>
-<p>Android runs <code>gdbserver</code> on the device and an ARM aware <code>gdb</code>, named <code>arm-eabi-gdb</code>, on the desktop machine.</p>
-<ol>
- <li>First you need to
- run <code>gdbserver</code> on the device:<BR>
- <pre class="prettify">
- gdbserver :5039 /system/bin/<i>executable</i>
- </pre>
- <BR>
- The <code>:5039</code> tells gdbserver to listen on port 5039 on the localhost, which adb bridges from the host to the device. <code>executable</code> represents the command to debug, a common one being runtime -s which starts the entire system all running in a single process. <br>
- <br>
- </li>
- <li>Launch <code>gdb</code> on the desktop.
- This can be
- done easily with the following command in the shell from which you built:
- <pre class="prettify">
-gdbclient <i>executable</i>
-</pre>
- </li>
-</ol>
-<p>At this point <code>gdb</code> will connect with your device
- and you should be
- able to enter <code>c</code> to have the device start executing inside of the
- desktop <code>gdb</code> session.</p>
-<a name="gdbDetailed"></a>
-<h4>Detailed Instructions</h4>
-<p>If the short instructions don't work, these detailed instructions should:
-<ol>
- <li>On the device, launch a new command:
- <pre class="prettify">gdbserver :5039 /system/bin/<i>executable</i></pre>
- or attach to an existing process:
- <pre class="prettify">gdbserver :5039 --attach <i>pid</i></pre>
- </li>
- <li>On your workstation, forward port 5039 to the device with adb:
- <pre class="prettify">adb forward tcp:5039 tcp:5039</pre>
- </li>
- <li>Start a special version of <code>gdb</code> that lives in the "prebuilt" area of the source tree: <br>
- <code>prebuilt/Linux/toolchain-eabi-4.2.1/bin/arm-eabi-gdb</code> (for Linux) <br>
- <code>prebuilt/darwin-x86/toolchain-eabi-4.2.1/bin/arm-eabi-gdb</code> (for Darwin) </li>
- <li>If you can't find either special version of <code>gdb</code>, run <code>find prebuilt -name arm-eabi-gdb</code> in your source tree to find and run the latest version:
- <pre class="prettify">
-prebuilt/Linux/toolchain-eabi-4.2.1/bin/arm-eabi-gdb out/target/product/<i>product-name</i>/symbols/system/bin/<i>executable</i>
-</pre>
- <BR>
- Where <i>product-name</i> is the name of the device product that you're building (for example, <code>sooner</code>),
- and <i>executable</i> is the program to debug (usually <code>app_process</code> for an application).<br>
- <br>
- Make sure to use the copy of the executable in the symbols directory, not the
- primary android directory, because the one in the primary directory has
- been stripped of its debugging information.</li>
- <li>In <code>gdb</code>, Tell <code>gdb</code> where to find the shared libraries that will get loaded:
- <pre class="prettify">
-set solib-absolute-prefix /<i>absolute-source-path</i>/out/target/product/<i>product-name</i>/symbols
-set solib-search-path /<i>absolute-source-path</i>/out/target/product/<i>product-name</i>/symbols/system/lib
-</pre>
- <BR>
- <i>absolute-source-path</i> is the path to your source tree; for example, <code>/work/device</code> or <code>/Users/hoser/android/device</code>.<BR>
- <i>product-name</i> is the same as above; for example, <code>sooner</code>. <BR>
- <BR>
- Make sure you specify the correct directories—<code>gdb</code> may not tell you if you make a mistake.</li>
- <li>Connect to the device by issuing the <code>gdb</code> command:<BR>
- <pre class="prettify">
-target remote :5039
-</pre>
- <BR>
- <BR>
- The <code>:5039</code> tells <code>gdb</code> to connect to the localhost port 5039, which is bridged to the device by <code>adb</code>.<BR>
- <BR>
- You may need to inspire gdb to load some symbols by typing:
- <pre class="prettify">shared</pre>
- </li>
-</ol>
-<p>You should be connected and able to debug as you normally would. You can ignore the error about not
- finding the location for the thread creation breakpoint. It will be found when
- the linker loads <code>libc</code> into your process before hitting <code>main()</code>. Also note that
- the <code>gdb</code> remote protocol doesn't have a way for the device to
- tell the host about
- newly created threads so you will not always see notifications about newly
- created threads. Info about other threads will be queried from the
- device when a
- breakpoint is hit or you ask for it by running info thread. <a name="justInTime"></a>
-<h3>Just-In-Time Debug Feature</h3>
-If you see the red LED flashing it means a process is in that new
-state (crashed and waiting for GDB connection). If this happens to the
-system process, most likely your device will be frozen at this point. <strong>Do not press the home key</strong>. Bring the device to someone who can
-debug native crashes and ask for advice.
-If you're in the field and just want your device to continue as it
-would have without this feature (like cylonning), press home (a
-tombstone will be recorded as usual).
-
-To enable a process to be debugged this way, you need to set a property:
-<pre class="prettify">
-adb shell setprop debug.db.uid 10000
-</pre>
-and all processes with a <code>uid <= 10000</code> will be trapped in this
-manner. When one of them crashes, the tombstone is processed as usual, an explicit message is printed into the log, and the red LED starts
-flashing waiting for the Home key to be depressed (in which case it
-continues execution as usual).
-<pre class="prettify">
-I/DEBUG ( 27): ********************************************************
-I/DEBUG ( 27): * process 82 crashed. debuggerd waiting for gdbserver
-I/DEBUG ( 27): *
-I/DEBUG ( 27): * adb shell gdbserver :port --attach 82 &
-I/DEBUG ( 27): *
-I/DEBUG ( 27): * and press the HOME key.
-I/DEBUG ( 27): ********************************************************
-</pre>
-<p>When you see the entry above, make sure <code>adb</code> is forwarding port 5039 (you only need to do this once,
- unless the ADB server dies) and execute:</p>
-<pre class="prettify">% adb forward tcp:5039 tcp:5039</pre>
-Execute the line shown in the debug output, substituting 5039 for the proper <code>port</code>:
-<pre class="prettify">
-% adb shell gdbserver :5039 --attach 82 &
-</pre>
-<p>If the crashing process is based off zygote (that is, system_server and all
- applications), the default values for the <code>gdbclient</code> command, <code>app_process</code> binary and port <code>5039</code>, are correct, so you can execute:</p>
-<pre class="prettify">
-% cd <top of device source tree>
-% gdbclient
-</pre>
-<p>Otherwise you need to determine the path of the crashing binary and follow the
- steps as mentioned above (for example, <code>gdbclient hoser :5039</code> if
- the <code>hoser</code> command has failed).</p>
diff --git a/pdk/docs/porting/debugging_native.jd b/pdk/docs/porting/debugging_native.jd
deleted file mode 100755
index 44e8219..0000000
--- a/pdk/docs/porting/debugging_native.jd
+++ /dev/null
@@ -1,299 +0,0 @@
-page.title=Debugging Native Code
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#Capturing_logs">Capturing logs</a></li>
-<li><a href="#Debug_Scenarios">Debug Scenarios</a></li>
-</ul>
-</div>
-</div>
-
-<a name="Capturing_logs"></a><h3>Capturing logs</h3>
-
-<p>To capture log output:</p>
-<ol>
-<li> Produce a process list with <code>ps</code> (<code>ps -t</code> if you want verbose thread feedback).</li>
-<li> Dump kernel messages with <code>dmesg</code>.</li>
-<li> Get verbose log messages with <code>logcat '*:v' &</code> (running in bg with & is important).</li>
-
-</ol>
-
-<a name="Debug_Scenarios"></a><h3>Debug Scenarios</h3>
-<pre class="prettify">
- # command to device shell (via adb)
- % command to host pc shell
-</pre>
-<p>
-</p>
-
-<a name="Crash_but_no_exit_stuck"></a><h4>Crash but no exit...stuck</h4>
-
-<p>In this scenario, the GTalk app crashed but did not actually exit or seems stuck. Check the debug logs to see if there is anything unusual: </p>
-
-<pre class="prettify">
-# logcat &
-
-...
-E/WindowManager( 182): Window client android.util.BinderProxy@4089f948 has died!! Removing window.
-W/WindowManager( 182): **** WINDOW CLIENT android.view.WindowProxy@40882248 DIED!
-W/ActivityManager( 182): **** APPLICATION com.google.android.gtalk DIED!
-I/ServiceManager( 257): Executing: /android/bin/app_process (link=/tmp/android-servicemanager/com.google.android.gtalk, wrapper=/tmp/android-servi
-cemanager/com.google.android.gtalk)
-I/appproc ( 257): App process is starting with pid=257, class=android/activity/ActivityThread.
-I/ ( 257): java.io.FileDescriptor: class initialization
-I/SurfaceFlinger.HW( 182): About to give-up screen
-I/SurfaceFlinger.HW( 182): screen given-up
-I/SurfaceFlinger.HW( 182): Screen about to return
-I/SurfaceFlinger.HW( 182): screen returned
-I/SurfaceFlinger.HW( 182): About to give-up screen
-I/SurfaceFlinger.HW( 182): screen given-up
-I/SurfaceFlinger.HW( 182): Screen about to return
-...
-</pre>
-
-<p>
-The logs indicate that the system launched a replacement GTalk process but that it got stuck somehow:
-</p>
-
-<pre class="prettify">
-# ps
-PID PPID VSIZE RSS WCHAN PC NAME
-257 181 45780 5292 ffffffff 53030cb4 S com.google.andr
-</pre>
-
-<p>
-GTalk's PC is at 53030cb4. Look at the memory map to find out what lib is 0x53......
-</p>
-
-<pre class="prettify">
-# cat /proc/257/maps
-...
-51000000-5107c000 rwxp 00000000 1f:03 619 /android/lib/libutils.so
-52000000-52013000 rwxp 00000000 1f:03 639 /android/lib/libz.so
-53000000-53039000 rwxp 00000000 1f:03 668 /android/lib/libc.so
-53039000-53042000 rw-p 53039000 00:00 0
-54000000-54002000 rwxp 00000000 1f:03 658 /android/lib/libstdc++.so
-...
-</pre>
-
-<p>
-Disassemble <code>libc</code> to figure out what is going on:
-</p>
-
-<pre class="prettify">
-% prebuilt/Linux/toolchain-eabi-4.2.1/bin/arm-elf-objdump -d out/target/product/sooner/symbols/android/lib/libc.so
-
-00030ca4 <__futex_wait>:
- 30ca4: e1a03002 mov r3, r2
- 30ca8: e1a02001 mov r2, r1
- 30cac: e3a01000 mov r1, #0 ; 0x0
- 30cb0: ef9000f0 swi 0x009000f0
- 30cb4: e12fff1e bx lr
-</pre>
-
-<a name="Blocked_in_a_syscall"></a><h4>Blocked in a syscall</h4>
-
-<p>
-In this scenario, the system is blocked in a syscall. To debug using <code>gdb</code>, first tell <code>adb</code> to forward the <code>gdb</code> port:
-</p>
-
-<pre class="prettify">
-
-% adb forward tcp:5039 tcp:5039
-</pre>
-
-<p>
-Start the <code>gdb</code> server and attach to process 257 (as demonstrated in the previous example):
-</p>
-
-<pre class="prettify">
-# gdbserver :5039 --attach 257 &
-Attached; pid = 257
-Listening on port 5039
-
-% prebuilt/Linux/toolchain-eabi-4.2.1/bin/arm-elf-gdb out/target/product/sooner/system/bin/app_process
-(gdb) set solib-absolute-prefix /work/android/device/out/target/product/sooner/symbols
-(gdb) set solib-search-path /work/android/device/out/target/product/sooner/symbols/android/lib
-(gdb) target remote :5039
-Remote debugging using :5039
-0x53030cb4 in ?? ()
-Current language: auto; currently asm
-</pre>
-
-<p>
-Don't let other threads get scheduled while we're debugging.
-You should "set scheduler-locking off" before issuing a "continue", or else your thread may get stuck on a futex or other
-spinlock because no other thread can release it.
-</p>
-
-<pre class="prettify">
-(gdb) set scheduler-locking on
-</pre>
-
-<pre class="prettify">
-(gdb) where
-#0 __futex_wait () at system/klibc/android/atomics_arm.S:88
-#1 0x53010eb8 in pthread_cond_timedwait (cond=0x12081c, mutex=0x120818, abstime=0xffffffff)
- at system/klibc/android/pthread.c:490
-#2 0x6b01c848 in monitorWait (mon=0x120818, self=0x6b039ba4, ms=0, ns=0) at extlibs/jamvm-1.4.1/src/lock.c:194
-#3 0x6b01d1d8 in objectWait (obj=0x408091c0, ms=0, ns=0) at extlibs/jamvm-1.4.1/src/lock.c:420
-#4 0x6b01d4c8 in jamWait (clazz=0xfffffffc, mb=0x0, ostack=0x2e188) at extlibs/jamvm-1.4.1/src/natives.c:91
-#5 0x6b013b2c in resolveNativeWrapper (clazz=0x408001d0, mb=0x41798, ostack=0x2e188) at extlibs/jamvm-1.4.1/src/dll.c:236
-#6 0x6b015c04 in executeJava () at extlibs/jamvm-1.4.1/src/interp.c:2614
-#7 0x6b01471c in executeMethodVaList (ob=0x0, clazz=0x40808f20, mb=0x12563c, jargs=0xbe9229f4)
- at extlibs/jamvm-1.4.1/src/execute.c:91
-#8 0x6b01bcd0 in Jam_CallStaticVoidMethod (env=0xfffffffc, klass=0x0, methodID=0x12563c)
- at extlibs/jamvm-1.4.1/src/jni.c:1063
-#9 0x58025b2c in android::AndroidRuntime::callStatic (this=0xfffffffc,
- className=0xbe922f0a "android/activity/ActivityThread", methodName=0x57000b7c "main")
- at libs/android_runtime/AndroidRuntime.cpp:215
-#10 0x57000504 in android::app_init (className=0xbe922f0a "android/activity/ActivityThread")
- at servers/app/library/app_init.cpp:20
-#11 0x000089b0 in android::sp<android::ProcessState>::~sp ()
-#12 0x000089b0 in android::sp<android::ProcessState>::~sp ()
-Previous frame identical to this frame (corrupt stack?)
-
-(gdb) info threads
- 7 thread 263 __ioctl () at system/klibc/syscalls/__ioctl.S:12
- 6 thread 262 accept () at system/klibc/syscalls/accept.S:12
- 5 thread 261 __futex_wait () at system/klibc/android/atomics_arm.S:88
- 4 thread 260 __futex_wait () at system/klibc/android/atomics_arm.S:88
- 3 thread 259 __futex_wait () at system/klibc/android/atomics_arm.S:88
- 2 thread 258 __sigsuspend () at system/klibc/syscalls/__sigsuspend.S:12
- 1 thread 257 __futex_wait () at system/klibc/android/atomics_arm.S:88
-
-
-(gdb) thread 7
-[Switching to thread 7 (thread 263)]#0 __ioctl () at system/klibc/syscalls/__ioctl.S:12
-12 movs r0, r0
-(gdb) bt
-#0 __ioctl () at system/klibc/syscalls/__ioctl.S:12
-#1 0x53010704 in ioctl (fd=-512, request=-1072143871) at system/klibc/android/ioctl.c:22
-#2 0x51040ac0 in android::IPCThreadState::talkWithDriver (this=0x1207b8, doReceive=true) at RefBase.h:83
-#3 0x510418a0 in android::IPCThreadState::joinThreadPool (this=0x1207b8, isMain=false)
- at libs/utils/IPCThreadState.cpp:343
-#4 0x51046004 in android::PoolThread::threadLoop (this=0xfffffe00) at libs/utils/ProcessState.cpp:52
-#5 0x51036428 in android::Thread::_threadLoop (user=0xfffffe00) at libs/utils/Threads.cpp:1100
-#6 0x58025c68 in android::AndroidRuntime::javaThreadShell (args=0x105ffe28) at libs/android_runtime/AndroidRuntime.cpp:540
-
-(gdb) thread 6
-[Switching to thread 6 (thread 262)]#0 accept () at system/klibc/syscalls/accept.S:12
-12 movs r0, r0
-(gdb) bt
-#0 accept () at system/klibc/syscalls/accept.S:12
-#1 0x6b0334e4 in jdwpAcceptConnection (state=0xfffffe00) at extlibs/jamvm-1.4.1/jdwp/JdwpNet.c:213
-#2 0x6b032660 in jdwpThreadEntry (self=0x4d020) at extlibs/jamvm-1.4.1/jdwp/JdwpMain.c:37
-#3 0x6b022c2c in shell (args=0x4d960) at extlibs/jamvm-1.4.1/src/thread.c:629
-
-(gdb) thread 5
-[Switching to thread 5 (thread 261)]#0 __futex_wait () at system/klibc/android/atomics_arm.S:88
-88 bx lr
-(gdb) bt
-#0 __futex_wait () at system/klibc/android/atomics_arm.S:88
-#1 0x53010f48 in pthread_cond_timeout (cond=0x6b039b64, mutex=0x6b039b60, msecs=0) at system/klibc/android/pthread.c:513
-#2 0x6b01c8d0 in monitorWait (mon=0x6b039b60, self=0x4d400, ms=1000, ns=272629312) at extlibs/jamvm-1.4.1/src/lock.c:183
-#3 0x6b022084 in threadSleep (thread=0x4d400, ms=1000, ns=272629312) at extlibs/jamvm-1.4.1/src/thread.c:215
-#4 0x6b00d4fc in asyncGCThreadLoop (self=0x4d400) at extlibs/jamvm-1.4.1/src/alloc.c:1179
-#5 0x6b022c2c in shell (args=0x4d480) at extlibs/jamvm-1.4.1/src/thread.c:629
-
-(gdb) thread 4
-[Switching to thread 4 (thread 260)]#0 __futex_wait () at system/klibc/android/atomics_arm.S:88
-88 bx lr
-(gdb) bt
-#0 __futex_wait () at system/klibc/android/atomics_arm.S:88
-#1 0x53010eb8 in pthread_cond_timedwait (cond=0x6b039934, mutex=0x6b039930, abstime=0x0)
- at system/klibc/android/pthread.c:490
-#2 0x6b00b3ec in referenceHandlerThreadLoop (self=0x4d360) at extlibs/jamvm-1.4.1/src/alloc.c:1247
-#3 0x6b022c2c in shell (args=0x4d960) at extlibs/jamvm-1.4.1/src/thread.c:629
-
-(gdb) thread 3
-[Switching to thread 3 (thread 259)]#0 __futex_wait () at system/klibc/android/atomics_arm.S:88
-88 bx lr
-(gdb) bt
-#0 __futex_wait () at system/klibc/android/atomics_arm.S:88
-#1 0x53010eb8 in pthread_cond_timedwait (cond=0x6b03992c, mutex=0x6b039928, abstime=0x0)
- at system/klibc/android/pthread.c:490
-#2 0x6b00b1dc in finalizerThreadLoop (self=0x4d8e0) at extlibs/jamvm-1.4.1/src/alloc.c:1238
-#3 0x6b022c2c in shell (args=0x4d960) at extlibs/jamvm-1.4.1/src/thread.c:629
-
-(gdb) thread 2
-[Switching to thread 2 (thread 258)]#0 __sigsuspend () at system/klibc/syscalls/__sigsuspend.S:12
-12 movs r0, r0
-(gdb) bt
-#0 __sigsuspend () at system/klibc/syscalls/__sigsuspend.S:12
-#1 0x6b023814 in dumpThreadsLoop (self=0x51b98) at extlibs/jamvm-1.4.1/src/thread.c:1107
-#2 0x6b022c2c in shell (args=0x51b58) at extlibs/jamvm-1.4.1/src/thread.c:629
-</pre>
-
-<a name="Crash_in_C_C_code"></a><h4>Crash in C / C++ code</h4>
-<p>If it crashes, connect with <code>adb</code> and run <code>logcat</code> on the device. You should see output like this:</p>
-
-<pre class="prettify">
-I/ActivityManager( 188): Starting activity: Intent { component=com.android.calendar.MonthScreen }
-I/ActivityManager( 188): Starting application com.android.calendar to host activity com.android.calendar.MonthScree
-n
-I/ServiceManager( 417): Executing: /android/bin/app_process (link=/android/bin/app_process, wrapper=/android/bin/app_process)
-I/DEBUG: -- observer of pid 417 starting --
-I/appproc ( 417): App process is starting with pid=417, class=android/activity/ActivityThread.
-I/DEBUG: -- observer of pid 417 exiting --
-I/DEBUG: -- observer of pid 420 starting --
-I/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
-I/DEBUG: pid: 373, tid: 401 >>> android.content.providers.pim <<<
-I/DEBUG: signal 11 (SIGSEGV), fault addr 00000000
-I/DEBUG: r0 ffffffff r1 00000000 r2 00000454 r3 002136d4
-I/DEBUG: r4 002136c0 r5 40804810 r6 0022dc70 r7 00000010
-I/DEBUG: r8 0020a258 r9 00000014 10 6b039074 fp 109ffcf8
-I/DEBUG: ip 6b039e90 sp 109ffc0c lr 580239f0 pc 6b0156a0
-I/DEBUG: #01 pc 6b0156a0 /android/lib/libjamvm.so
-I/DEBUG: #01 lr 580239f0 /android/lib/libandroid_runtime.so
-I/DEBUG: #02 pc 6b01481c /android/lib/libjamvm.so
-I/DEBUG: #03 pc 6b0148a4 /android/lib/libjamvm.so
-I/DEBUG: #04 pc 6b00ebc0 /android/lib/libjamvm.so
-I/DEBUG: #05 pc 6b02166c /android/lib/libjamvm.so
-I/DEBUG: #06 pc 6b01657c /android/lib/libjamvm.so
-I/DEBUG: #07 pc 6b01481c /android/lib/libjamvm.so
-I/DEBUG: #08 pc 6b0148a4 /android/lib/libjamvm.so
-I/DEBUG: #09 pc 6b0235c0 /android/lib/libjamvm.so
-I/DEBUG: #10 pc 5300fac4 /android/lib/libc.so
-I/DEBUG: #11 pc 5300fc5c /android/lib/libc.so
-I/DEBUG: -- observer of pid 373 exiting --
-I/DEBUG: -- observer of pid 423 starting --
-</pre>
-
-<p>If debugging output indicates an error in C or C++ code, the addresses aren't particularly useful, but the debugging symbols aren't present on the device. Use the "stack" tool to convert these addresses to files and line numbers, for example:</p>
-
-<pre class="prettify">
-pid: 373, tid: 401 >>> android.content.providers.pim <<<
-
- signal 11 (SIGSEGV), fault addr 00000000
- r0 ffffffff r1 00000000 r2 00000454 r3 002136d4
- r4 002136c0 r5 40804810 r6 0022dc70 r7 00000010
- r8 0020a258 r9 00000014 10 6b039074 fp 109ffcf8
- r8 0020a258 r9 00000014 10 6b039074 fp 109ffcf8
-
- ADDR FUNCTION FILE:LINE
- 6b0156a0 executeJava extlibs/jamvm-1.4.1/src/interp.c:2674
- 580239f0 android_util_Parcel_freeBuffer libs/android_runtime/android_util_Binder.cpp:765
- 6b01481c executeMethodVaList extlibs/jamvm- 1.4.1/src/execute.c:91
- 6b0148a4 executeMethodArgs extlibs/jamvm-1.4.1/src/execute.c:67
- 6b00ebc0 initClass extlibs/jamvm-1.4.1/src/class.c:1124
- 6b02166c resolveMethod extlibs/jamvm- 1.4.1/src/resolve.c:197
- 6b01657c executeJava extlibs/jamvm-1.4.1/src/interp.c:2237
- 6b01481c executeMethodVaList extlibs/jamvm-1.4.1/src/execute.c:91
- 6b0148a4 executeMethodArgs extlibs/jamvm- 1.4.1/src/execute.c:67
- 6b0235c0 threadStart extlibs/jamvm-1.4.1/src/thread.c:355
- 5300fac4 __thread_entry system/klibc/android/pthread.c:59
- 5300fc5c pthread_create system/klibc/android/pthread.c:182
-</pre>
-
-<p>Or you can run <code>logcat</code> without any parameters and it will read from <code>stdin</code>. You can then paste output into the terminal or pipe it. Run <code>logcat</code> from the top of the tree in the environment in which you do builds so that the application can determine relative paths to the toolchain to use to decode the object files.
-</p>
-</body>
-</html>
diff --git a/pdk/docs/porting/display_drivers.jd b/pdk/docs/porting/display_drivers.jd
deleted file mode 100755
index 570f6f6..0000000
--- a/pdk/docs/porting/display_drivers.jd
+++ /dev/null
@@ -1,345 +0,0 @@
-page.title=Display Drivers
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidDisplayDriverFunctionality">Functionality</a></li>
-<li><a href="#androidDisplayDriversSourceTemplate">Implementing Your Own Driver (Driver Template)</a></li>
-<li><a href="#androidDisplayDriversTroubleshooting">Troubleshooting</a></li>
-</ul>
-</div>
-</div>
-
-<p>This section describes how the display driver functions and offers a functional template designed to help you build your own device-specific driver.</p>
-<p>Android relies on the standard frame buffer device (<code>/dev/fb0</code> or <code>/dev/graphics/fb0</code>) and driver as described in the <code>linux/fb.h</code> kernel header file. For more information regarding the standard Linux frame buffer, please see <a href="http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.24.y.git;a=blob;f=Documentation/fb/framebuffer.txt">The Frame Buffer Device</a> at <a href="http://kernel.org">http://kernel.org</a>.
-
-
-<a name="androidDisplayDriverFunctionality"></a><h3>Functionality</h3>
-
-<p>In Android, every window gets implemented with an underlying Surface object, an object that gets placed on the framebuffer by SurfaceFlinger, the system-wide screen composer. Each Surface is double-buffered. The back buffer is where drawing takes place and the front buffer is used for composition. </p>
-<p> When <code>unlockCanvas()</code> is called, the back buffer is posted, which
- means that it gets displayed and becomes available again. Android flips the front and back buffers, ensuring a minimal amount of buffer copying and that there is always a buffer for SurfaceFlinger to use for composition (which ensures that the screen never flickers or shows artifacts).</p>
-<p>Android makes two requirements of the driver: a linear address space of mappable memory that it can write to directly and support for the rgb_565 pixel format. A typical frame display includes:</p>
-<ul>
- <li>accessing the driver by calling open on <code>/dev/fb0</code></li>
- <li>using the <code>FBIOGET_FSCREENINFO</code> and <code>FBIOGET_VSCREENINFO</code> Input / Output Control (ioctl) calls to retrieve information about the screen</li>
- <li>using <code>FBIOPUT_VSCREENINFO</code> ioctl to attempt to create a virtual display twice the size of the physical screen and to set the pixel format to rgb_565. If this succeeds, double buffering is accomplished with video memory. </li>
-</ul>
-<p>When a page flip is required, Android makes another <code>FBIOPUT_VSCREENINFO</code> ioctl call with a new y-offset pointing to the other buffer in video memory. This ioctl, in turn, invokes the driver's <code>.fb_pan_display</code> function in order to do the actual flip. If there isn't sufficient video memory, regular memory is used and is just copied into the video memory when it is time do the flip. After allocating the video memory and setting the pixel format, Android uses <code>mmap()</code> to map the memory into the process's address space. All writes to the frame buffer are done through this mmaped memory.</p>
-<p>To maintain adequate performance, framebuffer memory should be cacheable. If you use write-back, flush the cache before the frame buffer is written from DMA to the LCD. If that isn't possible, you may use write-through. As a last resort, you can also use uncached memory with the write-bugger enabled, but performance will suffer.</p>
-
-
-<a name="androidDisplayDriversSourceTemplate"></a><h3>Implementing Your Own Driver (Driver Template)</h3>
-
-<p>The following sample driver offers a functional example to help you build your own display driver. Modify <code>PGUIDE_FB...</code> macros as desired to match the requirements of your own device hardware.</p>
-<pre class="prettyprint">
-/*
- * pguidefb.c
- *
- * Copyright 2007, Google Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
-
-
-/*
- * ANDROID PORTING GUIDE: FRAME BUFFER DRIVER TEMPLATE
- *
- * This template is designed to provide the minimum frame buffer
- * functionality necessary for Android to display properly on a new
- * device. The PGUIDE_FB macros are meant as pointers indicating
- * where to implement the hardware specific code necessary for the new
- * device. The existence of the macros is not meant to trivialize the
- * work required, just as an indication of where the work needs to be
- * done.
- */
-
-#include <linux/module.h>
-#include <linux/kernel.h>
-#include <linux/errno.h>
-#include <linux/string.h>
-#include <linux/slab.h>
-#include <linux/delay.h>
-#include <linux/mm.h>
-#include <linux/fb.h>
-#include <linux/init.h>
-#include <linux/platform_device.h>
-
-
-/* Android currently only uses rgb565 in the hardware framebuffer */
-#define ANDROID_BYTES_PER_PIXEL 2
-
-/* Android will use double buffer in video if there is enough */
-#define ANDROID_NUMBER_OF_BUFFERS 2
-
-/* Modify these macros to suit the hardware */
-
-#define PGUIDE_FB_ROTATE
- /* Do what is necessary to cause the rotation */
-
-#define PGUIDE_FB_PAN
- /* Do what is necessary to cause the panning */
-
-#define PGUIDE_FB_PROBE_FIRST
- /* Do any early hardware initialization */
-
-#define PGUIDE_FB_PROBE_SECOND
- /* Do any later hardware initialization */
-
-#define PGUIDE_FB_WIDTH 320
- /* Return the width of the screen */
-
-#define PGUIDE_FB_HEIGHT 240
- /* Return the heighth of the screen */
-
-#define PGUIDE_FB_SCREEN_BASE 0
- /* Return the virtual address of the start of fb memory */
-
-#define PGUIDE_FB_SMEM_START PGUIDE_FB_SCREEN_BASE
- /* Return the physical address of the start of fb memory */
-
-#define PGUIDE_FB_REMOVE
- /* Do any hardware shutdown */
-
-
-
-
-
-struct pguide_fb {
- int rotation;
- struct fb_info fb;
- u32 cmap[16];
-};
-
-static inline u32 convert_bitfield(int val, struct fb_bitfield *bf)
-{
- unsigned int mask = (1 << bf->length) - 1;
-
- return (val >> (16 - bf->length) & mask) << bf->offset;
-}
-
-
-/* set the software color map. Probably doesn't need modifying. */
-static int
-pguide_fb_setcolreg(unsigned int regno, unsigned int red, unsigned int green,
- unsigned int blue, unsigned int transp, struct fb_info *info)
-{
- struct pguide_fb *fb = container_of(info, struct pguide_fb, fb);
-
- if (regno < 16) {
- fb->cmap[regno] = convert_bitfield(transp, &fb->fb.var.transp) |
- convert_bitfield(blue, &fb->fb.var.blue) |
- convert_bitfield(green, &fb->fb.var.green) |
- convert_bitfield(red, &fb->fb.var.red);
- return 0;
- }
- else {
- return 1;
- }
-}
-
-/* check var to see if supported by this device. Probably doesn't
- * need modifying.
- */
-static int pguide_fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
-{
- if((var->rotate & 1) != (info->var.rotate & 1)) {
- if((var->xres != info->var.yres) ||
- (var->yres != info->var.xres) ||
- (var->xres_virtual != info->var.yres) ||
- (var->yres_virtual >
- info->var.xres * ANDROID_NUMBER_OF_BUFFERS) ||
- (var->yres_virtual < info->var.xres )) {
- return -EINVAL;
- }
- }
- else {
- if((var->xres != info->var.xres) ||
- (var->yres != info->var.yres) ||
- (var->xres_virtual != info->var.xres) ||
- (var->yres_virtual >
- info->var.yres * ANDROID_NUMBER_OF_BUFFERS) ||
- (var->yres_virtual < info->var.yres )) {
- return -EINVAL;
- }
- }
- if((var->xoffset != info->var.xoffset) ||
- (var->bits_per_pixel != info->var.bits_per_pixel) ||
- (var->grayscale != info->var.grayscale)) {
- return -EINVAL;
- }
- return 0;
-}
-
-
-/* Handles screen rotation if device supports it. */
-static int pguide_fb_set_par(struct fb_info *info)
-{
- struct pguide_fb *fb = container_of(info, struct pguide_fb, fb);
- if(fb->rotation != fb->fb.var.rotate) {
- info->fix.line_length =
- info->var.xres * ANDROID_BYTES_PER_PIXEL;
- fb->rotation = fb->fb.var.rotate;
- PGUIDE_FB_ROTATE;
- }
- return 0;
-}
-
-
-/* Pan the display if device supports it. */
-static int pguide_fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
-{
- struct pguide_fb *fb __attribute__ ((unused))
- = container_of(info, struct pguide_fb, fb);
-
- /* Set the frame buffer base to something like:
- fb->fb.fix.smem_start + fb->fb.var.xres *
- ANDROID_BYTES_PER_PIXEL * var->yoffset
- */
- PGUIDE_FB_PAN;
-
- return 0;
-}
-
-
-static struct fb_ops pguide_fb_ops = {
- .owner = THIS_MODULE,
- .fb_check_var = pguide_fb_check_var,
- .fb_set_par = pguide_fb_set_par,
- .fb_setcolreg = pguide_fb_setcolreg,
- .fb_pan_display = pguide_fb_pan_display,
-
- /* These are generic software based fb functions */
- .fb_fillrect = cfb_fillrect,
- .fb_copyarea = cfb_copyarea,
- .fb_imageblit = cfb_imageblit,
-};
-
-
-static int pguide_fb_probe(struct platform_device *pdev)
-{
- int ret;
- struct pguide_fb *fb;
- size_t framesize;
- uint32_t width, height;
-
- fb = kzalloc(sizeof(*fb), GFP_KERNEL);
- if(fb == NULL) {
- ret = -ENOMEM;
- goto err_fb_alloc_failed;
- }
- platform_set_drvdata(pdev, fb);
-
- PGUIDE_FB_PROBE_FIRST;
- width = PGUIDE_FB_WIDTH;
- height = PGUIDE_FB_HEIGHT;
-
-
- fb->fb.fbops = &pguide_fb_ops;
-
- /* These modes are the ones currently required by Android */
-
- fb->fb.flags = FBINFO_FLAG_DEFAULT;
- fb->fb.pseudo_palette = fb->cmap;
- fb->fb.fix.type = FB_TYPE_PACKED_PIXELS;
- fb->fb.fix.visual = FB_VISUAL_TRUECOLOR;
- fb->fb.fix.line_length = width * ANDROID_BYTES_PER_PIXEL;
- fb->fb.fix.accel = FB_ACCEL_NONE;
- fb->fb.fix.ypanstep = 1;
-
- fb->fb.var.xres = width;
- fb->fb.var.yres = height;
- fb->fb.var.xres_virtual = width;
- fb->fb.var.yres_virtual = height * ANDROID_NUMBER_OF_BUFFERS;
- fb->fb.var.bits_per_pixel = 16;
- fb->fb.var.activate = FB_ACTIVATE_NOW;
- fb->fb.var.height = height;
- fb->fb.var.width = width;
-
- fb->fb.var.red.offset = 11;
- fb->fb.var.red.length = 5;
- fb->fb.var.green.offset = 5;
- fb->fb.var.green.length = 6;
- fb->fb.var.blue.offset = 0;
- fb->fb.var.blue.length = 5;
-
- framesize = width * height *
- ANDROID_BYTES_PER_PIXEL * ANDROID_NUMBER_OF_BUFFERS;
- fb->fb.screen_base = PGUIDE_FB_SCREEN_BASE;
- fb->fb.fix.smem_start = PGUIDE_FB_SMEM_START;
- fb->fb.fix.smem_len = framesize;
-
- ret = fb_set_var(&fb->fb, &fb->fb.var);
- if(ret)
- goto err_fb_set_var_failed;
-
- PGUIDE_FB_PROBE_SECOND;
-
- ret = register_framebuffer(&fb->fb);
- if(ret)
- goto err_register_framebuffer_failed;
-
- return 0;
-
-
-err_register_framebuffer_failed:
-err_fb_set_var_failed:
- kfree(fb);
-err_fb_alloc_failed:
- return ret;
-}
-
-static int pguide_fb_remove(struct platform_device *pdev)
-{
- struct pguide_fb *fb = platform_get_drvdata(pdev);
-
- PGUIDE_FB_REMOVE;
-
- kfree(fb);
- return 0;
-}
-
-
-static struct platform_driver pguide_fb_driver = {
- .probe = pguide_fb_probe,
- .remove = pguide_fb_remove,
- .driver = {
- .name = "pguide_fb"
- }
-};
-
-static int __init pguide_fb_init(void)
-{
- return platform_driver_register(&pguide_fb_driver);
-}
-
-static void __exit pguide_fb_exit(void)
-{
- platform_driver_unregister(&pguide_fb_driver);
-}
-
-module_init(pguide_fb_init);
-module_exit(pguide_fb_exit);
-
-MODULE_LICENSE("GPL");
-</pre>
-
-
-<a name="androidDisplayDriversTroubleshooting"></a><h3>Troubleshooting</h3>
-
-<p>Both of the following problems have a similar cause:</p>
-<ul>
- <li><strong>Number keys</strong>: In the dialer application, when a number key is pressed to dial a phone number, the number doesn't display on the screen until after the next number has been pressed. </li>
- <li><strong>Arrow keys</strong>: When an arrow key is pressed, the desired icon doesn't get highlighted. For example, if you browse through icons in the Applications menu, you might notice that icons aren't highlighted as expected when you use the arrow key to navigate between options.</li>
-</ul>
-<p>Both problems are caused by an incorrect implementation of the frame buffer's page flipping. Key events are captured, but the graphical interface appears to drop every other frame. </p>
-<p>Android relies on a double buffer to smoothly render page flips (please see <a href="#androidDisplayDriverFunctionality">Functionality</a> for details).</p>
diff --git a/pdk/docs/porting/getting_source_code.jd b/pdk/docs/porting/getting_source_code.jd
deleted file mode 100755
index 30a2f9f..0000000
--- a/pdk/docs/porting/getting_source_code.jd
+++ /dev/null
@@ -1,128 +0,0 @@
-page.title=Getting Source Code
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<a name="toc"/>
-<div style="padding:10px">
-<a href="#androidSourceSetupBuildGitSetup">Introduction</a><br/>
-<a href="#androidSourceSetupBuildGitSetupInstall">Installing and Configuring Git</a><br/>
-<a href="#androidSourceSetupBuildGitSetupServer">Establishing Server Access</a><br/><div style="padding-left:40px">
-
-<a href="#androidSourceSetupBuildGitSetupServerRSAKeys">Generating RSA Keys</a><br/>
-<a href="#androidSourceSetupBuildGitSetupServerVerifyConnection">Verifying a Connection to the Git Server</a><br/></div>
-<a href="#androidSourceSetupGetCode">Downloading Code</a><br/>
-<a href="#androidSourceSetupExtractingPatch">Extracting an Android Patch</a><br/></div>
-
-<a name="androidSourceSetupBuildGitSetup"></a><h2>Introduction</h2>
-
-<p>Android relies on Git, a version control system, to install the Android platform. You will need to install Git 1.5.2 or greater in order to access the source tree. Please visit <a href="http://git.or.cz/">http://git.or.cz/</a> for more information regarding Git.</p>
-<p>Git permits you to control access to working directories, and we recommend that you use it to limit Android repository access to only a few people within your organization (please refer to your Google NDA for potential contractual restraints on sharing Android source access). </p>
-<p>You may clone Google's repository to a local copy for sharing internally (see Git documentation for details).</p>
-
-
-<a name="androidSourceSetupBuildGitSetupInstall"></a><h2>Installing and Configuring Git</h2>
-
-<p>To install the Git package, execute:</p>
-<pre class="prettyprint">
-% sudo apt-get install git-core
-</pre>
-
-
-<a name="androidSourceSetupBuildGitSetupServer"></a><h2>Establishing Server Access</h2>
-
-<p>Once Git is cleanly installed, you need to establish a connection with Google's Git server, a connection that requires an RSA key in order to authenticate requests.</p>
-
-
-<a name="androidSourceSetupBuildGitSetupServerRSAKeys"></a><h3>Generating RSA Keys</h3>
-
-<p>Each developer must have a unique RSA key in order to access Android source code. To generate an RSA key: </p>
-<p>
-<ol>
-<li>Type:<br/>
-<pre class="prettyprint">% ssh-keygen -t rsa -C email@domain.com</pre><br/>
-You must use a valid email address to create your key.</li>
-<li>When prompted, indicate the file to which you wish to write your key (<code>id_rsa</code> in this example).</li>
-<li>When prompted, associate a passphrase with your key.</li>
-<li>Upon success, you should have two files saved to the designated directory: </li>
-<ul>
- <li><code>id_rsa</code>: This file contains the private half of your RSA key. You shouldn't share this file with anyone. </li>
- <li><code>id_rsa.pub</code>: This is the public half or your RSA key and you should send it to your Google technical account manager.</li>
- </ul>
-</ol>
-</p>
-<p>Send your Google Account Manager your public key file in order to establish Git server access. </p>
-
-
-<a name="androidSourceSetupBuildGitSetupServerVerifyConnection"></a><h3>Verifying a Connection to the Git Server</h3>
-
-<p>Once you have generated an RSA key and shared the public file with Google, you can test your connection with the Git server with the following command:</p>
-<pre class="prettyprint">
-% ssh android-git.ext.google.com
-</pre>
-
-<p>You should receive one of the following results:</p>
-
-<table border=1 cellpadding=2 cellspacing=0>
- <tbody><tr>
- <th scope="col">Result</th>
- <th scope="col">Cause</th>
- <th scope="col">Action</th>
- </tr>
- <tr>
- <td>
-<code>fatal: What do you think I am? A shell?<BR>
-Connection to android-git closed.</code>
-</pre> </td>
- <td>Success</td>
- <td>None. You successfully connected to the Git server. (You should not have shell access and it's expected to receive this error.)</td>
- </tr>
- <tr>
- <td>ssh hangs and eventually times out. </td>
- <td>Your setup is failing to locate and establish a basic connection. </td>
- <td>Google needs to debug network settings. </td>
- </tr>
- <tr>
- <td>Error: Permission denied <public key> </td>
- <td>Either you are not using the matching username or the RSA private key does not match the public key. </td>
- <td>Try executing:<BR>
- <code>
-% ssh $USER@android-
- git.ext.google.com
-</code></td>
- </tr>
-</table>
-
-
-<a name="androidSourceSetupGetCode"></a><h2>Downloading Code</h2>
-
-<p>Android source code is maintained in two repositories: <code>device</code> and <code>kernel</code>. The <code>device</code> repository includes the Android framework (things like the Activity Manager, Window Manager, Telephony Manager, View System, etc.). The <code>kernel</code> repository includes the core code necessary to run the operating system (things like the Display Driver, Camera Driver, Keypad Driver, Power Management, etc.). (Please see <a href="http://code.google.com/android/what-is-android.html">What is Android?</a> for details.)</p>
-
-<p>Save device and kernel code at the same directory level, for example:</p>
-<p>
-<ul><li><code>/home/joe/android/device</code></li>
-<li><code>/home/joe/android/kernel</code></li>
-</ul></p>
-<p><b>Device Code</b></p>
-<p>To download device code, you need your username and a unique <code><path></code> string supplied by Google to execute the following:</p>
-<pre class="prettyprint">
-% git-clone $USER@android-git.ext.google.com:<path>/device.git
-</pre>
-
-<p><b>Kernel Code</b></p>
-<p>To download kernel code, you need your username and a unique <code><path></code> string supplied by Google to execute the following:</p>
-<pre class="prettyprint">
-% git-clone $USER@android-git.ext.google.com:<path>/kernel.git
-</pre>
-
-
-
-<a name="androidSourceSetupExtractingPatch"></a><h2>Extracting an Android Patch</h2>
-
-<p>You likely already have Linux running on your platform and only need to integrate Android-specific changes. The following directions describe how to extract an Android patch.</p>
-<ol>
- <li>Download a generic version of the Linux kernel that matches the Linux version downloaded with the Android Kernel code.</li>
- <li>Run <code>diff</code> on the two kernel packages to get Android-specific changes.</li>
- <li>Apply the patch to your target kernel and build.</li>
-</ol>
-
diff --git a/pdk/docs/porting/gps.jd b/pdk/docs/porting/gps.jd
deleted file mode 100755
index 1449460..0000000
--- a/pdk/docs/porting/gps.jd
+++ /dev/null
@@ -1,60 +0,0 @@
-page.title=GPS
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidGPSBuildingDriver">Building a GPS Library</a></li>
-<li><a href="#androidGPSInterface">Interface</a></li>
-</ul>
-</div>
-</div>
-
-<p>Android defines a user space C abstraction interface for GPS hardware. The interface header is defined in <code>include/hardware/gps.h</code>. In order to integate GPS with Android, you need to build a shared library that implements this interface. </p>
-
-
-<a name="androidGPSBuildingDriver"></a><h3>Building a GPS Library</h3>
-
-<p>To implement a GPS driver, create a shared library that implements the interface defined in <code>gps.h</code>. You must name your shared library <code>libgps.so</code> so that it will get loaded from <code>/system/lib</code> at runtime. Place GPS sources and Android.mk in <code>vendor/acme/chipset_or_board/gps/</code> (where "acme" is your organization name and "chipset_or_board" is your hardware target).</p>
-
-<p>The following stub <code>Android.mk</code> file ensures that <code>libgps</code> compiles and links to the appropriate libraries:</p>
-
-<pre class="prettify">
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := libgps
-
-LOCAL_STATIC_LIBRARIES:= \
-# include any static library dependencies
-
-LOCAL_SHARED_LIBRARIES := \
-# include any shared library dependencies
-
-LOCAL_SRC_FILES += \
-# include your source files. eg. MyGpsLibrary.cpp
-
-LOCAL_CFLAGS += \
-# include any needed compile flags
-
-LOCAL_C_INCLUDES:= \
-# include any needed local header files
-
-include $(BUILD_SHARED_LIBRARY)
-</pre>
-
-
-<a name="androidGPSInterface"></a><h3>Interface</h3>
-
-
-
-<p><span class="lh3"><a name="androidDoxygenNote"></a></span>
-
-<p class="note"><strong>Note</strong>: This document relies on some Doxygen-generated content that appears in an iFrame below. To return to the Doxygen default content for this page, <a href="gps.html">click here</a>.</p>
-
-
-<iframe onLoad="resizeDoxFrameHeight();" src="gps_8h.html" scrolling="no" scroll="no" id="doxygen" marginwidth="0" marginheight="0" frameborder="0" style="width:100%;"></iframe>
diff --git a/pdk/docs/porting/group__memory.jd b/pdk/docs/porting/group__memory.jd
deleted file mode 100755
index 224e0cb..0000000
--- a/pdk/docs/porting/group__memory.jd
+++ /dev/null
@@ -1,24 +0,0 @@
-page.title=Providing Heap Memory
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div class="navigation" id="top">
- <div class="tabs">
- <ul>
- <li><a href="index.html"><span>Main Page</span></a></li>
- <li><a href="modules.html"><span>Modules</span></a></li>
- <li><a href="namespaces.html"><span>Namespaces</span></a></li>
- <li><a href="annotated.html"><span>Data Structures</span></a></li>
- <li><a href="files.html"><span>Files</span></a></li>
- </ul>
- </div>
-</div>
-
-<small>
-[<a class="el" href="group__networking.html">Neworking Support</a>]</small>
-</h1><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-</table>
-This is the text in the "Providing Heap Memory" subgroup </div>
-
diff --git a/pdk/docs/porting/group__networking.jd b/pdk/docs/porting/group__networking.jd
deleted file mode 100755
index 67da8a6..0000000
--- a/pdk/docs/porting/group__networking.jd
+++ /dev/null
@@ -1,26 +0,0 @@
-page.title=Networking Support
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div class="navigation" id="top">
- <div class="tabs">
- <ul>
- <li><a href="index.html"><span>Main Page</span></a></li>
- <li><a href="modules.html"><span>Modules</span></a></li>
- <li><a href="namespaces.html"><span>Namespaces</span></a></li>
- <li><a href="annotated.html"><span>Data Structures</span></a></li>
- <li><a href="files.html"><span>Files</span></a></li>
- </ul>
- </div>
-</div>
-
-<table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Modules</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="group__memory.html">Porividng Heap Memory</a></td></tr>
-
-</table>
-<hr><a name="_details"></a><h2>Detailed Description</h2>
-This is a text for the Networking Support Group </div>
-
diff --git a/pdk/docs/porting/images/androidBluetooth.gif b/pdk/docs/porting/images/androidBluetooth.gif
deleted file mode 100755
index 1c1aa3f..0000000
--- a/pdk/docs/porting/images/androidBluetooth.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/androidPMArchitecture.gif b/pdk/docs/porting/images/androidPMArchitecture.gif
deleted file mode 100755
index 1aa48db..0000000
--- a/pdk/docs/porting/images/androidPMArchitecture.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/android_audio_architecture.gif b/pdk/docs/porting/images/android_audio_architecture.gif
deleted file mode 100755
index 79854a3..0000000
--- a/pdk/docs/porting/images/android_audio_architecture.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/cameraPreview.jpg b/pdk/docs/porting/images/cameraPreview.jpg
deleted file mode 100755
index 3dea011..0000000
--- a/pdk/docs/porting/images/cameraPreview.jpg
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/cameraTakePicture.jpg b/pdk/docs/porting/images/cameraTakePicture.jpg
deleted file mode 100755
index 4ac6d95..0000000
--- a/pdk/docs/porting/images/cameraTakePicture.jpg
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/camera_video2.gif b/pdk/docs/porting/images/camera_video2.gif
deleted file mode 100755
index 8c46a83..0000000
--- a/pdk/docs/porting/images/camera_video2.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/customLogo.gif.png b/pdk/docs/porting/images/customLogo.gif.png
deleted file mode 100755
index 3322fed..0000000
--- a/pdk/docs/porting/images/customLogo.gif.png
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/stk.gif b/pdk/docs/porting/images/stk.gif
deleted file mode 100755
index 9d6db69..0000000
--- a/pdk/docs/porting/images/stk.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/stk_display_text.gif b/pdk/docs/porting/images/stk_display_text.gif
deleted file mode 100755
index b737c51..0000000
--- a/pdk/docs/porting/images/stk_display_text.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/stk_display_text2.gif b/pdk/docs/porting/images/stk_display_text2.gif
deleted file mode 100755
index cac707b..0000000
--- a/pdk/docs/porting/images/stk_display_text2.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/stk_refresh_init.gif b/pdk/docs/porting/images/stk_refresh_init.gif
deleted file mode 100755
index a79ccaa..0000000
--- a/pdk/docs/porting/images/stk_refresh_init.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/stk_refresh_reset.gif b/pdk/docs/porting/images/stk_refresh_reset.gif
deleted file mode 100755
index dff8d4e..0000000
--- a/pdk/docs/porting/images/stk_refresh_reset.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/stk_refresh_update.gif b/pdk/docs/porting/images/stk_refresh_update.gif
deleted file mode 100755
index 15614ed..0000000
--- a/pdk/docs/porting/images/stk_refresh_update.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/stk_send_SMS.gif b/pdk/docs/porting/images/stk_send_SMS.gif
deleted file mode 100755
index 67fc1a0..0000000
--- a/pdk/docs/porting/images/stk_send_SMS.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/telephony.gif b/pdk/docs/porting/images/telephony.gif
deleted file mode 100755
index 8515730..0000000
--- a/pdk/docs/porting/images/telephony.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/telephony_solicted_example.gif b/pdk/docs/porting/images/telephony_solicted_example.gif
deleted file mode 100755
index 352ca98..0000000
--- a/pdk/docs/porting/images/telephony_solicted_example.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/images/telephony_unsolicted_example.gif b/pdk/docs/porting/images/telephony_unsolicted_example.gif
deleted file mode 100755
index e51c4d6..0000000
--- a/pdk/docs/porting/images/telephony_unsolicted_example.gif
+++ /dev/null
Binary files differ
diff --git a/pdk/docs/porting/index.jd b/pdk/docs/porting/index.jd
deleted file mode 100644
index 76609d2..0000000
--- a/pdk/docs/porting/index.jd
+++ /dev/null
@@ -1,28 +0,0 @@
-page.title=Android Platform Developer's Guide
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-
-<p>Welcome to the <i>Android Platform Dev Guide</i>! This guide provides an under-the-hood introduction to the Android platform, and is designed for platform developers and manufacturers building Android-powered devices.</p>
-
-<p>If you're a software developer interested in developing applications for Android, please visit the <a href="http://developer.android.com">Android Developers site</a>.</p>
-
-<a name="androidWelcomeAboutThisGuide"></a><h2>About this Guide</h2>
-
-<p>This guide is divided into sections by logical platform component (see the table of contents on the left). Android is a complex project under constant development, and the level of detail, as well as the rate of change, may vary from section to section. This guide will be updated regularly as more content becomes available.</p>
-
-<a name="androidWelcomeIntendedAudience"></a><h2>Intended Audience</h2>
-
-<p>This guide is intended for engineers who are proficient with building and running Linux on embedded devices. It aims to provide explanation of the Android platform rather than Linux or embedded development in general.</p>
-
-<a name="androidWelcomeGettingStarted"></a><h2>Getting Started with Android</h2>
-
-<p>If you are new to Android, start with the platform documentation on the following sites:
-<ul>
-<li><a href="http://developer.android.com">Android Developers site</a>: This site offers high-level platform documentation and architecture concepts.</li>
-<li><a href="{@docRoot}">Android Open Source Project site</a>: This site provides instructions on how to get the source code, establish a development environment, and perform a simple build.</li>
-</ul>
-
-<p>When you are ready to start customizing the platform or porting to your target hardware, start in this guide with the <a href="build_system.html">Build System overview</a>.</p>
-
diff --git a/pdk/docs/porting/instrumentation_framework.jd b/pdk/docs/porting/instrumentation_framework.jd
deleted file mode 100755
index fcb006b..0000000
--- a/pdk/docs/porting/instrumentation_framework.jd
+++ /dev/null
@@ -1,143 +0,0 @@
-page.title=Instrumentation Framework
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<a name="toc"/>
-<div style="padding:10px">
-<a href="#androidInstrumentationFrameworkIntro">Introduction</a><br/>
-<a href="#androidInstrumentationFrameworkamCommand">Understanding the am Command</a><br/>
-<a href="#androidInstrumentationFrameworkWritingRunning">Writing and Running Test Cases</a><br/>
-<a href="#androidInstrumentationFrameworkTestCase">Exploring a Test Case</a><br/>
-<a href="#androidInstrumentationFrameworkTroubleshooting">Troubleshooting</a><br/></div>
-
-<a name="androidInstrumentationFrameworkIntro"></a><h2>Introduction</h2>
-
-<p>This document describes how to use the Instrumentation Framework to write test cases. You should have a working knowledge of the following:</p>
-<ul>
- <li> Android Application Framework </li>
- <li> Using <code>adb</code>, <code>am</code> and various logging functionality </li>
- <li> A brief understanding of the application of interest, that is, he names of the classes which handle the intents etc. </li>
- <li> Junit testing. </li>
-</ul>
-<p> Each Android application runs in its own process. Instrumentation kills the application process and restarts the process with Instrumentation. Instrumentation gives a handle to the application context used to poke around the application to validate test assertions, allowing you to write test cases to test applications at a much lower level than UI screen shot tests. Note that Instrumentation cannot catch UI bugs. </p>
-
-
-<a name="androidInstrumentationFrameworkamCommand"></a><h2>Understanding the am Command</h2>
-
-<p><code>am</code> is used to start and instrument activities using the adb shell command, as shown in the snippet below:</p>
-<pre class="prettify">
-> adb shell am
-usage: am [start|instrument]
- am start [-a <ACTION>] [-d <DATA_URI>] [-t <MIME_TYPE>]
- [-c <CATEGORY> [-c <CATEGORY>] ...]
- [-e <EXTRA_KEY> <EXTRA_VALUE> [-e <EXTRA_KEY> <EXTRA_VALUE> ...]
- [-n <COMPONENT>] [-D] [<URI>]
- am instrument [-e <ARG_NAME> <ARG_VALUE>] [-p <PROF_FILE>]
- [-w] <COMPONENT>
-For example, to start the Contacts application you can use
-> adb shell am start -n com.google.android.contacts/.ContactsActivity
-</pre>
-
-
-<a name="androidInstrumentationFrameworkWritingRunning"></a><h2>Writing and Running Test Cases</h2>
-
-<p>Each instrumentation test case is similar to an Android application with the distinction that it starts another application. For example, have a look in the <code>tests/Contacts</code> directory. </p>
-<ul>
- <li> There should be a Makefile and an Android Manifest file. </li>
- <li> Tests are located in <code>tests/Contacts/src/com/google/android/contactstests</code>. </li>
- <li> The Instrumentation Test Runner is located at <code>tests/Contacts/src/com/google/android/contactstests/functional/ContactsInstrumentationTestRunner.java</code>.</li>
-</ul>
-<p>Suppose you have a makefile with <code>Contactstests</code> as the target. </p>
-<ul>
- <li> <code>make Contactstests</code>: Compiles the test cases. </li>
- <li> <code>adb install Contactstests.apk</code>: Installs the apk on the device. </li>
- <li> Use the adb shell <code>am</code> command to run them. </li>
-</ul>
-<p> For options and other details, please see <a href="instrumentation_testing.html" target="_top">Instrumentation Testing</a>.</p>
-
-
-<a name="androidInstrumentationFrameworkTestCase"></a><h2>Exploring a Test Case</h2>
-
-<p> The test case described in this section adds and tests a new Contact. Note that you can send intents, register intent receivers, etc. </p>
-<p><code>Instrumentation.java</code> has helper functions that send key events and string, for example: </p>
-<ul>
- <li><code>getInstrumentation()</code>: Returns the handle to the instrumentation </li>
- <li><code>sendCharacterSync</code>: Sends a character. </li>
- <li><code>sendStringSync</code>: Sends a string to an input box. </li>
- <li><code>sendKeyDownUpSync</code>: Sends a specific keyevent. </li>
- <li><code>sendTrackballEventSync</code>: Send a trackball event.</li>
-</ul>
-<p> You can find the test case below at <code>device/tests/Contacts.</code></p>
-<pre class="prettify">
-private void addNewContact(String name, int star, int phoneType, String number, String label,
- String email, int emailType){
- ContentValues values = new ContentValues();
- Uri phoneUri = null;
- Uri emailUri = null;
-
- values.put(Contacts.People.NAME, name);
- values.put(Contacts.People.STARRED, star);
-
- //Add Phone Numbers
- Uri uri = mActivity.getContentResolver().insert(Contacts.People.CONTENT_URI, values);
- phoneUri = Uri.withAppendedPath(uri, Contacts.People.Phones.CONTENT_DIRECTORY);
-
- values.clear();
- values.put(Contacts.Phones.TYPE, phoneType);
- values.put(Contacts.Phones.NUMBER, number);
- values.put(Contacts.Phones.LABEL, label);
- mActivity.getContentResolver().insert(phoneUri, values);
-
- //Add Email
- emailUri = Uri.withAppendedPath(uri, ContactMethods.CONTENT_DIRECTORY);
-
- values.clear();
- values.put(ContactMethods.KIND, Contacts.KIND_EMAIL);
- values.put(ContactMethods.DATA, email);
- values.put(ContactMethods.LABEL, "");
- values.put(ContactMethods.TYPE, emailType);
- mActivity.getContentResolver().insert(emailUri, values);
-}
-
-
- public void testAddSaveSingleContact(){
- int previousCount = mActivity.getListView().getCount();
- String message;
-
- addNewContact(INPUT_NAME_1 + "1", "5435754532", "1" + INPUT_EMAIL_1, CONFIRM_OPTION);
-
- message = "Added 1 to initial length=" + previousCount + ", but resulted with a count=" +
- mActivity.getListView().getCount();
- assertEquals(message, ++previousCount, mActivity.getListView().getCount());
-
- // Check Content; Name; Num; Starred
- assertEquals(INPUT_NAME_1 + "1", getTextFromView(0, android.R.id.text1));
- assertEquals("5435754532", getTextFromView(0, android.R.id.text2));
-
- //Check email is saved
- //cursor = returnEmailCursorAtId("1");
- Uri uri = Uri.parse("content://contacts/people/1");
- uri = Uri.withAppendedPath(uri, ContactMethods.CONTENT_DIRECTORY);
- Cursor cursor = mActivity.getContentResolver().query(uri, CONTACTS_COLUMNS, null, null, null);
- assertTrue("returnEmailCursorAtId: Moving cursor to first row has failed", cursor.first());
-
- int dataIndex = cursor.getColumnIndexOrThrow("data");
- assertEquals("1" + INPUT_EMAIL_1, cursor.getString(dataIndex));
- cursor.deactivate();
-}
- </pre>
-
-
-<a name="androidInstrumentationFrameworkTroubleshooting"></a><h2>Troubleshooting</h2>
-
-<p>If you run your test cases and nothing appears to happen, have a look at <code>adb logcat</code>. The following is a common problem:</p>
-<pre class="prettify">
-I/dalvikvm( 688): threadid=11: attached from native, name=Binder Thread #1
-I/dalvikvm( 688): threadid=13: attached from native, name=Binder Thread #2
-W/ActivityManager( 469): Unable to find instrumentation info for: ComponentInfo{com.google.android.browser_instrumentation/com.google.android.browser_instrumentation.BrowserWebkitLayoutInstrumentation}
-D/AndroidRuntime( 688): Shutting down VM
-E/AndroidRuntime( 688): ERROR: thread attach failed
-</pre>
-<p>It's possible that the instrumentation apk isn't installed on your device or that the package name is incorrect in the Manifest file. </p>
-
diff --git a/pdk/docs/porting/instrumentation_testing.jd b/pdk/docs/porting/instrumentation_testing.jd
deleted file mode 100755
index 045291f..0000000
--- a/pdk/docs/porting/instrumentation_testing.jd
+++ /dev/null
@@ -1,494 +0,0 @@
-page.title=Instrumentation Testing
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidInstrumentationTestingFramework">Instrumentation Framework</a></li>
-<li><a href="#androidInstrumentationFrameworkPlatform">Platform Test Suites</a></li>
-<li><a href="#androidInstrumentationFrameworkWritingRunning">Running Tests</a></li>
-<li><a href="#androidInstrumentationTestingCreating">Writing Tests</a></li>
-<li><a href="#troubleshooting">Troubleshooting</a></li>
-</ul>
-</div>
-</div>
-
-<p>This document describes how to use the Instrumentation Framework to write test cases. Instrumentation testing allows you to verify a particular feature or behavior with an automated JUnit TestCase. You can launch activities and providers within an application, send key events, and make assertions about various UI elements. </p>
-<p>You should have a working knowledge of the following:</p>
-<ul>
- <li> Android Application Framework</li>
- <li> Using <code>adb</code>, <code>am</code> and various logging functionality </li>
- <li> A brief understanding of the application of interest, that is, the names of the classes which handle the intents etc. </li>
- <li> JUnit testing.</li>
-</ul>
-<p> Each Android application runs in its own process. Instrumentation kills the application process and restarts the process with Instrumentation. Instrumentation gives a handle to the application context used to poke around the application to validate test assertions, allowing you to write test cases to test applications at a much lower level than UI screen shot tests. Note that Instrumentation cannot catch UI bugs. </p>
-
-
-<a name="androidInstrumentationTestingFramework"></a><h3>Instrumentation Framework</h3>
-
-
-
-<a name="androidInstrumentationTestingClasses"></a><h4>Classes</h4>
-
-<p> The following classes help glue together <code>Instrumentation</code> with JUnit testing. </p>
-<table>
- <tr>
- <th scope="col">Class</th>
- <th scope="col">Description</th></tr>
- <tr>
- <td valign="top"><code>InstrumentationTestCase</code></td>
- <td valign="top">
- <p>This extends the standard JUnit <code>TestCase</code> and offers access to an <code>Instrumentation</code> class. Write tests inside your instrumentation class any way you see fit. For example, your test might launch activities and send key events. For this to work properly, the instrumentation needs to be injected into the test case.</p> </td>
- </tr>
- <tr>
- <td valign="top"><code>InstrumentationTestRunner</code></td>
- <td valign="top">The instrumentation test runner is an instrumentation that runs instrumentation test cases and injects itself into each test case. Instrumentation test cases need to be grouped together with an instrumentation test runner with the appropriate target package.</td>
- </tr>
- <tr>
- <td valign="top"><code>InstrumentationTestSuite</code></td>
- <td valign="top">The instrumentation test suite is a simple extension of the standard JUnit <code>TestSuite</code> that keeps a member <code>Instrumentation</code> variable on hand to inject into each <code>TestCase</code> before running them. It is used by <code>InstrumentationTestRunner</code>.</td>
- </tr>
-</table>
-<p> Three additional base classes extend <code>InstrumentationTestCase</code> to allow you to test <code>Activity</code> and <code>Provider</code> classes:</p>
-<table>
- <tr>
- <th scope="col">Class</th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td valign="top"><code>ActivityTestCase</code></td>
- <td valign="top"><p>This class can be used to write tests for a specific activity. An activity is launched in its <code>setUp()</code> method and finished with <code>tearDown</code>. If you write a test case that extends <code>ActivityTestCase</code>, you can write tests that access the activity using <code>getActivity()</code> and assume it has been set up properly.</p></td>
- </tr>
- <tr>
- <td valign="top"><code>ServiceTestCase</code></td>
- <td valign="top">This test case provides a framework in which you can test Service classes in a controlled environment. It provides basic support for the lifecycle of a Service, and hooks by which you can inject various dependencies and control the environment in which your Service is tested.</td>
- </tr>
- <tr>
- <td valign="top"><code>SingleLaunchActivityTestCase</code></td>
- <td valign="top">This class is similar to <code>ActivityTestCase</code> except that the activity is launched once per class instead of every time the test case calls setup. </td>
- </tr>
- <tr>
- <td valign="top"><code>ProviderTestCase</code></td>
- <td valign="top">This class is similar to <code>ActivityTestCase</code> except that it will setup, tear down, and provide access to the <code>Provider</code> of your choice.</td>
- </tr>
-</table>
-
-
-<a name="androidInstrumentationFrameworkamCommand"></a><h4>Understanding the am Command</h4>
-
-<p>The am command is a command-line interface to the ActivityManager (see <a href="http://code.google.com/android/reference/android/app/ActivityManager.html">http://code.google.com/android/reference/android/app/ActivityManager.html</a> for details). <code>am</code> is used to start and instrument activities using the adb shell command, as shown in the snippet below:</p>
-<pre class="prettify">
-> adb shell am
-usage: am [start|instrument]
- am start [-a <ACTION>] [-d <DATA_URI>] [-t <MIME_TYPE>]
- [-c <CATEGORY> [-c <CATEGORY>] ...]
- [-e <EXTRA_KEY> <EXTRA_VALUE> [-e <EXTRA_KEY> <EXTRA_VALUE> ...]
- [-n <COMPONENT>] [-D] [<URI>]
- am instrument [-e <ARG_NAME> <ARG_VALUE>] [-p <PROF_FILE>]
- [-w] <COMPONENT>
-For example, to start the Contacts application you can use
-> adb shell am start -n com.google.android.contacts/.ContactsActivity
-</pre>
-
-
-<a name="androidInstrumentationFrameworkPlatform"></a><h3>Platform Test Suites</h3>
-
-<p>This section provides an overview for various unit and functional test cases that can be executed through the instrumentation framework.</p>
-
-
-<a name="androidTestingPlatformFramework"></a><h4>Framework Tests</h4>
-
-<p>Framework test cases test the Android application framework or specific Android application functionality that requires an Android runtime context. These tests can be found in <code>//device/tests</code> and <code>//device/apps/AndroidTests</code>.</p>
-
-
-<a name="androidTestingPlatformCoreLibrary"></a><h4>Core Library</h4>
-
-<p>Core library test cases test the Android library functionality that does not require an Android runtime context. These tests are split into Android library (android.* package space) tests at <code>//device/java/tests</code> and Java library (java.*, javax.*, etc. packages) tests at <code>//device/dalvik/libcore/.../tests</code>.</p>
-
-
-<a name="androidInstrumentationFrameworkWritingRunning"></a><h3>Running Tests</h3>
-
-<p>Each instrumentation test case is similar to an Android application with the distinction that it starts another application. For example, have a look in the <code>tests/Contacts</code> directory. </p>
-<ul>
- <li> There should be a Makefile and an Android Manifest file. </li>
- <li> Tests are located in <code>tests/Contacts/src/com/google/android/contactstests</code>. </li>
- <li> The Instrumentation Test Runner is located at <code>tests/Contacts/src/com/google/android/contactstests/functional/ContactsInstrumentationTestRunner.java</code>.</li>
-</ul>
-<p>Suppose you have a makefile with <code>Contactstests</code> as the target. </p>
-<ul>
- <li> <code>make Contactstests</code>: Compiles the test cases. </li>
- <li> <code>adb install Contactstests.apk</code>: Installs the apk on the device. </li>
- <li> Use the adb shell <code>am</code> command to run them. </li>
-</ul>
-<p> To run your tests, use the <code>am instrument</code> command with your <code>InstrumentationTestRunner</code> as its argument. Results are printed as a result of the instrumentation. For example, the following snippet displays the output after running the framework tests with one test failing (note the unusual syntax caused by how instrumentations are run via <code>am</code>):</p>
-<pre class="prettify">
-$ adb shell am instrument -w com.google.android.frameworktest/.tests.FrameworkInstrumentationTestRunner
-INSTRUMENTATION_RESULT: test results:=.......F.......
-Time: 6.837
-There was 1 failure:
-1) testSetUpConditions(com.google.android.frameworktest.tests.focus.RequestFocusTest)junit.framework.AssertionFailedError: requestFocus() should work from onCreate.
- at com.google.android.frameworktest.tests.focus.RequestFocusTest.testSetUpConditions(RequestFocusTest.java:66)
- at java.lang.reflect.Method.invokeNative(Native Method)
- at android.test.InstrumentationTestSuite.runTest(InstrumentationTestSuite.java:73)
- at android.test.InstrumentationTestSuite.runTest(InstrumentationTestSuite.java:73)
- at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:151)
- at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1088)
-
-FAILURES!!!
-Tests run: 14, Failures: 1, Errors: 0
-
-<RETURN> to continue
-
-INSTRUMENTATION_CODE: -1
-$
-</pre>
-
-
-<a name="androidInstrumentationTestingRunningAll"></a><h4>All Tests with Default TestRunner behavior</h4>
-
-<p>If no class or package is passed in to run, InstrumentationTestRunner will automatically find and run all tests under the package of the test application (as defined by the <code>android:targetPackage</code> attribute of the instrumentation defined in its manifest file).
-</p>
-<pre>
-$ adb shell am instrument -w \
- com.android.samples.tests/android.test.InstrumentationTestRunner
-
-INSTRUMENTATION_RESULT: Test results for InstrumentationTestRunner=..........
-Time: 2.317
-
-OK (10 tests)
-
-
-INSTRUMENTATION_CODE: -1
-</pre>
-
-
-<a name="androidTestingTestSinglePakcage"></a><h4>Running all Tests Under Single Package</h4>
-
-<p>If you have many tests under one package, use the <code>-e package <packagename></code> option to run all tests under that package without having to manually create a test suite.</p>
-<pre>
-$ adb shell am instrument -w \
- -e package com.android.samples.view \
- com.android.samples.tests/android.test.InstrumentationTestRunner
-INSTRUMENTATION_RESULT: Test results for InstrumentationTestRunner=........
-Time: 1.587
-
-OK (8 tests)
-</pre>
-
-
-<a name="androidTestingSingleTestSuite"></a><h4>Running a Single Test Suite</h4>
-
-<p>If you prefer to explicitly state which tests comprise all of your tests, you can define a test suite and run that directly. By convention, all test packages in your system should have at least one suite called <code>AllTests</code> (see <code>AllTests.java</code>). To run all of the tests using the <code>AllTests</code> suite for the api demos test app:</p>
-
-<pre>
-$ adb shell am instrument -w \
- -e class com.android.samples.AllTests \
- com.android.samples.tests/android.test.InstrumentationTestRunner
-
-INSTRUMENTATION_RESULT: Test results for AllTests=..........
-Time: 2.286
-
-OK (10 tests)
-
-
-INSTRUMENTATION_CODE: -1
-</pre>
-
-
-<a name="androidInstrumentationTestingRunningSingleTestCase"></a><h4>A Single Test Case</h4>
-
-<pre>
-$ adb shell am instrument -w \
- -e class com.android.samples.view.Focus2ActivityTest \
- com.android.samples.tests/android.test.InstrumentationTestRunner
-
-INSTRUMENTATION_RESULT: Test results for Focus2ActivityTest=....
-Time: 1.359
-
-OK (4 tests)
-
-
-INSTRUMENTATION_CODE: -1
-</pre>
-
-
-<a name="androidInstrumentationTestingRunningSingleTest"></a><h4>A Single Test</h4>
-
-<pre>
-$ adb shell am instrument -w \
- -e class com.android.samples.view.Focus2ActivityTest#testGoingLeftFromRightButtonGoesToCenter \
- com.android.samples.tests/android.test.InstrumentationTestRunner
-
-INSTRUMENTATION_RESULT: Test results for Focus2ActivityTest=.
-Time: 0.51
-
-OK (1 test)
-
-
-INSTRUMENTATION_CODE: -1
-</pre>
-
-
-<a name="androidTestingDebugging"></a><h4>Attaching a debugger to your test</h4>
-
-<p>In order to debug your test code, instruct the controller to stop and wait for the debugger by adding <code>-e debug true</code> to your
-command line. This causes the test runner to stop and wait for the debugger just before calling your <code>setUp()</code> method. For example,</p>
-
-<pre>
-$ adb shell am instrument -w \
- -e debug true \
- com.android.samples.tests/android.test.InstrumentationTestRunner
-</pre>
-
-
-<a name="androidInstrumentationTestingCreating"></a><h3>Writing Tests</h3>
-
-<p>When writing tests, refer to the ApiDemos tests as models (located at <code>//device/samples/ApiDemos</code>). This section provides an overview of the test structure with ApiDemos.</p>
-
-
-<a name="androidTestingLocationFiles"></a><h4>Location of Files</h4>
-
-<p>Test packages should use the following structure and include <code>Android.mk</code>, <code>AndroidManifest.xml</code>, <code>AllTests.java</code>, and a src directory that mirrors the src directory of the tested application.</p>
-<p>Files are located within a <code>tests</code> directory found in the root directory:</p>
-<pre>
-$ find samples/ApiDemos/tests
-samples/ApiDemos/tests
-samples/ApiDemos/tests/Android.mk
-samples/ApiDemos/tests/AndroidManifest.xml
-samples/ApiDemos/tests/src
-samples/ApiDemos/tests/src/com
-samples/ApiDemos/tests/src/com/google
-samples/ApiDemos/tests/src/com/google/android
-samples/ApiDemos/tests/src/com/google/android/samples
-samples/ApiDemos/tests/src/com/google/android/samples/AllTests.java
-samples/ApiDemos/tests/src/com/google/android/samples/ApiDemosTest.java
-samples/ApiDemos/tests/src/com/google/android/samples/os
-samples/ApiDemos/tests/src/com/google/android/samples/os/MorseCodeConverterTest.java
-samples/ApiDemos/tests/src/com/google/android/samples/view
-samples/ApiDemos/tests/src/com/google/android/samples/view/Focus2ActivityTest.java
-samples/ApiDemos/tests/src/com/google/android/samples/view/Focus2AndroidTest.java
-</pre>
-
-
-<a name="androidTestingContentMakefile"></a><h4>Contents of makefile</h4>
-
-<p>The contents of the makefile are similar to a normal application with the addition of a <code>LOCAL_INSTRUMENTATION_FOR</code> declaration.<p />
-<pre>
-# Add appropriate copyright banner here
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-# We only want this apk build for tests.
-LOCAL_MODULE_TAGS := tests
-
-# Include all test java files.
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-# Notice that we don't have to include the src files of ApiDemos because, by
-# running the tests using an instrumentation targeting ApiDemos, we
-# automatically get all of its classes loaded into our environment.
-
-LOCAL_PACKAGE_NAME := ApiDemosTests
-
-LOCAL_INSTRUMENTATION_FOR := ApiDemos
-
-include $(BUILD_PACKAGE)
-</pre>
-
-
-<a name="androidTestingContentManifest"></a><h4>Content of Manifest</h4>
-
-<p>Use the following example to create an <code>AndroidManifest.xml</code> file that declares the instrumentation. Specify that the framework supplied Instrumentation TestRunner targest the package of your application, allowing the tests that are run with the instrumentation to get access to all of the classes of your application without having to build the source into the test app. The name of the test application is typically the same as your target application with <code>.tests</code> appended. </p>
-<pre>
-# Add appropriate copyright banner here
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.android.samples.tests">
-
- <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
-
- <!--
- This declares that this app uses the instrumentation test runner targeting
- the package of com.android.samples. To run the tests use the command:
- "adb shell am instrument -w com.android.samples.tests/android.test.InstrumentationTestRunner"
- -->
- <instrumentation android:name="android.test.InstrumentationTestRunner"
- android:targetPackage="com.android.samples"
- android:label="Tests for Api Demos."/>
-
-</manifest>
-</pre>
-<p> </p>
-<p>The following snippet will prefix the <code>/android.test.InstrumentationTestRunner</code> when running tests from the command line:</p>
-<pre>
-$ adb shell am instrument -w \
- com.android.samples.tests/android.test.InstrumentationTestRunner
-</pre>
-
-
-<a name="androidInstrumentationTestingCreatingTestRunner"></a><h4>New Instrumentation TestRunner</h4>
-
-<p>Create a class that derives from this class. You must override two abstract methods; one that returns the class loader of the target package, and another that defines all of the tests within the package. For example, the snippet below displays the test runner for the framework tests.</p>
-<pre class="prettify">
-public class FrameworkInstrumentationTestRunner extends InstrumentationTestRunner {
-
- @Override
- public TestSuite getAllTests() {
- InstrumentationTestSuite suite = new InstrumentationTestSuite(this);
-
- suite.addTestSuite(FocusAfterRemovalTest.class);
- suite.addTestSuite(RequestFocusTest.class);
- suite.addTestSuite(RequestRectangleVisibleTest.class);
- return suite;
- }
-
- @Override
- public ClassLoader getLoader() {
- return FrameworkInstrumentationTestRunner.class.getClassLoader();
- }
-}
-</pre>
-<p> Next, in an appropriate <code>AndroidManifest.xml</code>, define the instrumentation for the derived class with the appropriate <code>android:targetPackage</code> set. For example, the snippet below defines the instrumentation runner for the framework tests.</p>
-<pre class="prettify">
-<uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
-
-<instrumentation android:name="android.tests.FrameworkInstrumentationTestRunner"
- android:targetPackage="com.google.android.frameworktest"
- android:label="framework instrumentation test runner" />
-</pre>
-
-
-<a name="androidInstrumentationTestingCreatingTestCase"></a><h4>New InstrumentationTestCase</h4>
-
-<p> To create a new test case, write a class that extends <code>InstrumentationTestCase</code> in the same application as your test runner. The following snippet illustrates an example <code>ActivityTestCase</code> that tests an activity named <code>MyActivity</code>.</p>
-<pre class="prettify">
-public class ButtonPressTest extends ActivityTestCase<MyActivity> {
-
- Button mLeftButton;
-
- public ButtonPressTest() {
- super("com.example", MyActivity.class);
- }
-
- @Override
- public void setUp() throws Exception {
- super.setUp();
- mLeftButton = (Button) getActivity().findViewById(R.id.leftButton);
- }
-
- public void testFocusMovesToRight() throws Exception {
- assertTrue(mLeftButton.hasFocus());
- getInstrumentation().sendCharacterSync(KeyEvent.KEYCODE_DPAD_RIGHT);
-
- Button rightButton = (Button) getActivity().findViewById(R.id.rightButton);
- assertTrue(rightButton.hasFocus());
- }
-
- // could have several more tests...
-}
-</pre>
-
-
-<a name="androidInstrumentationFrameworkTestCase"></a><h4>Exploring a Test Case</h4>
-
-<p> The test case described in this section adds and tests a new Contact. Note that you can send intents, register intent receivers, etc. </p>
-<p><code>Instrumentation.java</code> has helper functions that send key events and strings, for example: </p>
-<ul>
- <li><code>getInstrumentation()</code>: Returns the handle to the instrumentation </li>
- <li><code>sendCharacterSync</code>: Sends a character. </li>
- <li><code>sendStringSync</code>: Sends a string to an input box. </li>
- <li><code>sendKeyDownUpSync</code>: Sends a specific keyevent. </li>
- <li><code>sendTrackballEventSync</code>: Sends a trackball event.</li>
-</ul>
-<p> You can find the test case below at <code>device/tests/Contacts.</code></p>
-<pre class="prettify">
-private void addNewContact(String name, int star, int phoneType, String number, String label,
- String email, int emailType){
- ContentValues values = new ContentValues();
- Uri phoneUri = null;
- Uri emailUri = null;
-
- values.put(Contacts.People.NAME, name);
- values.put(Contacts.People.STARRED, star);
-
- //Add Phone Numbers
- Uri uri = mActivity.getContentResolver().insert(Contacts.People.CONTENT_URI, values);
- phoneUri = Uri.withAppendedPath(uri, Contacts.People.Phones.CONTENT_DIRECTORY);
-
- values.clear();
- values.put(Contacts.Phones.TYPE, phoneType);
- values.put(Contacts.Phones.NUMBER, number);
- values.put(Contacts.Phones.LABEL, label);
- mActivity.getContentResolver().insert(phoneUri, values);
-
- //Add Email
- emailUri = Uri.withAppendedPath(uri, ContactMethods.CONTENT_DIRECTORY);
-
- values.clear();
- values.put(ContactMethods.KIND, Contacts.KIND_EMAIL);
- values.put(ContactMethods.DATA, email);
- values.put(ContactMethods.LABEL, "");
- values.put(ContactMethods.TYPE, emailType);
- mActivity.getContentResolver().insert(emailUri, values);
-}
-
-
- public void testAddSaveSingleContact(){
- int previousCount = mActivity.getListView().getCount();
- String message;
-
- addNewContact(INPUT_NAME_1 + "1", "5435754532", "1" + INPUT_EMAIL_1, CONFIRM_OPTION);
-
- message = "Added 1 to initial length=" + previousCount + ", but resulted with a count=" +
- mActivity.getListView().getCount();
- assertEquals(message, ++previousCount, mActivity.getListView().getCount());
-
- // Check Content; Name; Num; Starred
- assertEquals(INPUT_NAME_1 + "1", getTextFromView(0, android.R.id.text1));
- assertEquals("5435754532", getTextFromView(0, android.R.id.text2));
-
- //Check email is saved
- //cursor = returnEmailCursorAtId("1");
- Uri uri = Uri.parse("content://contacts/people/1");
- uri = Uri.withAppendedPath(uri, ContactMethods.CONTENT_DIRECTORY);
- Cursor cursor = mActivity.getContentResolver().query(uri, CONTACTS_COLUMNS, null, null, null);
- assertTrue("returnEmailCursorAtId: Moving cursor to first row has failed", cursor.first());
-
- int dataIndex = cursor.getColumnIndexOrThrow("data");
- assertEquals("1" + INPUT_EMAIL_1, cursor.getString(dataIndex));
- cursor.deactivate();
-}
- </pre>
-
-
-<a name="androidTestingKindsofTests"></a><h4>Deciding Kinds of Tests to Write</h4>
-
-<p>Once you are bootstrapped with your test application, you can start writing tests. There are three of types of tests you may wish to write:</p>
-<p><ul>
-<li> <strong>TestCase</strong>: The standard junit test case.
-</li>
-<li> <strong>AndroidTestCase</strong>: A test case with access to a Context object that is injected for you by the instrumentation test runner.
-</li>
-<li> <strong>InstrumentationTestCase</strong>: A test case with access to an Instrumentation, which can be used to launch activities, content providers, send key events, etc.
-</li>
-</ul>
-</p>
-<p>The API Demos test suite includes examples of all three styles and can be used as a guideline for writing each type of test.</p>
-<p>There are two utility classes available for the most common uses of InstrumentationTestCase: ActivityTestCase and ProviderTestCase. See their javadoc for more information.
-</p>
-
-
-<a name="troubleshooting"></a><h3>Troubleshooting</h3>
-
-<p>If you run your test cases and nothing appears to happen, have a look at <code>adb logcat</code>. The following is a common problem:</p>
-<pre class="prettify">
-I/dalvikvm( 688): threadid=11: attached from native, name=Binder Thread #1
-I/dalvikvm( 688): threadid=13: attached from native, name=Binder Thread #2
-W/ActivityManager( 469): Unable to find instrumentation info for: ComponentInfo{com.google.android.browser_instrumentation/com.google.android.browser_instrumentation.BrowserWebkitLayoutInstrumentation}
-D/AndroidRuntime( 688): Shutting down VM
-E/AndroidRuntime( 688): ERROR: thread attach failed
-</pre>
-<p>It's possible that the instrumentation apk isn't installed on your device or that the package name is incorrect in the Manifest file. </p>
diff --git a/pdk/docs/porting/intro_source_code.jd b/pdk/docs/porting/intro_source_code.jd
deleted file mode 100755
index 2ba413c..0000000
--- a/pdk/docs/porting/intro_source_code.jd
+++ /dev/null
@@ -1,171 +0,0 @@
-page.title=Source Code Overview
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<a name="toc"/>
-<div style="padding:10px">
-<a href="#androidSourceCodeDirectories">Introduction</a><br/>
-<a href="#Android_Source">Android Source</a><br/><div style="padding-left:40px">
-
-<a href="#androidSourceCodeDirectoriesKernel">Linux Kernel</a><br/>
-<a href="#androidSourceCodeDirectoriesDevice">Android Platform and Applications</a><br/></div>
-<a href="#androidSourceGuidelines">Adding Source Code</a><br/></div>
-
-<a name="androidSourceCodeDirectories"></a><h2>Introduction</h2>
-
-<p>Android source code is maintained in two code bases: the Android Linux kernel (<code>kernel</code> directory) and Android platform and applications (<code>device</code> directory). This document provides a high-level introduction to the source code organization and an overview of the major components of each primary directory.</p>
-
-<a name="Android_Source"></a><h2>Android Source</h2>
-
-
-<a name="androidSourceCodeDirectoriesKernel"></a><h3>Linux Kernel</h3>
-
-<p>The Android Linux kernel includes enhancements to the Linux 2.6 kernel that provide additional drivers to support the Android platform, including:</p>
-<ul>
- <li>Binder: an OpenBinder-based driver to facilitate inter-process communication (IPC) in the Android platform.</li>
- <li>Android Power Management: a light weight power management driver built on top of standard Linux power management but optimized for embedded systems.</li>
- <li>Low Memory Killer: Based on hints from the userspace, the low memory killer can kill off processes to free up memory as necessary. It is designed to provide more flexibility than the Out Of Memory (OOM) killer in the standard kernel.</li>
- <li>Logger: A light weight logging device used to capture system, radio, logdata, etc.</li>
- <li>USB Gadget: Uses the USB function framework.</li>
- <li>Android/PMEM: The PMEM (physical memory) driver is used to provide contiguous physical memory regions to userspace libraries that interact with the digital signal processor (DSP) and other hardware that cannot cope with scatter-gather.</li>
- <li>Android Alarm: A driver which provides timers that can wake the device up from sleep and a monotonic timebase that runs while the device is asleep.</li>
-</ul>
-<p>Look for Android-specific enhancements in the following directories:</p>
-<p><ul>
-<li><code>/drivers/android</code></li>
-<li><code>/drivers/misc</code></li>
-<li><code>/include/linux</code></li>
-</ul>
-</p>
-
-
-<a name="androidSourceCodeDirectoriesDevice"></a><h3>Android Platform and Applications</h3>
-
-<p>The following list outlines the directory structure found within the <code>device</code> branch of Android source code:</p>
-
-
-<p><span class="lh2"><a name="gmapiMobileTagsListStart"></a></span>
-
-<ul>
-
-
-<li>apps
-Core Android applications such as Phone, Camera, and Calendar.
-</li>
-
-
-<li>boot
-Reference Android bootloader and other boot-related source code.
-</li>
-
-
-<li>commands
-Common Android commands, the most important of which is the runtime command, which does much of the initialization of the system.
-</li>
-
-
-<li>config
-System-wide makefiles and linker scripts.
-</li>
-
-
-<li>content
-Standard Android ContentProvider modules.
-</li>
-
-
-<li>dalvik
-Android runtime Virtual Machine (VM).
-</li>
-
-
-<li>data
-Fonts, keymaps, sounds, timezone information, etc.
-</li>
-
-
-<li>docs
-Full set of Android documentation.
-</li>
-
-
-<li>extlibs
-Non-Android libraries. This directory is intended to host unmodified external code. None of the libraries included within this directory rely on Android headers or libraries.
-</li>
-
-
-<li>ide
-Tools for support of the IDE's used to write Android applications.
-</li>
-
-
-<li>include
-Android system headers for inclusion.
-</li>
-
-
-<li>java
-Android core APIs, as well as some external libraries.
-</li>
-
-
-<li>libs
-Android-specific C++ based libraries.
-</li>
-
-
-<li>partner
-Project-specific source code for various proprietary components.
-</li>
-
-
-<li>prebuilt
-Prebuilt tools, like the toolchains and emulator binary.
-</li>
-
-
-<li>product
-Device-specific configuration files. This directory will include a subdirectory for each new device.
-</li>
-
-
-<li>samples
-Sample applications.
-</li>
-
-
-<li>servers
-C++ based system servers.
-</li>
-
-
-<li>system
-Core of the embedded Linux platform at the heart of Android. These essential bits are required for basic booting, operation, and debugging.
-</li>
-
-
-<li>tests
-Platform and application test cases.
-</li>
-
-
-<li>tools
-Tools for building and debugging Android (of particular interest for porting are "adb" and "emulator").
-</li>
-
-
-
-<p><span class="lh2"><a name="gmapiMobileTagsListEnd"></a></span>
-
-</ul>
-
-
-<a name="androidSourceGuidelines"></a><h2>Adding Source Code</h2>
-
-<p>You can develop Android applications with the same standard tools you use to develop any Java application. The Android core libraries provide the functionality needed to build rich mobile applications and the Android development tools are designed to simplify running, debugging, and testing your applications.</p>
-
-<p>Add project-specific source code to the Android source tree under the <code>partner</code> directory in a directory specific to the application or service you are building. For example, all Google-specific applications would be placed under <code>vendor/google/</code>. A Google search application would be placed under <code>vendor/google/apps/Search</code>.
-<p>See <a href="build_new_device.html">Building Android for a new Mobile Device</a> for detailed instructions.</p>
-
-
diff --git a/pdk/docs/porting/keymaps_keyboard_input.jd b/pdk/docs/porting/keymaps_keyboard_input.jd
deleted file mode 100755
index f712015..0000000
--- a/pdk/docs/porting/keymaps_keyboard_input.jd
+++ /dev/null
@@ -1,504 +0,0 @@
-page.title=Keymaps and Keyboard Input
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidKeymapFunctionality">Functionality</a></li>
-<li><a href="#androidKeymapKeyLayoutMapTitle">Key Layout Map</a></li>
-<li><a href="#androidKeymapKeyCharMap">Key Character Map</a></li>
-<li><a href="#androidKeymapDriverTemplate">Implementing Your Own Driver (Driver Template)</a></li>
-<li><a href="#androidKeymapKeyCharMapSampleImplementation">Sample Implementation</a></li>
-</ul>
-</div>
-</div>
-
-<p>This document describes how keyboard input gets translated into Android actions and how you can customize key layout and key character maps to match the needs of your own device. </p>
-<p>Android uses the standard Linux input event device (<code>/dev/event0</code>) and driver as described in the <code>linux/input.h</code> kernel header file. For more information regarding standard Linux input drivers, please see <a href="http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.24.y.git;a=blob;f=Documentation/input/input.txt">Linux Input drivers</a> at <a href="http://kernel.org">http://kernel.org</a>.</p>
-
-
-
-
-<a name="androidKeymapFunctionality"></a><h3>Functionality</h3>
-
-<p>Android's input event device is structured around an interrupt or polling routine that captures the device-specific scancode and converts it to a standard form acceptable to Linux (as defined in <code>input.h</code>) before passing it to the kernel with <code>input_event()</code>.</p>
-<p>The keymap driver's other primary function is to establish a probe function that sets up the interrupt or polling function, handles hardware initialization, and attaches the driver to the input subsystem with <code>input_register_device()</code>.</p>
-<p>The table below describes the steps required to translate from keyboard input to application action: </p>
-<table border=1>
- <tbody><tr>
- <th scope="col">Step</th>
- <th scope="col">Action</th>
- <th scope="col">Explanation</th>
- </tr>
- <tr>
- <td>1.</td>
- <td>Window manager reads key event from Linux keyboard driver. </td>
- <td>Events are typically positional. For example, the top-left position on a keypad returns 16 regardless of whether that key is printed with a Q (as on a QWERTY keypad) or an A (as on an AZERTY keypads). This first conversion by the Linux Keyboard Driver yields a scancode (for example, 16).</td>
- </tr>
- <tr>
- <td>2. </td>
- <td>Window manager maps scancode to keycode.</td>
- <td>When the window manager reads a key event out of the driver, it maps the scancode to a keycode using a key layout map file. Typically, the keycode is the primary symbol screen-printed on a key. For example, <code>KEYCODE_DPAD_CENTER</code> is the center button on the five-way navigation control. Even though ALT + G generates a "?" character, <code>KEYCODE_G</code> is the keycode.</td>
- </tr>
- <tr>
- <td>3. </td>
- <td>Window manager sends both the scancode and the keycode to the application.</td>
- <td>Both the scancode and keycode are handled by the view with focus.
- How the application interprets both depend on the application.</td>
- </tr>
-</tbody>
-</table>
-
-
-<a name="androidKeymapKeyLayoutMapTitle"></a><h3>Key Layout Map</h3>
-
-
-
-<a name="androidKeymapKeyLayoutMapSelection"></a><h4>Selection of a Key Layout Map</h4>
-
-<p>Key layout maps are installed in <code>/system/usr/keylayout</code> and <code>/data/usr/keylayout</code>.</p>
-<p>For each keyboard device xxx, set the <code>android.keylayout.xxx</code> system property (see <a href="build_new_device.html">Building New Device</a> for help setting system properties). If you don't specify a keylayout file, Android will default to <code>/system/usr/keylayout/qwerty.kl</code>.</p>
-
-
-<a name="androidKeymapKeyLayoutMapFileFormat"></a><h4>File Format</h4>
-
-<p>Key layout maps are stored on the device as UTF-8 text files and have the following characteristics:</p>
-<p><ul>
-<li>Comments: The pound symbol (#) denotes a comment and everything after the pound symbol on a line is ignored.</li>
-<li>Whitespace: All empty lines are ignored.</li>
-<li>Key definitions: Key definitions follow the syntax <code>key SCANCODE KEYCODE [FLAGS...]</code>, where <code>SCANCODE</code> is a number, <code>KEYCODE</code> is defined in your specific keylayout file (<code>android.keylayout.xxx</code>), and potential <code>FLAGS</code> are defined as follows:
-<ul><li>SHIFT: While pressed, the shift key modifier is set</li>
-<li>ALT: While pressed, the alt key modifier is set</li>
-<li>CAPS: While pressed, the caps lock key modifier is set</li>
-<li>WAKE: When this key is pressed while the device is asleep, the device will wake up and the key event gets sent to the app.</li>
-<li>WAKE_DROPPED: When this key is pressed while the device is asleep, the device will wake up and the key event does not get sent to the app.</li>
-</ul>
-</li>
-</ul>
-</p>
-
-
-<a name="androidKeymapKeyLayoutMapExample"></a><h4>Example of a Key Layout Map File</h4>
-
-<p>The following code comes from <code>android/src/device/product/generic/tuttle2.kl</code> and is an example of a complete key layout file:</p>
-<pre class="prettify">
-# Copyright 2007 Google Inc.
-
-key 2 1
-key 3 2
-key 4 3
-key 5 4
-key 6 5
-key 7 6
-key 8 7
-key 9 8
-key 10 9
-key 11 0
-key 158 BACK WAKE_DROPPED
-key 230 SOFT_RIGHT WAKE
-key 60 SOFT_RIGHT WAKE
-key 107 ENDCALL WAKE_DROPPED
-key 62 ENDCALL WAKE_DROPPED
-key 229 MENU WAKE_DROPPED
-key 59 MENU WAKE_DROPPED
-key 228 POUND
-key 227 STAR
-key 231 CALL WAKE_DROPPED
-key 61 CALL WAKE_DROPPED
-key 232 DPAD_CENTER WAKE_DROPPED
-key 108 DPAD_DOWN WAKE_DROPPED
-key 103 DPAD_UP WAKE_DROPPED
-key 102 HOME WAKE
-key 105 DPAD_LEFT WAKE_DROPPED
-key 106 DPAD_RIGHT WAKE_DROPPED
-key 115 VOLUME_UP
-key 114 VOLUME_DOWN
-key 116 POWER WAKE
-key 212 SLASH
-
-key 16 Q
-key 17 W
-key 18 E
-key 19 R
-key 20 T
-key 21 Y
-key 22 U
-key 23 I
-key 24 O
-key 25 P
-
-key 30 A
-key 31 S
-key 32 D
-key 33 F
-key 34 G
-key 35 H
-key 36 J
-key 37 K
-key 38 L
-key 14 DEL
-
-key 44 Z
-key 45 X
-key 46 C
-key 47 V
-key 48 B
-key 49 N
-key 50 M
-key 51 COMMA
-key 52 PERIOD
-key 28 NEWLINE
-
-key 56 ALT_LEFT
-key 42 SHIFT_LEFT
-key 215 AT
-key 57 SPACE
-key 53 SLASH
-key 127 SYM
-key 100 ALT_LEFT
-
-key 399 GRAVE
-</pre>
-
-
-<a name="androidKeymapKeyCharMap"></a><h3>Key Character Map</h3>
-
-
-
-<a name="androidKeymapKeyCharMapSelection"></a><h4>Selection of a Key Character Map</h4>
-
-<p>Key character maps are installed in <code>/system/usr/keychars</code> and <code>/data/usr/keychars</code>.</p>
-<p>For each keyboard device xxx, set the <code>android.keychar.xxx</code> system property to the full path of the desired keychar file. If you don't specify a keychar file, Android will default to <code>/system/usr/keychar/qwerty.kl</code>.
-
-
-<a name="androidKeymapKeyCharMapFileFormat"></a><h4>File Format</h4>
-
-<p>Key character maps are stored on the device as binary resources in order to reduce loading time. Key character maps have the following characteristics:</p>
-<p><ul>
-
-<li>Comments: The pound symbol (#) denotes a comment and everything after the pound symbol on a line is ignored.</li>
-<li>Whitespace: All empty lines are ignored.</li>
-<li>Column definitions: Column definitions follow the syntax <code>columns MODIFIERS [...]</code>, where <code>MODIFIERS</code> are defined as follows:
-<table border=1 cellpadding=2 cellspacing=0>
- <tbody><tr>
- <th scope="col">Character in MODIFIERS</th>
- <th scope="col">Corresponding bit in the modifiers</th>
- </tr>
- <tr>
- <td>O</td>
- <td>no modifiers</td>
- </tr>
- <tr>
- <td>S</td>
- <td>MODIFIER_SHIFT</td>
- </tr>
- <tr>
- <td>C</td>
- <td>MODIFIER_CONTROL</td>
- </tr>
- <tr>
- <td>L</td>
- <td>MODIFIER_CAPS_LOCK</td>
- </tr>
- <tr>
- <td>A</td>
- <td>MODIFIER_ALT</td>
- </tr>
-</table>
-</li>
-<li>Key definitions: Key definitions have the syntax <code>key SCANCODE CHARACTER [...]</code> where <code>SCANCODE</code> is a number and <code>CHARACTER</code> values are either UTF-8 characters in quotation marks (for example, "a") or a numeric value that <code>strtol</code> can parse.</li>
-</ul></p>
-
-
-<a name="androidKeymapKeyCharMapExample"></a><h4>Example of a Key Character Map File</h4>
-
-<p>The following code comes from <code>android/src/device/product/generic/tuttle2.kcm</code> and represents a complete key character file:</p>
-<p>The type line indicates what kind of keyboard your device implements. Possible types include:</p>
-<p><ul>
-<li><b>NUMERIC</b>: A numeric (12-key) keyboard.</li>
-<li><b>Q14</b>: A keyboard that includes all letters but multiple letters per key.</li>
-<li><b>QWERTY</b>: A keyboard with all letters and possibly numbers. This option applies to all full keyboard configurations, such as AZERTY.</li>
-</ul>
-</p>
-<pre class="prettify">
-# Copyright 2007 Google Inc.
-
-[type=QWERTY]
-
-# keycode base caps fn caps_fn number display_label
-
-A 'a' 'A' '%' 0x00 '%' 'A'
-B 'b' 'B' '=' 0x00 '=' 'B'
-C 'c' 'C' '8' 0x00E7 '8' 'C'
-D 'd' 'D' '5' 0x00 '5' 'D'
-E 'e' 'E' '2' 0x0301 '2' 'E'
-F 'f' 'F' '6' 0x00A5 '6' 'F'
-G 'g' 'G' '-' '_' '-' 'G'
-H 'h' 'H' '[' '{' '[' 'H'
-I 'i' 'I' '$' 0x0302 '$' 'I'
-J 'j' 'J' ']' '}' ']' 'J'
-K 'k' 'K' '"' '~' '"' 'K'
-L 'l' 'L' ''' '`' ''' 'L'
-M 'm' 'M' '>' 0x00 '>' 'M'
-N 'n' 'N' '<' 0x0303 '<' 'N'
-O 'o' 'O' '(' 0x00 '(' 'O'
-P 'p' 'P' ')' 0x00 ')' 'P'
-Q 'q' 'Q' '*' 0x0300 '*' 'Q'
-R 'r' 'R' '3' 0x20AC '3' 'R'
-S 's' 'S' '4' 0x00DF '4' 'S'
-T 't' 'T' '+' 0x00A3 '+' 'T'
-U 'u' 'U' '&' 0x0308 '&' 'U'
-V 'v' 'V' '9' '^' '9' 'V'
-W 'w' 'W' '1' 0x00 '1' 'W'
-X 'x' 'X' '7' 0xEF00 '7' 'X'
-Y 'y' 'Y' '!' 0x00A1 '!' 'Y'
-Z 'z' 'Z' '#' 0x00 '#' 'Z'
-
-COMMA ',' ';' ';' '|' ',' ','
-PERIOD '.' ':' ':' 0x2026 '.' '.'
-AT '@' '0' '0' 0x2022 '0' '@'
-SLASH '/' '?' '?' '\' '/' '/'
-
-SPACE 0x20 0x20 0x9 0x9 0x20 0x20
-NEWLINE 0xa 0xa 0xa 0xa 0xa 0xa
-
-# on pc keyboards
-TAB 0x9 0x9 0x9 0x9 0x9 0x9
-0 '0' ')' ')' ')' '0' '0'
-1 '1' '!' '!' '!' '1' '1'
-2 '2' '@' '@' '@' '2' '2'
-3 '3' '#' '#' '#' '3' '3'
-4 '4' '$' '$' '$' '4' '4'
-5 '5' '%' '%' '%' '5' '5'
-6 '6' '^' '^' '^' '6' '6'
-7 '7' '&' '&' '&' '7' '7'
-8 '8' '*' '*' '*' '8' '8'
-9 '9' '(' '(' '(' '9' '9'
-
-GRAVE '`' '~' '`' '~' '`' '`'
-MINUS '-' '_' '-' '_' '-' '-'
-EQUALS '=' '+' '=' '+' '=' '='
-LEFT_BRACKET '[' '{' '[' '{' '[' '['
-RIGHT_BRACKET ']' '}' ']' '}' ']' ']'
-BACKSLASH '\' '|' '\' '|' '\' '\'
-SEMICOLON ';' ':' ';' ':' ';' ';'
-APOSTROPHE ''' '"' ''' '"' ''' '''
-STAR '*' '*' '*' '*' '*' '*'
-POUND '#' '#' '#' '#' '#' '#'
-PLUS '+' '+' '+' '+' '+' '+'
-</pre>
-
-
-<a name="androidKeymapKeyCharMapResourceBinaryFileFormat"></a><h4>Resource Binary File Format</h4>
-
-<p>The file snippet above gets converted to the following by the <code>makekcharmap</code> tool as part of the build process. You can <code>mmap</code> this file in and share the approximately 4k of memory that it uses between processes to minimize load time.</p>
-<table>
- <tbody><tr>
- <th scope="col">Offset</th>
-
- <th scope="col">Size (bytes)</th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td>0x00-0x0b</td>
- <td></td>
- <td>The ascii value "keycharmap1" including the null character</td>
-
- </tr>
- <tr>
- <td>0x0c-0x0f</td>
- <td></td>
- <td>padding</td>
- </tr>
- <tr>
- <td>0x10-0x13</td>
-
- <td></td>
- <td>The number of entries in the modifiers table (COLS)</td>
- </tr>
- <tr>
- <td>0x14-0x17</td>
- <td></td>
- <td>The number of entries in the characters table (ROWS)</td>
-
- </tr>
- <tr>
- <td>0x18-0x1f</td>
- <td></td>
- <td>padding</td>
- </tr>
- <tr>
- <td></td>
-
- <td>4*COLS</td>
- <td>Modifiers table. The modifier mask values that each of the
- columns in the characters table correspond to.</td>
- </tr>
- <tr>
- <td></td>
- <td></td>
- <td>padding to the next 16 byte boundary</td>
-
- </tr>
- <tr>
- <td></td>
- <td>4*COLS*ROWS</td>
- <td>Characters table. The modifier mask values that each of the
- columns correspond to.</td>
- </tr>
-</tbody></table>
-
-
-<a name="androidKeymapDriverTemplate"></a><h3>Implementing Your Own Driver (Driver Template)</h3>
-
-<p>The following file, <code>pguide_events.c</code>, illustrates how to implement an Android keymap driver.</p>
-<pre class="prettyprint">
-/*
- * pguide_events.c
- *
- * ANDROID PORTING GUIDE: INPUT EVENTS DRIVER TEMPLATE
- *
- * This template is designed to an example of the functionality
- * necessary for Android to recieve input events. The PGUIDE_EVENT
- * macros are meant as pointers indicating where to implement the
- * hardware specific code necessary for the new device. The existence
- * of the macros is not meant to trivialize the work required, just as
- * an indication of where the work needs to be done.
- *
- * Copyright 2007, Google Inc.
- * Based on goldfish-events.c
- *
- */
-
-#include <linux/module.h>
-#include <linux/init.h>
-#include <linux/interrupt.h>
-#include <linux/types.h>
-#include <linux/input.h>
-#include <linux/kernel.h>
-#include <linux/platform_device.h>
-
-
-#include <asm/irq.h>
-#include <asm/io.h>
-
-
-
-#define PGUIDE_EVENTS_INTERRUPT do{} while(0)
-#define PGUIDE_EVENTS_PROBE do{} while(0)
-
-struct event_dev {
- struct input_dev *input;
- int irq;
-};
-
-static irqreturn_t pguide_events_interrupt(int irq, void *dev_id)
-{
- struct event_dev *edev = dev_id;
- unsigned type=0, code=0, value=0;
-
- /* Set up type, code, and value per input.h
- */
- PGUIDE_EVENTS_INTERRUPT;
-
- input_event(edev->input, type, code, value);
- return IRQ_HANDLED;
-}
-
-static int pguide_events_probe(struct platform_device *pdev)
-{
- struct input_dev *input_dev;
- struct event_dev *edev;
-
- printk("*** pguide events probe ***\n");
-
- edev = kzalloc(sizeof(struct event_dev), GFP_KERNEL);
- input_dev = input_allocate_device();
-
- /* Setup edev->irq and do any hardware init */
- PGUIDE_EVENTS_PROBE;
-
- if(request_irq(edev->irq, pguide_events_interrupt, 0,
- "pguide_events", edev) < 0) {
- goto fail;
- }
-
- /* indicate that we generate key events */
- set_bit(EV_KEY, input_dev->evbit);
- set_bit(EV_REL, input_dev->evbit);
- set_bit(EV_ABS, input_dev->evbit);
-
- /* indicate that we generate *any* key event */
-
- bitmap_fill(input_dev->keybit, KEY_MAX);
- bitmap_fill(input_dev->relbit, REL_MAX);
- bitmap_fill(input_dev->absbit, ABS_MAX);
-
- platform_set_drvdata(pdev, edev);
-
- input_dev->name = "pguide_events";
- input_dev->private = edev;
- input_dev->cdev.dev = &pdev->dev;
-
- input_register_device(input_dev);
- return 0;
-
-fail:
- kfree(edev);
- input_free_device(input_dev);
-
- return -EINVAL;
-}
-
-static struct platform_driver pguide_events_driver = {
- .probe = pguide_events_probe,
- .driver = {
- .name = "pguide_events",
- },
-};
-
-static int __devinit pguide_events_init(void)
-{
- return platform_driver_register(&pguide_events_driver);
-}
-
-
-static void __exit pguide_events_exit(void)
-{
-}
-
-module_init(pguide_events_init);
-module_exit(pguide_events_exit);
-
-MODULE_DESCRIPTION("Pguide Event Device");
-MODULE_LICENSE("GPL");
-</pre>
-
-
-<a name="androidKeymapKeyCharMapSampleImplementation"></a><h3>Sample Implementation</h3>
-
-<p>Assume the following for the setup of a new keypad device:</p>
-<pre class="prettify">
-android.keylayout.partnerxx_keypad = /system/usr/keylayout/partnerxx_keypad.kl
-android.keychar.partnerxx_keypad = /system/usr/keychars/partnerxx.kcm
-</pre>
-<p>The following example log file indicates that you have correctly registered the new keypad:</p>
-<pre class="prettify">
-I/EventHub( 1548): New device: path=/dev/input/event0 name=partnerxx_keypad id=0x10000 (of 0x1) index=1 fd=30
-I/EventHub( 1548): new keyboard input device added, name = partnerxx_keypad
-D/WindowManager( 1548): Starting input thread.
-D/WindowManager( 1548): Startup complete!
-I/EventHub( 1548): New keyboard: name=partnerxx_keypad
- keymap=partnerxx_keypad.kl
- keymapPath=/system/usr/keychars/partnerxx_keypad.kcm.bin
-I/ServiceManager( 1535): ServiceManager: addService(window, 0x13610)
-I/EventHub( 1548): Reporting device opened: id=0x10000, name=/dev/input/event0
-I/KeyInputQueue( 1548): Device added: id=0x10000, name=partnerxx_keypad, classes=1
-I/KeyInputQueue( 1548): Keymap: partnerxx_keypad.kl
-</pre>
-<p>The snippet above contains artificial line breaks to maintain a print-friendly document.</p>
diff --git a/pdk/docs/porting/lights.jd b/pdk/docs/porting/lights.jd
deleted file mode 100755
index 6bbfb89..0000000
--- a/pdk/docs/porting/lights.jd
+++ /dev/null
@@ -1,48 +0,0 @@
-page.title=Lights
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidLightsBuildingDriver">Building a Lights Library</a></li>
-<li><a href="#androidLightsInterface">Interface</a></li>
-</ul>
-</div>
-</div>
-
-<p>Android defines a user space C abstraction interface for LED hardware. The interface header is defined in
-<code>hardware/libhardware/include/hardware/lights.h</code>.
-In order to integrate LEDs with Android you need to build a shared library that implements this interface.
-
-The types of logical lights currently supported by Android include:
-<ul>
-<li>Backlight</li>
-<li>Keyboard</li>
-<li>Buttons</li>
-<li>Battery</li>
-<li>Notifications</li>
-<li>Attention</li>
-</ul>
-</p>
-
-<a name="androidLightsBuildingDriver"></a><h3>Building a Lights Library</h3>
-<p> To implement a Lights driver, create a shared library that implements the interface defined in <code>lights.h</code>. You must name your shared library
-<code>liblights.so</code> so that it will get loaded from <code>/system/lib</code> at runtime.
-</p
-
-
-<a name="androidLightsInterface"></a><h3>Interface</h3>
-
-
-
-<p><span class="lh3"><a name="androidDoxygenNote"></a></span>
-
-<p class="note"><strong>Note</strong>: This document relies on some Doxygen-generated content that appears in an iFrame below. To return to the Doxygen default content for this page, <a href="lights.html">click here</a>.</p>
-
-
-<iframe onLoad="resizeDoxFrameHeight();" src="lights_8h.html" scrolling="no" scroll="no" id="doxygen" marginwidth="0" marginheight="0"
-frameborder="0" style="width:100%;"></iframe>
diff --git a/pdk/docs/porting/modules.html b/pdk/docs/porting/modules.html
deleted file mode 100755
index ea2a07a..0000000
--- a/pdk/docs/porting/modules.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!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>Doxygen-Generated Content</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<style type="text/css">
-<!--
-.navigation {
- display: none;
-}
--->
-</style>
-</head>
-<body>
-<!-- Generated by Doxygen 1.5.6 -->
-<div class="navigation" id="top">
- <div class="tabs">
- <ul>
- <li><a href="index.html"><span>Main Page</span></a></li>
- <li class="current"><a href="modules.html"><span>Modules</span></a></li>
- <li><a href="namespaces.html"><span>Namespaces</span></a></li>
- <li><a href="annotated.html"><span>Data Structures</span></a></li>
- <li><a href="files.html"><span>Files</span></a></li>
- </ul>
- </div>
-</div>
-<div class="contents">
-<h1>Modules</h1>Here is a list of all modules:<ul>
-<li><a class="el" href="group__networking.html">Neworking Support</a>
-<ul>
-<li><a class="el" href="group__memory.html">Porividng Heap Memory</a>
-</ul>
-</ul>
-</div>
-</body>
-</html>
diff --git a/pdk/docs/porting/porting_toc.cs b/pdk/docs/porting/porting_toc.cs
deleted file mode 100644
index ffa5675..0000000
--- a/pdk/docs/porting/porting_toc.cs
+++ /dev/null
@@ -1,93 +0,0 @@
-<script type="text/javascript" language="JavaScript">
-<!--
-function nothing() {}
--->
-</script>
-
-<ul>
-
-<li> <h2>Setup and Building</h2>
- <ul>
- <li class="toggle-list">
- <div><a href="<?cs var:toroot ?>porting/build_system.html">Build System</a></div>
- <ul>
- <li><a href="<?cs var:toroot ?>porting/build_new_device.html">Configuring a New Product</a></li>
- <li><a href="<?cs var:toroot ?>porting/build_cookbook.html">Build Cookbook</a></li>
- </ul>
- </li>
- <li><a href="<?cs var:toroot ?>porting/release_keys.html">Release Keys and Signing Builds</a></li>
- </ul>
-</li>
-
-<li> <h2>Customization</h2>
- <ul>
- <li><a href="<?cs var:toroot ?>porting/customization.html">Customization</a></li>
- <li><a href="<?cs var:toroot ?>porting/usersguide.html">Android User's Guide</a></li>
- </ul>
-</li>
-
-<li> <h2>System</h2>
-
-<ul>
- <li><a href="<?cs var:toroot ?>porting/bring_up.html">Bring up</a></li>
- <li class="toggle-list">
- <div><a href="javascript:nothing()">Connectivity</a></div>
- <ul>
- <li><a href="<?cs var:toroot ?>porting/bluetooth.html">Bluetooth</a></li>
- <li><a href="<?cs var:toroot ?>porting/gps.html">GPS</a></li>
- <li><a href="<?cs var:toroot ?>porting/wifi.html">Wi-Fi</a></li>
- </ul>
- </li>
-
- <li><a href="<?cs var:toroot ?>porting/display_drivers.html">Display Drivers</a></li>
- <li class="toggle-list">
- <div><a href="javascript:nothing()">Input Devices</a></div>
- <ul>
- <li><a href="<?cs var:toroot ?>porting/keymaps_keyboard_input.html">Keymaps and Keyboard</a></li>
- </ul>
- </li>
- <li><a href="<?cs var:toroot ?>porting/lights.html">Lights</a></li>
- <li class="toggle-list">
- <div><a href="javascript:nothing()">Multimedia</a></div>
- <ul>
- <li><a href="<?cs var:toroot ?>porting/audio.html">Audio</a></li>
- <li><a href="<?cs var:toroot ?>porting/camera.html">Camera/Video</a></li>
- </ul>
- </li>
-
- <li><a href="<?cs var:toroot ?>porting/power_management.html">Power Management</a></li>
- <li><a href="<?cs var:toroot ?>porting/sensors.html">Sensors</a></li>
- <li class="toggle-list">
- <div><a href="javascript:nothing()">Telephony</a></div>
- <ul>
- <li><a href="<?cs var:toroot ?>porting/telephony.html">Radio Interface Layer</a></li>
- <li><a href="<?cs var:toroot ?>porting/stk.html">SIM Toolkit Application (STK)</a></li>
- </ul>
- </li>
-
-</ul>
-</li>
-
-<li> <h2>Dalvik Virtual Machine</h2>
- <ul>
- <li><a href="<?cs var:toroot ?>porting/dalvik.html">Porting Dalvik</a></li>
- </ul>
-</li>
-<li> <h2>Testing and Debugging</h2>
- <ul>
- <li><a href="<?cs var:toroot ?>porting/instrumentation_testing.html">Instrumentation Testing</a></li>
- <li><a href="<?cs var:toroot ?>porting/debugging_gdb.html">Debugging with GDB</a></li>
- <li><a href="<?cs var:toroot ?>porting/debugging_native.html">Debugging Native Code</a></li>
- <li><a href="<?cs var:toroot ?>porting/tcpdump.html">Debugging with tcpdump</a></li>
- </ul>
-</li>
-
-
-
-</ul>
-
-<script type="text/javascript">
-<!--
- buildToggleLists();
-//-->
-</script>
diff --git a/pdk/docs/porting/power_management.jd b/pdk/docs/porting/power_management.jd
deleted file mode 100755
index 28f9519..0000000
--- a/pdk/docs/porting/power_management.jd
+++ /dev/null
@@ -1,203 +0,0 @@
-page.title=Power Management
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<a name="toc"/>
-<div style="padding:10px">
-<a href="#androidPowerIntro">Introduction</a><br/>
-<a href="#androidPowerWakeLocks">Wake Locks</a><br/><div style="padding-left:40px">
-
-<a href="#androidPowerWakeLocksDefinitions">Types of Wake Locks</a><br/>
-<a href="#androidPowerWakeLockExample">Exploring a Wake Lock Example</a><br/></div>
-<a href="#androidPowerPowerManagerClass">PowerManager class</a><br/>
-<a href="#androidPowerKernelRegistration">Registering Drivers with the PM Driver</a><br/>
-<a href="#androidPowerEarlySuspend">Early Suspend</a><br/>
-</div>
-
-<a name="androidPowerIntro"></a><h2>Introduction</h2>
-
-<p>Android supports its own Power Management (on top of the standard Linux Power Management) designed with the premise that the CPU shouldn't consume power if no applications or services require power. For more information regarding standard Linux power management, please see <a href="http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.24.y.git;a=blob;f=Documentation/pm.txt">Linux Power Management Support</a> at <a href="http://kernel.org">http://kernel.org</a>.</p>
-<p>Android requires that applications and services request CPU resources with "wake locks" through the Android application framework and native Linux libraries. If there are no active wake locks, Android will shut down the CPU. </p>
-<p>The image below illustrates the Android power management architecture. </p>
-<p><img src='images/androidPMArchitecture.gif'></p>
-
-Solid elements represent Android blocks and dashed elements represent partner-specific blocks.
-
-
-
-<a name="androidPowerWakeLocks"></a><h2>Wake Locks</h2>
-
-<p>Wake locks are used by applications and services to request CPU resources.</p>
-
-<p>A locked wakelock, depending on its type, prevents the system from entering suspend or other low-power states. This document describes how to employ wakelocks. </p>
-<p>There are two settings for a wakelock:</p>
-<ul>
- <li><code>WAKE_LOCK_SUSPEND</code>: prevents a full system suspend. </li>
- <li><code></code><code>WAKE_LOCK_IDLE</code>: low-power states, which often cause large interrupt latencies or that disable a set of interrupts, will not be entered from idle until the wakelocks are released. </li>
-</ul>
-<p>Unless the type is specified, this document refers to wakelocks of type <code>WAKE_LOCK_SUSPEND</code>. </p>
-<p>If the suspend operation has already started when locking a wakelock, the system will abort the suspend operation as long it has not already reached the <code>suspend_late</code> stage. This means that locking a wakelock from an interrupt handler or a freezeable thread always works, but if you lock a wakelock from a <code>suspend_late</code> handler, you must also return an error from that handler to abort suspend. You can use wakelocks to allow the user-space to decide which keys should wake the full system and turn on the screen. Use <code>set_irq_wake</code> or a platform-specific API to ensure that the keypad interrupt wakes up the CPU. Once the keypad driver has resumed, the sequence of events can look like this:</p>
-<ol>
- <li> The Keypad driver receives an interrupt, locks the keypad-scan wakelock,
- and starts scanning the keypad matrix. </li>
- <li>The keypad-scan code detects a key change and reports it to the input-event
- driver. </li>
- <li>The input-event driver sees the key change, enqueues an event, and locks
- the input-event-queue wakelock. </li>
- <li>The keypad-scan code detects that no keys are held and unlocks the
- keypad-scan wakelock. </li>
- <li>The user-space input-event thread returns from select/poll, locks the
- process-input-events wakelock, and calls read in the input-event device. </li>
- <li>The input-event driver dequeues the key-event and, since the queue is now
- empty, unlocks the input-event-queue wakelock. </li>
- <li>The user-space input-event thread returns from read. It determines that the
- key should not wake up the full system, releases the process-input-events
- wakelock, and calls select or poll. </li>
-</ol>
-<p>The simple sequence diagram below illustrates these steps:</p>
- <pre>
- Key pressed Key released
- | |
- keypad-scan ++++++++++++++++++++++
- input-event-queue +++ +++
- process-input-events +++ +++
- </pre>
-
-<a name="driverAPI"></a><h3>Driver API</h3>
-<p>A driver can use the wakelock API by adding a wakelock variable to its state and calling <code>wake_lock_init</code>, as illustrated in the snippet below:</p>
-<pre>
- struct state {
- struct wakelock wakelock;
- }
- init() {
- wake_lock_init(&state->wakelock, WAKE_LOCK_SUSPEND, "wakelockname");
- }
- Before freeing the memory, wake_lock_destroy must be called:
- uninit() {
- wake_lock_destroy(&state->wakelock);
- }
- </pre>
-<p> When the driver determines that it needs to run (usually in an interrupt handler), it calls <code>wake_lock</code>:</p>
-<pre>
- wake_lock(&state->wakelock);
- </pre>
-<p>When it no longer needs to run, it calls <code>wake_unlock</code>:</p>
-<pre>
- wake_unlock(&state->wakelock);
- </pre>
-<p> It can also call <code>wake_lock_timeout</code> to release the wakelock after a delay:</p>
-<pre>
- wake_lock_timeout(&state->wakelock, HZ);
-</pre>
-<p> This works whether or not the wakelock is already held. It is useful if the driver woke up other parts of the system that do not use wakelocks but still need to run. Avoid this when possible, since it will waste power if the timeout is long or may fail to finish needed work if the timeout is short.</p>
-<a name="userspaceAPI"></a><h3>User-space API</h3>
-<p>Write <code>lockname</code> or <code>lockname timeout</code> to <code>/sys/power/wake_lock</code> lock and, if needed, create a wakelock. The timeout here is specified in nanoseconds. Write <code>lockname</code> to <code>/sys/power/wake_unlock</code> to unlock a user wakelock.</p>
-<p> Do not use randomly generated wakelock names as there is no API to free a user-space wakelock.</p>
-
-<a name="androidPowerWakeLocksDefinitions"></a><h3>Types of Wake Locks</h3>
-
-<table border=1 cellpadding=2 cellspacing=0>
- <tbody><tr>
- <th scope="col">Wake Lock </th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td>ACQUIRE_CAUSES_WAKEUP <br/></td>
- <td>Normally wake locks don't actually wake the device, they just cause it to remain on once it's already on. Think of the video player app as the normal behavior. Notifications that pop up and want the device to be on are the exception; use this flag to be like them.</td>
- </tr>
- <tr>
- <td>FULL_WAKE_LOCK</td>
- <td>Wake lock that ensures that the screen and keyboard are on at full brightness. </td>
- </tr>
- <tr>
- <td>ON_AFTER_RELEASE</td>
- <td>When this wake lock is released, poke the user activity timer so the screen stays on for a little longer.</td>
- </tr>
- <tr>
- <td>PARTIAL_WAKE_LOCK</td>
- <td>Wake lock that ensures that the CPU is running. The screen might not be on.</td>
- </tr>
- <tr>
- <td>SCREEN_BRIGHT_WAKE_LOCK</td>
- <td>Wake lock that ensures that the screen is on at full brightness; the keyboard backlight will be allowed to go off.</td>
- </tr>
- <tr>
- <td>SCREEN_DIM_WAKE_LOCK</td>
- <td>Wake lock that ensures that the screen is on, but the keyboard backlight will be allowed to go off, and the screen backlight will be allowed to go dim.</td>
- </tr>
-</table>
-
-
-<a name="androidPowerWakeLockExample"></a><h3>Exploring a Wake Lock Example</h3>
-
-<p>All power management calls follow the same basic format:</p>
-<p><ol><li>Acquire handle to the <code>PowerManager</code> service.</li>
-<li>Create a wake lock and specify the power management flags for screen, timeout, etc.</li>
-<li>Acquire wake lock.</li>
-<li>Perform operation (play MP3, open HTML page, etc.).</li>
-<li>Release wake lock.</li>
-</ol>
-</p>
-<p>The snippet below illustrates this process.</p>
-<pre class="prettify">
-PowerManager pm = (PowerManager)mContext.getSystemService(
- Context.POWER_SERVICE);
-PowerManager.WakeLock wl = pm.newWakeLock(
- PowerManager.SCREEN_DIM_WAKE_LOCK
- | PowerManager.ON_AFTER_RELEASE,
- TAG);
-wl.acquire();
- // ...
-wl.release();
-</pre>
-
-
-<a name="androidPowerPowerManagerClass"></a><h2>PowerManager class</h2>
-
-<p>The Android Framework exposes power management to services and applications through the <code>PowerManager</code> class.</p>
-<p>User space native libraries (any hardware function in <code>//device/lib/hardware/</code> meant to serve as supporting libraries for Android runtime) should never call into Android Power Management directly (see the image above). Bypassing the power management policy in the Android runtime will destabilize the system.</p>
-<p>All calls into Power Management should go through the Android runtime PowerManager APIs.</p>
-<p> Please visit
-<a href="http://code.google.com/android/reference/android/os/PowerManager.html">http://code.google.com/android/reference/android/os/PowerManager.html</a> for a description of the API and examples.</p>
-
-
-<a name="androidPowerKernelRegistration"></a><h2>Registering Drivers with the PM Driver</h2>
-
-<p>You can register Kernel-level drivers with the Android Power Manager driver so that they're notified immediately before power down or after power up. For example, you might set a display driver to completely power down when a request comes in to power down from the user space (see the Android MSM MDDI display driver for a sample implementation).</p>
-<p>To register drivers with the Android PM driver, implement call-back handlers and register them with the Android PM, as illustrated in the snippet below:</p>
-<pre class="prettify">
-android_register_early_suspend(android_early_suspend_t *handler)
-android_register_early_resume(android_early_resume_t *handler)
-</pre>
-<p>It is critical in a drive to return immediately and not wait for anything to happen in the call back.</p>
-
-
-<a name="androidPowerEarlySuspend"></a><h2>Early Suspend</h2>
-
-<p>The early-suspend API allows drivers to get notified when user-space writes to <code>/sys/power/request_state</code> to indicate that the user visible sleep state should change. Suspend handlers are called in order of low to high (4 - 1 below) and resume handlers are called in order of high to low (1 - 4 below).</p>
-<ol>
- <li><code>EARLY_SUSPEND_LEVEL_BLANK_SCREEN</code>: </li>
- <ul>
- <li>on suspend: the screen should be turned off but the framebuffer must still be accessible. </li>
- <li>on resume: the screen can be turned back on.</li>
- </ul>
- <li><code>EARLY_SUSPEND_LEVEL_STOP_DRAWING</code>:
- <ul>
- <li>on suspend: this level notifies user-space that it should stop accessing the framebuffer and it waits for it to complete.</li>
- <li>on resume: it notifies user-space that it should resume screen access. Two methods are provided, console switch or a sysfs interface.</li>
- </ul>
- </li>
- <li><code>EARLY_SUSPEND_LEVEL_DISABLE_FB</code>: Turn off the framebuffer
- <ul>
- <li>on suspend: turn off the framebuffer</li>
- <li>on resume: turn the framebuffer back on. </li>
- </ul>
- </li>
- <li><code>EARLY_SUSPEND_LEVEL_STOP_INPUT</code>:
- <ul>
- <li>on suspend: turn off input devices that are not capable of wakeup or where wakeup is disabled. </li>
- <li>on resume: turn the same devices back on.</li>
- </ul>
- </li>
-</ol>
diff --git a/pdk/docs/porting/release_keys.jd b/pdk/docs/porting/release_keys.jd
deleted file mode 100755
index 116cdbb..0000000
--- a/pdk/docs/porting/release_keys.jd
+++ /dev/null
@@ -1,82 +0,0 @@
-page.title=Creating Release Keys and Signing Builds
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
- <div id ="qv">
-<h2>In this document</h2>
-<a name="toc"/>
- <ul>
- <li><a href="#intro">Introduction</a></li>
- <li><a href="#generatingKeys">Generating keys</a></li>
- <li><a href="#signing">Signing a build for release</a></li>
- </ul>
- </div>
-</div>
-<a name="intro"></a>
-<h3>Introduction</h3>
-<p>Android requires that each application be signed with the developer's digital keys to enforce signature permissions and application request to use shared user ID or target process. For more information on the general Android security principles and signing requirements, see the Android Security and Permissions section in the Android Developer Guide). The core Android platform uses four keys to maintain security of core platform components:</p>
-<ul>
- <li><strong>platform</strong>: a key for packages that are part of the core platform.</li>
- <li><strong>shared</strong>: a key for things that are shared in the <code>home/contacts</code> process.</li>
- <li><strong>media</strong>: a key for packages that are part of the <code>media/download</code> system.</li>
- <li><strong>releasekey</strong>: the default key to sign with if not otherwise specified</li>
-</ul>
-<p>These keys are used to sign applications separately for release images and are not used by the Android build system. The build system signs packages with the testkeys provided in <code>build/target/product/security/</code>. Because the testkeys are part of the standard Android open source distribution, they should never be used for production devices. Instead, device manufacturers should generate their own private keys for shipping release builds.</p>
-<a name="generatingKeys"></a>
-<h3>Generating keys</h3>
-<p>A device manufacturer's keys for each product should be stored under <code>vendor/<vendor_name>/security/<product_name></code>, where <code><vendor_name></code> and <code><product_name></code> represent the manufacturer and product names. To simplify key creation, copy the script below to this directory in a file called <code>mkkey.sh</code>. To customize your keys, change the line that starts with AUTH to reflect the correct information for your company:</p>
-<pre>
-#!/bin/sh
-AUTH='/C=US/ST=California/L=Mountain View/O=Android/OU=Android/CN=Android/emailAddress=android@android.com'
-if [ "$1" == "" ]; then
- echo "Create a test certificate key."
- echo "Usage: $0 NAME"
- echo "Will generate NAME.pk8 and NAME.x509.pem"
- echo " $AUTH"
- exit
-fi
-
-openssl genrsa -3 -out $1.pem 2048
-
-openssl req -new -x509 -key $1.pem -out $1.x509.pem -days 10000 \
- -subj "$AUTH"
-
-echo "Please enter the password for this key:"
-openssl pkcs8 -in $1.pem -topk8 -outform DER -out $1.pk8 -passout stdin
-</pre>
-<p><code>mkkey.sh</code> is a helper script to generate the platform's keys. NOTE: the password you type will be visible in your terminal window. Note the passwords you use as you will need them to sign release builds.</p>
-<p>To generate the required 4 platform keys, run <code>mkkey.sh</code> four times specifying the key name and password for each:</p>
-<pre>
-sh mkkey.sh platform # enter password
-sh mkkey.sh media # enter password
-sh mkkey.sh shared # enter password
-sh mkkey.sh release # enter password
-</pre>
-<p>You should now have new keys for your product.</p>
-<a name="signing"></a>
-<h3>Signing a build for release</h3>
-<p>Signing a build for a release is a two-step process. </p>
-<ol>
- <li>Sign all the individual parts of the build.</li>
- <li>Put the parts back together into image files.</li>
-</ol>
-<h4>Signing applications</h4>
-<p>Use <code>build/tools/releasetools/sign_target_files_apks</code> to sign a <code>target_files</code> package. The <code>target_files</code> package isn't built by default, you need to make sure to specify the "dist" target when you call make. For example:</p>
-<pre>
-make -j4 PRODUCT-<product_name>-user dist
-</pre>
-<p>The command above creates a a file under <code>out/dist </code>called <code><product_name>-target_files.zip</code>. This is the file you need to pass to the <code>sign_target_files_apks</code> script.</p>
-<p>You would typically run the script like this:</p>
-<pre>
-./build/tools/releasetools/sign_target_files_apks -d vendor/<vendor_name>/security/<product_name> <product_name>-target_files.zip signed-target-files.zip
-</pre>
-<p>If you have prebuilt and pre-signed apk's in your build that you don't want re-signed, you must explicitly ignore them by adding <code>-e Foo.apk=</code> to the command line for each apk you wish to ignore.</p>
-<p><code>sign_target_files_apks</code> also has many other options that could be useful for signing release builds. Run it with <code>-h</code> as the only option to see the full help.</p>
-<h4>Creating image files</h4>
-<p>Once you have <code>signed-target-files.zip</code>, create the images so you can put it onto a device with the command below:</p>
-<pre>
-build/tools/releasetools/img_from_target_files signed-target-files.zip signed-img.zip
-</pre>
-<p><code>signed-img.zip</code> contains all the <code>.img</code> files. You can use <code>fastboot update signed-img.zip</code> to use fastboot to get them on the device.</p>
diff --git a/pdk/docs/porting/sensors.jd b/pdk/docs/porting/sensors.jd
deleted file mode 100755
index 1b24026..0000000
--- a/pdk/docs/porting/sensors.jd
+++ /dev/null
@@ -1,67 +0,0 @@
-page.title=Sensors
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidSensorsInterface">Interface</a></li>
-</ul>
-</div>
-</div>
-
-<p>Android defines a user space C abstraction interface for sensor hardware. The interface header is defined in
-<code>hardware/libhardware/include/hardware/sensors.h</code>.
-In order to integrate sensors with Android you need to build a shared library that implements this interface.
-
-The types of sensors currently supported by Android include:
-<ul>
-<li>Accelerometer</li>
-<li>Magnetic Field</li>
-<li>Orientation</li>
-<li>Gyroscope</li>
-<li>Light</li>
-<li>Pressure</li>
-<li>Temperature</li>
-<li>Proximity</li>
-</ul>
-</p>
-
-<a name="androidSensorBuildingDriver"></a><h3>Building a Sensor Library</h3>
-<p> To implement a Sensors driver, create a shared library that implements the interface defined in <code>sensors.h</code>. You must name your shared library
-<code>libsensors.so</code> so that it will get loaded from <code>/system/lib</code> at runtime.
-</p>
-
-<p> The following stub file, <code>Android.mk</code>, ensures that <code>libsensors</code> compiles and links to the appropriate libraries:</p>
-
-<pre>
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := sensors
-
-LOCAL_PRELINK_MODULE := false
-
-LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
-
-LOCAL_SHARED_LIBRARIES := liblog
-# include any shared library dependencies
-
-LOCAL_SRC_FILES := sensors.c
-
-include $(BUILD_SHARED_LIBRARY)
-</pre>
-
-<a name="androidSensorsInterface"></a><h3>Interface</h3>
-
-
-<p><span class="lh3"><a name="androidDoxygenNote"></a></span>
-
-<p class="note"><strong>Note</strong>: This document relies on some Doxygen-generated content that appears in an iFrame below. To return to the Doxygen default content for this page, <a href="sensors.html">click here</a>.</p>
-
-
-<iframe onLoad="resizeDoxFrameHeight();" src="sensors_8h.html" scrolling="no" scroll="no" id="doxygen" marginwidth="0" marginheight="0"
-frameborder="0" style="width:100%;"></iframe>
diff --git a/pdk/docs/porting/source_setup_guide.jd b/pdk/docs/porting/source_setup_guide.jd
deleted file mode 100755
index 77e1d60..0000000
--- a/pdk/docs/porting/source_setup_guide.jd
+++ /dev/null
@@ -1,118 +0,0 @@
-page.title=Host System Setup
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<a name="toc"/>
-<div style="padding:10px">
-<a href="#androidSourceSetupIntro">Introduction</a><br/>
-<a href="#androidSourceSetupBuildSystemSetupPackages">Installing Packages</a><br/><div style="padding-left:40px">
-
-<a href="#androidSourceSetupBuildSystemSetupRequiredPackages">Required Packages</a><br/>
-<a href="#androidSourceSetupUbuntu606Intro">Ubuntu 6.06 (Dapper)</a><br/>
-<a href="#androidSourceSetupUbuntu710Intro">Ubuntu 7.10</a><br/>
-<a href="#androidSourceSetupUbuntu804Intro">Ubuntu 8.04</a><br/></div>
-<a href="#androidSourceSetupBuildSystemSetupJavaIntro">Installing Java</a><br/></div>
-
-<a name="androidSourceSetupIntro"></a><h2>Introduction</h2>
-
-<p>This section provides instructions on how to configure your host system to build Android for mobile devices. While Android is designed as host-environment agnostic, it has been tested and is known to work on the following Linux operating system; Ubuntu 6.06 (Dapper), 7.10 (Gutsy), and 8.04. Cygwin is not recommended. </p>
-
-
-<a name="androidSourceSetupBuildSystemSetupPackages"></a><h2>Installing Packages</h2>
-
-
-
-<a name="androidSourceSetupBuildSystemSetupRequiredPackages"></a><h3>Required Packages</h3>
-
-<p>Android requires the following system packages:</p>
-<p><ul>
-<li>flex: This lexical analyzer generator is used to read a given input file for a description of a scanner to generate.</li>
-<li>bison: This is a general-purpose parser generator.</li>
-<li>gperf: This is a perfect hash function generator.</li>
-<li>libesd0-dev: This enlightened sound daemon (dev files) is used to mix digitized audio streams for playback by a single device.</li>
-<li>libwxgtk2.6-dev: This package provides GUI components and other facilities for many different platforms.</li>
-<li>build-essential: This package contains a list of packages considered fundamental to building Debian packages.</li>
-</ul></p>
-
-
-<a name="androidSourceSetupUbuntu606Intro"></a><h3>Ubuntu 6.06 (Dapper)</h3>
-
-<p>On a clean Dapper system, type the following:</p>
-<pre class="prettyprint">
-% sudo apt-get install flex bison gperf libesd0-dev libwxgtk2.6-dev zlib1g-dev
- build-essential
-</pre>
-<p>This snippet includes an artificial line break to maintain a print-friendly document.</p>
-
-
-<a name="androidSourceSetupUbuntu710Intro"></a><h3>Ubuntu 7.10</h3>
-
-<ol><li>The libwxgtk2.6-dev package will only work if the following code is included in your /etc/apt/source file.
-<p><pre class="prettyprint">
-## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
-## team, and may not be under a free license. Please satisfy yourself as to
-## your rights to use the software. Also, please note that software in
-## universe WILL NOT receive any review or updates from the Ubuntu security
-## team.
-# Line commented out by installer because it failed to verify:
-deb http://us.archive.ubuntu.com/ubuntu/ gutsy universe
-# Line commented out by installer because it failed to verify:
-deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy universe
-# Line commented out by installer because it failed to verify:
-deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates universe
-# Line commented out by installer because it failed to verify:
-deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates universe
-</pre></p></li>
-<li>Install required packages with the following command:
-<p><pre class="prettyprint">
-% sudo apt-get install flex bison gperf libesd0-dev libwxgtk2.6-dev zlib1g-dev
- build-essential
-</pre></p>
-This snippet includes an artificial line break to maintain a print-friendly document.
-</li>
-<li>
-<p>Install the X11 development environment with the following commands:</p>
-<p><pre class="prettyprint">
-% sudo apt-get install x-dev
-% sudo apt-get install libx11-dev
-% sudo apt-get install libncurses5-dev
-</pre></p>
-</li>
-</ol>
-
-
-<a name="androidSourceSetupUbuntu804Intro"></a><h3>Ubuntu 8.04</h3>
-
-<p>On a clean system, type the following:</p>
-<pre class="prettify">
-% sudo apt-get install flex bison gperf libesd0-dev libwxgtk2.6-dev
-zlib1g-dev build-essential
-% sudo apt-get install x-dev
-% sudo apt-get install libx11-dev
-% sudo apt-get install libncurses5-dev
-% sudo apt-get install sun-java5-jdk
-</pre>
-
-
-<a name="androidSourceSetupBuildSystemSetupJavaIntro"></a><h2>Installing Java</h2>
-
-<p>Android source code includes a hard dependency on the Java Developer Kit (JDK) 5.0 Update 12 or greater. The specific file name of the Update 12 package is <code>jdk-1_5_0_12-linux-i586.bin</code>. To download this version of the Java JDK:</p>
-<p><ol>
-<li>Navigate to: <a href="http://java.sun.com/products/archive/">http://java.sun.com/products/archive/</a>.</li>
-<li>Select '5.0 Update 12' from the 'Java 2 Platform Standard Edition (J2SE)' -> 'JDK/JRE - 5.0' field and click 'Go.'</li>
-<li>Click 'Download JDK.'</li>
-<li>In the 'Linux Platform' section, click 'Linux self-extracting file' associated with the jdk-1_5_0_12-linux-i586.bin package.</li>
-<li>Follow the installation instructions.</li>
-</ol>
-</p>
-
-<p>Once you have cleanly installed the JDK, modify your PATH environment variable to include <code><jdk-install-dir>/jdk1.5.0_12/bin</code> at its beginning so that Dapper will use the correct installation. </p>
-<p><b>Ubuntu 7.10</b></p>
-<p>An alternative method to quickly install Java is to enable multiverse repo in <code>/etc/apt/sources.list</code> and then execute:</p>
-<pre class="prettyprint">
-% sudo apt-get install sun-java5-jdk
-</pre>
-
-
-
diff --git a/pdk/docs/porting/stk.jd b/pdk/docs/porting/stk.jd
deleted file mode 100755
index a73ed93..0000000
--- a/pdk/docs/porting/stk.jd
+++ /dev/null
@@ -1,508 +0,0 @@
-page.title=Sim Toolkit Application (STK)
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidSTKRILRilUp">Communication from the RIL up</a></li>
-<li><a href="#androidSTKRILApplciationDown">Communication from the application down</a></li>
-<li><a href="#androidSTKTelephony">Telephony</a></li>
-<li><a href="#androidSTKFeatureList">Feature List</a></li>
-</ul>
-</div>
-</div>
-
-
-<p>This document offers a high-level overview of the SIM Toolkit Application for Android 1.0 and is primarily of interest for implementors of the Radio Interface Layer (RIL). The STK is R96 compatible (3GPP TS 11.14 v5.9.0) and complies partially with R99 (3GPP TS 101.267 v8.17.0). See the <a href="#androidSTKFeatureList">STK Feature List</a> for the complete feature list. </p>.
-<p>The Android STK implementation includes three layers:</p>
-<ul>
- <li> STK RIL: Low-level layer provided by the vendor plus <code>libril</code>.</li>
- <li>STK Telephony: Protocol translation layer that converts raw messages provided by the STK RIL to application level messages.</li>
- <li>STK Application: Provides the user interface interactions needed by the STK.</li>
-</ul>
-<p align="left"><br />
- <img src="images/stk.gif" alt="STK schema" width="566" height="516" /><br />
-</p>
-<p> The Sim Toolkit communication flow is bi-directional and commands can originate from the <code>STK RIL</code> packaged in <code>RIL_UNSOL_STK_PROACTIVE_COMMAND</code>, <code>RIL_UNSOL_STK_EVENT_NOTIFY</code>, <code>RIL_UNSOL_REFRESH</code> and <code>RIL_UNSOL_STK_SESSION_END</code> messages.</p>
-<p align="left">Commands originating from the STK App or STK Telephony layers are packaged in <code>RIL_REQUEST_STK_SEND_TERMINAL_REPSONSE</code>, <code>RIL_REQUEST_SEND_ENVELOPE_COMMAND</code> or <code>RIL_REQUEST_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM</code>.</p>
-<p align="left">For commands sent or recieved by the STK RIL, it's not necessary to remove unused sub-commands because the upper layers will gracefully ignore unused information contained in the message. The content of each message is encoded in the BER-TLV format except for two:</p>
-<ul>
- <li><code>RIL_UNSOL_STK_SESSION_END</code>: has no data </li>
- <li><code>RIL_REQUEST_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM</code>: has a single byte of data that indicates accept/reject.</li>
-</ul>
-<p>See the <a href="http://pdk-docs.prom.corp.google.com/docs/telephony.html">Android Platform Development Kit</a> for details.</p>
-
-
-<a name="androidSTKRILRilUp"></a><h4>Communication from the RIL up</h4>
-
-<p>Communication to the upper layers is done using the <code>RIL_UNSOL_xxx</code> family of commands defined in <code>/hardware/ril/include/ril.h</code>. The payload for each command is encoded using BER-TLV. As stated above, it is not necessary to remove extraneous fields. This allows the SIM to pass a complete command to the upper layers and simplifies STK RIL code. Below is the mapping from RIL_UNSOL_xxx commands to the SIM commands.</p>
-
-
-<a name="androidSTKRILRilUpUnsol"></a><h4>RIL_UNSOL_STK_PROACTIVE_COMMAND</h4>
-
-<p> The Sim Toolkit communication flow is bi-directional and commands can originate from the <code>STK RIL</code> packaged in <code>RIL_UNSOL_STK_PROACTIVE_COMMAND</code>, <code>RIL_UNSOL_STK_EVENT_NOTIFY</code>, <code>RIL_UNSOL_REFRESH</code> and <code>RIL_UNSOL_STK_SESSION_END</code> messages.</p>
-
-
-<a name="androidSTKRILRilUpDisplay"></a><h5>DISPLAY TEXT (6.4.1)</h5>
-
-<p>This command is handled by <code>StkDialogActivity</code>. If the immediate response flag is set, the terminal response is sent with an "OK" <code>(0x00)</code> result code when the message is first received. Otherwise the terminal response is sent when the dialog is dismissed either from user action or it times out.</p>
-<p>The user sees a dialog box with a message and / or icon, an OK button, and a Cancel button.</p>
-<p>Terminal responses include:</p>
-<ul>
- <li> "OK" (0x00)</li>
- <li> "Session terminated by user" (0x10)</li>
- <li> "Backward move by user" (0x11)</li>
- <li> "No response from user" (0x12)</li>
-</ul>
-
-<img src="images/stk_display_text.gif" border="1">
-
-
-<a name="androidSTKRILRilUpGetInKey"></a><h5>GET IN KEY (6.4.2)</h5>
-
-<P>This command is processed by <code>StkInputActivity</code>. It displays a dialog box with a prompt and or an icon and yes and no buttons.</p>
-<p>Terminal responses include:</p>
-<p>
-<ul>
- <li> “OK” (0x00) with “Yes” or “No” as the response text</li>
- <li> “Session terminated by user” (0x10) << Currently not supported</li>
- <li> “Backward move by user” (0x11)</li>
- <li> “No response from user” (0x12)</li>
-</ul>
-</p>
-
-
-<a name="androidSTKRILRilUpGetInput"></a><h5>GET INPUT (6.4.3)</h5>
-
-<p>This command is handled by <code>StkInputActivity</code>.
-<p>The user sees a dialog box with a prompt and / or an icon, a text box with optional default text, and an OK button. 'digits only,' 'min,' 'max,' and 'hidden' modes are all supported.
-<p>Terminal responses include:</p>
- <ul>
- <li>OK” (0x00) if the input criteria is met </li>
- <li>“Session terminated by user” (0x10) << Currently not supported </li>
- <li>“Backward move by user” (0x11) </li>
- <li>“No response from user” (0x12) </li>
-</ul>
-
-
-<a name="androidSTKRILRilUpPlayTone"></a><h5>PLAY TONE (6.4.5)</h5>
-
-<p>This command is processed by <code>ToneDialog</code>.</p>
-<p>The user sees a dialog box with a prompt for the duration of the tone or until the user presses the back key.</p>
-<p>Terminal responses include:</p>
- <ul>
- <li>"OK" (0x00) if the tone is played to completion </li>
- <li>“Session terminated by user” (0x10) if back button is pressed </li>
-</ul>
-
-
-<a name="androidSTKRILRilUpSetMenu"></a><h5>SET UP MENU (6.4.8)</h5>
-
-<p>This command is processed by <code>StkAppService</code>. It installs the STK ICON on the home page and prepares the Main menu for use when the ICON is selected. Typically this is the first RIL unsolicited command and should not be sent until after the <code>RIL_RadioFunctions.getVersion</code> routine is called.</p>
-<p>Terminal reponses:</p>
-<ul>
- <li>“OK” (0x00) </li>
-</ul>
-<p>At a later time, the STK ICON will be selected and <code>StkMenuActivity</code> will launch and display the Main menu to the user. If an item is selected, it will be returned to the RIL in <code>RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND</code> with the item id. If no item is selected, the <code>StkMenuActivity</code> will receive a timeout message and return to the Main menu and no message will be sent to the RIL.</p>
-<p>Depending upon what item is selected, the SIM may perform another action, such as sending another set of menu items via a SELECT ITEM command or performing an action like send an SMS or text display. </p>
-
-
-<a name="androidSTKRILRilUpSelectItem"></a><h5>SELECT ITEM (6.4.9)</h5>
-
-<p>This command is processed by <code>StkMenuActivity</code>. Instead of displaying the Main menu, the list of menu items provided in this command are displayed.</p>
-<p>Terminal responses:
-<ul>
- <li> “OK” (0x00) </li>
-</ul>
-<p>The command then proceeds as in the SETUP MENU. </p>
-
-
-<a name="androidSTKRILRilUpSetIdle"></a><h5>SET UP IDLE MODE TEXT (6.4.22)</h5>
-
-<p><code>StkAppService</code> displays the message and or icon as an Android notification.</p>
-<p>Terminal responses include:</p>
- <ul>
- <li>OK” (0x00)</li>
-</ul>
-
-
-<a name="androidSTKRILRilUpLaunchBrowser"></a><h5>LAUNCH BROWSER (6.4.26)</h5>
-
-<p>This command is initially handled by <code>StkDialogActivity</code> and presents the user with a confirmation dialog, a URL, and OK, and cancel buttons. If the user presses OK, the browser is launched using the URL.</p>
-<p>Terminal responses include:</p>
- <ul>
- <li>“OK” (0x00) the browser has been launched </li>
- <li>“Session terminated by user” (0x10) </li>
- <li>“Backward move by user” (0x11)</li>
- <li>“No response from user” (0x12)</li>
-</ul>
-
-
-<a name="androidSTKRILRilUpEvent"></a><h4>RIL_UNSOL_STK_EVENT_NOTIFY</h4>
-
-<p align="left">The commands in this section are proactive in nature. They are handled by the STK RIL and the upper layers and delivered using <code>RIL_UNSOL_STK_EVENT_NOTIFY</code> message. This distinction is an implementation detail of Android and is not defined in the 3GPP sepcifications.</p>
-<p align="left">The upper layers handle the UI and the STK RIL handles all other aspects of each command, which means that the STK RIL sends the terminal response (it is never sent by the STK App). Each command must be a properlery-formed proactive command. It is not necessary to remove unused fields. The behavior of any other command <em>within this context </em>sent by <code>RIL_UNSOL_STK_EVENT_NOTIFY</code> is undefined. See Event Notify Command Details. </p>
-<ul>
- <li>SEND SMS (6.4.10) – no response</li>
- <li>SEND SS (6.4.11) – no response</li>
- <li>SEND USSD (6.4.12) – no response</li>
- <li>SET UP CALL (6.4.13) – responds with <code>RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM</code></li>
- <li>SEND DTMF (6.4.24) – no response</li>
-</ul>
-
-<img src="images/stk_send_SMS.gif">
-
-
-<a name="androidSTKRILRilUpUnsolSim"></a><h4>RIL_UNSOL_SIM_REFRESH</h4>
-
-<p> Used to send the <code>REFRESH</code> command. No response.</p>
-
-
-<a name="androidSTKRILRilUpRefresh"></a><h4>REFRESH (6.4.7)</h4>
-
-<p><code>RIL_UNSOL_STK_SESSION_END</code></p>
-<p>Sent by the SIM to signal the end of a session. No content and no response.</p>
-<P><img src="images/stk_refresh_init.gif"></p>
-<p><img src="images/stk_refresh_update.gif"> </p>
-<p><img src="images/stk_refresh_reset.gif"> </p>
-
-
-
-<a name="androidSTKRILRilUpRilUnsol"></a><h4>RIL_UNSOL_STK_SESSION_END</h4>
-
-<p>Sent by SIM to signal end of session. No content and no response.</p>
-
-
-<a name="androidSTKRILApplciationDown"></a><h4>Communication from the application down</h4>
-
-<p>Communication from the upper layers to the RIL uses the commands below (defined in <code>ril.h</code>):</p>
-
-
-<a name="androidSTKRILApplciationDownTerminal"></a><h4>RIL_REQUEST_STK_SEND_TERMINAL_REPSONSE</h4>
-
-<p> Used to send a terminal response for commands sent via <code>RIL_UNSOL_STK_PROACTIVE_COMMAND</code>. </P>
-<P>Contents include TERMINAL RESPONSE (6.8).</p>
-
-
-<a name="androidSTKRILApplciationDownEnvelope"></a><h4>RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND</h4>
-
-<p>Used to send information from to SIM encoded as BER-TLV tags (see R96 section 13). Two tags are supported:</p>
-<ul>
- <li> BER_MENU_SELECTION_TAG (0xd3); Contents: MENU SELECTION (8)</li>
- <li>BER_EVENT_DOWNLOAD_TAG (0xd6); Contents: EVENT DOWNLOAD Language selection (11.8)</li>
-</ul>
-<P>Content for these tags include:
-<ul>
- <li>MENU SELECTION (8)</li>
- <li>EVENT DOWNLOAD Language selection (11.8)</li>
-</ul>
-
-
-
-<a name="androidSTKRILApplciationDownFromSim"></a><h4>RIL_REQUEST_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM</h4>
-
-<p>Returns a single-byte parameter:</p>
-<ul>
- <li>1: accepted</li>
- <li>0: not accepted</li>
-</ul>
-<p> This should cause the terminal response to be sent to the SIM.</p>
-
-
-<a name="androidSTKTelephony"></a><h3>Telephony</h3>
-
-<p>STK Telephony is a protocol translation layer used to convert messages from BERL-TLV format to Application messages and back. </p>
-<p>On the STK RIL side, STK Telphony receives raw buffer messages from RIL I/F and decodes them into a command parameters container before passing them on to the application. On the Application side, this layer receives application responses for commands and encodes them into raw buffer messages, which then get sent over the RIL I/F back to the SIM card.</p>
-
-
-<a name="androidSTKFeatureList"></a><h3>Feature List</h3>
-
-<table border="1" cellspacing="2" cellpadding="2">
- <tr>
- <td><p align="center"><strong>Feature</strong></p></td>
- <td><p align="center"><strong>Support</strong></p></td>
- <td><p align="center"><strong>Implemented by</strong></p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PROFILE DOWNLOAD - before radio turn-on</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>SET UP MENU</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="SELECT ITEM "><p>SELECT ITEM </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>GET INPUT</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>GET INKEY</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>DISPLAY TEXT</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="SET UP IDLE MODE TEXT "><p>SET UP IDLE MODE TEXT </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="SEND SHORT MESSAGE "><p>SEND SHORT MESSAGE </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband – ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="SEND SS "><p>SEND SS </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband – ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>SEND USSD</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband – ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>SEND DTMF</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband – ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>LAUNCH BROWSER</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>SET UP CALL</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband – ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PLAY TONE</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>POLL INTERVAL</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>POLLING OFF</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="TIMER MANAGEMENT "><p>TIMER MANAGEMENT </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>MORE TIME</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PROVIDE LOCAL INFORMATION (MCC, MNC, LAC, Cell ID & IMEI)</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PROVIDE LOCAL INFORMATION (NMR)</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PROVIDE LOCAL INFORMATION (Timing Advance)</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PROVIDE LOCAL INFORMATION(battery state)</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PROVIDE LOCAL INFORMATION (IMEISV)</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PROVIDE LOCAL INFORMATION (NMR(UTRAN))</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PROVIDE LOCAL INFORMATION (Search Mode change)</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>REFRESH</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
-
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="SET UP EVENT LIST "><p>SET UP EVENT LIST </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband – ME</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: MT call</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Call connected (all modes)</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Call disconnected (all modes)</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Idle screen available</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Browser termination</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="Event: Location status "><p>Event: Location status </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Data available</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Channel status</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Access Technology changed</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Local Connection</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Event: Network Search Mode Change</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
-
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>GET READER STATUS</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>POWER ON CARD</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>POWER OFF CARD</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>PERFORM CARD ADPU</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>RUN AT COMMAND</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>OPEN CHANNEL</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="CLOSE CHANNEL "><p>CLOSE CHANNEL </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>RECEIVE DATA</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>SEND DATA</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>GET CHANNEL STATUS</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
-
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>CALL CONTROL BY SIM</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>SMS-PP data download</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>SMS-CB data download</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">Baseband</p></td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="BIP over GPRS "><p>BIP over GPRS </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>BIP over USB</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom" u1:str="Text Attributes "><p>Text Attributes </p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">NO</p></td>
- <td nowrap="nowrap" valign="bottom"> </td>
- </tr>
- <tr>
- <td nowrap="nowrap" valign="bottom"><p>Color icons</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">YES</p></td>
- <td nowrap="nowrap" valign="bottom"><p align="center">ME</p></td>
- </tr>
-</table>
diff --git a/pdk/docs/porting/system_requirements.jd b/pdk/docs/porting/system_requirements.jd
deleted file mode 100755
index 0a0b331..0000000
--- a/pdk/docs/porting/system_requirements.jd
+++ /dev/null
@@ -1,60 +0,0 @@
-page.title=Device Requirements
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<p>While Android is designed to support a wide variety of hardware platforms and configurations, this section provides recommended minimum device requirements.</p>
-<table border=1 cellpadding=2 cellspacing=0>
- <tbody><tr>
- <th scope="col">Feature</th>
- <th scope="col">Minimum Requirement</th>
- <th scope="col">Notes</th>
- </tr>
- <tr>
- <td>Chipset</td>
- <td>ARM-based</td>
- <td>For the first release, Android is primarily targeted towards mobile handsets and portions of the platform, such as Dalvik VM graphics processing, currently assume an ARM architecture.</td>
- </tr>
- <tr>
- <td>Memory</td>
- <td>128 MB RAM; 256 MB Flash External</td>
- <td>Android can boot and run in configurations with less memory, but it isn't recommended.</td>
- </tr>
- <tr>
- <td>Storage</td>
- <td>Mini or Micro SD </td>
- <td>Not necessary for basic bring up, but recommended.</td>
- </tr>
- <tr>
- <td>Primary Display </td>
- <td>HVGA required</td>
- <td>The current Android interface targets a touch-based HVGA resolution display with a touch-interface no smaller than 2.8 inches in size. However, smaller displays will suffice for initial porting.</td>
- </tr>
- <tr>
- <td>Navigation Keys </td>
- <td>5-way navigation with 5 application keys, power, camera and volume controls</td>
- <td> </td>
- </tr>
- <tr>
- <td>Camera</td>
- <td>2MP CMOS</td>
- <td>Not required for basic bring up. </td>
- </tr>
- <tr>
- <td>USB</td>
- <td>Standard mini-B USB interface</td>
- <td>Android uses the USB interface for flashing the device system images and debugging a running device.</td>
- </tr>
- <tr>
- <td>Bluetooth</td>
- <td>1.2 or 2.0 </td>
- <td>Not required for initial bring up.</td>
- </tr>
-</tbody>
-</table>
-<p>If available, your Android device can also benefit from the following optional device characteristics:</p>
-<ul>
- <li>QWERTY keyboard</li>
- <li>WiFi</li>
- <li>GPS</li>
-</ul>
diff --git a/pdk/docs/porting/tcpdump.jd b/pdk/docs/porting/tcpdump.jd
deleted file mode 100755
index 1627bc7..0000000
--- a/pdk/docs/porting/tcpdump.jd
+++ /dev/null
@@ -1,90 +0,0 @@
-page.title=Debugging with tcpdump and other tools
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-
-<a name="toc"/>
-<div style="padding:10px">
- <a href="#installing">Installing tcpdump</a><BR>
- <a href="#running">Running tcpdump</a><br/>
- <a href="#other">Other network debugging commands</a><br/>
-</div>
-
-<a name="installing"></a>
-<h3>Installing tcpdump</h3>
-<h4>Pushing the binary to an existing device</h4>
-<p>Download tcpdump from <a href="http://www.tcpdump.org/">http://www.tcpdump.org/</a>, then execute:</p>
-<pre>
-adb root
-adb remount
-adb push /wherever/you/put/tcpdump /system/xbin/tcpdump
-adb shell chmod 6755 /data/local/tmp/tcpdump
-</pre>
-<h4>Including tcpdump in the build image</h4>
-<p>If you are running your own build, execute:</p>
-<pre>
-mmm external/tcpdump # install the binary in out/.../system/xbin
-make snod # build a new system.img that includes it
-</pre>
-<p>Flash the device as usual, for example, <code>fastboot flashball</code>.</p>
-<p>If you want to build tcpdump by default, add <code>CUSTOM_TARGETS += tcpdump</code> to your <code>buildspec.mk</code>.</p>
-<h3><a name="running"></a>Running tcpdump</h3>
-<p>You need to have root access on your device. </p>
-<h4>Batch mode capture</h4>
-<p>The typical procedure is to capture packets to a file and then examine the file on the desktop, as illustrated below:</p>
-<pre>
-adb shell tcpdump -i any -p -s 0 -w /sdcard/capture.pcap
-# "-i any": listen on any network interface
-# "-p": disable promiscuous mode (doesn't work anyway)
-# "-s 0": capture the entire packet
-# "-w": write packets to a file (rather than printing to stdout)
-
- ... do whatever you want to capture, then ^C to stop it ...
-
-adb pull /sdcard/capture.pcap .
-sudo apt-get install wireshark # or ethereal, if you're still on dapper
-wireshark capture.pcap # or ethereal
-
- ... look at your packets and be wise ...
-</pre>
-<p>You can run <code>tcpdump</code> in the background from an interactive shell or from Terminal. By default, <code>tcpdump</code> captures all traffic without filtering. If you prefer, add an expression like port 80 to the <code>tcpdump</code> command line.</p>
-<h4>Real time packet monitoring</h4>
-<p>Execute the following if you would like to watch packets go by rather than capturing them to a file (<code>-n</code> skips DNS lookups. <code>-s 0</code> captures the entire packet rather than just the header):</p>
-<pre>
-adb shell tcpdump -n -s 0
-</pre>
-<p>Typical <code>tcpdump</code> options apply. For example, if you want to see HTTP traffic:</p>
-<pre>
-adb shell tcpdump -X -n -s 0 port 80
-</pre>
-<p>You can also monitor packets with <code>wireshark</code> or <code>ethereal</code>, as shown below:</p>
-<pre>
-# In one shell, start tcpdump.
-adb shell "tcpdump -n -s 0 -w - | nc -l -p 11233"
-
-# In a separate shell, forward data and run ethereal.
-adb forward tcp:11233 tcp:11233 && nc 127.0.0.1 11233 | ethereal -k -S -i -
-</pre>
-<p>Note that you can't restart capture via <code>ethereal</code>. If anything goes wrong, you will need to rerun both commands.</p>
-<p>For more immediate output, add <code>-l</code> to the <code>tcpdump</code> command line, but this can cause <code>adb</code> to choke (it helps to use a nonzero argument for <code>-s</code> to limit the amount of data captured per packet; <code>-s 100</code> is sufficient if you just want to see headers).</p>
-<h4>Disabling encryption</h4>
-<p>If your service runs over <code>https</code>, <code>tcpdump</code> is of limited use. In this case, you can rewrite some service URLs to use <code>http</code>, for example:</p>
-<pre>
-vendor/google/tools/override-gservices url:calendar_sync_https_proxy \
- https://www.google.com/calendar rewrite http://android.clients.google.com/proxy/calendar
-</pre>
-<h3><a name="other"></a>Other network debugging commands</h3>
-<h4>On the device:</h4>
-<ul>
- <li><code>ifconfig interface</code>: note that unlike Linux, you need to give <code>ifconfig</code> an argument</li>
- <li><code>netcfg</code>: lists interfaces and IP addresses</li>
- <li><code>iftop</code>: like top for network</li>
- <li><code>route</code>: examine the routing table</li>
- <li><code>netstat</code>: see active network connections</li>
- <li><code>nc</code>: <code>netcat</code> connection utility</li>
-</ul>
-<h4>On the desktop:</h4>
-<ul>
- <li> <code>curl</code>: fetch URLs directly to emulate device requests</li>
-</ul>
diff --git a/pdk/docs/porting/telephony.jd b/pdk/docs/porting/telephony.jd
deleted file mode 100755
index dcf5773..0000000
--- a/pdk/docs/porting/telephony.jd
+++ /dev/null
@@ -1,230 +0,0 @@
-page.title=Radio Layer Interface
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidTelephonyRILInitialization">RIL Initialization</a></li>
-<li><a href="#androidTelephonyRILIntro">RIL Interaction</a></li>
-<li><a href="#androidTelephonyRILImplementing">Implementing the RIL</a></li>
-<li><a href="#androidTelephonyRILFunctions">RIL Functions</a></li>
-</ul>
-</div>
-</div>
-
-<p>Android's Radio Interface Layer (RIL) provides an abstraction layer between Android telephony services (<a href="http://code.google.com/android/reference/android/telephony/package-descr.html">android.telephony</a>) and radio hardware. The RIL is radio agnostic, and includes support for Global System for Mobile communication (GSM)-based radios. </P>
-
-
-<p>The diagram below illustrates the RIL in the context of Android's Telephony system architecture.</p>
-<p><img src="images/telephony.gif"></p>
-
-Solid elements represent Android blocks and dashed elements represent partner-specific blocks.
-
-<p>The RIL consists of two primary components:</p>
-<p><ul>
-<li><b>RIL Daemon</b>: The RIL daemon initializes the Vendor RIL, processes all communication from Android telephony services, and dispatches calls to the Vendor RIL as solicited commands.</li>
-<li><b>Vendor RIL</b>: The radio-specific Vendor RIL of <code>ril.h</code> that processes all communication with radio hardware and dispatches calls to the RIL Daemon (<code>rild</code>) through unsolicited commands.</li>
-</ul>
-</p>
-
-
-<a name="androidTelephonyRILInitialization"></a><h3>RIL Initialization</h3>
-
-<p>Android initializes the telephony stack and the Vendor RIL at startup as described in the sequence below:</p>
-<p><ol>
-<li>RIL daemon reads <code>rild.lib</code> path and <code>rild.libargs</code> system properties to determine the Vendor RIL library to use and any initialization arguments to provide to the Vendor RIL</li>
-<li>RIL daemon loads the Vendor RIL library and calls <code>RIL_Init</code> to initialize the RIL and obtain a reference to RIL functions</li>
-<li>RIL daemon calls <code>RIL_register</code> on the Android telephony stack, providing a reference to the Vendor RIL functions</li></ol>
-</p>
-<p>See the RIL Daemon source code at <code>//device/commands/rild/rild.c</code> for details.</p>
-<p><b>System Properties</b></p>
-<p>The following RIL-related system properties are set by the RIL library:</p>
-<p><ul>
-<li><code>ro.ril.ecclist</code>: list of valid Emergency Call Codes, for example, 911. Values are read from <code>EF_ECC</code> on the SIM and possibly supplmented by tables based on operator, network, or manufacturing code.</li></ul></p>
-
-<p>The following RIL_related system properties are available to the RIL library:</p>
-<p><ul>
-<li><code>ro.ril.hsxpa</code>: inidcates <code>hsxpa</code> support of target network.</li>
-<li><code>ro.ril.gprsclass</code>: inidcates GPRS class of target network.</li>
-<li><code>ro.ril.enable.3g.prefix=1</code>: adds the 3G prefix to the operator name.</li>
-</ul></p>
-
-<a name="androidTelephonyRILIntro"></a><h3>RIL Interaction</h3>
-
-<p>There are two forms of communication that the RIL handles:</p>
-<ul>
- <li>Solicited commands: Solicited commands originated by RIL lib, such as <code>DIAL</code> and <code>HANGUP</code>.</li>
- <li>Unsolicited responses: Unsolicited responses that originate from the baseband, such as <code>CALL_STATE_CHANGED</code> and <code>NEW_SMS</code>.</li>
-</ul>
-
-
-<a name="androidTelephonyRILSolicited"></a><h4>Solicited</h4>
-
-<p>The following snippet illustrates the interface for solicited commands:</p>
-<pre class="prettify">
-void OnRequest (int request_id, void *data, size_t datalen, RIL_Token t);
-void OnRequestComplete (RIL_Token t, RIL_Error e, void *response, size_t responselen);
-</pre>
-<p>There are over sixty solicited commands grouped by the following families:</p>
-<p>
-<ul>
- <li>SIM PIN, IO, and IMSI/IMEI (11)</li>
- <li>Call status and handling (dial, answer, mute…) (16)</li>
- <li>Network status query (4)</li>
- <li>Network setting (barring, forwarding, selection…) (12)</li>
- <li>SMS (3)</li>
- <li>PDP connection (4)</li>
- <li>Power and reset (2)</li>
- <li>Supplementary Services (5)</li>
- <li>Vendor defined and support (4)<br/>
- </li>
-</ul>
-</p>
-<p>The following diagram illustrates a solicited call in Android.</p>
-<p><img src="images/telephony_solicted_example.gif"></p>
-
-
-<a name="androidTelephonyRILUnsolicited"></a><h4>Unsolicited</h4>
-
-<p>The following snippet illustrates the interface for unsolicited commands:</p>
-<pre class="prettify">
-void OnUnsolicitedResponse (int unsolResponse, void *data, size_t datalen);
-</pre>
-<p>There are over ten unsolicited commands grouped by the following families:</p>
-<p>
-<ul>
-<li>Network status changed (4)</li>
-<li>New SMS notify (3)</li>
-<li>New USSD notify (2)</li>
-<li>Signal strength or time changed (2)</li>
-</ul>
-</p>
-<p>The following diagram illustrates an unsolicited call in Android.</p>
-<p><img src="images/telephony_unsolicted_example.gif"></p>
-
-
-<a name="androidTelephonyRILImplementing"></a><h3>Implementing the RIL</h3>
-
-<p>To implement a radio-specific RIL, create a shared library that implements a set of functions required by Android to process radio requests. The required functions are defined in the RIL header (<code>/include/telephony/ril.h</code>).</p>
-<p>The Android radio interface is radio-agnostic and the Vendor RIL can use any protocol to communicate with the radio. Android provides a reference Vendor RIL, using the Hayes AT command set, that you can use as a quick start for telephony testing and a guide for commercial vendor RILs. The source code for the reference RIL is found at <code>/commands/reference-ril/</code>.</p>
-<p>Compile your Vendor RIL as a shared library using the convention <code>libril-<companyname>-<RIL version>.so</code>, for example, libril-acme-124.so, where:</p>
-<p><ul>
-<li><b>libril</b>: all vendor RIL implementations start with 'libril'</li>
-<li><b><companyname></b>: a company-specific abbreviation</li>
-<li><b><RIL version></b>: RIL version number</li>
-<li><b>so</b>: file extension</li>
-</ul>
-</p>
-
-
-<a name="androidTelephonyRILInit"></a><h4>RIL_Init</h4>
-
-<p>Your Vendor RIL must define a RIL_Init function that provides a handle to the functions which will process all radio requests. RIL_Init will be called by the Android RIL Daemon at boot time to initialize the RIL.</p>
-
-<pre class="prettify">
-RIL_RadioFunctions *RIL_Init (RIL_Env* env, int argc, char **argv);
-</pre>
-
-<p>RIL_Init should return a RIL_RadioFunctions structure containing the handles to the radio functions:</p>
-<pre class="prettify">
-type structure {
- int RIL_version;
- RIL_RequestFunc onRequest;
- RIL_RadioStateRequest onStateRequest;
- RIL_Supports supports;
- RIL_Cancel onCancel;
- RIL_GetVersion getVersion;
-}
-RIL_RadioFunctions;
-</pre>
-
-
-<a name="androidTelephonyRILFunctions"></a><h3>RIL Functions</h3>
-
-<p><code>ril.h</code> defines RIL states and variables, such as <code>RIL_UNSOL_STK_CALL_SETUP</code>, <code>RIL_SIM_READY</code>, <code>RIL_SIM_NOT_READY</code>, as well as the functions described in the tables below. Skim the header file (<code>/device/include/telephony/ril.h</code>) for details.</p>
-
-
-<a name="androidRilFunctionsSolicited"></a><h4>RIL Solicited Command Requests</h4>
-
-<p>The vendor RIL must provide the functions described in the table below to handle solicited commands. The RIL solicited command request types are defined in <code>ril.h</code> with the <code>RIL_REQUEST_</code> prefix. Check the header file for details.</p>
-<p><table>
- <tr><th scope="col">Name</th><th scope="col">Description</th></tr>
- <tr>
- <td valign="top"><code> void (*RIL_RequestFunc) (int request, void *data, size_t datalen, RIL_Token t);</code></td>
- <td valign="top">
- <p>This is the RIL entry point for solicited commands and must be able to handle the various RIL solicited request types defined in <code>ril.h</code> with the <code>RIL_REQUEST_</code> prefix.</p>
- <ul>
- <li><code>request</code> is one of <code>RIL_REQUEST_*</code></li>
- <li><code>data</code> is pointer to data defined for that <code>RIL_REQUEST_*</code></l>
- <li><code>t</code> should be used in subsequent call to <code>RIL_onResponse</code></li>
- <li><code>datalen</code> is owned by caller, and should not be modified or freed by callee</li>
- </ul>
- <p>Must be completed with a call to <code>RIL_onRequestComplete()</code>. <code>RIL_onRequestComplete()</code> may be called from any thread before or after this function returns. This will always be called from the same thread, so returning here implies that the radio is ready to process another command (whether or not the previous command has completed).</p></td>
- </tr>
- <tr>
- <td valign="top"><code> RIL_RadioState (*RIL_RadioStateRequest)();</code></td>
- <td valign="top">This function should return the current radio state synchronously.</td>
- </tr>
- <tr>
- <td valign="top"><code> int (*RIL_Supports)(int requestCode);</code></td>
- <td valign="top">This function returns "1" if the specified <code>RIL_REQUEST</code> code is supported and 0 if it is not.</td>
- </tr>
- <tr>
- <td valign="top"><code> void (*RIL_Cancel)(RIL_Token t);</code></td>
- <td valign="top"><p>This function is used to indicate that a pending request should be canceled. This function is called from a separate thread--not the thread that calls <code>RIL_RequestFunc</code>.</p>
- <p>On cancel, the callee should do its best to abandon the request and call <code>RIL_onRequestComplete</code> with <code>RIL_Errno CANCELLED</code> at some later point.</p>
- <p>Subsequent calls to <code>RIL_onRequestComplete</code> for this request with other results will be tolerated but ignored (that is, it is valid to ignore the cancellation request).</p>
- <p><code>RIL_Cancel</code> calls should return immediately and not wait for cancellation.</p></td>
- </tr>
- <tr>
- <td valign="top"><code> const char * (*RIL_GetVersion) (void);</code></td>
- <td valign="top">Return a version string for your Vendor RIL</td>
- </tr>
-</table>
-
-
-<p>The vendor RIL uses the following callback methods to communicate back to the Android RIL daemon.</p>
-<p>
-<table>
- <tr>
- <th scope="col">Name</th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td><code>void RIL_onRequestComplete(RIL_Token t, RIL_Errno e, void *response, size_t responselen);</code></td>
- <td><ul>
- <li><code>t</code> is parameter passed in on previous call to <code>RIL_Notification</code> routine.</li>
- <li>If <code>e</code> != SUCCESS, then response can be null and is ignored</li>
- <li><code>response</code> is owned by caller, and should not be modified or freed by callee</li>
- <li><code>RIL_onRequestComplete</code> will return as soon as possible</li>
- </ul></td>
- </tr>
- <tr>
- <td><code>void RIL_requestTimedCallback (RIL_TimedCallback callback, void *param, const struct timeval *relativeTime);</code></td>
- <td>Call user-specified callback function on the same thread that <code>RIL_RequestFunc</code> is called. If <code>relativeTime</code> is specified, then it specifies a relative time value at which the callback is invoked. If <code>relativeTime</code> is NULL or points to a 0-filled structure, the callback will be invoked as soon as possible.</td>
- </tr>
-</table></p>
-
-
-<a name="androidRilFunctionsUnsolicited"></a><h4>RIL Unsolicited Commands</h4>
-
-<p>The functions listed in the table below are call-back functions used by the Vendor RIL to invoke unsolicited commands on the Android platform. See <code>ril.h</code> for details. </p>
-<p>
-<table>
- <tr>
- <th scope="col">Name</th>
- <th scope="col">Description</th>
- </tr>
- <tr>
- <td><code>void RIL_onUnsolicitedResponse(int unsolResponse, const void *data, size_t datalen);</code></td>
- <td><ul>
- <li><code>unsolResponse</code> is one of <code>RIL_UNSOL_RESPONSE_*</code></li>
- <li><code>data</code> is pointer to data defined for that <code>RIL_UNSOL_RESPONSE_*</code></li>
- <li><code>data</code> is owned by caller, and should not be modified or freed by callee</li>
- </ul></td>
- </tr>
-</table></p>
diff --git a/pdk/docs/porting/usersguide.jd b/pdk/docs/porting/usersguide.jd
deleted file mode 100755
index 3a1ecfb..0000000
--- a/pdk/docs/porting/usersguide.jd
+++ /dev/null
@@ -1,66 +0,0 @@
-page.title=Android User's Guide Sources
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>Android User's Guide Sources</h2>
-<ul>
-<li><a href="http://dl.google.com/android/porting/userdocs/android-users-guide-220cc-100.zip">Android 2.2 <em>User's Guide</em></a></li>
-</ul>
-</div>
-</div>
-
-<p><a href="http://dl.google.com/android/porting/userdocs/android-users-guide-220cc-100.zip">This archive</a> contains Framemaker 9 source files, a PDF
-example, and some related files for the "Android User's Guide," version
-AUG-CC-220-100, which Google is releasing under the Creative Commons Attribution
-3.0 License:</p>
-
-<p>"Except as otherwise noted at <a
-href="http://code.google.com/policies.html#restrictions">http://code.google.com/
-policies.html#restrictions</a>, the contents of this manual is licensed under
-the Creative Commons Attribution 3.0 License, which is available at <a
-href="http://creativecommons.org/licenses/by/3.0/">http://creativecommons.org/
-licenses/by/3.0/</a>. When using this work in whole or in part, please attribute
-the work to Google Inc. No Google or third-party trademarks or brand features
-are included in this license."</p>
-
-<p>This book documents Android 2.2 as implemented for the Google Nexus
-One phone. By releasing the sources to this book under the Creative
-Commons Attibution 3.0 License, we hope that a wide variety of OEMs
-and developers will find some or all of these chapters helpful when
-documenting their own implementations of Android 2.2. You should be
-able to remove irrelevant chapters, add your own chapters, and rewrite
-some or all of the chapters you keep, as a quicker way to document
-your Android implementation than by starting from scratch.</p>
-
-<p>Keep these points in mind when working with these files:</p>
-
-<ul>
-<li>These source files were created in Adobe Framemaker 9: you will need
-Frame and know how to use it to make use of these files. If Frame is
-not convenient for you, you can copy text from the PDF document or
-explore a utility for converting these files into other formats.</li>
-
-<li>This book uses three fonts: GeneralGG, Droid Sans, and Expert Dingbats.</li>
-
-<li>GeneralGG is available for purchase from Hoefler & Frere-Jones
-(<a
-href="http://www.typography.com/home/index.php">http://www.typography.com/home/index.php</a>).
-Helveticta is a good substitute if you don't want to buy or use
-GeneralGG, which is Google's standard sans-serif font.</li>
-
-<li>Droid Sans and Expert Dingbats are included in the fonts directory:
-they are open source fonts. Droid Sans is used for screen text. Expert
-Dingbats is used for bullets.</li>
-
-<li>All variables for the book are set in the frontmatter.fm file.</li>
-
-<li>The hidden, conditional text "HTML" is used as part of Google's
-process for converting this book into Google Help Center doc format --
-you can safely ignore it.</li>
-
-<li>For more information, please contact <a
-href="mailto:userdocs@android.com">userdocs@android.com</a></li>
-
-</ul>
diff --git a/pdk/docs/porting/wifi.jd b/pdk/docs/porting/wifi.jd
deleted file mode 100755
index eea431b..0000000
--- a/pdk/docs/porting/wifi.jd
+++ /dev/null
@@ -1,51 +0,0 @@
-page.title=Wi-Fi
-pdk.version=1.0
-doc.type=porting
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>In this document</h2>
-<a name="toc"/>
-<ul>
-<li><a href="#androidWifiBuildingDriver">Building a Wi-Fi Library</a></li>
-<li><a href="#androidWifiInterface">Interface</a></li>
-</ul>
-</div>
-</div>
-
-<p>Android uses wpa_supplicant as the platform interface to the Wi-Fi device. Your Wi-Fi driver must be compatible with the standard wpa_supplicant in addition to extensions added to the supplicant (specifically, the "DRIVER" commands described in <code>wifi.h/wifi_command()</code>).</p>
-
-
-<a name="androidWifiBuildingDriver"></a><h3>Building a Wi-Fi Library</h3>
-
-<p>To create a Wi-Fi driver for Android:</p>
-<p><ul>
-<li>create a shared library that implements the interface defined in <code>include/hardware/wifi.h</code>, which also defines the Wi-Fi supplicant.</li>
-<li>Follow the instructions posted at <a href="http://hostap.epitest.fi/wpa_supplicant/">http://hostap.epitest.fi/wpa_supplicant/</a>.</li>
-<li>Place your driver in <code>libs/hardware/wifi/</code></li>
-<li>Test your driver using the command line <code>wpa_cli</code> utilities.</li>
-</ul>
-
-<p>You can find the default implementation in <code>libs/hardware/wifi/wifi.c</code>. If you need to make changes, create a new source file similar to <code>wifi.c</code>, for example, <code>wifi_mywifi.c</code>. </p>
-
-<p>Update the default <code>Android.mk</code> file (<code>libs/hardware/wifi/Android.mk</code>) as shown below.</p>
-<pre class="prettify">
-LOCAL_SHARED_LIBRARIES += libnetutils
-
-ifeq ($(TARGET_PRODUCT),acme)
-LOCAL_SRC_FILES += wifi/wifi_mywifi.c
-else
-LOCAL_SRC_FILES += wifi/wifi.c
-endif
-</pre>
-
-
-<a name="androidWifiInterface"></a><h3>Interface</h3>
-
-
-
-<p class="note"><strong>Note</strong>: This document relies on some Doxygen-generated content that appears in an iFrame below. To return to the Doxygen default content for this page, <a href="wifi.html">click here</a>.</p>
-
-
-<iframe onLoad="resizeDoxFrameHeight();" src="wifi_8h.html" scrolling="no" scroll="no" id="doxygen" marginwidth="0" marginheight="0" frameborder="0" style="width:100%;"></iframe>
diff --git a/pdk/docs/source/building-dream.jd b/pdk/docs/source/building-dream.jd
deleted file mode 100644
index d130524..0000000
--- a/pdk/docs/source/building-dream.jd
+++ /dev/null
@@ -1,27 +0,0 @@
-page.title=Building for an Android Dev Phone
-doc.type=source
-@jd:body
-<p><i>The information on this page is a bit out of date. We'll update this
-page as soon as we can.</i></p>
-<div>The basic manifest for 1.6 defines which projects are
-needed to do a generic build for the emulator or for unlocked Dream devices
-(e.g. the Android Dev Phone 1). You need to have an appropriate device running
-a matching official image.<br><br>To build donut for dream (your
-device needs to be an ADP1 running an official 1.6 system):<br><ol><li>Follow
-the <a href="{@docRoot}source/download.html">normal steps</a>
-to setup repo and check out the sources.
-</li>
-<li>At the root of your source tree, run ". build/envsetup.sh" like you normally would for an emulator build.
-</li>
-<li>Run "make adb" if you don't already have adb in your path.
-</li>
-<li>run "adb root".<br></li>
-<li>in vendor/htc/dream-open/ there is a script called "extract-files.sh" that must be run (from that directory) to extract some proprietary binaries from your device (*). You only need to do this once.<br></li>
-<li>run "lunch aosp_dream_us-eng" to specifically configure the build system for dream (the default is the equivalent of "lunch generic-eng", which doesn't contain dream-specific files).<br></li>
-<li>run make from the top of the source tree.
-</li>
-<li>from this point, the fastboot tool (which is put automatically in your path) can be used to flash a device: boot the device into the bootloader by holding the back key while pressing the power key, and run "fastboot -w flashall".<br></li>
-</ol>
-<p>Note: these instructions work for the sapphire (ADP2) build target, as
-well. Simply replace "dream" with "sapphire" above.</p>
-</div>
diff --git a/pdk/docs/source/cla-corporate.jd b/pdk/docs/source/cla-corporate.jd
deleted file mode 100644
index 0f9452b..0000000
--- a/pdk/docs/source/cla-corporate.jd
+++ /dev/null
@@ -1,51 +0,0 @@
-page.title=Corporate Contributor License Agreement
-doc.type=source
-@jd:body
-<div><p>In order to clarify the intellectual property license granted with Contributions from any person or entity, the Android Open Source Project (the "Project") must have a Contributor License Grant ("Grant") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of the Project and the Android Open Source Project Leads (the "Project Leads"); it does not change your rights to use your own Contributions for any other purpose.
-</p>
-<p>This version of the Grant allows an entity (the "Corporation") to submit Contributions to the Project Leads, to authorize Contributions submitted by its designated employees to the Project Leads, and to grant copyright and patent licenses thereto. If you have not already done so, please complete and send an original signed Grant to
-</p>
-<blockquote>Google Inc.<br>Attn: Open Source Program Office <br>1600 Amphitheatre Pkwy <br>Building 43<br>Mountain View, CA 94043<br>U.S.A.<br></blockquote>
-<p>Scanned agreements may also be emailed in PDF form to cla-submissions@google.com
-</p>
-<p>If necessary, you may send it by facsimile to (650) 887-1625. Please read this document carefully before signing and keep a copy for your records.
-</p>
-<pre>Corporation name: ___________________________________________________<br><br><br><br>Corporation address: ________________________________________________<br><br><br><br>_____________________________________________________________________<br><br><br><br>_____________________________________________________________________<br><br><br><br>Point of Contact: ___________________________________________________<br><br><br><br>E-Mail: ____________________________________________________________<br><br><br><br>Telephone: _____________________<br><br><br><br>Fax: ___________________________<br><br></pre>
-<p>You accept and agree to the following terms and conditions for Your present and future Contributions submitted to the Project. Except for the license granted herein to the Project Leads and recipients of software distributed by the Project Leads, You reserve all right, title, and interest in and to Your Contributions.
-</p>
-<ol><li><p>Definitions.
-</p>
-<p>"You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Grant to the Project Leads. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. For the purposes of this definition, "control" 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.
-</p>
-<p>"Contribution" shall mean the code, documentation or other original works of authorship expressly identified in Schedule B, as well as any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to the Project Leads for inclusion in, or documentation of, any of the products managed or maintained by the Project Leads (the "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Project Leads or their 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 Project Leads for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution."
-</p>
-</li>
-<li><p>Grant of Copyright License. Subject to the terms and conditions of this Grant, You hereby grant to the Project Leads and to recipients of software distributed by the Project Leads 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 Your Contributions and such derivative works.
-</p>
-</li>
-<li><p>Grant of Patent License. Subject to the terms and conditions of this Grant, You hereby grant to the Project Leads and to recipients of software distributed by the Project Leads 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 You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Grant for that Contribution or Work shall terminate as of the date such litigation is filed.
-</p>
-</li>
-<li><p>You represent that You are legally entitled to grant the above license. You represent further that each employee of the Corporation designated on Schedule A below (or in a subsequent written modification to that Schedule) is authorized to submit Contributions on behalf of the Corporation.
-</p>
-</li>
-<li><p>You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others).
-</p>
-</li>
-<li><p>You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your Contributions on an "AS IS" 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.
-</p>
-</li>
-<li><p>Should You wish to submit work that is not Your original creation, You may submit it to the Project Leads separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [named here]".<br></p>
-</li>
-<li><p>It is your responsibility to notify the Project Leads when any change is required to the list of designated employees authorized to submit Contributions on behalf of the Corporation, or to the Corporation's Point of Contact with the Project.
-</p>
-</li>
-</ol>
-<pre><br><br><br>Please sign: __________________________________ Date: _______________<br><br><br><br>Title: _______________________________________________________________<br><br><br><br>Corporation: __________________________________________________________<br><br></pre>
-<h3>
-Schedule A</h3>
-[Initial list of designated employees. NB: authorization is not tied to particular Contributions.]
-<h3>
-Schedule B</h3>
-[Identification of optional concurrent software grant. Would be left blank or omitted if there is no concurrent software grant.]
-</div>
diff --git a/pdk/docs/source/cla-individual.jd b/pdk/docs/source/cla-individual.jd
deleted file mode 100644
index 8890be8..0000000
--- a/pdk/docs/source/cla-individual.jd
+++ /dev/null
@@ -1,44 +0,0 @@
-page.title=Contributor License Agreement for Individuals
-doc.type=source
-@jd:body
-<div><p><i>Please visit the <a href="https://review.source.android.com/#settings,new-agreement">code review tool</a>
-to execute the grant online.This page provides the text of the Individual Contributor License Grant for your quick review.</i>
-<br></p>
-<p><br></p>
-<p>In order to clarify the intellectual property license granted with Contributions from any person or entity, the Android Open Source Project (the "Project") must have a Contributor License Grant ("Grant") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of the Project and the Android Open Source Project Leads (the "Project Leads"); it does not change your rights to use your own Contributions for any other purpose. If you have not already done so, please complete and send an original signed Grant to
-</p>
-<blockquote>Google Inc.<br>Attn: Open Source Program Office <br>1600 Amphitheatre Pkwy <br>Building 43<br>Mountain View, CA 94043<br>U.S.A.<br></blockquote>
-<p>Scanned agreements may also be emailed in PDF form to cla-submissions@google.com, sent by facsimile to (650) 887-1625, or <a href="https://review.source.android.com/#settings,new-agreement">signed electronically</a>
-.
-</p>
-<p>Please read this document carefully before signing and keep a copy for your records.
-</p>
-<pre><br><br>Full name: ____________________________ E-Mail: ______________________<br><br><br><br>Mailing Address: ______________________ Telephone: ___________________<br><br><br><br>_______________________________________ Facsimile: ___________________<br><br><br><br>_______________________________________ Country: ___________________<br><br><br></pre>
-<p>You accept and agree to the following terms and conditions for Your present and future Contributions submitted to the Project. Except for the license granted herein to the Project Leads and recipients of software distributed by the Project Leads, You reserve all right, title, and interest in and to Your Contributions.
-</p>
-<p><br></p>
-<ol><li><p>Definitions. "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Grant. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. For the purposes of this definition, "control" 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. "Contribution" shall mean any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to the Project Leads for inclusion in, or documentation of, any of the products managed or maintained by the Project Leads (the "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Project Leads or their 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 Project Leads for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution."
-</p>
-</li>
-<li><p>Grant of Copyright License. Subject to the terms and conditions of this Grant, You hereby grant to the Project Leads and to recipients of software distributed by the Project Leads 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 Your Contributions and such derivative works.
-</p>
-</li>
-<li><p>Grant of Patent License. Subject to the terms and conditions of this Grant, You hereby grant to the Project Leads and to recipients of software distributed by the Project Leads 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 You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Grant for that Contribution or Work shall terminate as of the date such litigation is filed.
-</p>
-</li>
-<li><p>You represent that you are legally entitled to grant the above license. If your employer(s) has rights to intellectual property that you create that includes your Contributions, you represent that you have received permission to make Contributions on behalf of that employer, that your employer has waived such rights for your Contributions to the Project Leads, or that your employer has executed a separate Corporate Contributor License Grant with the Project Leads.
-</p>
-</li>
-<li><p>You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others). You represent that Your Contribution submissions include complete details of any third-party license or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware and which are associated with any part of Your Contributions.
-</p>
-</li>
-<li><p>You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your Contributions on an "AS IS" 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.
-</p>
-</li>
-<li><p>Should You wish to submit work that is not Your original creation, You may submit it to the Project Leads separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [named here]".<br></p>
-</li>
-<li><p>You agree to notify the Project Leads of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect.
-</p>
-</li>
-</ol>
-</div>
diff --git a/pdk/docs/source/code-lines.jd b/pdk/docs/source/code-lines.jd
deleted file mode 100644
index 5ceb103..0000000
--- a/pdk/docs/source/code-lines.jd
+++ /dev/null
@@ -1,80 +0,0 @@
-page.title=Android Code-Lines
-doc.type=source
-@jd:body
-<p>The Android Open Source Project maintains a complete software stack intended
-to be ported by OEMs and other device implementors to run on actual hardware.
-Accordingly, we maintain a number of "code lines" to clearly separate the
-current stable version of Android from unstable experimental work.</p>
-<p>The chart below depicts at a conceptual level how AOSP manages code and
-releases. We're referring to these as "code lines" instead of "branches"
-simply because at any given moment there may be more than one branch extant
-for a given "code line". For instance, when a release is cut, sometimes that
-will become a new branch in git, and sometimes not, based on the needs of the
-moment.</p>
-<img src="{@docRoot}images/code-lines.png"/>
-<h3>Notes and Explanations</h3>
-<ul>
-<li>A <i>release</i> corresponds to a formal version of the Android platform, such
-as 1.5, 2.1, and so on. Generally speaking, a release of the platform
-corresponds to a version of the <code>SdkVersion</code> field used in
-AndroidManifest.xml files, and defined in <code>frameworks/base/api</code> in
-the source tree.</li>
-<li>An <i>upstream</i> project is an open-source project from which the Android
-stack is pulling code. These include obvious projects such as the Linux kernel
-and WebKit, but over time we are migrating some of the semi-autonomous
-Android projects (such as Dalvik, the Android SDK tools, Bionic, and so on) to
-work as "upstream" projects. Generally, these projects are developed entirely in
-the public tree. For some upstream projects, development is done by contributing
-directly to the upstream project itself. See
-<a href="{@docRoot}source/submit-patches.html#upstream-projects">Upstream Projects</a>
-for details. In both cases, snapshots will be periodically pulled into releases.</li>
-<li>The diagram refers to "Eclair" and "FroYo"; however, they are simply
-placeholders, and the diagram actually reflects the overall release and
-branching strategy.</li>
-<li>At all times, a release code-line (which may actually consist of
-more than one actual branch in git) is considered the sole canonical source
-code for a given Android platform version. OEMs and other groups building devices
-should pull only from a release branch.</li>
-<li>We will set up "experimental" code-lines to capture changes from
-the community, so that they can be iterated on, with an eye toward stability.</li>
-<li>Changes that prove stable will eventually be pulled into a release
-branch. Note that this will only apply to bug fixes, app improvements, and
-other things that do not affect the APIs of the platform.</li>
-<li>Changes will be pulled into release branches from upstream projects
-(including the Android "upstream" projects) as necessary.</li>
-<li>The "n+1"th version (that is, next major version of the framework and
-platform APIs) will be developed by Google internally. See below for
-details.</li>
-<li>Changes will be pulled from upstream, release, and experimental branches
-into Google's private branch as necessary.</li>
-<li>When the platform APIs for the next version have stabilized and been fully
-tested, Google will cut a release of the next platform version. (This
-specifically refers to a new <code>SdkVersion</code>.) This will also
-correspond to the internal code-line being made a public release branch, and the
-new current platform code-line.</li>
-<li>When a new platform version is cut, a corresponding experimental
-code-line will be created at the same time.</li>
-</ul>
-<h3>About Private Code-Lines</h3>
-<p>The source management strategy above includes a code-line that Google will
-keep private. The reason for this is to focus attention on the current public
-version of Android.</p>
-<p>OEMs and other device builders naturally want to ship devices with the
-latest version of Android. Similarly, application developers don't want to
-deal with more extant platform versions than strictly necessary. Meanwhile,
-Google retains responsibility for the strategic direction of Android as a
-platform and a product. Our approach is based on focusing on a small number of
-flagship devices to drive features, and secure protections of Android-related
-intellectual property.</p>
-<p>As a result, Google frequently has possession of confidential
-information of third parties, and we must refrain from revealing sensitive
-features until we've secured the appropriate protections. Meanwhile, there are
-real risks to the platform arising from having too many platform versions
-extant at once. For these reasons, we have structured the open-source project
--- including third-party contributions -- to focus on the currently-public
-stable version of Android. "Deep development" on the next version of the
-platform will happen in private, until it's ready to become an official
-release.</p>
-<p>We recognize that many contributors will disagree with this approach. We
-respect that others may have a different point of view; however, this is the
-approach that we feel is best, and the one we've chosen to implement.</p>
diff --git a/pdk/docs/source/code-style.jd b/pdk/docs/source/code-style.jd
deleted file mode 100644
index 957ab02..0000000
--- a/pdk/docs/source/code-style.jd
+++ /dev/null
@@ -1,624 +0,0 @@
-page.title=Code Style Guidelines for Contributors
-doc.type=source
-@jd:body
-<p>The rules below are not guidelines or recommendations, but strict rules.
-Contributions to Android generally <b>will not be accepted if they do not
-adhere to these rules.</b>
-</p>
-<p>Not all existing code follows these rules, but all new code is expected to.</p>
-<h1><a>Java Language Rules</a>
-</h1>
-<p>We follow standard Java coding conventions. We add a few rules:
-</p>
-<ol><li><a href="#exceptionsIgnore">Exceptions</a>: Never catch and ignore them without explanation.</li>
-<li><a href="#exceptionsAll">Exceptions</a>: do not catch generic Exception, except in library code at the root of the stack.</li>
-<li><a href="#finalizers">Finalizers</a>: generally don't use them.</li>
-<li><a href="#imports">Imports</a>: Fully qualify imports</li>
-</ol>
-<h1>Java Library Rules</h1>
-<p>There are conventions for using Android's Java libraries and tools. In some
-cases, the convention has changed in important ways and older code might use a
-deprecated pattern or library. When working with such code, it's okay to
-continue the existing style (see <a href="#consistency">Consistency</a>). When
-creating new components never use deprecated libraries.</p>
-<h1>Java Style Rules</h1>
-<p>Programs are much easier to maintain when all files have a consistent
-style. We follow the standard Java coding style, as defined by Sun in their <a
-href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html">Code
-Conventions for the Java Programming Language</a>, with a few exceptions and
-additions. This style guide is comprehensive and detailed and is in common
-usage in the Java community.</p>
-<p>In addition, we enforce the following style rules:</p>
-<ol><li><a href="#javadoc">Comments/Javadoc</a>: write it; use standard style</li>
-<li><a href="#shortmethods">Short methods</a>: don't write giant methods</li>
-<li>Fields: should either be at the top of the file, or immediately before the methods that use them</li>
-<li><a href="#localvariables">Local variables</a>: limit the scope</li>
-<li><a href="#import_style">Imports</a>: android; third party alphabetical; java(x)</li>
-<li><a href="#indentation">Indentation</a>: 4 spaces, no tabs.</li>
-<li><a href="#linelen">Line length</a>: 100 columns</li>
-<li><a href="#field_names">Field names</a>: Non-public, non-static fields start with m.</li>
-<li><a href="#braces">Braces</a>: Opening braces don't go on their own line.</li>
-<li><a href="#annotations">Annotations</a>: Use the standard annotations.</li>
-<li><a href="#acronyms">Acronyms are words</a>: Treat acronyms as words in names, yielding XmlHttpRequest, getUrl(), etc.</li>
-<li><a href="#todo">TODO style</a>: "TODO: write this description"</li>
-<li><a href="#consistency">Consistency</a>: Look at what's around you!</li>
-<li><a href="#logging">Logging</a>: Be careful with logging. It's expensive.</li>
-</ol>
-<h1>Javatests Style Rules</h1>
-<ol>
-<li><a href="#testmethodnames">Naming test methods</a>: testMethod_specificCase is ok</li>
-</ol>
-<h2>Java Language Rules</h2>
-<h2><a name="exceptionsIgnore"></a>Exceptions: do not ignore</h2>
-<p>Sometimes it is tempting to write code that completely ignores an exception
-like this:</p>
-<pre>void setServerPort(String value) {
- try {
- serverPort = Integer.parseInt(value);
- } catch (NumberFormatException e) { }
-}</pre>
-<p>You must never do this. While you may think that your code will never
-encounter this error condition or that it is not important to handle it,
-ignoring exceptions like above creates mines in your code for someone else to
-trip over some day. You must handle every Exception in your code in some
-principled way. The specific handling varies depending on the case.</p>
-<blockquote>Anytime somebody has an empty catch clause they should have a
-creepy feeling. There are definitely times when it is actually the correct
-thing to do, but at least you have to think about it. In Java you can't escape
-the creepy feeling.
--<a href="http://www.artima.com/intv/solid4.html">James
-Gosling</a></blockquote>
-<p>Acceptable alternatives (in order of preference) are:</p>
-<ul>
-<li>Throw the exception up to the caller of your method.
-<pre>void setServerPort(String value) throws NumberFormatException {
- serverPort = Integer.parseInt(value);
-}</pre></li>
-<li>Throw a new exception that's appropriate to your level of abstraction.
-<pre>void setServerPort(String value) throws ConfigurationException {
- try {
- serverPort = Integer.parseInt(value);
- } catch (NumberFormatException e) {
- throw new ConfigurationException("Port " + value + " is not valid.");
- }
-}</pre></li>
-<li>Handle the error gracefully and substitute an appropriate value in the
-catch {} block.
-<pre>/** Set port. If value is not a valid number, 80 is substituted. */
-void setServerPort(String value) {
- try {
- serverPort = Integer.parseInt(value);
- } catch (NumberFormatException e) {
- serverPort = 80; // default port for server
- }
-}</pre></li>
-<li>Catch the Exception and throw a new RuntimeException. This is dangerous:
-only do it if you are positive that if this error occurs, the appropriate
-thing to do is crash.
-<pre>/** Set port. If value is not a valid number, die. */
-void setServerPort(String value) {
- try {
- serverPort = Integer.parseInt(value);
- } catch (NumberFormatException e) {
- throw new RuntimeException("port " + value " is invalid, ", e);
- }
-}</pre>
-Note that the original exception is passed to the constructor for
-RuntimeException. If your code must compile under Java 1.3, you will need to
-omit the exception that is the cause.</li>
-<li>Last resort: if you are confident that actually ignoring the exception is
-appropriate then you may ignore it, but you must also comment why with a good
-reason:
-<pre>/** If value is not a valid number, original port number is used. */
-void setServerPort(String value) {
- try {
- serverPort = Integer.parseInt(value);
- } catch (NumberFormatException e) {
- // Method is documented to just ignore invalid user input.
- // serverPort will just be unchanged.
- }
-}</pre></li>
-</ul>
-<h2><a name="exceptionsAll"></a>Exceptions: do not catch generic Exception</h2>
-<p>Sometimes it is tempting to be lazy when catching exceptions and do
-something like this:</p>
-<pre>try {
- someComplicatedIOFunction(); // may throw IOException
- someComplicatedParsingFunction(); // may throw ParsingException
- someComplicatedSecurityFunction(); // may throw SecurityException
- // phew, made it all the way
-} catch (Exception e) { // I'll just catch all exceptions
- handleError(); // with one generic handler!
-}</pre>
-<p>You should not do this. In almost all cases it is inappropriate to catch
-generic Exception or Throwable, preferably not Throwable, because it includes
-Error exceptions as well. It is very dangerous. It means that Exceptions you
-never expected (including RuntimeExceptions like ClassCastException) end up
-getting caught in application-level error handling. It obscures the failure
-handling properties of your code. It means if someone adds a new type of
-Exception in the code you're calling, the compiler won't help you realize you
-need to handle that error differently. And in most cases you shouldn't be
-handling different types of exception the same way, anyway.</p>
-<p>There are rare exceptions to this rule: certain test code and top-level
-code where you want to catch all kinds of errors (to prevent them from showing
-up in a UI, or to keep a batch job running). In that case you may catch
-generic Exception (or Throwable) and handle the error appropriately. You
-should think very carefully before doing this, though, and put in comments
-explaining why it is safe in this place.</p>
-<p>Alternatives to catching generic Exception:</p>
-<ul>
-<li>Catch each exception separately as separate catch blocks after a single
-try. This can be awkward but is still preferable to catching all Exceptions.
-Beware repeating too much code in the catch blocks.</li>
-<li>Refactor your code to have more fine-grained error handling, with multiple
-try blocks. Split up the IO from the parsing, handle errors separately in each
-case.</li>
-<li>Rethrow the exception. Many times you don't need to catch the exception at
-this level anyway, just let the method throw it.</li>
-</ul>
-<p>Remember: exceptions are your friend! When the compiler complains you're
-not catching an exception, don't scowl. Smile: the compiler just made it
-easier for you to catch runtime problems in your code.</p>
-<h2><a name="finalizers"></a>Finalizers</h2>
-<p><b>What it is</b>: Finalizers are a way to have a chunk of code executed
-when an object is garbage collected.</p>
-<p><b>Pros</b>: can be handy for doing cleanup, particularly of external
-resources.</p>
-<p><b>Cons</b>: there are no guarantees as to when a finalizer will be called,
-or even that it will be called at all.</p>
-<p><b>Decision</b>: we don't use finalizers. In most cases, you can do what
-you need from a finalizer with good exception handling. If you absolutely need
-it, define a close() method (or the like) and document exactly when that
-method needs to be called. See InputStream for an example. In this case it is
-appropriate but not required to print a short log message from the finalizer,
-as long as it is not expected to flood the logs.</p>
-<h2><a name="imports"></a>Imports</h2>
-<h3>Wildcards in imports</h3>
-<p><b>What it is</b>: When you want to use class Bar from package foo,there
-are two possible ways to import it:</p>
-<ol>
-<li><code>import foo.*;</code></li>
-<li><code>import foo.Bar;</code></li>
-</ol>
-<p><b>Pros of #1</b>: Potentially reduces the number of import statements.
-</p>
-<p><b>Pros of #2</b>: Makes it obvious what classes are actually used. Makes
-code more readable for maintainers. </p>
-<p><b>Decision</b>: Use style #2 for importing all Android code. An explicit
-exception is made for java standard libraries (java.util.*, java.io.*, etc.)
-and unit test code (junit.framework.*).</p>
-<h2><a name="javadoc"></a>Comments/Javadoc</h2>
-<p>Every file should have a copyright statement at the top. Then a package
-statement and import statements should follow, each block separated by a blank
-line. And then there is the class or interface declaration. In the Javadoc
-comments, describe what the class or interface does.</p>
-<pre>/*
- * Copyright (C) 2010 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * 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 "AS IS" 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.
- */
-
-package com.android.internal.foo;
-
-import android.os.Blah;
-import android.view.Yada;
-
-import java.sql.ResultSet;
-import java.sql.SQLException;
-
-/**
- * Does X and Y and provides an abstraction for Z.
- */
-public class Foo {
- ...
-}</pre>
-<p>Every class and nontrivial public method you write <b>must</b> contain a
-Javadoc comment with at least one sentence describing what the class or method
-does. This sentence should start with a 3rd person descriptive verb.
-Examples:</p>
-<pre>/** Returns the correctly rounded positive square root of a double value. */
-static double sqrt(double a) {
-}
-
-/**
- * Constructs a new String by converting the specified array of
- * bytes using the platform's default character encoding.
- */
-public String(byte[] bytes) {
-}</pre>
-<p>You do not need to write Javadoc for trivial get and set methods such as
-setFoo() if all your Javadoc would say is "sets Foo". If the method does
-something more complex (such as enforcing a constraint or having an important
-side effect), then you must document it. And if it's not obvious what the
-property "Foo" means, you should document it.</p>
-<p>Every method you write, whether public or otherwise, would benefit from
-Javadoc. Public methods are part of an API and therefore require Javadoc.</p>
-<p>Android does not currently enforce a specific style for writing Javadoc
-comments, but you <b>should</b> follow the <a
-href="http://java.sun.com/j2se/javadoc/writingdoccomments/">Sun Javadoc
-conventions</a>.</p>
-<h2><a name="shortmethods"></a>Short methods</h2>
-<p>To the extent that it is feasible, methods should be kept small and
-focused. It is, however, recognized that long methods are sometimes
-appropriate, so no hard limit is placed on method length. If a method exceeds
-40 lines or so, think about whether it can be broken up without harming the
-structure of the program.</p>
-<h2><a name="localvariables"></a>Local variables</h2>
-<p>The scope of local variables should be kept to a minimum (<i>Effective
-Java</i> Item 29). By doing so, you increase the readability and
-maintainability of your code and reduce the likelihood of error. Each variable
-should be declared in the innermost block that encloses all uses of the
-variable.</p>
-<p>Local variables should be declared at the point they are first used. Nearly
-every local variable declaration should contain an initializer. If you don't
-yet have enough information to initialize a variable sensibly, you should
-postpone the declaration until you do.</p>
-<p>One exception to this rule concerns try-catch statements. If a variable is
-initialized with the return value of a method that throws a checked exception,
-it must be initialized inside a try block. If the value must be used outside
-of the try block, then it must be declared before the try block, where it
-cannot yet be sensibly initialized:</p>
-<pre>// Instantiate class cl, which represents some sort of Set
-Set s = null;
-try {
- s = (Set) cl.newInstance();
-} catch(IllegalAccessException e) {
- throw new IllegalArgumentException(cl + " not accessible");
-} catch(InstantiationException e) {
- throw new IllegalArgumentException(cl + " not instantiable");
-}
-
-// Exercise the set
-s.addAll(Arrays.asList(args));</pre>
-<p>But even this case can be avoided by encapsulating the try-catch block in a method:</p>
-<pre>Set createSet(Class cl) {
- // Instantiate class cl, which represents some sort of Set
- try {
- return (Set) cl.newInstance();
- } catch(IllegalAccessException e) {
- throw new IllegalArgumentException(cl + " not accessible");
- } catch(InstantiationException e) {
- throw new IllegalArgumentException(cl + " not instantiable");
- }
-}
-
-...
-
-// Exercise the set
-Set s = createSet(cl);
-s.addAll(Arrays.asList(args));</pre>
-<p>Loop variables should be declared in the for statement itself unless there
-is a compelling reason to do otherwise:</p>
-<pre>for (int i = 0; i n; i++) {
- doSomething(i);
-}
-
-for (Iterator i = c.iterator(); i.hasNext(); ) {
- doSomethingElse(i.next());
-}</pre>
-<h2><a name="import_style"></a>Imports</h2>
-<p>The ordering of import statements is:</p>
-<ol>
-<li>Android imports</li>
-<li>Imports from third parties (com, junit, net, org)</li>
-<li>java and javax</li>
-</ol>
-<p>To exactly match the IDE settings, the imports should be:</p>
-<ul>
-<li>Alphabetical within each grouping.</li>
-<li>Capital letters are considered to come before lower case letter (e.g. Z before a).</li>
-<li>There should be a blank line between each major grouping (android, com, junit, net, org, java, javax).</li>
-</ul>
-<h4>Why?</h4>
-<p>Originally there was no style requirement on the ordering. This meant that
-the IDE's were either always changing the ordering, or IDE developers had to
-disable the automatic import management features and maintain the imports by
-hand. This was deemed bad. When java-style was asked, the preferred styles
-were all over the map. It pretty much came down to our needing to "pick an
-ordering and be consistent." So we chose a style, updated the style guide, and
-made the IDEs obey it. We expect that as IDE users work on the code, the
-imports in all of the packages will end up matching this pattern without any
-extra engineering effort.</p>
-<p>The style chosen such that:</p>
-<ul>
-<li>The imports people want to look at first tend to be at the top (android)</li>
-<li>The imports people want to look at least tend to be at the bottom (java)</li>
-<li>Humans can easily follow the style</li>
-<li>The IDE's can follow the style</li>
-</ul>
-<h3>What about static imports?</h3>
-<p>The use and location of static imports have been mildly controversial
-issues. Some people would prefer static imports to be interspersed with the
-remaining imports, some would prefer them reside above or below all other
-imports. Additinally, we have not yet come up with a way to make all IDEs use
-the same ordering.</p>
-<p>Since most people consider this a low priority issue, just use your
-judgement and please be consistent.</p>
-
-<h2><a name="indentation"></a>Indentation</h2>
-<p>We use 4 space indents for blocks. We never use tabs. When in doubt, be
-consistent with code around you.</p>
-<p>We use 8 space indents for line wraps, including function calls and
-assignments. For example, this is correct:</p>
-<pre>Instrument i =
- someLongExpression(that, wouldNotFit, on, one, line);</pre>
-<p>and this is not correct:</p>
-<pre>Instrument i =
- someLongExpression(that, wouldNotFit, on, one, line);</pre>
-<h2><a name="field_names"></a>Field Names</h2>
-<ul>
-<li>Non-public, non-static field names start with m.</li>
-<li>Static field names start with s.</li>
-<li>Other fields start with a lower case letter.</li>
-<li>Public static final fields (constants) are ALL_CAPS_WITH_UNDERSCORES.</li>
-</ul>
-<p>For example:</p>
-<pre>public class MyClass {
- public static final int SOME_CONSTANT = 42;
- public int publicField;
- private static MyClass sSingleton;
- int mPackagePrivate;
- private int mPrivate;
- protected int mProtected;
-}</pre>
-<h2><a name="braces"></a>Braces</h2>
-<p>Braces do not go on their own line; they go on the same line as the code
-before them. So:</p>
-<pre>class MyClass {
- int func() {
- if (something) {
- // ...
- } else if (somethingElse) {
- // ...
- } else {
- // ...
- }
- }
-}</pre>
-<p>We require braces around the statements for a conditional. Except, if the
-entire conditional (the condition and the body) fit on one line, you may (but
-are not obligated to) put it all on one line. That is, this is legal:</p>
-<pre>if (condition) {
- body(); // ok
-}
-if (condition) body(); // ok</pre>
-<p>but this is still illegal:</p>
-<pre>if (condition)
- body(); // bad</pre>
-<h2><a name="linelen"></a>Line length</h2>
-<p>Each line of text in your code should be at most 100 characters long.</p>
-<p>There has been lots of discussion about this rule and the decision remains
-that 100 characters is the maximum.</p>
-<p>Exception: if a comment line contains an example command or a literal URL
-longer than 100 characters, that line may be longer than 100 characters for
-ease of cut and paste.</p>
-<p>Exception: import lines can go over the limit because humans rarely see
-them. This also simplifies tool writing.</p>
-<h2><a name="annotations"></a>Java 1.5 Annotations</h2>
-<p>Annotations should precede other modifiers for the same language element.
-Simple marker annotations (e.g. @Override) can be listed on the same line with
-the language element. If there are multiple annotations, or parameterized
-annotations, they should each be listed one-per-line in alphabetical
-order.</p>
-<p>Android -standard practices for the three predefined annotations in Java
-1.5's are:</p>
-<h3>@Deprecated</h3>
-<p>The @Deprecated annotation must be used whenever the use of the annotated
-element is discouraged. If you use the @Deprecated annotation, you must also
-have a @deprecated Javadoc tag and it should name an alternate implementation.
-In addition, remember that a @Deprecated method is <b>still</b> supposed to
-work.</p>
-<p>If you see old code that has a @deprecated Javadoc tag, please add the @Deprecated annotation.</p>
-<h3>@Override</h3>
-<p>The @Override annotation must be used whenever a method overrides the
-declaration or implementation from a super-class.</p>
-<p>For example, if you use the @inheritdocs Javadoc tag, and derive from a
-class (not an interface), you must also annotate that the method @Overrides
-the parent class's method.</p>
-<h3>@SuppressWarnings</h3>
-<p>The @SuppressWarnings annotation should only be used under circumstances
-where it is impossible to eliminate a warning. If a warning passes this
-"impossible to eliminate" test, the @SuppressWarnings annotation <b>must</b> be
-used, so as to ensure that all warnings reflect actual problems in the
-code.</p>
-<p>When a @SuppressWarnings annotation is necessary, it must be prefixed with
-a TODO comment that explains the "impossible to eliminate" condition. This
-will normally identify an offending class that has an awkward interface. For
-example:</p>
-<pre>// TODO: The third-party class com.third.useful.Utility.rotate() needs generics
-@SuppressWarnings("generic-cast")
-List<String> blix = Utility.rotate(blax);</pre>
-<p>When a @SuppressWarnings annotation is required, the code should be
-refactored to isolate the software elements where the annotation applies.</p>
-<h2><a name="acronyms"></a>Acronyms in names</h2>
-<p>Treat acronyms and abbreviations as words. The names are much more readable:</p>
-<table><tbody>
-<tr><td>Good</td> <td>Bad</td></tr>
-<tr><td>XmlHttpRequest</td> <td>XMLHTTPRequest</td></tr>
-<tr><td>getCustomerId</td> <td>getCustomerID</td></tr>
-</tbody></table>
-<p>This style rule also applies when an acronym or abbreviation is the entire
-name:</p>
-<table><tbody>
-<tr><td>Good</td> <td>Bad</td></tr>
-<tr><td>class Html</td> <td>class HTML</td></tr>
-<tr><td>String url;</td> <td>String URL;</td></tr>
-<tr><td>long id;</td> <td>long ID;</td></tr>
-</tbody></table>
-<p>Both the JDK and the Android code bases are very inconsistent with regards
-to acronyms, therefore, it is virtually impossible to be consistent with the
-code around you. Bite the bullet, and treat acronyms as words.</p>
-<p>For further justifications of this style rule, see <i>Effective Java</i>
-Item 38 and <i>Java Puzzlers</i> Number 68.</p>
-
-<h2><a name="todo"></a>TODO style</h2>
-<p>Use TODO comments for code that is temporary, a short-term solution, or
-good-enough but not perfect.</p>
-<p>TODOs should include the string TODO in all caps, followed by a colon:</p>
-<pre>// TODO: Remove this code after the UrlTable2 has been checked in.
-
-// TODO: Change this to use a flag instead of a constant.</pre>
-<p>If your TODO is of the form "At a future date do something" make sure that
-you either include a very specific date ("Fix by November 2005") or a very
-specific event ("Remove this code after all production mixers understand
-protocol V7.").</p>
-
-<h2><a name="consistency"></a>Consistency</h2>
-<p>Our parting thought: BE CONSISTENT. If you're editing code, take a few
-minutes to look at the code around you and determine its style. If they use
-spaces around their if clauses, you should too. If their comments have little
-boxes of stars around them, make your comments have little boxes of stars
-around them too.</p>
-<p>The point of having style guidelines is to have a common vocabulary of
-coding, so people can concentrate on what you're saying, rather than on how
-you're saying it. We present global style rules here so people know the
-vocabulary. But local style is also important. If code you add to a a file
-looks drastically different from the existing code around it, it throws
-readers out of their rhythm when they go to read it. Try to avoid this.</p>
-
-<h2><a name="logging"></a>Logging</h2>
-<p>While logging is necessary it has a significantly negative impact on
-performance and quickly loses its usefulness if it's not kept reasonably
-terse. The logging facilities provides five different levels of logging. Below
-are the different levels and when and how they should be used.</p>
-
-<ul>
-<li><b>ERROR:</b>
-This level of logging should be used when something fatal has happened,
-i.e. something that will have user-visible consequences and won't be
-recoverable without explicitly deleting some data, uninstalling applications,
-wiping the data partitions or reflashing the entire phone (or worse). This
-level is always logged. Issues that justify some logging at the ERROR level
-are typically good candidates to be reported to a statistics-gathering
-server.</li>
-<li><b>WARNING:</b>
-This level of logging should used when something serious and unexpected
-happened, i.e. something that will have user-visible consequences but is
-likely to be recoverable without data loss by performing some explicit action,
-ranging from waiting or restarting an app all the way to re-downloading a new
-version of an application or rebooting the device. This level is always
-logged. Issues that justify some logging at the WARNING level might also be
-considered for reporting to a statistics-gathering server.</li>
-<li><b>INFORMATIVE:</b>
-This level of logging should used be to note that something interesting to
-most people happened, i.e. when a situation is detected that is likely to have
-widespread impact, though isn't necessarily an error. Such a condition should
-only be logged by a module that reasonably believes that it is the most
-authoritative in that domain (to avoid duplicate logging by non-authoritative
-components). This level is always logged.</li>
-<li><b>DEBUG:</b>
-This level of logging should be used to further note what is happening on the
-device that could be relevant to investigate and debug unexpected behaviors.
-You should log only what is needed to gather enough information about what is
-going on about your component. If your debug logs are dominating the log then
-you probably should be using verbose logging. This level will be logged, even
-on release builds, and is required to be surrounded by an if (LOCAL_LOG) or if
-(LOCAL_LOGD) block, where LOCAL_LOG[D] is defined in your class or
-subcomponent, so that there can exist a possibility to disable all such
-logging. There must therefore be no active logic in an if (LOCAL_LOG) block.
-All the string building for the log also needs to be placed inside the if
-(LOCAL_LOG) block. The logging call should not be re-factored out into a
-method call if it is going to cause the string building to take place outside
-of the if (LOCAL_LOG) block. There is some code that still says if
-(localLOGV). This is considered acceptable as well, although the name is
-nonstandard.</li>
-<li><b>VERBOSE:</b>
-This level of logging should be used for everything else. This level will only
-be logged on debug builds and should be surrounded by if (LOCAL_LOGV) block
-(or equivalent) so that it can be compiled out by default. Any string building
-will be stripped out of release builds and needs to appear inside the if
-(LOCAL_LOGV) block.</li>
-</ul>
-<p><i>Note:</i> Within a given module, other than at the VERBOSE level, an
-error should only be reported once if possible: within a single chain of
-function calls within a module, only the innermost function should return the
-error, and callers in the same module should only add some logging if that
-significantly helps to isolate the issue.</p>
-<p><i>Note:</i> In a chain of modules, other than at the VERBOSE level, when a
-lower-level module detects invalid data coming from a higher-level module, the
-lower-level module should only log this situation to the DEBUG log, and only
-if logging provides information that is not otherwise available to the caller.
-Specifically, there is no need to log situations where an exception is thrown
-(the exception should contain all the relevant information), or where the only
-information being logged is contained in an error code. This is especially
-important in the interaction between the framework and applications, and
-conditions caused by third-party applications that are properly handled by the
-framework should not trigger logging higher than the DEBUG level. The only
-situations that should trigger logging at the INFORMATIVE level or higher is
-when a module or application detects an error at its own level or coming from
-a lower level.</p>
-<p><i>Note:</i> When a condition that would normally justify some logging is
-likely to occur many times, it can be a good idea to implement some
-rate-limiting mechanism to prevent overflowing the logs with many duplicate
-copies of the same (or very similar) information.</p>
-<p><i>Note:</i> Losses of network connectivity are considered common and fully
-expected and should not be logged gratuitously. A loss of network connectivity
-that has consequences within an app should be logged at the DEBUG or VERBOSE
-level (depending on whether the consequences are serious enough and unexpected
-enough to be logged in a release build).</p>
-<p><i>Note:</i> A full filesystem on a filesystem that is acceessible to or on
-behalf of third-party applications should not be logged at a level higher than
-INFORMATIVE.</p>
-<p><i>Note:</i> Invalid data coming from any untrusted source (including any
-file on shared storage, or data coming through just about any network
-connections) is considered expected and should not trigger any logging at a
-level higher then DEBUG when it's detected to be invalid (and even then
-logging should be as limited as possible).</p>
-<p><i>Note:</i> Keep in mind that the '+' operator, when used on Strings,
-implicitly creates a StringBuilder with the default buffer size (16
-characters) and potentially quite a few other temporary String objects, i.e.
-that explicitly creating StringBuilders isn't more expensive than relying on
-the default '+' operator (and can be a lot more efficient in fact). Also keep
-in mind that code that calls Log.v() is compiled and executed on release
-builds, including building the strings, even if the logs aren't being
-read.</p>
-<p><i>Note:</i> Any logging that is meant to be read by other people and to be
-available in release builds should be terse without being cryptic, and should
-be reasonably understandable. This includes all logging up to the DEBUG
-level.</p>
-<p><i>Note:</i> When possible, logging should be kept on a single line if it
-makes sense. Line lengths up to 80 or 100 characters are perfectly acceptable,
-while lengths longer than about 130 or 160 characters (including the length of
-the tag) should be avoided if possible.</p>
-<p><i>Note:</i> Logging that reports successes should never be used at levels
-higher than VERBOSE.</p>
-<p><i>Note:</i> Temporary logging that is used to diagnose an issue that's
-hard to reproduce should be kept at the DEBUG or VERBOSE level, and should be
-enclosed by if blocks that allow to disable it entirely at compile-time.</p>
-<p><i>Note:</i> Be careful about security leaks through the log. Private
-information should be avoided. Information about protected content must
-definitely be avoided. This is especially important when writing framework
-code as it's not easy to know in advance what will and will not be private
-information or protected content.</p>
-<p><i>Note:</i> System.out.println() (or printf() for native code) should
-never be used. System.out and System.err get redirected to /dev/null, so your
-print statements will have no visible effects. However, all the string
-building that happens for these calls still gets executed.</p>
-<p><i>Note:</i> <b>The golden rule of logging is that your logs may not
-unnecessarily push other logs out of the buffer, just as others may not push
-out yours.</b></p>
-
-<h2>Javatests Style Rules</h2>
-<h2><a name="testmethodnames"></a>Naming test methods</h2>
-<p>When naming test methods, you can use an underscore to seperate what is
-being tested from the specific case being tested. This style makes it easier
-to see exactly what cases are being tested.</p>
-<p><a>For example:</a></p>
-<pre>testMethod_specificCase1 testMethod_specificCase2</pre>
-
-<pre>void testIsDistinguishable_protanopia() {
- ColorMatcher colorMatcher = new ColorMatcher(PROTANOPIA)
- assertFalse(colorMatcher.isDistinguishable(Color.RED, Color.BLACK))
- assertTrue(colorMatcher.isDistinguishable(Color.X, Color.Y))
-}
-</pre>
diff --git a/pdk/docs/source/download.jd b/pdk/docs/source/download.jd
deleted file mode 100644
index 65bcc70..0000000
--- a/pdk/docs/source/download.jd
+++ /dev/null
@@ -1,202 +0,0 @@
-page.title=Get Android Source Code
-doc.type=source
-@jd:body
-
-<div>
- <p>This document describes how to set up your local work environment, how to use Repo to get the Android files, and how to build the files on your machine.</p>
- <p>Related reading:
- <ul>
- <li>For an overview of the entire code-review and code-update process, see
-<a href="{@docRoot}source/life-of-a-patch.html">Life of a Patch</a>.</li>
- <li>For reference details about Repo, see <a href="{@docRoot}source/git-repo.html">Using Repo and Git</a>.</li>
- </ul>
- </p>
-</div>
-
-<div>
- <h2>What's in the source?</h2>
- <p>To see snapshots and histories of the files available in the public Android repositories, visit the <a href="http://android.git.kernel.org/">GitWeb</a> web interface.</p>
- <p>The source is approximately 2.6GB in size. You will need 6GB free to complete the build.</p>
-</div>
-
-<div>
- <h2>Setting up your machine</h2>
- <p>To build the Android source files, you will need to use Linux or Mac OS. Building under Windows is not currently supported.</p>
-
- <h3>Linux</h3>
- <p>The Android build is routinely tested in house on recent versions of Ubuntu (10.04 and later), but most distributions should have the required build tools available. Reports of successes or failures on other distributions are welcome.</p>
- <p>In general you will need:
- <ul>
- <li>Python 2.4, which you can download from <a href="http://www.python.org/download/">python.org</a>.</li>
- <li>JDK 6 if you wish to build Gingerbread or newer; JDK 5 for Froyo or older. You can download either from <a href="http://java.sun.com/javase/downloads/">java.sun.com</a>.</li>
- <li>Git 1.5.4 or newer. You can find it at <a href="http://git.or.cz/">http://git.or.cz/</a>.</li>
- </ul>
- </p>
-
- <h4>Ubuntu Linux (64-bit)</h4>
- <p>The Sun JDK is no longer in Ubuntu's main package repository. In order to download it, you need to add the appropriate repository and indicate to the system which JDK should be used.
- <p>Java 6: for Gingerbread and newer
- <div class=code>sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"<br/>
- sudo add-apt-repository "deb-src http://archive.canonical.com/ubuntu lucid partner"<br/>
- sudo apt-get update<br/>
- sudo apt-get install sun-java6-jdk<br/>
- sudo update-java-alternatives -s java-6-sun
- </div>
- </p>
- <p>Java 5: for Froyo and older
- <div class=code>sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu dapper main multiverse"<br/>
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu dapper-updates main multiverse"<br/>
- sudo apt-get update<br/>
- sudo apt-get install sun-java5-jdk<br/>
- sudo update-java-alternatives -s java-1.5.0-sun
- </div>
- </p>
- </p>
- <p>To set up your development environment, install the following required packages:
- <div class=code>$ sudo apt-get install git-core gnupg flex bison gperf build-essential zip curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 lib32ncurses5-dev ia32-libs x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev</div>
- </p>
- <p>You might also want Valgrind, a tool that will help you find memory leaks, stack corruption, array bounds overflows, etc.</p>
-
- <h4>Running Linux in a virtual machine</h4>
-If you are running Linux in a virtual machine, you will need at least 1.5GB of RAM and 10GB or more of disk space in order to build the Android tree.<br>
-</div>
-
-<div>
- <h3>Mac OS X</h3>
- <p>To build the Android files in a Mac OS environment, you need an Intel/x86 machine running MacOS 10.4 (Tiger), 10.5 (Leopard), or 10.6 (Snow Leopard). The Android build system and tools do not support the obsolete PowerPC architecture.</p>
- <p>Android must be built on a case-sensitive file system because the sources contain files that differ only in case. We recommend that you build Android on a partition that has been formatted with the journaled file system HFS+. HFS+ is required to successfully build Mac OS applications such as the Android Emulator for OS X.</p>
- <div>
- <h4>Creating a case sensitive disk image</h4>
- <p>If you want to avoid partitioning/formatting your hard drive, you can use a case-sensitive disk image instead. To create the image, launch Disk Utility and select "New Image". A size of 8 GB is sufficient, or more if you prefer. Be sure to select "case sensitive, journaled" as the volume format.</p>
- <p>This will create a .dmg file which, once mounted, acts as a drive with the required formatting for Android development. For a disk image named "android.dmg" stored in your home directory, you can add the following to your <tt>~/.bash_profile</tt> to mount the image when you execute "mountAndroid":
- <div class=code># mount the android file image<br/>
- function mountAndroid{ hdiutil attach ~/android.dmg-mountpoint /Volumes/android; }</div>
- Once mounted, you'll do all your work in the "android" volume. You can eject it (unmount it) just like you would with an external drive.</p>
- </div>
-
- <p>To set up your Mac OS development environment, follow these steps:
- <ol>
- <li>Install XCode from <a href="http://developer.apple.com/">http://developer.apple.com</a>. We recommend version 3.0 or newer. If you are not already registered as an Apple developer, you will have to create an Apple ID in order to download.</li>
- <li>Install MacPorts from <a href="http://www.macports.org/install.php">http://www.macports.org/</a>.</li>
- <li>Make sure that /opt/local/bin appears in your path BEFORE /usr/bin. If not, add
- <div class=code>export PATH=/opt/local/bin:$PATH</div>
- to your <tt>~/.bash_profile</tt>.</li>
- <li>Get make, git, and GPG packages from port:
- <div class=code>$ POSIXLY_CORRECT=1 sudo port install gmake libsdl git-core gnupg</div>
- If using Mac OS 10.4, also install bison:
- <div class=code>$ POSIXLY_CORRECT=1 sudo port install bison</div>
- </li>
- <li>Temporary step: There is a bug in gmake 3.82 that prevents android from building. You can install version 3.81 using MacPorts by taking the following steps:
- <p>Edit <tt>/opt/local/etc/macports/sources.conf</tt> and a line that says <div class=code>file:///Users/Shared/dports</div> above the rsync line. Then create this directory: <div class=code>$ mkdir /Users/Shared/dports</div>
- In the new <tt>dports</tt> directory, run <div class=code>$ svn co --revision 50980 http://svn.macports.org/repository/macports/trunk/dports/devel/gmake/ devel/gmake/</div>
- Create a port index for your new local repository: <div class=code>$ portindex /Users/Shared/dports</div>
- Finally, install the old version of gmake with <div class=code>$ sudo port install gmake @3.81</div>
- </p>
- </li>
- <li>Set an appropriate per-process file descriptor limit. To do this, add the following lines to your <tt>~/.bash_profile</tt>: <div class=code># set the number of open files to be 1024<br/>
- ulimit -S -n 1024</div>
- </li>
- </ol>
- </p>
-</div>
-
-
-<div>
- <h2>Installing Repo</h2>
- <p>Repo is a tool that makes it easier to work with Git in the context of Android. For more information about Repo, see <a href="{@docRoot}source/git-repo.html">Using Repo and Git</a>.</p>
- <p>To install, initialize, and configure Repo, follow these steps:
- <ol>
- <li>Make sure you have a bin/ directory in your home directory, and that it is included in your path:
- <div class=code>$ mkdir ~/bin<br/>
- $ PATH=~/bin:$PATH</div>
- </li>
- <li>Download the Repo script and ensure it is executable:
- <div class=code>$ curl http://android.git.kernel.org/repo > ~/bin/repo<br/>
- $ chmod a+x ~/bin/repo</div>
- </li>
- </ol>
-</div>
-
-<div>
- <h2>Initializing a Repo client</h2>
- <p>After installing Repo, set up your client to access the android source repository:
- <ol>
- <li>Create an empty directory to hold your working files:
- <div class=code>$ mkdir <i>directory</i><br/>
- $ cd <i>directory</i></div>
- </li>
- <li>Run <tt>repo init</tt> to bring down the latest version of Repo with all its most recent bug fixes. You must specify a URL for the manifest, which specifies where the various repositories included in the Android source will be placed within your working directory.
- <div class=code>$ repo init -u git://android.git.kernel.org/platform/manifest.git</div>
- To check out a branch other than "master", specify it with -b:
- <div class=code>$ repo init -u git://android.git.kernel.org/platform/manifest.git -b cupcake</div>
- </li>
- <li>When prompted, please configure Repo with your real name and email address. To use the Gerrit code-review tool, you will need an email address that is connected with a <a href="http://www.google.com/accounts">registered Google account</a>. Make sure this is a live address at which you can receive messages. The name that you provide here will show up in attributions for your code submissions.
- </li>
- </ol>
- A successful initialization will end with a message stating that Repo is initialized in your working directory. Your client directory should now contain a <tt>.repo</tt> directory where files such as the manifest will be kept.</p>
-</div>
-
-<div>
- <h2>Getting the files</h2>
- <p>To pull down files to your working directory from the repositories as specified in the default manifest, run
- <div class=code>$ repo sync</div>
- For more about <tt>repo sync</tt> and other Repo commands, see <a href="{@docRoot}source/git-repo.html">Using Repo and Git</a>.</span>
- <p>The Android source files will be located in your working directory under their project names.</p>
-</div>
-
-<div>
- <h2>Verifying Git Tags</h2>
- <p>Load the following public key into your GnuPG key database. The key is used to sign annotated tags that represent releases.
- <div class=code>$ gpg --import</div>
- Copy and paste the key(s) below, then enter EOF (Ctrl-D) to end the input and process the keys.
- <div class=code>-----BEGIN PGP PUBLIC KEY BLOCK-----<br>
- Version: GnuPG v1.4.2.2 (GNU/Linux)<br><br>
- mQGiBEnnWD4RBACt9/h4v9xnnGDou13y3dvOx6/t43LPPIxeJ8eX9WB+8LLuROSV <br>
- lFhpHawsVAcFlmi7f7jdSRF+OvtZL9ShPKdLfwBJMNkU66/TZmPewS4m782ndtw7<br>
- 8tR1cXb197Ob8kOfQB3A9yk2XZ4ei4ZC3i6wVdqHLRxABdncwu5hOF9KXwCgkxMD <br>
- u4PVgChaAJzTYJ1EG+UYBIUEAJmfearb0qRAN7dEoff0FeXsEaUA6U90sEoVks0Z <br>
- wNj96SA8BL+a1OoEUUfpMhiHyLuQSftxisJxTh+2QclzDviDyaTrkANjdYY7p2cq <br>
- /HMdOY7LJlHaqtXmZxXjjtw5Uc2QG8UY8aziU3IE9nTjSwCXeJnuyvoizl9/I1S5<br>
- jU5SA/9WwIps4SC84ielIXiGWEqq6i6/sk4I9q1YemZF2XVVKnmI1F4iCMtNKsR4<br>
- MGSa1gA8s4iQbsKNWPgp7M3a51JCVCu6l/8zTpA+uUGapw4tWCp4o0dpIvDPBEa9<br>
- b/aF/ygcR8mh5hgUfpF9IpXdknOsbKCvM9lSSfRciETykZc4wrRCVGhlIEFuZHJv <br>
- aWQgT3BlbiBTb3VyY2UgUHJvamVjdCA8aW5pdGlhbC1jb250cmlidXRpb25AYW5k <br>
- cm9pZC5jb20+iGAEExECACAFAknnWD4CGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIX <br>
- gAAKCRDorT+BmrEOeNr+AJ42Xy6tEW7r3KzrJxnRX8mij9z8tgCdFfQYiHpYngkI <br>
- 2t09Ed+9Bm4gmEO5Ag0ESedYRBAIAKVW1JcMBWvV/0Bo9WiByJ9WJ5swMN36/vAl <br>
- QN4mWRhfzDOk/Rosdb0csAO/l8Kz0gKQPOfObtyYjvI8JMC3rmi+LIvSUT9806Up <br>
- hisyEmmHv6U8gUb/xHLIanXGxwhYzjgeuAXVCsv+EvoPIHbY4L/KvP5x+oCJIDbk <br>
- C2b1TvVk9PryzmE4BPIQL/NtgR1oLWm/uWR9zRUFtBnE411aMAN3qnAHBBMZzKMX <br>
- LWBGWE0znfRrnczI5p49i2YZJAjyX1P2WzmScK49CV82dzLo71MnrF6fj+Udtb5+<br>
- OgTg7Cow+8PRaTkJEW5Y2JIZpnRUq0CYxAmHYX79EMKHDSThf/8AAwUIAJPWsB/M <br>
- pK+KMs/s3r6nJrnYLTfdZhtmQXimpoDMJg1zxmL8UfNUKiQZ6esoAWtDgpqt7Y7s <br>
- KZ8laHRARonte394hidZzM5nb6hQvpPjt2OlPRsyqVxw4c/KsjADtAuKW9/d8phb <br>
- N8bTyOJo856qg4oOEzKG9eeF7oaZTYBy33BTL0408sEBxiMior6b8LrZrAhkqDjA <br>
- vUXRwm/fFKgpsOysxC6xi553CxBUCH2omNV6Ka1LNMwzSp9ILz8jEGqmUtkBszwo <br>
- G1S8fXgE0Lq3cdDM/GJ4QXP/p6LiwNF99faDMTV3+2SAOGvytOX6KjKVzKOSsfJQ <br>
- hN0DlsIw8hqJc0WISQQYEQIACQUCSedYRAIbDAAKCRDorT+BmrEOeCUOAJ9qmR0l <br>
- EXzeoxcdoafxqf6gZlJZlACgkWF7wi2YLW3Oa+jv2QSTlrx4KLM=<br>
- =Wi5D <br>
- -----END PGP PUBLIC KEY BLOCK-----
- </div>
- After importing the keys, you can verify any tag with <div class=code>$ git tag -v <i>tagname</i></div>
- </p>
-</div>
-
-<div>
- <h2>Building the code</h2>
- <p>To build the files, run envsetup, lunch, and make from within your working directory:
- <div class=code>$ cd ~/<i>directory</i><br/>
- $ source build/envsetup.sh<br/>
- $ lunch<br/>
- $ make<br/>
- </div>
- If your build fails because of a missing <tt>run-java-tool</tt>, try setting the <tt>ANDROID_JAVA_HOME</tt> environment variable before making.
- <div class=code>$ export ANDROID_JAVA_HOME=$JAVA_HOME</div>
- </p>
-</div>
-
-<div>
- <h2>What's next?</h2>
- <p>See <a href="{@docRoot}source/using-eclipse.html">Using Eclipse</a> for instructions on how to use an IDE for Android platform development. To learn about reporting an issue and searching previously reported issues, see <a href="{@docRoot}source/report-bugs.html">Report bugs</a>. For information about editing the files and uploading changes to the code-review server, see <a href="{@docRoot}source/submit-patches.html">Contribute</a>.
-</div>
diff --git a/pdk/docs/source/git-repo.jd b/pdk/docs/source/git-repo.jd
deleted file mode 100644
index f777e58..0000000
--- a/pdk/docs/source/git-repo.jd
+++ /dev/null
@@ -1,319 +0,0 @@
-page.title=Using Repo and Git
-doc.type=source
-@jd:body
-<div>
-<p>To work with the Android code, you will need to use both Git and Repo.<br></p>
-<ul><li><i>Git</i>
-is an open-source version-control system designed to handle very large projects that are distributed over multiple repositories. In the context of Android, we use Git for local operations such as local branching, commits, diffs, and edits.<br><br></li>
-<li><i>Repo</i>
-is a tool that we built on top of Git. Repo helps us manage the many Git repositories, does the uploads to our <a href="http://review.source.android.com/">revision control system</a>
-, and automates parts of the Android development workflow. Repo is not meant to replace Git, only to make it easier to work with Git in the context of Android. The repocommand is an executable Python script that you can put anywhere in your path.<i><br><br></i>
-In working with the Android source files, you will use Repo for across-network operations. For example, with a single Repo command you can download files from multiple repositories into your local working directory.
-</li>
-</ul>
-<h2>
-About Git
-</h2>
-<h3>
-Why Git?
-</h3>
-One of the challenges in setting up the Android project was figuring out how to best support the outside community--from the hobbiest community to large OEMs building mass-market consumer devices. We wanted components to be replaceable, and we wanted interesting components to be able to grow a life of their own outside of Android. We first chose a distributed revision control system, then further narrowed it down to Git.<br><h3>
-Already a Git user?
-</h3>
-In most situations, you can use Git instead of Repo, or mix Repo and Git
-commands to form complex commands. Using Repo for basic across-network
-operations will make your work much simpler, however.
-<br>
-<div><h2>
-Task reference <br></h2>
-The task list below shows a summary of how to do common Repo and Git tasks.
-For complete quick-start information and examples, see <a
-href="{@docRoot}source/download.html">Get source</a>
-.
-<h3>
-Installing Repo <br></h3>
-$ curl http://android.git.kernel.org/repo > ~/bin/repo <div>$ chmod a+x ~/bin/repo</div>
-$ mkdir <i>working-directory-name</i>
-<br>$ cd <i>working-directory-name <br></i>
-$ repo init -u git://android.git.kernel.org/platform/manifest.git <br><br><h3>
-Synchronizing your client
-</h3>
-To synchronize the files for all available projects:<br>$ repo sync <br><br>To
-synchronize the files for selected projects:<br>$ repo sync <i>project1
-project2 ...</i>
-<i><br></i>
-<br><h3>
-Why use topic branches?
-</h3>
-Start a topic branch in your local work environment whenever you begin a change, for example when you begin work on a bug or new feature.<br><br>A topic branch is not a copy of the original files; it is a pointer to a particular commit. This makes creating local branches and switching among them a light-weight operation. By using branches, you canisolateone aspect of your work from the others. For an interesting article about using topic branches, see <a href="http://www.kernel.org/pub/software/scm/git/docs/howto/separating-topic-branches.txt">Separating topic branches</a>
-.
-<div><img src="{@docRoot}images/git-repo-0.png">
-</div>
-<br><br><h3>
-Creating topic branches
-</h3>
-To start a topic branch using Repo:<br>$ repo start <i>branchname</i>
-<br><br>To verify that your new branch was created:<br>$ repo status <br><br><h3>
-Using topic branches
-</h3>
-To assign the branch to a particular project:<br>$ repo start <i>branch</i>
-<i>name project</i>
-<br><br>To switch back and forth among branches that you have created in your local work environment:<br>$ git checkout <i>branchname</i>
-<br><br>To see a list of existing branches:<br>$ git branch <br>or...<br>$ repo branches <br><br>The name of the current branch will be preceded by an asterisk.<br><br></div>
-<div><i><b>Note:</b>
-<br></i>
-A bug might be causing repo sync to reset the local topic branch. If git branch shows * (no branch) after you run repo sync, then run git checkoutagain.<br></div>
-<div><br><h3>
-Viewing client status
-</h3>
-To list the state of your files:<br>$ repo status <br><br>To see uncommitted edits:<br>$ repo diff <br><br>Therepo diffcommand shows every local edit that you have made that would <i>not</i>
-go into the commit, if you were to commit right now.<br><br>To see every edit that would go into the commit if you were to commit right now, you need a Git command, git diff. Before running it, be sure you are down in the project directory:<br>$ cd ~/<i>workingdirectory</i>
-/<i>project</i>
-<br>$ git diff --cached <br><br><h3>
-Recovering sync conflicts
-</h3>
-If a repo sync shows sync conflicts:<br><ol><li>View the files that are unmerged (status code = U).
-</li>
-<li>Edit the conflict regions as necessary.
-</li>
-<li>Change into the relevant project directory, run git add and git commit for the files in question, and then "rebase" the changes. For example:<br>$ cd bionic <br>$ git add bionic/*<br>$ git commit <br>$ git rebase --continue <br><br></li>
-<li>When the rebase is complete start the entire sync again:<br>$ repo syncbionic <i>proj2</i>
-<i>proj3</i>
-<i>...</i>
-
-<i>projN</i>
-<br></li>
-</ol>
-<h3>
-Cleaning up your client files <br></h3>
-To update your local working directory after changes are merged in Gerrit:<br>$repo sync <br><br>To safely remove stale topic branches:<br>$ repo prune <br><br><h3>
-Deleting a client
-</h3>
-Deleting a client will <b>permanently delete</b>
-any changes you have not yet uploaded for review.Becauseall state information is stored in your client, you only need to delete the directory from your filesystem:<br><br>$ cd <i>~</i>
-<br>$ rm -rf <i>working-directory-name</i>
-<br><br><h3>
-Scripting common tasks
-</h3>
-You can use Repo to run the same program across all projects:<br><br>$ repo forall[<i>proj1</i>
-<i>proj2</i>
-<i>...</i>
-
-<i>projN</i>
-]-c '<i>echo $REPO_PROJECT $@</i>
-'[<i>arg1</i>
-<i>arg2</i>
-<i>...</i>
-
-<i>argN</i>
-]<br><br>The -c argument is evaluated through /bin/sh and any arguments after it are passed through as shell positional parameters.<br><br><h2>
-Repo command reference
-</h2>
-Repo usage takes the following form:<br>repo <i>command options</i>
-<br><br>Optional elements are shown in brackets[ ]. Once Repo is installed, you can get information about any command by running <br>repo help <i>command</i>
-<br><br><h3>
-init
-</h3>
-repo init -u <i>url</i>
-[<i>options</i>
-]<br><br><div>Installs Repo in the current directory. This creates a .repo/ directory that contains Git repositories for the Repo source code and the standard Android manifest files. The .repo/ directory also containsmanifest.xml, which is a symlink to the selected manifest in the .repo/manifests/ directory.<br><br>The -u argument specifies a URL from which to retrieve a manifest repository. For example:<br>$ repo init -u git://android.git.kernel.org/platform/manifest.git <br><br>To select a manifest file within the repository, use the -m option. (If no manifest name is selected, the default is default.xml.)For example:<br>$ repo init -u git://android.git.kernel.org/platform/manifest.git-m dalkvik-plus.xml <br><br>To specify a revision, that is, a particular manifest-branch, use the -b option. For example:<br>$ repo init -u git://android.git.kernel.org/platform/manifest.git-b release-1.0<br><br>To see other repo init options, run <br>$ repo help init <br><br><b>Note:</b>
-For all remaining Repo commands, the current working directory must either be the parent directory of .repo/ or a subdirectory of the parent directory.<br><br></div>
-<h3>
-sync
-</h3>
-repo sync [<i>project-list</i>
-]<br><br><div>Downloads new changes and updates the working files in your local environment. After a successful repo sync, the code in specified projects will be up to date with the code in the remote repository.<br><br>You can specify project-list as a list of names or a list of paths to local source directories for the projects:<br>repo sync [<i>proj1</i>
-<i>proj2</i>
-<i>...</i>
-
-<i>projN</i>
-]<br><br>If you run repo sync without any arguments, it will synchronize the files for all the projects.<br><br></div>
-<p><b>How Repo synchronization works</b>
-<br></p>
-<div>When you run repo sync, this is what happens:<br></div>
-<ol><li>If the project has never been synchronized, then repo sync is equivalent to git clone. All branches in the remote repository are copied to the local project directory.
-</li>
-<li>If the project has already been synchronized once, then repo sync is equivalent to:<br>git remote update <br>git rebase origin/<i>branch</i>
-<br>where <i>branch</i>
-is the currently checked-out branch in the local project directory. If the local branch is not tracking a branch in the remote repository, then no synchronization will occur for the project.<br><br>If the git rebase operation results in merge conflicts, you will need to use the normal Git commands (for example, git rebase --continue) to resolve the conflicts.<br></li>
-</ol>
-<div>The repo sync command also updates the private repositories in the .repo/ directory.<br></div>
-<br><h3>
-upload
-</h3>
-repo upload [<i>project-list</i>
-]<br><br><div>For the specified projects, Repo compares the local branches to the remote branches updated during the last repo sync. Repo will prompt you to select one or more of the branches that have not yet been uploaded for review.<br><br>After you select one or more branches, all commits on the selected branches are transmitted to Gerrit over an SSH connection.You will need to configure an SSH key to enable upload authorization.Visit <a href="http://review.source.android.com/Gerrit#settings,ssh-keys">SSH Keys</a>
-within the user settings panel to register your public keys with Gerrit.To enable password-less uploads, consider using ssh-agent on your client system.<br><br>When Gerrit receives the object data over its SSH server, it will turn each commit into a change so that reviewers can comment on each commit individually.<br><br>To combine several "checkpoint" commits together into a single commit, use git rebase -i before you run repo upload.<br><br>You can specify project-list as a list of names or a list of paths to local source directories for the projects:<br>repo upload [<i>proj1</i>
-<i>proj2</i>
-<i>...</i>
-
-<i>projN</i>
-]<br><br>If you run repo upload without any arguments, it will search all the projects for changes to upload.<br><br>To make edits to changes after they have been uploaded, you should use a tool likegit rebase -ior git commit --amend to update your local commits.<br><br>After your edits are complete:<br></div>
-<div><ol><li>Make sure the updated branch is the currently checked out branch.
-</li>
-<li>Use repo upload --replace <i>proj1</i>
-to open the change matching editor.
-</li>
-<li>For each commit in the series, enter the Gerrit change Id inside the brackets:<br></li>
-</ol>
-</div>
-<div># Replacing from branch foo <br>[ 3021 ] 35f2596c Refactor part of GetUploadableBranches to lookup one specific...<br>[ 2829 ] ec18b4ba Update proto client to support patch set replacments <br>[ 3022 ] c99883fe Teach 'repo upload --replace' how to add replacement patch se...<br># Insert change numbers in the brackets to add a new patch set.<br># To create a new change record, leave the brackets empty.<br><br>After the upload is complete the changes will have an additional Patch Set (e.g. Patch Set 2, Patch Set 3, ...).<br></div>
-<br><h3>
-diff
-</h3>
-repo diff [<i>project-list</i>
-]<br><br><div>Shows changes between commit and working tree.<br><br>You can specify project-list as a list of names or a list of paths to local source directories for the projects:<br>repo diff [<i>proj1</i>
-<i>proj2</i>
-<i>...</i>
-
-<i>projN</i>
-]<br><br>Options:<br>-h, --helpmeans show this help message and exit.<br></div>
-<br><h3>
-download <br></h3>
-repo download <i>target</i>
-<i>change</i>
-<br><br><div>Downloads the specified change into the specified local directory. (Added to Repo as of version 1.0.4.)<br><br>For example, to download <a href="http://review.source.android.com/1241">change 1241</a>
-into your platform/frameworks/base directory:<br>$ repo download platform/frameworks/base 1241<br><br>A"repo sync"should effectively remove any commits retrieved via "repo download".Or, you can check out the remote branch; e.g., "git checkout m/master".<br><br><b>Note:</b>
-As of Jan. 26, 2009, there is a mirroring lag of approximately 5 minutes between when a change is visible on the web in <a href="http://review.source.android.com/">Gerrit</a>
-and when repo download will be able to find it, because changes are actually downloaded off the git://android.git.kernel.org/ mirror farm. There will always be a slight mirroring lag as Gerrit pushes newly uploaded changes out to the mirror farm.
-</div>
-<br><h3>
-forall
-</h3>
-repo forall [<i>project-list</i>
-] -c <i>command</i>
-[<i>arg.</i>
-..]<br><br><div>Runs a shell command in each project.<br><br>You can specify project-list as a list of names or a list of paths to local source directories for the projects <br></div>
-<br><h3>
-help
-</h3>
-repo help [<i>command</i>
-]<br><br><div>Displays detailed help about a command.<br></div>
-<br><h3>
-prune <br></h3>
-repo prune [<i>project-list</i>
-]<br><br><div>Prunes (deletes) topics that are already merged.<br><br>You can specify project-list as a list of names or a list of paths to local source directories for the projects:<br>repo prune [<i>proj1</i>
-<i>proj2</i>
-<i>...</i>
-
-<i>projN</i>
-]<br></div>
-<br><h3>
-start
-</h3>
-repo start <i>newbranchname</i>
-[<i>project-list</i>
-]<br><br><div>Starts a new branch for development.<br><br>The <i>newbranchname</i>
-argument should provide a short description of the change you are trying to make to the projects.If you don't know, consider using the name default.<br><br>The <i>project-list</i>
-specifies which projects will participate in this topic branch. You can specify project-list as a list of names or a list of paths to local working directories for the projects:<br>repo start default [<i>proj1</i>
-<i>proj2</i>
-<i>...</i>
-
-<i>projN</i>
-]<br><br>"." is a useful shorthand for the project in the current working directory.<br></div>
-<br><h3>
-status
-</h3>
-repo status [<i>project-list</i>
-]<br><br><div>Shows the status of the current working directory. You can specify project-list as a list of names or a list of paths to local source directories for the projects:<br>repo status [<i>proj1</i>
-<i>proj2</i>
-<i>...</i>
-
-<i>projN</i>
-]<br><br>To see the status for only the current branch, run <br>repo status .<br><br>The status information will be listed by project. For each file in the project, a two-letter code is used:<br></div>
-<div><ul><li>In the left-most column, an uppercase letter indicates what is happening in the index (the staged files) when compared to the last committed state.<br><br></li>
-<li>In the next column, a lowercase letter indicates what is happening in the working directory when compared to the index (what is staged).
-</li>
-</ul>
-<table><tbody><tr><td><b>Character</b>
-</td>
-<td><b>Meaning</b>
-</td>
-</tr>
-<tr><td>A
-</td>
-<td>The file is added (brand new). Can only appear in the first column.<br></td>
-</tr>
-<tr><td>M or m <br></td>
-<td>The file already exists but has been modified in some way.
-</td>
-</tr>
-<tr><td>D or d <br></td>
-<td>The file has been deleted.<br></td>
-</tr>
-<tr><td>R
-</td>
-<td>The file has been renamed. Can only appear in the first column. The new name is also shown on the line.</td>
-</tr>
-<tr><td>C
-</td>
-<td>The file has been copied from another file. Can only appear in the first column. The source is also shown.
-</td>
-</tr>
-<tr><td>T
-</td>
-<td>Only the file's mode (executable or not) has been changed. Can only appear in the first column.
-</td>
-</tr>
-<tr><td>U
-</td>
-<td>The file has merge conflicts and is still unmerged. Can only appear in the first column.
-</td>
-</tr>
-<tr><td>-
-</td>
-<td>The file state is unmodified. A hyphen in <i>both</i>
-columns means this is a new file, unknown to Git. After you run git add on this file, repo status will show A-, indicating the file has been added.<br></td>
-</tr>
-</tbody>
-</table>
-<br>For example, if you edit the file main.py within the appeng project without staging the changes, then repo status might show <br><br>project appeng/<br>-mmain.py <br><br>If you go on to stage the changes to main.py by running git add, then repo status might show <br><br>project appeng/<br>M- main.py <br><br>If you then make further edits to the already-staged main.py and make edits to another file within the project, app.yaml, then repo status might show <br><br>project appeng/<br>-mapp.yaml <br>Mm main.py <br><br></div>
-<h2>
-Git and Repo cheatsheet
-</h2>
-Click on the cheatsheet to open it in a new window for easier printing.
-
-<div><img src="{@docRoot}images/git-repo-1.png">
-</div>
-
-<!--
-<h2>Additional Resources</h2>
-<h3>Resources for platform developers</h3>
-Google I/O videos:
-<ul>
- <li><a href="http://sites.google.com/site/io/an-introduction-to-android">Introduction to Android</a></li>
- <li><a href="http://sites.google.com/site/io/anatomy-physiology-of-an-android">Anatomy Physiology of an Android</a></li>
- <li><a href="http://sites.google.com/site/io/inside-the-android-application-framework">Inside the Android Application Framework</a></li>
- <li><a href="http://sites.google.com/site/io/dalvik-vm-internals">Dalvik VM Internals</a></li>
-</ul>
-
-Getting started with the Android source code:
-<ul>
- <li><a href="http://source.android.com/source/download.html">Get source</a></li>
- <li><a href="http://source.android.com/source/code-style.html">Code Style Guide</a></li>
-</ul>
-
-Repo and Git resources:
-<ul>
- <li><a href="http://source.android.com/source/git-repo.html">Using Repo and Git</a></li>
- <li>The <a href="http://book.git-scm.com/">Git Community Book</a> maintained by Scott Chacon</li>
- <li><a href="http://git.or.cz/gitwiki/FrontPage">GitWiki</a></li>
- <li><a href="http://www.kernel.org/pub/software/scm/git/docs/">Git Manual Page</a></li>
- <li><a href="http://www.gitcasts.com/">GitCasts</a> (Git how-to videos)</li>
-</ul>
-
-Documentation on specific tasks:
-<ul>
- <li><a href="http://source.android.com/source/building-dream.html">Building for an Android Developer Phone</a></li>
-</ul>
--->
-
-<h2>
-<b>Terminology</b>
-</h2>
-<i>Staged</i>
-<i>changes</i>
-<br>Changes marked by git add for inclusion in the next commit's snapshot.<br><br><i>Commit <br></i>
-At intervals, you use git commit to save a snapshot of the staged files and a log message that describes the change.<br><br><i>Manifest</i>
-<br>A manifest file that contains a list of repositories and a mapping of where the files from these repositories will be located within your working directory. When you synchronize your files, the files contained in the repositories that are listed in the manifest will be pulled into your working directory.</div>
-</div>
diff --git a/pdk/docs/source/index.jd b/pdk/docs/source/index.jd
deleted file mode 100644
index a9acbf4..0000000
--- a/pdk/docs/source/index.jd
+++ /dev/null
@@ -1,37 +0,0 @@
-page.title=Get Involved
-doc.type=source
-@jd:body
-<div>
-<p>Thanks for your interest in Android! Here are some ways you can get involved
-and help us improve Android. For background on the Android project and our
-goals, check out the <a href="{@docRoot}about/philosophy.html">Project
-Philosophy page</a>.</p>
-
-<h2>Report Bugs</h2>
-<p>One of the easiest and most effective ways you can help improve Android is
-to file bugs. For more information, visit the <a
-href="{@docRoot}source/report-bugs.html">Reporting Bugs</a> page.</p>
-<p>Please note that we can't guarantee that any particular bug will be fixed in
-any particular release. To see what happens to your bug once you report it,
-read <a href="{@docRoot}source/life-of-a-bug.html">Life of a Bug</a>.</p>
-
-<h2>Develop Apps</h2>
-<p>We created Android so that all developers can distribute their applications
-to users on an open platform. One of the best ways you can help Android is to
-write cool apps that users love!</p>
-<p>To get started, visit <a
-href="http://developer.android.com/">developer.android.com</a>. This site
-provides the information and tools you need to write applications for
-compatible Android devices, using the SDK.</p>
-
-<h2>Contribute to the Code</h2>
-<p>Code is King. We'd love to review any changes you submit, so please check
-out the source, pick a bug or feature, and get coding. Note that the smaller
-and more targetted your patch submissions, the easier it will be for us to
-review them.</p>
-<p>You can get started with Android by learning about the <a
-href="{@docRoot}source/life-of-a-patch.html">Life of a Patch</a>, and by
-learning about <code>git</code>, <code>repo</code>, and other tools using the
-links to the left. If you need help along the way, you can join our <a
-href="{@docRoot}community/index.html">discussion groups.</a></p>
-</div>
diff --git a/pdk/docs/source/licenses.jd b/pdk/docs/source/licenses.jd
deleted file mode 100644
index 17cebeb..0000000
--- a/pdk/docs/source/licenses.jd
+++ /dev/null
@@ -1,82 +0,0 @@
-page.title=Licenses
-doc.type=source
-@jd:body
-<div>
-<p>The Android Open Source Project uses a few <a
-href="http://www.opensource.org/">open source initiative</a> approved open
-source licenses for our software.</p>
-<h2>Android Open Source Project license</h2>
-<p>The preferred license for the Android Open Source Project is the <a
-href="http://www.apache.org/licenses/LICENSE-2.0">Apache Software License,
-2.0</a> ("Apache 2.0"), and the majority of the Android software is licensed
-with Apache 2.0. While the project will strive to adhere to the preferred
-license, there may be exceptions which will be handled on a case-by-case
-basis. For example, the Linux kernel patches are under the GPLv2 license with
-system exceptions, which can be found on <a
-href="http://www.kernel.org/pub/linux/kernel/COPYING">kernel.org</a>.
-</p>
-<h2>Contributor License Grants</h2>
-<p>All <b>individual</b> contributors (that is, contributors making contributions
-only on their own behalf) of ideas, code, or documentation to the Android Open
-Source Project will be required to complete, sign, and submit an <a
-href="{@docRoot}source/cla-individual.html">Individual
-Contributor License Grant</a>. The grant can be executed online through the <a
-href="https://review.source.android.com/#settings,agreements">code review
-tool</a>. The grant clearly defines the terms under which intellectual
-property has been contributed to the Android Open Source Project. This license
-is for your protection as a contributor as well as the protection of the
-project; it does not change your rights to use your own contributions for any
-other purpose.</p>
-<p>For a <b>corporation</b> (or other entity) that has assigned employees to
-work on the Android Open Source Project, a <a
-href="{@docRoot}source/cla-corporate.html">Corporate
-Contributor License Grant</a> is available. This version of the grant allows a
-corporation to authorize contributions submitted by its designated employees
-and to grant copyright and patent licenses. Note that a Corporate Contributor
-License Grant does not remove the need for any developer to sign their own
-Individual Contributor License Grant as an individual, to cover any of their
-contributions which are <b><i>not</i></b> owned by the corporation signing the
-Corporate Contributor License Grant.
-</p>
-<p>Please note that we based our grants on the ones that the <a
-href="http://www.apache.org/">Apache Software Foundation</a> uses, which can
-be found on <a href="http://www.apache.org/licenses/">the Apache web site</a>.</p>
-<h2>Why Apache Software License?</h2>
-<p>We are sometimes asked why Apache Software License 2.0 is the preferred
-license for Android. For userspace (that is, non-kernel) software, we do in
-fact prefer ASL2.0 (and similar licenses like BSD, MIT, etc.) over other
-licenses such as LGPL.</p>
-<p>Android is about freedom and choice. The purpose of Android is promote
-openness in the mobile world, but we don't believe it's possible to predict or
-dictate all the uses to which people will want to put our software. So, while
-we encourage everyone to make devices that are open and modifiable, we don't
-believe it is our place to force them to do so. Using LGPL libraries would
-often force them to do so.</p>
-<p>Here are some of our specific concerns:</p>
-<ol>
-<li>LGPL (in simplified terms) requires either: shipping of source to the
-application; a written offer for source; or linking the LGPL-ed library
-dynamically and allowing users to manually upgrade or replace the library.
-Since Android software is typically shipped in the form of a static system
-image, complying with these requirements ends up restricting OEMs' designs.
-(For instance, it's difficult for a user to replace a library on read-only
-flash storage.)</li>
-<li>LGPL requires allowance of customer modification and reverse
-engineering for debugging those modifications. Most device makers do
-not want to have to be bound by these terms, so to minimize the burden on
-these companies we minimize usage of LGPL software in userspace.</li>
-<li>Historically, LGPL libraries have been the source of a large number
-of compliance problems for downstream device makers and application
-developers. Educating engineers on these issues is difficult and slow-going,
-unfortunately. It's critical to Android's success that it be as easy as
-possible for device makers to comply with the licenses. Given the
-difficulties with complying with LGPL in the past, it is most prudent to
-simply not use LGPL libraries if we can avoid it.</li>
-</ol>
-<p>The issues discussed above are our reasons for preferring ASL2.0 for
-our own code. They aren't criticisms of LGPL or other licenses. We do
-feel strongly on this topic, even to the point where we've gone out of our
-way to make sure as much code as possible is ASL2.0. However, we love all free
-and open source licenses, and respect others' opinions and preferences. We've
-simply decided that ASL2.0 is the right license for our goals.</p>
-</div>
diff --git a/pdk/docs/source/life-of-a-bug.jd b/pdk/docs/source/life-of-a-bug.jd
deleted file mode 100644
index 5d77f7a..0000000
--- a/pdk/docs/source/life-of-a-bug.jd
+++ /dev/null
@@ -1,128 +0,0 @@
-page.title=Life of a Bug
-doc.type=source
-@jd:body
-<p>The Android Open Source project maintains a public issue tracker where you
-can report bugs and request features for the Android software stack. (For
-details on this issue tracker, please see <a
-href="{@docRoot}source/report-bugs.html">the Reporting Bugs page</a>.)
-Reporting bugs is great (thank you!), but what happens to a bug report once
-you file it? This page describes the Life of a Bug.</p>
-<p><i>Please note: the the Android Open Source Project (AOSP) issue tracker is
-intended only for bugs & feature requests related to the Android software
-stack. Because many users find their way here looking for the Google apps for
-Android (such as Gmail and so on), we have components set up for their
-convenience. However, these apps are not part of Android, and any issues
-reported on these components are not guaranteed to to receive attention.
-Most notably, to report issues related to Android Market, you should visit the
-<a href="http://www.google.com/support/forum/p/Android+Market?hl=en">Android
-Market Support Forum</a>.</i></p>
-<p>Here's the Life of a Bug, in a nutshell:</p>
-<ol>
-<li>A bug is filed, and has the state "New".</li>
-<li>An AOSP contributor periodically reviews and triages bugs. Bugs are
-triaged into one of four "buckets": New, Open, No-Action, or Resolved.</li>
-<li>Each bucket includes a number of states that provide more detail on the
-fate of the issue.</li>
-<li>Bugs in the "Resolved" bucket will eventually be included in a future
-release of the Android software.</li>
-</ol>
-<h2>Bucket Details</h2>
-<p>Here is some additional information on each bucket, what it means, and how
-it's handled.</p>
-<h3>New Issues</h3>
-<p>New issues include bug reports that are not yet being acted upon. The two
-states are:</p>
-<ul>
-<li><b>New</b><p>The bug report has not yet been triaged (that is, reviewed by
-an AOSP contributor.)</p></li>
-<li><b>NeedsInfo</b><p>The bug report has insufficient information to act
-upon. The person who reported the bug needs to provide additional detail
-before it can be triaged. If enough time passes and no new information is
-provided, the bug may be closed by default, as one of the No-Action
-states.</p></li>
-</ul>
-
-<h3>Open Issues</h3>
-<p>This bucket contains bugs that need action, but which are still
-unresolved, pending a change to the source code.</p>
-<ul>
-<li><b>Unassigned</b><p>The bug report has been recognized as an adequately
-detailed report of a legitimate issue, but has not yet been assigned to an
-AOSP contributor to be fixed. Typically, bugs in this state are considered low
-priority, at least insofar that if they were high priority, they'd be assigned
-to a contributor.</p></li>
-<li><b>Reviewed</b><p>Like <code>Unassigned</code>, but the issue
-represented is being tracked in a separate bug database. For example, the bug
-might have been reported via an internal bug-tracking system,
-which is considered the "master" copy. (For instance, Google maintains one
-such private issue tracker, intended primarily for bugs which contain
-sensitive information which can't be revealed publicly.)</p></li>
-<li><b>Assigned</b><p>Like <code>Unassigned</code>, but the bug has been
-actually assigned to a specific contributor to fix.</p></li>
-</ul>
-<p>Typically, a given bug will start in <code>Unassigned</code>, where it
-will remain until it is associated with a specific upcoming release, at which
-point it will enter <code>Reviewed</code> or <code>Assigned</code>. However,
-note that this isn't a guarantee, and it's not uncommon for bugs to go from
-<code>Unassigned</code> to one of the Resolved states.</p>
-<p>In general, if a bug is in one of these Open states, the AOSP team has
-recognized it as a legitimate issue and will fix it according to the product
-priorities and milestones. However, it's impossible to guarantee a fix in time
-for any particular release.</p>
-
-<h3>No-Action Issues</h3>
-<p>This bucket contains bugs that have for one reason or another been
-determined to not require any action.</p>
-<ul>
-<li><b>Spam</b><p>A kind soul sent us some delicious pork products, that we,
-regrettably, do not want.</p></li>
-<li><b>Question</b><p>Someone mistook the issue tracker for a help forum.
-(This is not as uncommon as you might think: many users whose native language
-isn't English misunderstand the site and make this mistake.)</p></li>
-<li><b>Unreproducible</b><p>An AOSP contributor attempted to reproduce the
-behavior described, and was unable to do so. This sometimes means that the bug
-is legitimate but simply rare or difficult to reproduce, and sometimes means
-that the bug was fixed in a later release.</p></li>
-<li><b>WorkingAsIntended</b><p>An AOSP contributor has determined that the
-behavior described isn't a bug, but is the intended behavior. This state is
-also commonly referred to as "WAI".</b></li>
-<li><b>Declined</b><p>This is like <code>WorkingAsIntended</code>, except
-typically used for feature requests instead of bugs. That is, an AOSP
-contributor has determined that the request is not going to be implemented in
-Android.</b></li>
-</ul>
-
-<h3>Resolved Issues</h3>
-<p>This bucket contains bugs that have had action taken, and are now
-considered resolved.</p>
-<ul>
-<li><b>FutureRelease</b><p>This bug has been fixed (or feature implemented) in
-a source tree, but has not yet been included in a formal Android
-platform release. (Note that this may also include fixes that exist in a
-private source tree that has not yet been contributed to a public
-tree.)</p></li>
-<li><b>Released</b><p>This bug has been fixed, and is included in a formal
-Android platform release. When this state is set, we try to also set a
-property indicating which release it was fixed in.</p></li>
-<li><b>Duplicate</b><p>This bug is a duplicate of another, existing bug
-report.</p></li>
-</ul>
-
-<h2>Other Stuff</h2>
-<p>The states and lifecycle above are how we generally try to track software.
-However, Android contains a lot of software and gets a correspondingly large
-number of bugs. As a result, sometimes bugs don't make it through all the
-states in a formal progression. We do try to keep the system up to date, but
-we tend to do so in periodic "bug sweeps" where we review the database and
-make updates.</p>
-<p>Since the AOSP is essentially constantly evolving, we do make tweaks to
-the list of bug states and the lifecycle described above. When we do this,
-however, we'll be sure to update this page as well.</p>
-<p>Finally, you should be aware that for a variety of reasons, there are
-actually multiple issue trackers for Android-related issues. The <a
-href="http://code.google.com/p/android/issues/list">Google Code Project
-Hosting Issue Tracker</a> is the <b>only</b> official public issue tracker; however,
-Google also maintains a private issue tracker, own, as do most OEMs. We try to
-keep the public issue tracker in sync with private issue trackers
-wherever possible, but in cases where confidential information and security
-issues are involved, this isn't always possible.</p>
diff --git a/pdk/docs/source/life-of-a-patch.jd b/pdk/docs/source/life-of-a-patch.jd
deleted file mode 100644
index 458afa5..0000000
--- a/pdk/docs/source/life-of-a-patch.jd
+++ /dev/null
@@ -1,11 +0,0 @@
-page.title=Life of a Patch
-doc.type=source
-@jd:body
-<p>The Android Open Source Project (AOSP) uses a web-based code review tool
-known as "gerrit". The image below is a flowchart that details what happens to
-a patch, once it's been written. Though it may appear complex, the majority of
-the steps below are performed in the web application.</p>
-<p>For full instructions on how to get set up to use gerrit and git, please
-see <a href="{@docRoot}source/submit-patches.html">the Submitting Patches
-page</a>.</p>
-<img src="{@docRoot}images/workflow-0.png"/>
diff --git a/pdk/docs/source/overview.jd b/pdk/docs/source/overview.jd
deleted file mode 100644
index 5a31018..0000000
--- a/pdk/docs/source/overview.jd
+++ /dev/null
@@ -1,36 +0,0 @@
-page.title=Android 2.1 Platform
-doc.type=source
-@jd:body
-<p>Our sister site, <a
-href="http://developer.android.com/">http://developer.android.com/</a>,
-includes feature overviews of the various Android platform versions.
-The links below will take you to developer.android.com where you can view this
-information.</p>
-<p>The links below will navigate you away from this site.</p>
-<h3><a href="http://developer.android.com/sdk/android-2.3-highlights.html">Android 2.3</a></h3>
-<p>Android 2.3 corresponded to the "Gingerbread" milestone branch, and has an API level of 9.</p>
-<h3><a href="http://developer.android.com/sdk/android-2.2-highlights.html">Android 2.2</a></h3>
-<p>Android 2.2 corresponded to the "FroYo" milestone branch, and has an API level of 8.</p>
-<h3><a href="http://developer.android.com/sdk/android-2.0-highlights.html">Android 2.1</a></h3>
-<p>Android 2.1 corresponded to the "Eclair" milestone branch, and has an API level of
-7.</p>
-<p>The Eclair branch was also used for 2.0 and 2.0.1; however, both of those
-releases were quickly obsoleted by the version 2.1 Eclair release. As Android
-2.1 includes key bug fixes and improvements not present in 2.0/2.0.1, only
-Android 2.1 should be used for new devices. As there is no compatibility
-program for 2.0 or 2.0.1, the officially compatible Eclair-based release is Android
-2.1. (The linked document refers to Android 2.0, because there were
-no new platform features added in 2.1.)</p>
-<h3><a href="http://developer.android.com/sdk/android-1.6-highlights.html">Android 1.6</a></h3>
-<p>Android 1.6 corresponded to the "Donut" milestone branch, and has an API level of
-4.</p>
-<h3><a href="http://developer.android.com/sdk/android-1.5-highlights.html">Android 1.5</a></h3>
-<p>Android 1.5 corresponded to the "Cupcake" milestone branch, and has an API
-level of 3.</p>
-<h3><a href="http://developer.android.com/sdk/android-1.1.html">Android 1.1</a></h3>
-<p>Android 1.1 has an API level of 2. Android 1.1 was known as
-"Petit Four" internally, though this name was not used officially.</p>
-<h3>Android 1.0</h3>
-<p>was the first release of Android, and has an API
-level of 1. Since it was the first released version of Android, no platform
-highlights were prepared for this release.</p>
diff --git a/pdk/docs/source/report-bugs.jd b/pdk/docs/source/report-bugs.jd
deleted file mode 100644
index a6e56c6..0000000
--- a/pdk/docs/source/report-bugs.jd
+++ /dev/null
@@ -1,133 +0,0 @@
-page.title=Report Bugs
-doc.type=source
-@jd:body
-<div>
-<p>Thanks for your interest in Android! One of the best ways you can help us
-improve Android is to let us know about any problems you find with it.</p>
-<p>First, though: if you think you've found a security vulnerability,
-<b>please don't use the forms below</b>. (Using the public forms below may
-allow anyone to see your report, which may put users at risk until the bug is
-fixed.) Instead, please report security bugs to our security team by emailing
-<a href="mailto:security@android.com">security@android.com</a>. We believe in
-responsible disclosure of security vulnerabilities, and will give you proper
-attribution for any issues you report.</p>
-<p>Here's how to report non-security bugs:</p>
-<ol>
- <li><a href="http://code.google.com/p/android/issues/advsearch">Search for
- your bug</a> to see if anyone has already reported it.</li>
- <li>If you find your issue and it's important to you, star it! That's how we
- know which bugs are most important to fix.</li>
- <li>If no one's reported your bug, file the bug. You can use one of these
- templates:<ul>
- <li><a
- href="http://code.google.com/p/android/issues/entry?template=User%20bug%20report">Bugs
- in your Device (for users)</a> - use this if you want to report a bug in a
- device you own</li>
- <li><a
- href="http://code.google.com/p/android/issues/entry?template=Developer%20bug%20report">Bugs
- in the Software (for developers)</a> - use this if you found a bug in the
- course of developing an app</li>
- <li><a
- href="http://code.google.com/p/android/issues/entry?template=Feature%20request">Request
- a New Feature</a> - use this for a feature you'd like to see in a future
- verison</li>
- </ul></li>
-</ol>
-<p>Please note that we can't guarantee that any particular bug can be fixed in
-any particular release. To see what happens to your bug once you report it,
-read <a href="{@docRoot}source/life-of-a-bug.html">Life of a Bug</a>.</p>
-<p>In general, please put as much info in bugs as you can. Just a one liner
-telling us something isn't working is usually useless, and will probably be
-closed without any action. The more detail you provide, the more likely your
-issue is to be resolved. Below, there are some examples of a good bug report
-and a poor bug report.</p>
-<h3>A Poor Bug Report</h3>
-<pre>
-Title: Error message
-
-When running Eclipse I get an "Internal Error" that says "See the .log file
-for more details".
-
-Steps to reproduce:
-Happens when "Object o = null". Doesn't happen when changed to "Object o".
-
-Expected results:
-I wouldn't get the error message--would work with Object o = null.
-
-Observed results:
-See above.
-</pre>
-<p>This is a poor bug report because it doesn't provide any context for the
-issue; is it a problem in the Dalvik virtual machine, the core framework, or
-something else? It also doesn't provide any code or hint on how to reproduce
-it. In other words, this bug report doesn't provide enough information for
-anyone to take action on, so it would be ignored.</p>
-<h3>A Good Bug Report</h3>
-<pre>
-Title: Stepping over "Object o = null" causes Eclipse "Internal Error"
-
-Interesting bug, while using Eclipse 3.3.1.1 with m37a of android and
-the following code:
-
-package com.saville.android;
-
-import android.app.Activity;
-import android.os.Bundle;
-import android.util.Log;
-
-public class TestObjectNull extends Activity {
- /** Called when the activity is first created. */
- @Override
- public void onCreate(Bundle icicle) {
- super.onCreate(icicle);
- setContentView(R.layout.main);
-
- Object o = null;
-
- o = "hi";
-
- Log.v(TAG, "o=" + o);
- }
-
- static final String TAG = "TestObjectNull";
-
-}
-
-Eclipse indicates an "Internal Error" with "See the .log file for more
-details" and then asks if I want to exit the workbench. This occurs when I
-place a break point on "setContentView(R.layout.main);" and then single
-step over "Object o = null;"
-
-If I change "Object o = null;" to "Object o" all is well.
-
-The last lines of the .log file are:
-
-!ENTRY org.eclipse.core.jobs 4 2 2008-01-01 13:04:15.825
-!MESSAGE An internal error occurred during: "has children update".
-!STACK 0
-java.lang.InternalError: Invalid signature: "<null>"
- at
-org.eclipse.jdi.internal.TypeImpl.signatureToTag(TypeImpl.java:307)
- at
-org.eclipse.jdi.internal.LocalVariableImpl.tag(LocalVariableImpl.java:185)
- at
-org.eclipse.jdi.internal.StackFrameImpl.getValues(StackFrameImpl.java:128)
- at
-org.eclipse.jdi.internal.StackFrameImpl.getValue(StackFrameImpl.java:73)
- at
-org.eclipse.jdt.internal.debug.core.model.JDILocalVariable.retrieveValue(JDILocalVariable.java:57)
- at
-org.eclipse.jdt.internal.debug.core.model.JDIVariable.getCurrentValue(JDIVariable.java:66)
- at
-org.eclipse.jdt.internal.debug.core.model.JDIVariable.getValue(JDIVariable.java:88)
- at
-org.eclipse.debug.internal.ui.model.elements.VariableContentProvider.hasChildren(VariableContentProvider.java:62)
- at
-org.eclipse.jdt.internal.debug.ui.variables.JavaVariableContentProvider.hasChildren(JavaVariableContentProvider.java:73)
- at
-org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.updateHasChildren(ElementContentProvider.java:223)
- at
-org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$3.run(ElementContentProvider.java:200)
- at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
-</pre>
-</div>
diff --git a/pdk/docs/source/roles.jd b/pdk/docs/source/roles.jd
deleted file mode 100644
index f4fb891..0000000
--- a/pdk/docs/source/roles.jd
+++ /dev/null
@@ -1,73 +0,0 @@
-page.title=People and Roles
-doc.type=source
-@jd:body
-<p>The Android Open Source Project (AOSP) includes individuals working in a variety
-of roles. As noted in <a href="{@docRoot}about/philosophy.html">Our
-Philosophy</a>, Google is responsible for Android product management
-and the engineering process for the core framework and platform; however,
-the project considers contributions from any source, not just Google. This
-page describes the kinds of roles that interested parties can take on.</p>
-<p>Anyone who is interested in exploring and contributing to Android can use the
-Android Open Source Project resources. Anyone can join the mailing lists, ask
-questions, contribute patches, report bugs, look at submitted patches, and use
-the tools. To get started with the Android code, see <a
-href="{@docRoot}source/index.html">Get Involved</a>.</p>
-
-<h2>Contributor</h2>
-<p>A "Contributor" is anyone making contributions to the AOSP source code,
-including both employees of Google or other companies, as well as external
-developers who are contributing to Android on their own behalf. There is no
-distinction between Contributors who are employed by Google, and those who are
-not: all engineers use the same tools (<code>git</code>, <code>repo</code>,
-and <code>gerrit</code>), follow the same code review process, and are subject
-to the same requirements on code style and so on.</p>
-<p/>
-
-<h2>Developer</h2>
-<p>A "Developer" is an engineer writing applications that run on Android
-devices. There is, of course, no difference in skillset between a "Developer"
-and a "Contributor", but AOSP uses "Developer" to distinguish between
-engineers using the platform and those contributing to it. Developers are
-(along with end users) the "customers" of the platform that the Contributors
-create. As such, we talk about Developers a lot, though this isn't technically
-a separate role in the AOSP <i>per se.</i></p>
-<p/>
-
-<h2>Verifier</h2>
-<p>"Verifiers" are responsible for testing change requests. After individuals
-have submitted a significant amount of high-quality code to the project, the
-Project Leads might invite them to become Verifiers.</p><p><i>Note: at this
-time, generally Verifiers are the same as Approvers.</i></p>
-<p/>
-
-<h2>Approver</h2>
-"Approvers" are experienced members of the project who have demonstrated their
-design skills and have made significant technical contributions to the
-project. In the code-review process, an Approver decides whether to include or
-exclude a change. Project Leads (who are typically employed by Google) choose
-the Approvers, sometimes promoting to this position Verifiers who have
-demonstrated their expertise within a specific project.</p>
-<p/>
-
-<h2>Project Leads</h2>
-<p>Android consists of a number of sub-projects; you can see these in the git
-repository, as individual .git files. Tech Leads are senior Contributors who
-oversee the engineering for individual Android projects. Typically these tech
-leads will be Google employees. A Project Lead for an individual project is
-responsible for the following:</p>
-<ul>
- <li>Lead all technical aspects of the project; for example, the project
- roadmap, development, release cycles, versioning, and QA.</li>
- <li>Ensure that the project is QA-ed in time for scheduled Android platform
- releases.</li>
- <li>Designate Verifiers and Approvers for submitted patches.</li>
- <li>Be fair and unbiased while reviewing changes. Accept or reject patches
- based on technical merit and alignment with the Android strategy.</li>
- <li>Review changes in a timely manner and make best efforts to communicate
- when changes are not accepted.</li>
- <li>Optionally maintain a web site for the project for information and
- documents specific to the project.</li>
- <li>Act as a facilitator in resolving technical conflicts.</li>
- <li>Be a public face for the project and the go-to person for questions
- related to the project.</li>
-</ul>
diff --git a/pdk/docs/source/source_toc.cs b/pdk/docs/source/source_toc.cs
deleted file mode 100644
index 09c20a6..0000000
--- a/pdk/docs/source/source_toc.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-<script type="text/javascript" language="JavaScript">
-<!--
-function nothing() {}
--->
-</script>
-
-<ul>
- <li><h2>The Project</h2><ul>
- <li><a href="<?cs var:toroot ?>source/roles.html">People and Roles</a></li>
- <li><a href="<?cs var:toroot ?>source/licenses.html">Licensing Information</a></li>
- <li><a href="http://android.git.kernel.org/">Browse Source</a> <span style="font-size: 75%; font-variant: small-caps">[off-site]</span></li>
- <li><a href="<?cs var:toroot ?>source/overview.html">Platform Overview</a></li>
- <li><a href="<?cs var:toroot ?>source/life-of-a-bug.html">Life of a Bug</a></li>
- <li><a href="<?cs var:toroot ?>faqs.html#aosp">FAQs</a></li>
- </ul>
-
- <li><h2>Getting Started</h2><ul>
- <li><a href="<?cs var:toroot ?>source/download.html">Getting the Source</a></li>
- <li><a href="<?cs var:toroot ?>source/git-repo.html">Using git and repo</a></li>
- <li><a href="<?cs var:toroot ?>source/using-eclipse.html">Using Eclipse</a></li>
- <li><a href="<?cs var:toroot ?>source/code-style.html">Code Style</a></li>
- <li><a href="<?cs var:toroot ?>source/building-dream.html">Building for an ADP</a></li>
- </ul>
-
- <li><h2>Contributing</h2><ul>
- <li><a href="<?cs var:toroot ?>source/life-of-a-patch.html">Life of a Patch</a></li>
- <li><a href="<?cs var:toroot ?>source/submit-patches.html">Submitting Patches</a></li>
- <li><a href="<?cs var:toroot ?>source/report-bugs.html">Reporting Bugs</a></li>
- <li><a href="<?cs var:toroot ?>source/code-lines.html">Branches & Releases</a></li>
- </ul>
-</ul>
-
-<script type="text/javascript">
-<!--
- buildToggleLists();
-//-->
-</script>
-
diff --git a/pdk/docs/source/submit-patches.jd b/pdk/docs/source/submit-patches.jd
deleted file mode 100644
index 9e7d9df..0000000
--- a/pdk/docs/source/submit-patches.jd
+++ /dev/null
@@ -1,172 +0,0 @@
-page.title=Android Contributors' Workflow
-doc.type=source
-@jd:body
-<div>
-<br>This page describes how to record changes to the Android files on your local client, upload those changes to the code-review server, and use Gerrit to track changes.<br><h2>
-Prerequisites</h2>
-Before you follow the instructions on this page, you will need to set up your
-local working environment and get the Android source files. For instructions,
-see <a href="{@docRoot}source/download.html">Get source</a>
-.<br><br>Other recommended reading:<br><ul><li>For an overview of the code
-contribution and review process, see <a
-href="{@docRoot}source/life-of-a-patch.html">Life of a Patch</a>.</li>
-<li>For details about Repo, see <a href="{@docRoot}source/git-repo.html">Using Repo and Git</a>.<br></li>
-<li>For information about the different roles you can play within the Android
-Open Source community, see <a href="{@docRoot}source/roles.html">Project roles</a>.</li>
-<li>If you plan to contribute code to the Android platform, be sure to read
-the <a href="{@docRoot}source/licenses.html">AOSP's licensing information</a>.</li>
-<li>Note that changes to some of the upstream projects used by Android should be
-made directly to that project, as described in
-<a href="#upstream-projects">Upstream Projects</a>.
-</ul>
-<h2>
-Working with the code</h2>
-First, download the source into your working directory, as described in <a
-href="{@docRoot}source/download.html">Get source</a>
-. For information about how to choose which branch to use, see <a
-href="{@docRoot}source/code-lines.html">Android Code-Lines</a>.<br><br>To work on a particular change to the code, follow these steps:<br>
-<div><img src="{@docRoot}images/submit-patches-0.png">
-</div>
-<ol><li>Use repo start <i>branchname</i>
-to start a new topic branch.</li>
-<li>Edit the files.<br></li>
-<li><span>Use git add to stage changes.</span>
-<span>(Sometimes optional.)</span>
-<br></li>
-<li>Use repo status and git diff to view the status of your files.<i><br></i>
-</li>
-<li>Use git commit to commit changes.<br></li>
-<li><span>Use repo upload to upload changes to the review server</span>
-.<br></li>
-</ol>
-You can track your uploaded changes using the Gerrit code-review tool. When it's time to work on the code again, run repo sync, then go back to step 1 above and start another topic branch.<br><br>The steps will not always come in the order shown--for example, you might run git diff at several points in the process.<br><br><h3>
-Starting a topic branch</h3>
-Start a topic branch called default in your local work environment:<br><br>$ repo start default <br><br>For more about topic branches, see <a href="{@docRoot}source/git-repo.html">Using Repo and Git</a>.<br><h3>
-Editing the files</h3>
-You do not need to check files out before working on them. Edit the files using vim, emacs, or any other editor.<br><br><h3>
-Staging changes</h3>
-To indicate that every new and modified file in your working directory should be "staged" for inclusion in the next commit, run git add without any arguments. You can also specify files or filetypes. For example, the following command would stage all the new and modified files under the bionic directory and its subdirectories:<br><br>$ git add bionic/*<br><br>Run git help add to see more ways to use git add.<br><br><b>When is git add optional?<br></b>
-<br>If you add new files, you must stage them using git add before you run git commit. However, if you are only modifying or deleting files, you can skip git add if you use the -a option with git commit. For more details, see the "Committing changes" section further down.<br><br><h3>
-Using repo status <br></h3>
-To see the status of the current branch, run <br><br>$ repo status .<br><br>For information about how to interpret the results of repo status, see <a href="{@docRoot}source/git-repo.html#TOC-status">Using Repo and Git</a>.<br><br><h3>
-Using git diff</h3>
-To see uncommitted changes, cd into the project directory and run <br><br>$ git
-diff <br><br>Without any arguments, git diff will show you the differences
-between the files in your working directory and the committed
-files.<br><div><br><div><img src="{@docRoot}images/submit-patches-1.png">
-</div>
-<br></div>
-<div>If you add the --cached option, git diff will show you the differences between the files in your working directory and the staged files.<br><br></div>
-To see every edit that would go into the commit if you were to commit right now, make sure you are in the project directory and then run <br><br>$ git diff --cached <br><br><h3>
-Committing changes</h3>
-At intervals while you are working, commit your edits by using git commit from within the project directory:<br><span>$ cd ~/mydroid/<i>project-name</i>
-</span>
-<span><br>$ git commit</span>
-<br><br>Every file that you staged using git add will be included in this commit.<br><br>If you have not added any new files that you want to commit, you can skip git add and simply run <br><br>$ git commit -a <br><br>The -a option will stage all the files you have modified or deleted and include them in this commit. (If you have added new files and want them included in the commit, you will need to use git add before you run git commit.)<br><br>If commit <span></span>
-does not find changes to be committed, it will report "nothing to commit (working directory clean)". If commit finds changes to be committed, a file will open in which you can create a log message:<br><br><div><i>Your comments about this commit go here....</i>
-<br># Please enter the commit message for your changes. Lines starting <br># with '#' will be ignored, and an empty message aborts the commit.<br># On branch master <br># Changes to be committed:<br>#(use "git reset HEADfile..." to unstage)<br>#<br>#new file:.repo/projects/gerrit-manifests.git/FETCH_HEAD <br>#new file:.repo/projects/gerrit-manifests.git/HEAD <br>#new file:.repo/projects/gerrit-manifests.git/config <br>.<br>.<br>.<br></div>
-<br>If you do not add a log message, the commit will be aborted. Add a message and save the file.<br><br><h3>
-Committing changes during code review</h3>
-If you previously uploaded a change to Gerrit and the Approver has asked for changes, follow these steps:<br><ol><li>Edit the files to make the changes the Approver has requested.</li>
-<li>Recommit your edits using the --amend flag, for example:<br><span>$ git commit -a --amend</span>
-<br></li>
-<li>See below to upload the changes to Gerrit again for another review cycle.</li>
-</ol>
-<h3>
-Editing uploaded changes</h3>
-To update an existing change with a new patch set:<br><ol><li>Make sure the updated branch is the currently checked out branch.</li>
-<li>Use repo upload --replace <i>proj1</i>
-to open the change matching editor.</li>
-<li>For each commit in the series, enter the Gerrit change Id inside the brackets.</li>
-</ol>
-For more details, see <a href="{@docRoot}source/git-repo.html#TOC-upload">Using Repo and Git</a>
-.<br><h3>
-Uploading changes to Gerrit</h3>
-To upload your committed changes to the review server:<br><ol><li>Complete the appropriate <a href="https://review.source.android.com/#settings,new-agreement">Contributor Agreement</a>
-in Gerrit, granting the Android Open Source Project permission to distribute your changes to others.</li>
-<li>Select an <a href="https://review.source.android.com/#settings,ssh-keys">SSH Username</a>
-and upload your <a href="https://review.source.android.com/#settings,ssh-keys">public SSH key</a>
-, so that Gerrit can identify you when you upload changes.Please note that due to a bug in repo, repo upload requires your SSH Username be the local part of your email address (the text on the left of the @ sign).<br><br>These first two steps are only necessary prior to your first change.Gerrit will remember your agreement and SSH key for subsequent changes.<br><br></li>
-<li>Update to the latest revisions:<span><br></span>
-<span>$</span>
-<span>repo sync</span>
-<br><br>For information about how to handle sync conflicts and how Repo synchronization works, see <a href="{@docRoot}source/git-repo.html#TOC-sync">Using Repo and Git</a>
-.<br><br></li>
-<li>Run repo upload to examine the list of all available changes and select which topic branches will be uploaded to the review server:<br><span>$</span>
-<span>repo upload</span>
-<br><br>This will open an editor window that will let you choose which topic branch to upload.If there is only one branch available, a simple y/n prompt is instead of an editor.<br></li>
-</ol>
-After a change is uploaded successfully:<br><ul><li>Repo will give you a URL where you can view your submission.</li>
-<li>The code-review system will automatically notify the project owner about your submission.</li>
-</ul>
-For information about specifying particular projects with repo sync and repo upload, see <a href="{@docRoot}source/git-repo.html">Using Repo and Git</a>
-.<br><br><h3>
-Summary example <br></h3>
-Here is a simple example that shows how you might work with the bionic/Android.mk file:<br><br>$ cd ~/mydroid/bionic <br>$ repo start default <br>$ vi Android.mk <br><i>...edit and save the file...</i>
-<br>$ git commit -a <br>$ repo sync <br>$ repo upload <br><i>...close the editable window that opens...</i>
-<br><i>...visit the provided URL to open Gerrit and track your change...</i>
-<br><br><h3>
-Downloading changes from Gerrit</h3>
-To download a specific change from Gerrit, run <br><br>$ repo download <i>target change</i>
-<br><br>where target is the local directory into which the change should be downloaded andchange is the change number as listed in <a href="https://review.source.android.com/">Gerrit</a>
-. For more information, see <a href="{@docRoot}source/git-repo.html#TOC-download">Using Repo and Git</a>
-.<br><br><h2>
-Using the Gerrit code-review tool <br></h2>
-You can open Gerrit by visiting whatever URL is returned to you from the repo upload command, or by visiting <a href="https://review.source.android.com/">https://review.source.android.com</a>.<br><br><h3>
-Viewing the status of uploaded changes <br></h3>
-To check the status of a change that you uploaded, open <a href="https://review.source.android.com/mine">Gerrit</a>
-, sign in, and click MyChanges.<br><b><br></b>
-<h3>
-Reviewing a change <br></h3>
-If you are assigned to be the Approver for a change, you need to determine the following:<br><ul><li>Does this change fit within this project's stated purpose?<br></li>
-<li>Is this change valid within the project's existing architecture?</li>
-<li>Does this change introduce design flaws that will cause problems in the future?</li>
-<li>Does this change following the best practices that have been established for this project?</li>
-<li>Is this change a good way to perform the described function?</li>
-<li>Does this change introduce any security or instability risks?</li>
-</ul>
-If you approve of the change, you will then mark it with LGTM ("Looks Good to Me") within Gerrit.<br><br><h3>
-Verifying a change <br></h3>
-If you are assigned to be the Verifier for a change, you need to do the following:<br><ul><li>Patch the change into your local client using one of the Download commands.</li>
-<li>Build and test the change.</li>
-<li>Within Gerrit use Publish Comments to mark the commit as "Verified", or "Fails" (and add a message explaining what problems were identified).<br></li>
-</ul>
-<h3>
-Viewing diffs and comments</h3>
-To open the details of the change within Gerrit, click on the "Id number" or "Subject" of a change. To compare the established code with the updated code, click the file name under "Side-by-side diffs."<br>
-<h3>
-Adding comments</h3>
-Anyone in the community can use Gerrit to add inline comments to code submissions. A good comment will be relevant to the line or section of code to which it is attached in Gerrit. It might be a short and constructive suggestion about how a line of code could be improved, or it might be an explanation from the author about why the code makes sense the way it is.<br><br>To add an inline comment, double-click the relevant line of the code and write your comment in the text box that opens. When you click Save, only you can see your comment.<br><br>To publish your comments so that others using Gerrit will be able to see them, click the Publish Comments button. Your comments will be emailed to all relevant parties for this change, including the change owner, the patch set uploader (if different from the owner), and all current reviewers.<br><br><h3>
-After a submission is approved</h3>
-After a submission makes it through the review and verification process, Gerrit automatically merges the change into the public repository. The change will now be visible in gitweb, and others users will be able to run repo sync to pull the update into their local client.<br><br><h3>
-How do I become a Verifier or Approver?</h3>
-In short, contribute high-quality code to one or more of the Android projects.
-For details about the different roles in the Android Open Source community and
-who plays them, see <a href="{@docRoot}source/roles.html">Project roles</a>
-.<br><br><h2>
-Using GitWeb to track patch histories</h2>
-To view snapshots of the files that are in the public Android repositories and view file histories, use the <a href="http://android.git.kernel.org/">Android instance of GitWeb</a>
-.<br>
-<h2><a name="upstream-projects"></a>Upstream Projects</h2>
-Android makes use of a number of other open-source projects, such as the Linux
-kernel and WebKit, as described in
-<a href="{@docRoot}source/code-lines.html">Branches & Releases</a>. For the
-upstream projects detailed below, changes should be made directly upstream. Such
-changes will be incorporated into the Android tree as part of the usual process
-of pulling these projects.
-<h3>WebKit</h3>
-All changes to the WebKit project at <code>external/webkit</code> should be made
-upstream at <a href="http://www.webkit.org">http://www.webkit.org</a>. The
-process begins by filing a WebKit bug. This bug should use <code>Android</code>
-for the <code>Platform</code> and <code>OS</code> fields only if the bug is
-specific to Android. Bugs are far more likely to receive the reviewers'
-attention once a proposed fix is added and tests are included. See
-<a href="http://webkit.org/coding/contributing.html">Contributing Code to
-WebKit</a> for details.
-<h3>V8</h3>
-All changes to the V8 project at <code>external/v8</code> should be submitted
-upstream at
-<a href="http://code.google.com/p/v8">http://code.google.com/p/v8</a>. See
-<a href="http://code.google.com/p/v8/wiki/Contributing">Contributing to V8</a>
-for details.
-</div>
diff --git a/pdk/docs/source/using-eclipse.jd b/pdk/docs/source/using-eclipse.jd
deleted file mode 100644
index 660de11..0000000
--- a/pdk/docs/source/using-eclipse.jd
+++ /dev/null
@@ -1,153 +0,0 @@
-page.title=Using Eclipse
-doc.type=source
-@jd:body
-<div>
-<p>This document will help you set up the Eclipse IDE for Android platform development.</p>
-<p><i>Note: if you are looking for information on how to use
-Eclipse to develop applications that run on Android, this is not the right
-page for you. You probably would find <a
-href="http://developer.android.com/sdk/eclipse-adt.html">the Eclipse page on
-developer.android.com</a> more useful.</i></p>
-<h2><a>Enter eclipse</a>
-</h2>
-<h4>
-Basic setup
-</h4>
-<p>First, it's important to make sure the regular Android development system is set up.
-</p>
-<pre>cd /path/to/android/root <br>make # and wait a while, if you haven't done this <br></pre>
-<p><b>Important</b>
-: You will still be using "make" to build the files you will actually run (in the emulator or on a device). You will be using Eclipse to edit files and verify that they compile, but when you want to run something you will need to make sure files are saved in Eclipse and run "make" in a shell. The Eclipse build is just for error checking.
-</p>
-<p>Eclipse needs a list of directories to search for Java files. This is called the "Java Build Path" and can be set with the .classpath file. We have a sample version to start you off.
-</p>
-<pre>cd /path/to/android/root <br>cp development/ide/eclipse/.classpath .<br>chmod u+w .classpath # Make the copy writable <br></pre>
-<p>Now edit that copy of .classpath, if necessary.
-</p>
-<h5>
-Increase Eclipse's Memory Settings
-</h5>
-<p>The Android project is large enough that Eclipse's Java VM sometimes runs out of memory while compiling it. Avoid this problem by editing the the eclipse.ini file. On Apple OSX the eclipse.ini file is located at /Applications/eclipse/Eclipse.app/Contents/MacOS/eclipse.ini
-</p>
-<p>Memory-related defaults (as of Eclipse 3.4)
-</p>
-
-<pre>-Xms40m <br>-Xmx256m <br>-XX:MaxPermSize=256m <br></pre>
-<p>Recommended settings for Android development
-</p>
-<pre>-Xms128m <br>-Xmx512m <br>-XX:MaxPermSize=256m <br></pre>
-<p>These settings set Eclipse's minimum Java heap size to 128MB, set the maximum Java heap size to 512MB, and keep the maximum permanent generation size at the default of 256MB.
-</p>
-<p>Now start Eclipse:
-</p>
-<pre>eclipse # or you can click some clicky thing instead, if you prefer <br></pre>
-<p>Now create a project for Android development:
-</p>
-<ol><li>If Eclipse asks you for a workspace location, choose the default.
-</li>
-<li>If you have a "Welcome" screen, close it to reveal the Java perspective.
-</li>
-<li>File New Java Project
-</li>
-<li>Pick a project name, "android" or anything you like.
-</li>
-<li>Select "Create project from existing source", enter the path to your Android root directory, and click Finish.
-</li>
-<li>Wait while it sets up the project. (You'll see a subtle progress meter in the lower right corner.)
-</li>
-</ol>
-<p>Once the project workspace is created, Eclipse should start building. In theory, it should build with no errors and you should be set to go. If necessary, uncheck and re-check Project Build Automatically to force a rebuild.
-</p>
-<p><i><b>Note:</b>
-</i>
-Eclipse sometimes likes to add an "import android.R" statement at the top of your files that use resources, especially when you ask eclipse to sort or otherwise manage imports. This will cause your make to break. Look out for these erroneous import statements and delete them.
-</p>
-<h4>
-When you sync
-</h4>
-<p>Every time you repo sync, or otherwise change files outside of Eclipse (especially the .classpath), you need to refresh Eclipse's view of things:
-</p>
-<ol><li>Window Show View Navigator
-</li>
-<li>In the "Navigator", right-click on the project ("android-java" or whatever you named it)
-</li>
-<li>Click Refresh in the context menu
-</li>
-</ol>
-<h4>
-Adding apps to the build path
-</h4>
-<p>The default .classpath includes the source to the core system and a sample set of apps, but might not include the particular app you may want to work on. To add an app, you must add the app's source directory. To do this inside Eclipse:
-</p>
-<ol><li>Project Properties
-</li>
-<li>Select "Java Build Path" from the left-hand menu.
-</li>
-<li>Choose the "Source" tab.
-</li>
-<li>Click "Add Folder...".
-</li>
-<li>Add your app's "src" directory.
-</li>
-<li>Click OK.
-</li>
-</ol>
-<p>When you're done, the "source folder" path in the list should look like android/packages/apps/<i>YourAppName</i>
-/src. Depending on which app(s) you include, you may also need to include othersrc/main/java directories under android/dalvik/libcore. Do this if you find you cannot build with the default set.
-</p>
-<h2><a>Eclipse formatting</a>
-</h2>
-<p>You can import files in development/ide/eclipse to make Eclipse
-follow the Android style rules. Select
-"Window › Preferences › Java › Code Style".
-Use "Formatter › Import" to import android-formatting.xml
-and "Organize Imports › Import" to import android.importorder.
-</p>
-<h2><a>Debugging the emulator with Eclipse</a>
-</h2>
-<p>You can also use eclipse to debug the emulator and step through code. First, start the emulator running:
-</p>
-<pre>cd /path/to/android/root <br>. build/envsetup.sh <br>lunch 1 # to build the emulator <br>make # if you didn't already do this <br>emulator # you should see a GUI picture of a phone <br></pre>
-<p>In another shell, start DDMS (the Dalvik debug manager):
-</p>
-<pre>cd /path/to/android/root <br>ddms # you should get a splufty debugging console <br></pre>
-<p>Now, in eclipse, you can attach to the emulator:
-</p>
-<ol><li>Run Open Debug Dialog...
-</li>
-<li>Right-click "Remote Java Application", select "New".
-</li>
-<li>Pick a name, "android-debug" or anything you like.
-</li>
-<li>Set the "Project" to your project ("android-java" or whatever).
-</li>
-<li>Keep the "Host" set to "localhost", but change "Port" to 8700.
-</li>
-<li>Click the "Debug" button and you should be all set.
-</li>
-</ol>
-<p>Note that port 8700 is attached to whatever process is currently selected in the DDMS console, so you need to sure that DDMS has selected the process you want to debug.
-</p>
-<p>You may need to open the Debug perspective (next to the "Java" perspective icon in the upper-right, click the small "Open Perspective" icon and select "Debug"). Once you do, you should see a list of threads; if you select one and break it (by clicking the "pause" icon), it should show the stack trace, source file, and line where execution is at. Breakpoints and whatnot should all work.
-</p>
-<h2><a>Bonus material</a>
-</h2>
-<p>Replace Ctrl with the Apple key on Mac.
-</p>
-
-<pre>Ctrl-Shift-o = Organize imports <br>Ctrl-Shift-t = load class by name <br>Ctrl-Shift-r = load non-class resource by name <br>Ctrl-1 = quick fix <br>Ctrl-e = Recently viewed files <br>Ctrl-space = auto complete <br>Shift-Alt-r = refactor:rename <br>Shift-Alt-v = refactor:move <br></pre>
-
-<h2><a>"Eclipse is not working correctly, what should I do?"</a>
-</h2>
-<p>Make sure:
-</p>
-<ul><li>You followed the instructions on this page precisely.
-</li>
-<li>Your Problems view doesn't show any errors.
-</li>
-<li>Your application respects the package/directory structure.
-</li>
-</ul>
-<p>If you're still having problems, please contact one of the Android mailing lists or IRC channels.
-</p>
-</div>
diff --git a/pdk/doxygen_config/docsfiles/groups.dox b/pdk/doxygen_config/docsfiles/groups.dox
deleted file mode 100644
index 79f9d3f..0000000
--- a/pdk/doxygen_config/docsfiles/groups.dox
+++ /dev/null
@@ -1,3 +0,0 @@
-
-/*!
-*/
diff --git a/pdk/doxygen_config/docsfiles/main.dox b/pdk/doxygen_config/docsfiles/main.dox
deleted file mode 100644
index 069c1a2..0000000
--- a/pdk/doxygen_config/docsfiles/main.dox
+++ /dev/null
@@ -1,5 +0,0 @@
-/*! \mainpage Google Client Location Library (CLL): location Interface
- * <p>This documentation is part of Google's Client Location Library (CLL) Getting Started Guide.</p>
- * <p>In most cases, this Doxygen-generated content opens in a new window (or tab), so look for this window's parent to return to the Getting Started guide. If you maintained
- * the original directory structure when you unzipped the documentation, you may also return to the Getting Started guide by clicking <a href="../cll_getting_started.html">Client Location Library (CLL) Getting Started Guide</a>.</p>
- */
\ No newline at end of file
diff --git a/pdk/doxygen_config/footer.html b/pdk/doxygen_config/footer.html
deleted file mode 100644
index 691287b..0000000
--- a/pdk/doxygen_config/footer.html
+++ /dev/null
@@ -1,2 +0,0 @@
-</body>
-</html>
\ No newline at end of file
diff --git a/pdk/doxygen_config/header.html b/pdk/doxygen_config/header.html
deleted file mode 100644
index 794041a..0000000
--- a/pdk/doxygen_config/header.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!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>Doxygen-Generated Content</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css" />
-<style type="text/css">
-<!--
-.tabs {
- display: none;
-}
--->
-</style>
-</head>
-<body>
diff --git a/pdk/doxygen_config/overrideconfig.conf b/pdk/doxygen_config/overrideconfig.conf
deleted file mode 100644
index f1e3819..0000000
--- a/pdk/doxygen_config/overrideconfig.conf
+++ /dev/null
@@ -1,50 +0,0 @@
-
-#---------------------------------------------------------------------------
-# Project related configuration options
-#---------------------------------------------------------------------------
-DOXYFILE_ENCODING = UTF-8
-PROJECT_NAME = pdk
-PROJECT_NUMBER =
-
-INPUT = sources \
- docsfiles
-
-OUTPUT_DIRECTORY = generatedDocs
-HTML_HEADER = header.html
-HTML_FOOTER = footer.html
-# FILL IN PATH TO HEADER BLOB WANTED IN EVERY FILE
-# RELATIVE PATH TO WHER ERUNNING DOXYGEN FROM
-HTML_STYLESHEET =
-# PATH TO STYLE SHEET\
-
-BRIEF_MEMBER_DESC = YES
-REPEAT_BRIEF = YES
-
-OPTIMIZE_OUTPUT_FOR_C = YES
-
-ALWAYS_DETAILED_SEC = YES
-INLINE_INHERITED_MEMB = NO
-FULL_PATH_NAMES = NO
-STRIP_FROM_PATH =
-STRIP_FROM_INC_PATH =
-SHORT_NAMES = NO
-JAVADOC_AUTOBRIEF = YES
-QT_AUTOBRIEF = NO
-MULTILINE_CPP_IS_BRIEF = NO
-DETAILS_AT_TOP = NO
-INHERIT_DOCS = YES
-SEPARATE_MEMBER_PAGES = NO
-
-QUIET = NO
-WARNINGS = YES
-
-
-
-SOURCE_BROWSER = YES
-
-GENERATE_HTML = YES
-ENABLE_PREPROCESSING = NO
-
-# ADDED JULY 08 TO TRY TO FIGURE OUT DOCUMENING C FILES
-EXTRACT_ALL = YES
-STRIP_CODE_COMMENTS = NO
diff --git a/pdk/doxygen_config/pdk_config.conf b/pdk/doxygen_config/pdk_config.conf
deleted file mode 100644
index 1f1f349..0000000
--- a/pdk/doxygen_config/pdk_config.conf
+++ /dev/null
@@ -1,273 +0,0 @@
-# Doxyfile 1.5.6
-
-#---------------------------------------------------------------------------
-# Project related configuration options
-#---------------------------------------------------------------------------
-DOXYFILE_ENCODING = UTF-8
-PROJECT_NAME = pdk
-PROJECT_NUMBER =
-OUTPUT_DIRECTORY =
-CREATE_SUBDIRS = NO
-OUTPUT_LANGUAGE = English
-BRIEF_MEMBER_DESC = YES
-REPEAT_BRIEF = YES
-ABBREVIATE_BRIEF = "The $name class" \
- "The $name widget" \
- "The $name file" \
- is \
- provides \
- specifies \
- contains \
- represents \
- a \
- an \
- the
-ALWAYS_DETAILED_SEC = YES
-INLINE_INHERITED_MEMB = NO
-FULL_PATH_NAMES = NO
-STRIP_FROM_PATH =
-STRIP_FROM_INC_PATH =
-SHORT_NAMES = NO
-JAVADOC_AUTOBRIEF = YES
-QT_AUTOBRIEF = NO
-MULTILINE_CPP_IS_BRIEF = NO
-DETAILS_AT_TOP = NO
-INHERIT_DOCS = YES
-SEPARATE_MEMBER_PAGES = NO
-TAB_SIZE = 8
-ALIASES =
-OPTIMIZE_OUTPUT_FOR_C = NO
-OPTIMIZE_OUTPUT_JAVA = NO
-OPTIMIZE_FOR_FORTRAN = NO
-OPTIMIZE_OUTPUT_VHDL = NO
-BUILTIN_STL_SUPPORT = NO
-CPP_CLI_SUPPORT = NO
-SIP_SUPPORT = NO
-IDL_PROPERTY_SUPPORT = YES
-DISTRIBUTE_GROUP_DOC = NO
-SUBGROUPING = YES
-TYPEDEF_HIDES_STRUCT = NO
-#---------------------------------------------------------------------------
-# Build related configuration options
-#---------------------------------------------------------------------------
-EXTRACT_ALL = YES
-EXTRACT_PRIVATE = NO
-EXTRACT_STATIC = NO
-EXTRACT_LOCAL_CLASSES = NO
-EXTRACT_LOCAL_METHODS = NO
-EXTRACT_ANON_NSPACES = YES
-HIDE_UNDOC_MEMBERS = NO
-HIDE_UNDOC_CLASSES = NO
-HIDE_FRIEND_COMPOUNDS = NO
-HIDE_IN_BODY_DOCS = NO
-INTERNAL_DOCS = NO
-CASE_SENSE_NAMES = YES
-HIDE_SCOPE_NAMES = NO
-SHOW_INCLUDE_FILES = NO
-# MIGHT WANT TO TWEAK LEATER
-INLINE_INFO = YES
-SORT_MEMBER_DOCS = YES
-SORT_BRIEF_DOCS = YES
-SORT_GROUP_NAMES = NO
-SORT_BY_SCOPE_NAME = NO
-GENERATE_TODOLIST = NO
-GENERATE_TESTLIST = NO
-GENERATE_BUGLIST = NO
-GENERATE_DEPRECATEDLIST= YES
-ENABLED_SECTIONS =
-MAX_INITIALIZER_LINES = 30
-SHOW_USED_FILES = NO
-SHOW_DIRECTORIES = NO
-SHOW_FILES = YES
-SHOW_NAMESPACES = YES
-FILE_VERSION_FILTER =
-#---------------------------------------------------------------------------
-# configuration options related to warning and progress messages
-#---------------------------------------------------------------------------
-QUIET = NO
-WARNINGS = YES
-WARN_IF_UNDOCUMENTED = YES
-WARN_IF_DOC_ERROR = YES
-WARN_NO_PARAMDOC = NO
-WARN_FORMAT = "$file:$line: $text"
-WARN_LOGFILE =
-#---------------------------------------------------------------------------
-# configuration options related to the input files
-#---------------------------------------------------------------------------
-INPUT =
-INPUT_ENCODING = UTF-8
-FILE_PATTERNS = *.c \
- *.cpp \
- *.dox \
- *.h \
- *.htm \
- *.html
-RECURSIVE = YES
-EXCLUDE =
-# ecxlude entire directories or files
-EXCLUDE_SYMLINKS = NO
-EXCLUDE_PATTERNS =
-EXCLUDE_SYMBOLS =
-EXAMPLE_PATH =
-EXAMPLE_PATTERNS = *
-EXAMPLE_RECURSIVE = NO
-IMAGE_PATH =
-INPUT_FILTER =
-FILTER_PATTERNS =
-FILTER_SOURCE_FILES = NO
-#---------------------------------------------------------------------------
-# configuration options related to source browsing
-#---------------------------------------------------------------------------
-SOURCE_BROWSER = YES
-INLINE_SOURCES = NO
-STRIP_CODE_COMMENTS = YES
-REFERENCED_BY_RELATION = NO
-REFERENCES_RELATION = YES
-REFERENCES_LINK_SOURCE = NO
-USE_HTAGS = NO
-VERBATIM_HEADERS = NO
-#---------------------------------------------------------------------------
-# configuration options related to the alphabetical class index
-#---------------------------------------------------------------------------
-ALPHABETICAL_INDEX = NO
-COLS_IN_ALPHA_INDEX = 1
-IGNORE_PREFIX =
-#---------------------------------------------------------------------------
-# configuration options related to the HTML output
-#---------------------------------------------------------------------------
-GENERATE_HTML = YES
-HTML_OUTPUT = html
-HTML_FILE_EXTENSION = .html
-HTML_HEADER =
-# FILL IN PATH TO HEADER BLOB WANTED IN EVERY FILE
-# RELATIVE PATH TO WHER ERUNNING DOXYGEN FROM
-HTML_FOOTER =
-HTML_STYLESHEET =
-# PATH TO STYLE SHEET
-HTML_ALIGN_MEMBERS = YES
-GENERATE_HTMLHELP = NO
-GENERATE_DOCSET = NO
-DOCSET_FEEDNAME = "Doxygen generated docs"
-DOCSET_BUNDLE_ID = org.doxygen.Project
-HTML_DYNAMIC_SECTIONS = NO
-CHM_FILE =
-HHC_LOCATION =
-GENERATE_CHI = NO
-CHM_INDEX_ENCODING =
-BINARY_TOC = NO
-TOC_EXPAND = NO
-DISABLE_INDEX = NO
-ENUM_VALUES_PER_LINE = 4
-GENERATE_TREEVIEW = NONE
-TREEVIEW_WIDTH = 250
-FORMULA_FONTSIZE = 10
-#---------------------------------------------------------------------------
-# configuration options related to the LaTeX output
-#---------------------------------------------------------------------------
-GENERATE_LATEX = NO
-LATEX_OUTPUT = latex
-LATEX_CMD_NAME = latex
-MAKEINDEX_CMD_NAME = makeindex
-COMPACT_LATEX = NO
-PAPER_TYPE = a4wide
-EXTRA_PACKAGES =
-LATEX_HEADER =
-PDF_HYPERLINKS = YES
-USE_PDFLATEX = YES
-LATEX_BATCHMODE = NO
-LATEX_HIDE_INDICES = NO
-#---------------------------------------------------------------------------
-# configuration options related to the RTF output
-#---------------------------------------------------------------------------
-GENERATE_RTF = NO
-RTF_OUTPUT = rtf
-COMPACT_RTF = NO
-RTF_HYPERLINKS = NO
-RTF_STYLESHEET_FILE =
-RTF_EXTENSIONS_FILE =
-#---------------------------------------------------------------------------
-# configuration options related to the man page output
-#---------------------------------------------------------------------------
-GENERATE_MAN = NO
-MAN_OUTPUT = man
-MAN_EXTENSION = .3
-MAN_LINKS = NO
-#---------------------------------------------------------------------------
-# configuration options related to the XML output
-#---------------------------------------------------------------------------
-GENERATE_XML = NO
-XML_OUTPUT = xml
-XML_SCHEMA =
-XML_DTD =
-XML_PROGRAMLISTING = YES
-#---------------------------------------------------------------------------
-# configuration options for the AutoGen Definitions output
-#---------------------------------------------------------------------------
-GENERATE_AUTOGEN_DEF = NO
-#---------------------------------------------------------------------------
-# configuration options related to the Perl module output
-#---------------------------------------------------------------------------
-GENERATE_PERLMOD = NO
-PERLMOD_LATEX = NO
-PERLMOD_PRETTY = YES
-PERLMOD_MAKEVAR_PREFIX =
-#---------------------------------------------------------------------------
-# Configuration options related to the preprocessor
-#---------------------------------------------------------------------------
-ENABLE_PREPROCESSING = NO
-# KEY CONSIDERATION TWEAK BACK AND FORTH. function in an # if/def preprocessor directive. Processor evalutes whether true. Should doxygen follow compiles behavior or document everything?
-# usually have optional things that people may want to tweak.
-MACRO_EXPANSION = YES
-EXPAND_ONLY_PREDEF = YES
-SEARCH_INCLUDES = NO
-INCLUDE_PATH =
-INCLUDE_FILE_PATTERNS =
-PREDEFINED =
-#to mimic preprocessor behaviors.
-EXPAND_AS_DEFINED =
-SKIP_FUNCTION_MACROS = YES
-#---------------------------------------------------------------------------
-# Configuration::additions related to external references
-#---------------------------------------------------------------------------
-TAGFILES =
-GENERATE_TAGFILE =
-ALLEXTERNALS = NO
-EXTERNAL_GROUPS = NO
-PERL_PATH =
-#---------------------------------------------------------------------------
-# Configuration options related to the dot tool
-#---------------------------------------------------------------------------
-CLASS_DIAGRAMS = NO
-#CHANGE WHEN HAVE DIAGRAMS
-MSCGEN_PATH = YES
-HIDE_UNDOC_RELATIONS = YES
-HAVE_DOT = NO
-DOT_FONTNAME = FreeSans
-DOT_FONTPATH =
-CLASS_GRAPH = YES
-COLLABORATION_GRAPH = YES
-GROUP_GRAPHS = YES
-UML_LOOK = NO
-TEMPLATE_RELATIONS = NO
-INCLUDE_GRAPH = YES
-INCLUDED_BY_GRAPH = YES
-CALL_GRAPH = NO
-CALLER_GRAPH = NO
-GRAPHICAL_HIERARCHY = YES
-DIRECTORY_GRAPH = YES
-DOT_IMAGE_FORMAT = png
-DOT_PATH =
-DOTFILE_DIRS =
-DOT_GRAPH_MAX_NODES = 50
-MAX_DOT_GRAPH_DEPTH = 1000
-DOT_TRANSPARENT = YES
-DOT_MULTI_TARGETS = NO
-GENERATE_LEGEND = YES
-DOT_CLEANUP = YES
-#---------------------------------------------------------------------------
-# Configuration::additions related to the search engine
-#---------------------------------------------------------------------------
-SEARCHENGINE = NO
-@INCLUDE = overrideconfig.conf
-# relative to where running doxygen from
-# @INCLUDE = $(PROJECTCONF)
diff --git a/pdk/hosting/app.yaml b/pdk/hosting/app.yaml
deleted file mode 100644
index 6758539..0000000
--- a/pdk/hosting/app.yaml
+++ /dev/null
@@ -1,13 +0,0 @@
-application: pdk-docs
-version: 2
-runtime: python
-api_version: 1
-
-handlers:
-- url: /
- static_files: online-pdk/index.html
- upload: online-pdk/index.html
-
-- url: /(.*)
- static_files: online-pdk/\1
- upload: online-pdk/.*
diff --git a/pdk/hosting/edoxfix.sh b/pdk/hosting/edoxfix.sh
deleted file mode 100755
index f82e912..0000000
--- a/pdk/hosting/edoxfix.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-# $1 = output directory of generated docs: out/target/product/generic/obj/PACKAGING/pdkdocs_intermediates/generatedDocs/html
-# fix a bug in doxygen 1.5.6 and higher...
-# insert the line: '</div>\n' after line 25 in each generated source file:
-echo \</div\> > $1/div.tmp
-for f in `find $1 -name '*-source.html' -print`
-do
- head -n 25 $f > $f.head.tmp
- let count=$(wc -l $f | cut -d\ -f 1 )
- count=$(($count-25))
- tail -n $count $f > $f.tail.tmp
- cat $f.head.tmp $1/div.tmp $f.tail.tmp > $f
-done
-rm $1/*.tmp
diff --git a/pdk/hosting/pdk.py b/pdk/hosting/pdk.py
deleted file mode 100644
index a1c7c07..0000000
--- a/pdk/hosting/pdk.py
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/usr/bin/python2.5
-#
-# Copyright (C) 2008 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# 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 "AS IS" 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.
-#
-
-"""Serve static pages for the pdk on appengine
-"""
-
-import os
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp.util import run_wsgi_app
-
-
-class MainPage(webapp.RequestHandler):
- def get(self):
- self.redirect('online-pdk/guide/index.html')
-
-application = webapp.WSGIApplication([('/', MainPage)], debug=True)
-
-def main():
- run_wsgi_app(application)
-
-if __name__ == "__main__":
- main()
-
-# Testing
-# You must install google appengine. See: http://code.google.com/appengine/downloads.html
-#
-# Here's the command to run the pdk-docs server locally:
-# python <path_to_appengine_installation>/dev_appserver.py --address 0.0.0.0 \
-# <path_to_cupcake_code>/android/out/target/common/docs
-
-# To verify it is working you can access it with a browser loacally on port 8080:
-
-# http://localhost:8080/index.html
-
-
-# To upload this application:
-# /home/build/static/projects/apphosting/devtools/appcfg.py update pdk/
-# where the pdk directory contains: pdk.py, app.yaml, and the docs directory.
-# where the docs are made from the Pdk.mk file.
diff --git a/pdk/micro-httpd.py b/pdk/micro-httpd.py
deleted file mode 100644
index 96e4000..0000000
--- a/pdk/micro-httpd.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright (C) 2010 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# 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 "AS IS" 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.
-
-import SimpleHTTPServer, SocketServer, os
-PORT = int(os.environ.get('HTTP_PORT', 8080))
-Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
-httpd = SocketServer.TCPServer(("", PORT), Handler)
-httpd.serve_forever()
diff --git a/pdk/pndk/Android_PNDK_README.html b/pdk/pndk/Android_PNDK_README.html
deleted file mode 100644
index 40b7a72..0000000
--- a/pdk/pndk/Android_PNDK_README.html
+++ /dev/null
@@ -1,741 +0,0 @@
-
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-
-<html>
-
-
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-
-<base target="_top">
-
-<style type="text/css">
-
-
-/* default css */
-
-table {
- font-size: 1em;
- line-height: inherit;
-}
-
-
-tr {
-
- text-align: left;
-
-}
-
-
-div, address, ol, ul, li, option, select {
- margin-top: 0px;
- margin-bottom: 0px;
-}
-
-p {
- margin: 0px;
-}
-
-body {
- margin: 6px;
- padding: 0px;
- font-family: Verdana, sans-serif;
- font-size: 10pt;
- background-color: #ffffff;
-}
-
-
-img {
- -moz-force-broken-image-icon: 1;
-}
-
-@media screen {
- html.pageview {
- background-color: #f3f3f3 !important;
- }
-
-
-
- body {
- min-height: 1100px;
-
- counter-reset: __goog_page__;
- }
- * html body {
- height: 1100px;
- }
- .pageview body {
- border-top: 1px solid #ccc;
- border-left: 1px solid #ccc;
- border-right: 2px solid #bbb;
- border-bottom: 2px solid #bbb;
- width: 648px !important;
- margin: 15px auto 25px;
- padding: 40px 50px;
- }
- /* IE6 */
- * html {
- overflow-y: scroll;
- }
- * html.pageview body {
- overflow-x: auto;
- }
- /* Prevent repaint errors when scrolling in Safari. This "Star-7" css hack
- targets Safari 3.1, but not WebKit nightlies and presumably Safari 4.
- That's OK because this bug is fixed in WebKit nightlies/Safari 4 :-). */
- html*#wys_frame::before {
- content: '\A0';
- position: fixed;
- overflow: hidden;
- width: 0;
- height: 0;
- top: 0;
- left: 0;
- }
-
-
-
-
- .writely-callout-data {
- display: none;
- *display: inline-block;
- *width: 0;
- *height: 0;
- *overflow: hidden;
- }
- .writely-footnote-marker {
- background-image: url('MISSING');
- background-color: transparent;
- background-repeat: no-repeat;
- width: 7px;
- overflow: hidden;
- height: 16px;
- vertical-align: top;
-
-
- -moz-user-select: none;
- }
- .editor .writely-footnote-marker {
- cursor: move;
- }
- .writely-footnote-marker-highlight {
- background-position: -15px 0;
- -moz-user-select: text;
- }
- .writely-footnote-hide-selection ::-moz-selection, .writely-footnote-hide-selection::-moz-selection {
- background: transparent;
- }
- .writely-footnote-hide-selection ::selection, .writely-footnote-hide-selection::selection {
- background: transparent;
- }
- .writely-footnote-hide-selection {
- cursor: move;
- }
-
-
- .editor .writely-comment-yellow {
- background-color: #FF9;
- background-position: -240px 0;
- }
- .editor .writely-comment-yellow-hover {
- background-color: #FF0;
- background-position: -224px 0;
- }
- .editor .writely-comment-blue {
- background-color: #C0D3FF;
- background-position: -16px 0;
- }
- .editor .writely-comment-blue-hover {
- background-color: #6292FE;
- background-position: 0 0;
- }
- .editor .writely-comment-orange {
- background-color: #FFDEAD;
- background-position: -80px 0;
- }
- .editor .writely-comment-orange-hover {
- background-color: #F90;
- background-position: -64px 0;
- }
- .editor .writely-comment-green {
- background-color: #99FBB3;
- background-position: -48px 0;
- }
- .editor .writely-comment-green-hover {
- background-color: #00F442;
- background-position: -32px 0;
- }
- .editor .writely-comment-cyan {
- background-color: #CFF;
- background-position: -208px 0;
- }
- .editor .writely-comment-cyan-hover {
- background-color: #0FF;
- background-position: -192px 0;
- }
- .editor .writely-comment-purple {
- background-color: #EBCCFF;
- background-position: -144px 0;
- }
- .editor .writely-comment-purple-hover {
- background-color: #90F;
- background-position: -128px 0;
- }
- .editor .writely-comment-magenta {
- background-color: #FCF;
- background-position: -112px 0;
- }
- .editor .writely-comment-magenta-hover {
- background-color: #F0F;
- background-position: -96px 0;
- }
- .editor .writely-comment-red {
- background-color: #FFCACA;
- background-position: -176px 0;
- }
- .editor .writely-comment-red-hover {
- background-color: #FF7A7A;
- background-position: -160px 0;
- }
-
- .editor .writely-comment-marker {
- background-image: url('MISSING');
- background-color: transparent;
- padding-right: 11px;
- background-repeat: no-repeat;
- width: 16px;
- height: 16px;
- -moz-user-select: none;
- }
-
- .editor .writely-comment-hidden {
- padding: 0;
- background: none;
- }
- .editor .writely-comment-marker-hidden {
- background: none;
- padding: 0;
- width: 0;
- }
- .editor .writely-comment-none {
- opacity: .2;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=20);
- -moz-opacity: .2;
- }
- .editor .writely-comment-none-hover {
- opacity: .2;
- filter:progid:DXImageTransform.Microsoft.Alpha(opacity=20);
- -moz-opacity: .2;
- }
-
-
-
-
- .br_fix br:not(:-moz-last-node):not(:-moz-first-node) {
-
- position:relative;
-
- left: -1ex
-
- }
-
- .br_fix br+br {
- position: static !important
- }
-}
-
-h6 { font-size: 8pt }
-h5 { font-size: 8pt }
-h4 { font-size: 10pt }
-h3 { font-size: 12pt }
-h2 { font-size: 14pt }
-h1 { font-size: 18pt }
-
-blockquote {padding: 10px; border: 1px #DDD dashed }
-
-a img {border: 0}
-
-.pb {
- border-width: 0;
- page-break-after: always;
- /* We don't want this to be resizeable, so enforce a width and height
- using !important */
- height: 1px !important;
- width: 100% !important;
-}
-
-.editor .pb {
- border-top: 1px dashed #C0C0C0;
- border-bottom: 1px dashed #C0C0C0;
-}
-
-div.google_header, div.google_footer {
- position: relative;
- margin-top: 1em;
- margin-bottom: 1em;
-}
-
-
-/* Table of contents */
-.editor div.writely-toc {
- background-color: #f3f3f3;
- border: 1px solid #ccc;
-}
-.writely-toc > ol {
- padding-left: 3em;
- font-weight: bold;
-}
-ol.writely-toc-subheading {
- padding-left: 1em;
- font-weight: normal;
-}
-/* IE6 only */
-* html writely-toc ol {
- list-style-position: inside;
-}
-.writely-toc-none {
- list-style-type: none;
-}
-.writely-toc-decimal {
- list-style-type: decimal;
-}
-.writely-toc-upper-alpha {
- list-style-type: upper-alpha;
-}
-.writely-toc-lower-alpha {
- list-style-type: lower-alpha;
-}
-.writely-toc-upper-roman {
- list-style-type: upper-roman;
-}
-.writely-toc-lower-roman {
- list-style-type: lower-roman;
-}
-.writely-toc-disc {
- list-style-type: disc;
-}
-
-/* end default css */
-
-
- /* default print css */
-
- @media print {
- body {
- padding: 0;
- margin: 0;
- }
-
- div.google_header, div.google_footer {
- display: block;
- min-height: 0;
- border: none;
- }
-
- div.google_header {
- flow: static(header);
- }
-
- /* used to insert page numbers */
- div.google_header::before, div.google_footer::before {
- position: absolute;
- top: 0;
- }
-
- div.google_footer {
- flow: static(footer);
- }
-
- /* always consider this element at the start of the doc */
- div#google_footer {
- flow: static(footer, start);
- }
-
- span.google_pagenumber {
- content: counter(page);
- }
-
- span.google_pagecount {
- content: counter(pages);
- }
-
-
- callout.google_footnote {
-
- display: prince-footnote;
- footnote-style-position: inside;
- /* These styles keep the footnote from taking on the style of the text
- surrounding the footnote marker. They can be overridden in the
- document CSS. */
- color: #000;
- font-family: Verdana;
- font-size: 10.0pt;
- font-weight: normal;
- }
-
- /* Table of contents */
- #WritelyTableOfContents a::after {
- content: leader('.') target-counter(attr(href), page);
- }
-
- #WritelyTableOfContents a {
- text-decoration: none;
- color: black;
- }
- }
-
- @page {
- @top {
- content: flow(header);
- }
- @bottom {
- content: flow(footer);
- }
- @footnotes {
- border-top: solid black thin;
- padding-top: 8pt;
- }
- }
- /* end default print css */
-
-
-/* custom css */
-
-
-/* end custom css */
-
-
-
- /* ui edited css */
-
- body {
- font-family: Verdana;
-
- font-size: 10.0pt;
- line-height: normal;
- background-color: #ffffff;
- }
- /* end ui edited css */
-
-
-
-/* editor CSS */
-.editor a:visited {color: #551A8B}
-.editor table.zeroBorder {border: 1px dotted gray}
-.editor table.zeroBorder td {border: 1px dotted gray}
-.editor table.zeroBorder th {border: 1px dotted gray}
-
-
-.editor div.google_header, .editor div.google_footer {
- border: 2px #DDDDDD dashed;
- position: static;
- width: 100%;
- min-height: 2em;
-}
-
-.editor .misspell {background-color: yellow}
-
-.editor .writely-comment {
- font-size: 9pt;
- line-height: 1.4;
- padding: 1px;
- border: 1px dashed #C0C0C0
-}
-
-
-/* end editor CSS */
-
-</style>
-
-</head>
-
-<body onload="DoPageLoad();"
-
- revision="cfnx2f69_111dp3jzfgb:107">
-
-
-
-
-<h1>
- Using the Android Native Development Kit (NDK)
-</h1>
-version 1.3<br>
-<br>
-<h2>
- Introduction
-</h2>
-The Android Native Development Kit enables developers to write shared libraries
-in C or C++ and call them from Java code. The native shared libraries can be
-packaged into apk files along with a normal Android application written in Java,
-so that the resulting Android application can be downloaded and installed on an
-Android phone.<br>
-<br>
-The Native Development Kit consists of:<br>
-<ul>
- <li>
- C/C++ headers for native APIs<br>
- </li>
- <li>
- C/C++ libraries for native APIs<br>
- </li>
- <li>
- Documentation
- </li>
- <li>
- Sample Code
- </li>
-</ul>
-<br>
-The Native Development Kit is designed to be used with the Android SDK:<br>
-<ul>
- <li>
- The NDK is used to create a shared library containing native code.
- </li>
- <li>
- The SDK is used to create an Android application written in Java that calls
- into the native code shared library.
- </li>
-</ul>
-<h1>
-</h1>
-<h2>
- Setting up your machine<br>
-</h2>
-The Native Development Kit may be installed on either Linux or OS X. Developing
-under Windows is not yet supported.<br>
-<div>
- <h3>
- Linux Installation
- </h3>
- The
- Android build is routinely tested on recent versions of Ubuntu (6.06 and later), but
- may work on other distributions as well.<br>
- <h4>
- <a name=TOC-Ubuntu-Linux-i386-></a><span style=FONT-FAMILY:Verdana>Ubuntu
- Linux (i386)</span>
- </h4>
- <div style=FONT-FAMILY:Verdana>
- To set up your Linux development environment, make sure you have the
- following:<span style="WORD-SPACING:0px; FONT-STYLE:normal; FONT-VARIANT:normal; FONT-WEIGHT:normal; font-size-adjust:none; font-stretch:normal; TEXT-TRANSFORM:none; COLOR:#000000; WHITE-SPACE:normal; LETTER-SPACING:normal; border-collapse:separate"><font size=2>
- </font></span>
- </div>
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px; FONT-FAMILY:Verdana">
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px">
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px">
- <ul style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px">
- <li style="MARGIN-TOP:8px; MARGIN-BOTTOM:8px">
- Git 1.5.4 or
- newer<span style="FONT-WEIGHT:normal; WORD-SPACING:0px; TEXT-TRANSFORM:none; COLOR:#000000; FONT-STYLE:normal; WHITE-SPACE:normal; LETTER-SPACING:normal; border-collapse:separate; FONT-VARIANT:normal"><font size=2>. </font></span>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <blockquote style="BORDER:medium none ; MARGIN:0pt 0pt 0pt 40px; PADDING:0px">
- <span style=FONT-FAMILY:arial><span style="FONT-WEIGHT:normal; WORD-SPACING:0px; TEXT-TRANSFORM:none; COLOR:#000000; FONT-STYLE:normal; WHITE-SPACE:normal; LETTER-SPACING:normal; border-collapse:separate; FONT-VARIANT:normal"><span style="FONT-FAMILY:courier new,monospace">$
- </span></span><span style="FONT-FAMILY:courier new,monospace">sudo apt-get
- install git-core<br>
- </span></span>
- </blockquote>
- <div>
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px">
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px; FONT-FAMILY:arial,sans-serif">
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px">
- <h4>
- <a name=TOC-Ubuntu-Linux-amd64-></a><span style=FONT-FAMILY:Verdana>Ubuntu
- Linux (amd64)</span>
- </h4>
- <span style=FONT-FAMILY:Verdana>This has not been as well
- tested.</span>
- </div>
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px; FONT-FAMILY:Verdana">
- <br>
- </div>
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px; FONT-FAMILY:Verdana">
- The Android build requires a 32-bit build environment:
- </div>
- <div style="MARGIN-TOP:0px; MARGIN-BOTTOM:0px; FONT-FAMILY:Verdana">
- <ul>
- <li>
- Get the packages as listed above in the i386
- instructions:<span style="FONT-WEIGHT:normal; WORD-SPACING:0px; TEXT-TRANSFORM:none; COLOR:#000000; FONT-STYLE:normal; WHITE-SPACE:normal; LETTER-SPACING:normal; border-collapse:separate; FONT-VARIANT:normal"> </span>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <blockquote style="BORDER:medium none ; MARGIN:0pt 0pt 0pt 40px; PADDING:0px">
- <span style=FONT-FAMILY:arial><span style="FONT-WEIGHT:normal; WORD-SPACING:0px; TEXT-TRANSFORM:none; COLOR:#000000; FONT-STYLE:normal; WHITE-SPACE:normal; LETTER-SPACING:normal; border-collapse:separate; FONT-VARIANT:normal"><span style="FONT-FAMILY:courier new,monospace">$ </span></span><span style="FONT-FAMILY:courier new,monospace">sudo
- apt-get install git-core<br>
- </span></span>
- </blockquote>
- <h4>
- <a name=TOC-Other-Linux></a>Other Linux
- </h4>
- <p>
- There's
- no reason why Android cannot be built on non-Ubuntu systems<span style=FONT-WEIGHT:normal><font size=2>. In general you will need:</font></span>
- </p>
- <ul>
- <li>
- Git 1.5.4 or newer. You can find it at <a href=http://git.or.cz/ rel=nofollow>http://git.or.cz/</a><span style=FONT-FAMILY:arial></span>
- </li>
- </ul>
- <div>
- <h3>
- Mac OS Installation
- </h3>
- <ul>
- <li>
- <span style=FONT-FAMILY:arial,sans-serif>To build the Android files in a
- Mac OS environment, you need an Intel/x86 machine. The Android build
- system and tools do not support the older PowerPC architecture.</span>
- </li>
- <li>
- <span style=FONT-FAMILY:arial,sans-serif>Android must be built on a
- case-sensitive file system.<br>
- </span>
- </li>
- <ul>
- <li>
- We recommend that you build Android on a partition that has been
- formatted with the "Case-sensitive Journaled HFS+" file system:
- </li>
- <ul>
- <li>
- A case-sensitive file system is required because the sources contain
- files that differ only in case.
- </li>
- <li>
- Journaled systems are more robust. (This is optional, but
- recommended.)
- </li>
- <li>
- HFS+ is required to successfully build Mac OS applications such as
- the Android Emulator for OS X.
- </li>
- </ul>
- <li>
- If you want to avoid partitioning/formatting your hard drive, you can
- use a case-sensitive disk image instead.
- </li>
- <ul>
- <li>
- To create the image:<br>
- <ul>
- <li>
- launch /Applications/Utilities/Disk Utility
- </li>
- <li>
- select "New Image"
- </li>
- <li>
- size: 8 GB (this will work, but you can choose more if you want
- to)
- </li>
- <li>
- volume format: case sensitive, journaled
- </li>
- </ul>
- </li>
- <li>
- This will create a .dmg file which, once mounted, acts as a drive
- with the required formatting for Android development. For a disk
- image named "android.dmg" stored in your home directory, you can add
- the following to your ~/.bash_profile to mount the image when you
- execute "mountAndroid":<br>
- <br>
- <div style=MARGIN-LEFT:40px>
- <span style="FONT-FAMILY:courier new,monospace"># command to mount
- the android file
- image</span><br style="FONT-FAMILY:courier new,monospace">
- <span style="FONT-FAMILY:courier new,monospace">function
- mountAndroid { hdiutil attach ~/android.dmg
- -mountpoint /Volumes/android; }</span><br>
- </div>
- <br>
- Once mounted, you'll do all your work in the "android" volume. You
- can eject it (unmount it) just like you would with an external
- drive.
- </li>
- </ul>
- </ul>
- </ul>
- <div>
- <br>
- <ul>
- <li>
- Install git 1.5.4 or newer. You can find it at
- <a href=http://git.or.cz/ rel=nofollow>http://git.or.cz/</a>
- </li>
- </ul>
- <h2>
- Installing the Android SDK
- </h2>
- The Android NDK uses the Android SDK. You can find the Android SDK at
- <a href=http://code.google.com/android/download.html id=a.-o title=http://code.google.com/android/download.html>http://code.google.com/android/download.html</a><br>
- This version of the Android NDK requires the Cupcake version of the
- Android SDK.<br>
- <br>
- <h2>
- Installing the Prebuilt Native Toolchain<br>
- </h2>
- The NDK uses the prebuilt native toolchain from the Android Open Source
- git repository.<br>
- <br>
- To download the prebuilt native toolchain to your working directory,
- execute the following commands:<br>
- <br>
- <span style="FONT-FAMILY:Courier New"></span>
- <div style=MARGIN-LEFT:40px>
- <span style="FONT-FAMILY:Courier New">git clone
- git://android.git.kernel.org/platform/prebuilt.git</span><br>
- <span style="FONT-FAMILY:Courier New">cd prebuilt</span><br>
- <span style="FONT-FAMILY:Courier New">git checkout -b cupcake -t
- origin/cupcake</span><br>
- </div>
- <div style=MARGIN-LEFT:40px>
- <span style="FONT-FAMILY:Courier New"></span>
- </div>
- <br>
- <h2>
- Setting Environment Variables
- </h2>
- The NDK requires that you set two environment variables:<br>
- <ul>
- <li>
- PREBUILT must be set to the directory that contains the prebuilt
- toolchain. Include the "prebuilt" directory in the path. Example:
- /Volumes/android/prebuilt<br>
- </li>
- <li>
- ANDROID_SDK_BASE must be set to the directory that contains the
- Android SDK. Example: ~/AndroidSDK<br>
- </li>
- </ul>
- <br>
- <h2>
- <span style=FONT-FAMILY:Verdana>Unpacking the NDK</span>
- </h2>
- Unpack the android_pndk.tar.gz into your working directory<br>
- <br>
- <div style=MARGIN-LEFT:40px>
- <span style="FONT-FAMILY:Courier New">tar -zxvf
- android_pndk.tar.gz</span><br>
- </div>
- <br>
- This will create a directory called pndk. It should contain a README.html
- file (this file) and the following directories: config, include, lib, and
- sample.<br>
- <br>
- Look in the "samples" directory for samples showing how to use the NDK.<br>
- <br>
- <br>
- </div>
- <br>
- </div>
- <br>
-</div>
-<br></body>
-</html>
\ No newline at end of file
diff --git a/pdk/pndk/Pndk.mk b/pdk/pndk/Pndk.mk
deleted file mode 100644
index ce9e3b0..0000000
--- a/pdk/pndk/Pndk.mk
+++ /dev/null
@@ -1,232 +0,0 @@
-#
-# Copyright (C) 2008 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# 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 "AS IS" 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.
-#
-
-# Assemble the Native Development Kit
-# Assembled using the generic build by default.
-# (set in device/config/product_config.make)
-
-# A macro to make rules to copy all newer files in a directory tree matching an
-# optional find filter and add the files to a list variable for dependencies.
-# Designed after copy_headers.make: Create a rule to copy each file;
-# copy-one-file defines the actual rule.
-# $(1): source directory tree root
-# $(2): destination directory tree root
-# $(3): list variable to append destination files to
-# $(4): optional find(1) arguments
-define define-tree-copy-rules
- $(eval _src_files := $(shell find $(1) -type f $(4))) \
- $(foreach _src, $(_src_files), \
- $(eval _dest := $(patsubst $(1)%,$(2)%,$(_src))) \
- $(eval $(3) := $($(3)) $(_dest)) \
- $(eval $(call copy-one-file,$(_src),$(_dest))) \
- )
-endef
-
-#-------------------------------------------------------------------------------
-# Install all the files needed to build the pndk.
-# We build three versions of the pndk
-# (1) The full version, with source.
-# (2) The full version, without source.
-# (3) A JNI-only version, with source.
-#
-# We make five sets of trees:
-# (A) Common files used in all versions of the pndk
-# (B) Common files used in the full versions of the pndk
-# (C) Files used in the standard pndk (no source files included)
-# (D) Files used in both the JNI-only and full-with-source version
-# (E) Files used in just the full-with-source version
-#
-# Each pndk version is created by combining the appropriate trees:
-#
-# (A) (B) (C) (D) (E)
-# (1) yes yes yes yes
-# (2) yes yes yes
-# (3) yes yes
-#
-# Source is provided for partners who want to recompile our libraries for optimization.
-# The JNI-only version is provided for partners that want to create shared
-# libraries that can be packaged with APK files and called from Java code.
-
-LOCAL_PATH := $(call my-dir)
-
-# Source trees for the pndk
-samples_src_dir := $(LOCAL_PATH)/samples
-sample_src_dir := $(samples_src_dir)/sample
-samplejni_src_dir := $(samples_src_dir)/samplejni
-config_src_dir := $(LOCAL_PATH)/config
-kernel_common_src_dir := $(KERNEL_HEADERS_COMMON)
-kernel_arch_src_dir := $(KERNEL_HEADERS_ARCH)
-bionic_src_dir := bionic
-jni_src_dir := $(JNI_H_INCLUDE)
-
-# Workspace directory
-pndk_intermediates := $(call intermediates-dir-for,PACKAGING,pndk)
-
-# Common destination trees for the pndk
-pndk_common_tree := $(pndk_intermediates)/common
-pndk_common_dest_dir := $(pndk_common_tree)/pndk
-samplejni_dest_dir := $(pndk_common_dest_dir)/samples/samplejni
-config_dest_dir := $(pndk_common_dest_dir)/config
-kernel_dest_dir := $(pndk_common_dest_dir)/include/kernel/include
-gcc_dest_dir := $(pndk_common_dest_dir)/toolchain
-jni_dest_dir := $(pndk_common_dest_dir)/include/nativehelper
-
-# Common-full destination trees for the pndk
-pndk_common_full_tree := $(pndk_intermediates)/common_full
-pndk_common_full_dest_dir := $(pndk_common_full_tree)/pndk
-sample_dest_dir := $(pndk_common_full_dest_dir)/samples/sample
-
-# Destination trees without source for the standard pndk (without source)
-pndk_no_src_tree := $(pndk_intermediates)/no_src
-pndk_no_src_dest_dir := $(pndk_no_src_tree)/pndk
-bionic_no_src_dest_dir := $(pndk_no_src_dest_dir)/include/bionic
-
-# Destination trees including source for the pndk with source
-pndk_src_tree := $(pndk_intermediates)/with_src
-pndk_src_dest_dir := $(pndk_src_tree)/pndk
-bionic_src_dest_dir := $(pndk_src_dest_dir)/include/bionic
-
-# Destinations of all common files (not picked up by tree rules below)
-pndk_common_dest_files := $(pndk_common_dest_dir)/Android_PNDK_README.html \
- $(pndk_common_dest_dir)/config/armelf.x \
- $(pndk_common_dest_dir)/config/armelflib.x \
- $(pndk_common_dest_dir)/lib/crtbegin_dynamic.o \
- $(pndk_common_dest_dir)/lib/crtend_android.o \
- $(pndk_common_dest_dir)/lib/libc.so \
- $(pndk_common_dest_dir)/lib/libm.so
-
-# Destinations of files used by the full, non-jni-only configurations
-pndk_common_full_dest_files := \
- $(pndk_common_full_dest_dir)/lib/libdl.so \
- $(pndk_common_full_dest_dir)/lib/libstdc++.so
-
-# Install common files outside common trees
-$(pndk_common_dest_dir)/Android_PNDK_README.html: $(LOCAL_PATH)/Android_PNDK_README.html | $(ACP)
- @echo "pndk Android_PNDK_README.html: from $? to $@"
- $(copy-file-to-target)
-
-$(pndk_common_dest_dir)/config/armelf.x: $(BUILD_SYSTEM)/armelf.x | $(ACP)
- @echo "pndk config: $@"
- $(copy-file-to-target)
-
-$(pndk_common_dest_dir)/config/armelflib.x: $(BUILD_SYSTEM)/armelflib.x | $(ACP)
- @echo "pndk config: $@"
- $(copy-file-to-target)
-
-$(pndk_common_dest_dir)/lib/%: $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/% | $(ACP)
- @echo "pndk lib: $@"
- $(copy-file-to-target)
-
-# Install common_full files outside common trees
-$(pndk_common_full_dest_dir)/lib/%: $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/% | $(ACP)
- @echo "pndk lib full: $@"
- $(copy-file-to-target)
-
-# Install files in common trees
-listvar := pndk_common_dest_files
-$(call define-tree-copy-rules,$(samplejni_src_dir),$(samplejni_dest_dir),$(listvar))
-$(call define-tree-copy-rules,$(config_src_dir),$(config_dest_dir),$(listvar))
-$(call define-tree-copy-rules,$(kernel_common_src_dir),$(kernel_dest_dir),$(listvar))
-$(call define-tree-copy-rules,$(kernel_arch_src_dir),$(kernel_dest_dir),$(listvar))
-$(call define-tree-copy-rules,$(jni_src_dir),$(jni_dest_dir),$(listvar), -name jni.h)
-
-# Install files common to the full builds but not the JNI build
-listvar := pndk_common_full_dest_files
-$(call define-tree-copy-rules,$(sample_src_dir),$(sample_dest_dir),$(listvar))
-
-# Install files without sources
-listvar := pndk_no_src_dest_files
-$(call define-tree-copy-rules,$(bionic_src_dir),$(bionic_no_src_dest_dir),$(listvar),-name '*.h')
-
-# Install files including sources
-listvar := pndk_with_src_dest_files
-$(call define-tree-copy-rules,$(bionic_src_dir),$(bionic_src_dest_dir),$(listvar))
-
-
-#-------------------------------------------------------------------------------
-# Create the multiple versions of the pndk:
-# pndk_no_src all files without source
-# pndk_with_source all files with source
-# pndk_jni_with_source just files for building JNI shared libraries with source.
-
-# Name the tar files
-name := android_pndk-$(TARGET_PRODUCT)
-ifeq ($(TARGET_BUILD_TYPE),debug)
- name := $(name)_debug
-endif
-name := $(name)-$(BUILD_NUMBER)
-pndk_tarfile := $(pndk_intermediates)/$(name).tar
-pndk_tarfile_zipped := $(pndk_tarfile).gz
-pndk_with_src_tarfile := $(pndk_intermediates)/$(name)-src.tar
-pndk_with_src_tarfile_zipped := $(pndk_with_src_tarfile).gz
-pndk_jni_with_src_tarfile := $(pndk_intermediates)/$(name)-jni-src.tar
-pndk_jni_with_src_tarfile_zipped := $(pndk_jni_with_src_tarfile).gz
-
-.PHONY: pndk pndk_with_src pndk_no_src pndk_jni_with_src pndk_debug
-
-pndk: pndk_no_src pndk_with_src pndk_jni_with_src
-pndk_no_src: $(pndk_tarfile_zipped)
-pndk_with_src: $(pndk_with_src_tarfile_zipped)
-pndk_jni_with_src: $(pndk_jni_with_src_tarfile_zipped)
-
-# Put the pndk zip files in the distribution directory
-$(call dist-for-goals,pndk,$(pndk_tarfile_zipped))
-$(call dist-for-goals,pndk,$(pndk_with_src_tarfile_zipped))
-$(call dist-for-goals,pndk,$(pndk_jni_with_src_tarfile_zipped))
-
-# zip up tar files
-%.tar.gz: %.tar
- @echo "pndk: zipped $<"
- $(hide) gzip -cf $< > $@
-
-# tar up the files without our sources to make the pndk.
-$(pndk_tarfile): $(pndk_common_dest_files) $(pndk_common_full_dest_files) $(pndk_no_src_dest_files)
- @echo "pndk: $@"
- @mkdir -p $(dir $@)
- @rm -f $@
- $(hide) tar rf $@ -C $(pndk_common_tree) pndk
- $(hide) tar rf $@ -C $(pndk_common_full_tree) pndk
- $(hide) tar rf $@ -C $(pndk_no_src_tree) pndk
-
-# tar up the full sources to make the pndk with sources.
-$(pndk_with_src_tarfile): $(pndk_common_dest_files) $(pndk_common_full_dest_files) $(pndk_with_src_dest_files) $(pndk_full_with_src_dest_files)
- @echo "pndk: $@"
- @mkdir -p $(dir $@)
- @rm -f $@
- $(hide) tar rf $@ -C $(pndk_common_tree) pndk
- $(hide) tar rf $@ -C $(pndk_common_full_tree) pndk
- $(hide) tar rf $@ -C $(pndk_src_tree) pndk
-
-# tar up the sources to make the pndk with JNI support.
-$(pndk_jni_with_src_tarfile): $(pndk_common_dest_files) $(pndk_with_src_dest_files)
- @echo "pndk: $@"
- @mkdir -p $(dir $@)
- @rm -f $@
- $(hide) tar rf $@ -C $(pndk_common_tree) pndk
- $(hide) tar rf $@ -C $(pndk_src_tree) pndk
-
-# Debugging reporting can go here, add it as a target to get output.
-pndk_debug: pndk
- @echo "You are here: $@"
- @echo "pndk tar file: $(pndk_tarfile_zipped)"
- @echo "pndk_with_src tar file: $(pndk_with_src_tarfile_zipped)"
- @echo "pndk_jni_with_src tar file: $(pndk_jni_with_src_tarfile_zipped)"
- @echo "pndk_files: $(pndk_no_src_dest_files)"
- @echo "pndk_with_src files: $(pndk_with_src_dest_files)"
- @echo "pndk_full_with_src files: $(pndk_full_with_src_dest_files)"
- @echo "pndk_common_files: $(pndk_common_dest_files)"
- @echo "pndk_common_full_dest_files: $(pndk_common_full_dest_files)"
-
diff --git a/pdk/pndk/config/config.mk b/pdk/pndk/config/config.mk
deleted file mode 100644
index a6972b1..0000000
--- a/pdk/pndk/config/config.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-# Assumes PREBUILT is defined to point to the correct flavor of the prebuilt
-# directory in the Android source tree
-
-CC := $(PREBUILT)/toolchain/arm-eabi-4.2.1/bin/arm-eabi-gcc
-AR := $(PREBUILT)/toolchain/arm-eabi-4.2.1/bin/arm-eabi-ar
-
-INC := -I$(NDK_BASE)/include/bionic/libc/arch-arm/include \
- -I$(NDK_BASE)/include/kernel/include \
- -I$(NDK_BASE)/include/bionic/libm/include \
- -I$(NDK_BASE)/include/bionic/libm/include/arm \
- -I$(NDK_BASE)/include/bionic/libc/include \
- -I$(NDK_BASE)/include/bionic/libstdc++/include
-
-LINK := -nostdlib -Bdynamic \
- -Wl,-T,$(NDK_BASE)/config/armelf.x \
- -Wl,-dynamic-linker,/system/bin/linker \
- -Wl,-z,nocopyreloc \
- -L$(NDK_BASE)/lib \
- -Wl,-rpath-link=$(NDK_BASE)/lib \
- $(NDK_BASE)/lib/crtbegin_dynamic.o
-
-POSTLINK := $(NDK_BASE)/lib/crtend_android.o
-
-%.o: %.cpp
- $(CC) $(CFLAGS) -fno-exceptions -fno-rtti $(INC) -o $@ -c $<
-
-%.o: %.c
- $(CC) $(CFLAGS) $(INC) -o $@ -c $<
-
diff --git a/pdk/pndk/samples/sample/Makefile b/pdk/pndk/samples/sample/Makefile
deleted file mode 100644
index a66ae86..0000000
--- a/pdk/pndk/samples/sample/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-
-NDK_BASE := ../..
-
-include $(NDK_BASE)/config/config.mk
-
-EXECUTABLE := hello
-SOURCES := hello.c
-OBJECTS := $(SOURCES:.c=.o)
-LIBS := -lc -lm
-
-all: $(EXECUTABLE)
-
-# need $(LINK) before all objects and $(POSTLINK) after all objects for
-# android runtime setup.
-
-hello: $(OBJECTS)
- $(CC) $(LINK) -o $@ $(OBJECTS) $(LIBS) $(POSTLINK)
-
-clean:
- rm -rf *.o hello
-
diff --git a/pdk/pndk/samples/sample/Makefile.hello_cpp b/pdk/pndk/samples/sample/Makefile.hello_cpp
deleted file mode 100644
index 5d82b66..0000000
--- a/pdk/pndk/samples/sample/Makefile.hello_cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-
-NDK_BASE := ../..
-
-include $(NDK_BASE)/config/config.mk
-
-EXECUTABLE := hello_cpp
-SOURCES := hello_cpp.cpp
-OBJECTS := $(SOURCES:.cpp=.o)
-LIBS := -lc -lm -lstdc++
-
-all: $(EXECUTABLE)
-
-# need $(LINK) before all objects and $(POSTLINK) after all objects for
-# android runtime setup.
-
-hello_cpp: $(OBJECTS)
- $(CC) $(LINK) -o $@ $(OBJECTS) $(LIBS) $(POSTLINK)
-
-clean:
- rm -rf *.o hello_cpp
-
diff --git a/pdk/pndk/samples/sample/Makefile.lib b/pdk/pndk/samples/sample/Makefile.lib
deleted file mode 100644
index fbb5a14..0000000
--- a/pdk/pndk/samples/sample/Makefile.lib
+++ /dev/null
@@ -1,31 +0,0 @@
-
-NDK_BASE := ../..
-
-include $(NDK_BASE)/config/config.mk
-
-# Assumes PREBUILT is defined to point to the correct flavor of the prebuilt
-# directory in the Android source tree
-
-SOURCES := hellolibrary.c
-OBJECTS := $(SOURCES:.c=.o)
-LIBS := -lc -lm
-ALIB := $(PREBUILT)/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/interwork/libgcc.a
-
-all: sharedlib staticlib
-
-# Using shared and static suffixes as these are going in the same directory;
-# typically you would not do this as you would make only one version,
-# but if we don't we'll screw up the linking because of linker defaults.
-
-staticlib: $(OBJECTS)
- $(AR) -cr libhello-static.a $(OBJECTS)
-
-sharedlib: hellolibrary-shared.o
- $(CC) -nostdlib -Wl,-soname,libhello-shared.so -Wl,-shared,-Bsymbolic -L$(NDK_BASE)/lib $^ $(LIBS) -o libhello-shared.so -Wl,--no-undefined $(ALIB)
-
-hellolibrary-shared.o: hellolibrary.c
- $(CC) -c -fpic $(INC) -o $@ $^
-
-clean:
- rm -rf *.o libhello-static.a libhello-shared.so
-
diff --git a/pdk/pndk/samples/sample/Makefile.uselib b/pdk/pndk/samples/sample/Makefile.uselib
deleted file mode 100644
index b44eae2e..0000000
--- a/pdk/pndk/samples/sample/Makefile.uselib
+++ /dev/null
@@ -1,23 +0,0 @@
-
-NDK_BASE := ../..
-
-include $(NDK_BASE)/config/config.mk
-
-SOURCES := use_hellolibrary.c
-OBJECTS := $(SOURCES:.c=.o)
-LIBS := -lc -lm
-
-all: use_hellolibrary-a use_hellolibrary-so
-
-# need $(LINK) before all objects and $(POSTLINK) after all objects for
-# android runtime setup.
-
-use_hellolibrary-a: $(OBJECTS)
- $(CC) $(LINK) -o $@ $(OBJECTS) $(LIBS) -L. -lhello-static $(POSTLINK)
-
-use_hellolibrary-so: $(OBJECTS)
- $(CC) $(LINK) -o $@ $(OBJECTS) $(LIBS) -L. -lhello-shared $(POSTLINK)
-
-clean:
- rm -rf *.o use_hellolibrary-a use_hellolibrary-so
-
diff --git a/pdk/pndk/samples/sample/README b/pdk/pndk/samples/sample/README
deleted file mode 100644
index ecc751f..0000000
--- a/pdk/pndk/samples/sample/README
+++ /dev/null
@@ -1,135 +0,0 @@
-Building native code applications and libraries
-
-STEP 1
-Building an application.
---------
-
-0) set the environment variable PREBUILT to point to the Android prebuilt directory
- export PREBUILT=<path_to_android_src>/prebuilt/<platform>
-
-where you type in the actual path to the android source in place of <path_to_android_src>
-and the platform you are using instead of <platform>: either linux-x86 or darwin-x86
-
-1) Test the pndk install by building the hello world sample application:
-
- cd <your_pndk_base>/samples/sample
- make clean
- make
-
-The sample application uses hello.c to construct the hello binary, which you
-can load and run on the ARM device. To achieve proper runtime behavior, verify
-that:
- * crtbegin_dynamic.o is the first linked object file
- * crtend_android.o is last linked object.
-Both are set by the config.mk file in pndk/config.
-
-2) Test that this works correctly by attaching your ARM-based device to the USB
-port and installing the application (hello) you just made by (in the commands
-below # is the ARM device's shell prompt):
-
-NOTE: need a development build so remount opens system permissions
-
- adb remount
- adb push hello system/app
- adb shell
- # cd system/app
- # ./hello
- Hello from the NDK; no user libraries.
- # exit
-
-3) You may also build the c++ binary hello_cpp.cpp into an application:
-
- make -f Makefile.hello_cpp clean
- make -f Makefile.hello_cpp hello_cpp
-
-This uses the hello_cpp.cpp and hello_cpp.h files to construct the hello_cpp
-binary application, which you can load and run on the ARM device. Note that
-we do not provide for C++ exceptions thus you must use the -fno-exceptions flag
-when compiling.
-
- adb push hello_cpp system/app
- adb shell
- # cd system/app
- # ./hello_cpp
- C++ example printing message: Hello world!
- # exit
-
-
-STEP 2
-Building and using a library
--------
-
-Makefile.lib in pndk/sample shows how to make either a shared library or a
-static library from the hellolibrary.c source. The example makes the libraries
-libhello-shared.so and libhello-static.a .
-
-Makefile.uselib then shows how to make an application that links against either
-a shared or a static library. They examples shows how to build the two
-applications use_hellolibrary-so and use-hellolibrary-a from the source
-use_hellolibrary.c.
-
-1) To make a shared library and an application that uses it:
-
- make -f Makefile.lib clean
- make -f Makefile.lib sharedlib
- make -f Makefile.uselib clean
- make -f Makefile.uselib use_hellolibrary-so
-
-2) Copy the shared library libhello-shared.so to /system/lib (or the location
-in which shared libraries are found by the kernel on your ARM-based device.)
-
- adb push libhello-shared.so system/lib
-
-You would not typically use the -shared or -static extensions in the filename,
-but the distinction is important in the case where a static and shared library
-are made in the same directory. Giving the files different names allows you to
-override the link defaults that default to a static library of the same name.
-
-3) The application, use_hellolibrary-so, can now be tested by loading and
-running on the ARM device.
-
- adb push use_hellolibrary-so /system/app
- adb shell
- # cd system/app
- # ./use_hellolibrary-so
- Library printing message: Hello from the NDK.
- # exit
-
-4) To make a static library:
-
- make -f Makefile.lib clean
- make -f Makefile.lib staticlib
- make -f Makefile.uselib clean
- make -f Makefile.uselib use_hellolibrary-a
-
-5) Test the application use_hellolibrary-a by loading and running it on the ARM
-device.
-
- adb push use_hellolibrary-a system/app
- adb shell
- # cd system/app
- # ./use_hellolibrary-a
- Library printing message: Hello from the NDK.
- # exit
-
-
-SUMMARY:
----------
-
-To make everything execute the following:
-
-make clean
-make
-make -f Makefile.lib clean
-make -f Makefile.lib
-make -f Makefile.uselib clean
-make -f Makefile.uselib
-make -f Makefile.hello_cpp clean
-make -f Makefile.hello_cpp hello_cpp
-
-
-You should have:
- * The libraries libhello-static.a and libhello-shared.so built, the latter
- ready for installation,
- * The applications hello, use_hellolibrary-a, and use_hellolibrary-so
- available for installation on the ARM device.
diff --git a/pdk/pndk/samples/sample/hello.c b/pdk/pndk/samples/sample/hello.c
deleted file mode 100644
index b7d750f..0000000
--- a/pdk/pndk/samples/sample/hello.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char *argv[])
-{
- printf("Hello from the NDK; no user libraries.\n");
- return 0;
-}
diff --git a/pdk/pndk/samples/sample/hello_cpp.cpp b/pdk/pndk/samples/sample/hello_cpp.cpp
deleted file mode 100644
index c0a157a..0000000
--- a/pdk/pndk/samples/sample/hello_cpp.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <stdio.h>
-#include "hello_cpp.h"
-
-Hello::Hello()
-{
-}
-
-Hello::~Hello()
-{
-}
-
-void Hello::printMessage(char* msg)
-{
- printf("C++ example printing message: %s", msg);
-}
-
-int main(void)
-{
- Hello hello_obj;
- hello_obj.printMessage("Hello world!\n");
- return 0;
-}
diff --git a/pdk/pndk/samples/sample/hello_cpp.h b/pdk/pndk/samples/sample/hello_cpp.h
deleted file mode 100644
index b98ae7f..0000000
--- a/pdk/pndk/samples/sample/hello_cpp.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef HELLO_CPP_H
-#define HELLO_CPP_H
-
-class Hello
-{
-public:
- Hello();
- ~Hello();
- void printMessage(char* msg);
-};
-
-#endif
diff --git a/pdk/pndk/samples/sample/hellolibrary.c b/pdk/pndk/samples/sample/hellolibrary.c
deleted file mode 100644
index 90f98fa..0000000
--- a/pdk/pndk/samples/sample/hellolibrary.c
+++ /dev/null
@@ -1,10 +0,0 @@
-/* hellolibrary.c - demonstrate library use with the NDK.
- * This will be the library that gets called as wither a static or shared lib.*/
-
-#include <stdio.h>
-
-int hellolibrary(char *msg)
-{
- printf("Library printing message: %s", msg);
- return 0;
-}
diff --git a/pdk/pndk/samples/sample/use_hellolibrary.c b/pdk/pndk/samples/sample/use_hellolibrary.c
deleted file mode 100644
index e32a364..0000000
--- a/pdk/pndk/samples/sample/use_hellolibrary.c
+++ /dev/null
@@ -1,9 +0,0 @@
-/* use_hellolibrary.c -- used to show how to link to the hellolibrary */
-
-int hellolibrary(char *msg);
-
-int main()
-{
- hellolibrary("Hello from the NDK.\n");
- return 0;
-}
diff --git a/pdk/pndk/samples/samplejni/AndroidManifest.xml b/pdk/pndk/samples/samplejni/AndroidManifest.xml
deleted file mode 100644
index 450eb0b..0000000
--- a/pdk/pndk/samples/samplejni/AndroidManifest.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.jniexample"
- android:versionCode="1"
- android:versionName="1.0.0">
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <activity android:name=".JNIExample"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
-</manifest>
\ No newline at end of file
diff --git a/pdk/pndk/samples/samplejni/Makefile b/pdk/pndk/samples/samplejni/Makefile
deleted file mode 100644
index 18e97df..0000000
--- a/pdk/pndk/samples/samplejni/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-# Package a shared library into an APK
-
-NDK_BASE := ../..
-
-# Assume ANDROID_SDK_BASE is defined to point to the base of the Android SDK
-# Assumes PREBUILT is defined to point to the prebuilt directory of the Android source
-
-include $(NDK_BASE)/config/config.mk
-
-SOURCES := native.cpp
-OBJECTS := $(SOURCES:.cpp=.o)
-LIBS := -lc -lm
-ALIB := $(PREBUILT)/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/interwork/libgcc.a
-
-APKBUILDER := $(ANDROID_SDK_BASE)/tools/apkbuilder
-
-APK_INPUT_DIR := bin
-APK_OUTPUT_DIR := bin/full
-
-APK_NAME := JNIExample.apk
-INPUT_APK := $(APK_INPUT_DIR)/$(APK_NAME)
-OUTPUT_APK := $(APK_OUTPUT_DIR)/$(APK_NAME)
-APK_STAGE := $(APK_OUTPUT_DIR)/temp
-
-JNI_LIBS := libnative.so
-
-all: $(OUTPUT_APK)
-
-$(OUTPUT_APK) : $(INPUT_APK) $(JNI_LIBS)
- rm -rf $(APK_STAGE)
- mkdir -p $(APK_STAGE)
- unzip $(INPUT_APK) -d $(APK_STAGE)
- mkdir -p $(APK_STAGE)/lib/armeabi
- cp $(JNI_LIBS) $(APK_STAGE)/lib/armeabi
- $(APKBUILDER) $(OUTPUT_APK) -v -rf $(APK_STAGE)
- rm -rf $(APK_STAGE)
-
-libnative.so: native.o
- $(CC) -nostdlib -Wl,-soname,libhello-shared.so -Wl,-shared,-Bsymbolic -L$(NDK_BASE)/lib $^ $(LIBS) -o $@ -Wl,--no-undefined $(ALIB)
-
-native.o: native.cpp
- $(CC) -c -fpic $(INC) -I$(NDK_BASE)/include/nativehelper -o $@ $^
-
-clean:
- rm -rf *.o libnative.so $(APK_OUTPUT_DIR)
diff --git a/pdk/pndk/samples/samplejni/README b/pdk/pndk/samples/samplejni/README
deleted file mode 100644
index c5ed772..0000000
--- a/pdk/pndk/samples/samplejni/README
+++ /dev/null
@@ -1,43 +0,0 @@
-JNI Example
-
-This sample shows how to build a native code library, package it into an APK, and call it using JNI.
-
-Prerequesites
-
-You must install the Android SDK in order to build the Java APK. The Android SDK can be downloaded
-from
-
-http://code.google.com/android/download.html
-
-Build Steps:
-
-1) Create an Eclipse project to for the Java code.
-
- Launch Eclipse
- Choose File : New : Project...
- Choose Android : Android Project
- Choose Next
- Enter "JNIExample" into the Project name: field.
- Choose "Create project from existing source"
- Click the Browse button and browse to the pndk/samplejni directory
-
- Click Finish
-
-2) Build the Eclipse Project
-
- Select the JNIExample project in the Package Explorer
- Make sure that the menu item Project:Build Automatically is not checked.
- Choose Project:Build
-
- The resulting apk file ends up in bin/full/JNIExample.apk
-
-2) Build the shared library, insert the shared library into the APK file and resign the
- shared library.
-
- ANDROID_SDK_BASE=<directory where SDK is installed> make
-
-Install the APK on the device:
-
- adb install -r bin/full/JNIExample.apk
-
-Once the application is installed, you can run it by tapping on the "JNI Example" icon.
diff --git a/pdk/pndk/samples/samplejni/native.cpp b/pdk/pndk/samples/samplejni/native.cpp
deleted file mode 100644
index 2e5fa4d..0000000
--- a/pdk/pndk/samples/samplejni/native.cpp
+++ /dev/null
@@ -1,85 +0,0 @@
-#include <jni.h>
-#include <stdio.h>
-
-static jint
-add(JNIEnv *env, jobject thiz, jint a, jint b) {
-int result = a + b;
- printf("%d + %d = %d", a, b, result);
- return result;
-}
-
-static const char *classPathName = "com/example/jniexample/Native";
-
-static JNINativeMethod methods[] = {
- {"add", "(II)I", (void*)add },
-};
-
-/*
- * Register several native methods for one class.
- */
-static int registerNativeMethods(JNIEnv* env, const char* className,
- JNINativeMethod* gMethods, int numMethods)
-{
- jclass clazz;
-
- clazz = env->FindClass(className);
- if (clazz == NULL) {
- fprintf(stderr, "Native registration unable to find class '%s'", className);
- return JNI_FALSE;
- }
- if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
- fprintf(stderr, "RegisterNatives failed for '%s'", className);
- return JNI_FALSE;
- }
-
- return JNI_TRUE;
-}
-
-/*
- * Register native methods for all classes we know about.
- */
-static int registerNatives(JNIEnv* env)
-{
- if (!registerNativeMethods(env, classPathName,
- methods, sizeof(methods) / sizeof(methods[0]))) {
- return JNI_FALSE;
- }
-
- return JNI_TRUE;
-}
-
-/*
- * Set some test stuff up.
- *
- * Returns the JNI version on success, -1 on failure.
- */
-
-typedef union {
- JNIEnv* env;
- void* venv;
-} UnionJNIEnvToVoid;
-
-jint JNI_OnLoad(JavaVM* vm, void* reserved)
-{
- UnionJNIEnvToVoid uenv;
- uenv.venv = NULL;
- jint result = -1;
- JNIEnv* env = NULL;
-
- printf("JNI_OnLoad");
-
- if (vm->GetEnv(&uenv.venv, JNI_VERSION_1_4) != JNI_OK) {
- fprintf(stderr, "GetEnv failed");
- goto bail;
- }
- env = uenv.env;
-
- if (!registerNatives(env)) {
- fprintf(stderr, "registerNatives failed");
- }
-
- result = JNI_VERSION_1_4;
-
-bail:
- return result;
-}
diff --git a/pdk/pndk/samples/samplejni/res/drawable/icon.png b/pdk/pndk/samples/samplejni/res/drawable/icon.png
deleted file mode 100644
index 7502484..0000000
--- a/pdk/pndk/samples/samplejni/res/drawable/icon.png
+++ /dev/null
Binary files differ
diff --git a/pdk/pndk/samples/samplejni/res/values/strings.xml b/pdk/pndk/samples/samplejni/res/values/strings.xml
deleted file mode 100644
index a647beb..0000000
--- a/pdk/pndk/samples/samplejni/res/values/strings.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <string name="app_name">JNI Example</string>
-</resources>
diff --git a/pdk/pndk/samples/samplejni/src/com/example/jniexample/JNIExample.java b/pdk/pndk/samples/samplejni/src/com/example/jniexample/JNIExample.java
deleted file mode 100644
index 315ee21..0000000
--- a/pdk/pndk/samples/samplejni/src/com/example/jniexample/JNIExample.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.example.jniexample;
-
-import android.app.Activity;
-import android.os.Bundle;
-import android.widget.TextView;
-
-public class JNIExample extends Activity {
- /** Called when the activity is first created. */
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- TextView tv = new TextView(this);
- int sum = Native.add(2, 3);
- tv.setText("Native Code test: 2 + 3 = " + Integer.toString(sum));
- setContentView(tv);
- }
-}
-
-class Native {
- static {
- System.loadLibrary("native");
- }
-
- static native int add(int a, int b);
-}
diff --git a/pdk/sample/partner/company/mychipset/libaudio/Android.mk.stub b/pdk/sample/partner/company/mychipset/libaudio/Android.mk.stub
deleted file mode 100644
index d7c7524..0000000
--- a/pdk/sample/partner/company/mychipset/libaudio/Android.mk.stub
+++ /dev/null
@@ -1,20 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := libaudio
-
-LOCAL_SHARED_LIBRARIES := \
- libcutils \
- libutils \
- libmedia \
- libhardware
-
-LOCAL_SRC_FILES += MyAudioHardware.cpp
-
-LOCAL_CFLAGS +=
-
-LOCAL_C_INCLUDES +=
-
-LOCAL_STATIC_LIBRARIES += libaudiointerface
-
-include $(BUILD_SHARED_LIBRARY)
diff --git a/pdk/sample/partner/company/mychipset/libcamera/Android.mk.stub b/pdk/sample/partner/company/mychipset/libcamera/Android.mk.stub
deleted file mode 100755
index 29ec868..0000000
--- a/pdk/sample/partner/company/mychipset/libcamera/Android.mk.stub
+++ /dev/null
@@ -1,15 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES:= MyCameraHardware.cpp
-
-LOCAL_STATIC_LIBRARIES:= \
- libcamera-common
-
-LOCAL_SHARED_LIBRARIES:= libutils liblog
-
-LOCAL_MODULE:= libcamera
-
-include $(BUILD_SHARED_LIBRARY)
-
diff --git a/pdk/sample/partner/wifi_company/mychipset/Android.mk.stub b/pdk/sample/partner/wifi_company/mychipset/Android.mk.stub
deleted file mode 100644
index 2964d28..0000000
--- a/pdk/sample/partner/wifi_company/mychipset/Android.mk.stub
+++ /dev/null
@@ -1,53 +0,0 @@
-# Install firmware file for WiFi
-#
-#
-# where to install the file on the device
-#
-
-local_target_dir := $(TARGET_OUT_ETC)/wifi
-
-########################
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := MyFirmwareFile.bin
-
-LOCAL_MODULE_TAGS := user development
-
-LOCAL_MODULE_CLASS := ETC
-LOCAL_MODULE_PATH := $(local_target_dir)
-
-LOCAL_SRC_FILES := $(LOCAL_MODULE)
-
-include $(BUILD_PREBUILT)
-
-########################
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := MyFirmwareConfigFile.ini
-
-LOCAL_MODULE_TAGS := user development
-
-LOCAL_MODULE_CLASS := ETC
-LOCAL_MODULE_PATH := $(local_target_dir)
-
-LOCAL_SRC_FILES := $(LOCAL_MODULE)
-
-include $(BUILD_PREBUILT)
-
-########################
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := wlan.ko
-
-LOCAL_MODULE_TAGS := user development
-
-LOCAL_MODULE_CLASS := ETC
-LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/modules
-
-LOCAL_SRC_FILES := $(LOCAL_MODULE)
-
-include $(BUILD_PREBUILT)
-
-########################
-