From f89c98f418ac6fb34338d638c47020ff323503a9 Mon Sep 17 00:00:00 2001 From: harveysang Date: Mon, 24 Aug 2026 22:52:26 +0800 Subject: [PATCH] feat: add DeepSeek Harness plugin --- .../workflows/deepseek-harness-plugin-ci.yml | 48 + ...flight-avoids-device-rediscovery.i18n.yaml | 3 + ...ion-preflight-avoids-device-rediscovery.md | 29 + ...-preflight-avoids-device-rediscovery.zh.md | 29 + ...18-coremate-direct-phone-command.i18n.yaml | 3 + ...026-08-18-coremate-direct-phone-command.md | 29 + ...-08-18-coremate-direct-phone-command.zh.md | 29 + deepseek-harness-plugin/.gitattributes | 4 + deepseek-harness-plugin/.githooks/post-merge | 5 + .../.github/workflows/ci.yml | 34 + .../.github/workflows/release.yml | 65 + deepseek-harness-plugin/.gitignore | 6 + deepseek-harness-plugin/LICENSE | 21 + deepseek-harness-plugin/README.i18n.yaml | 3 + deepseek-harness-plugin/README.md | 305 + deepseek-harness-plugin/README.zh.md | 307 + deepseek-harness-plugin/SOURCE.md | 16 + .../assets/opengui-banner.svg | 26 + .../assets/platform-tools/MANIFEST.md | 15 + .../assets/platform-tools/darwin/NOTICE.txt | 21862 +++++++++++++++ .../assets/platform-tools/darwin/adb | Bin 0 -> 18844128 bytes .../platform-tools/darwin/source.properties | 2 + .../platform-tools/linux-x64/NOTICE.txt | 22321 ++++++++++++++++ .../assets/platform-tools/linux-x64/adb | Bin 0 -> 10642368 bytes .../linux-x64/source.properties | 2 + .../platform-tools/win32-x64/AdbWinApi.dll | Bin 0 -> 108184 bytes .../platform-tools/win32-x64/AdbWinUsbApi.dll | Bin 0 -> 73368 bytes .../platform-tools/win32-x64/NOTICE.txt | 21862 +++++++++++++++ .../assets/platform-tools/win32-x64/adb.exe | Bin 0 -> 8485016 bytes deepseek-harness-plugin/cordis.patch.yml | 3 + .../docs/implementation-plan.zh.md | 164 + .../docs/install-for-beginners.zh.md | 157 + .../docs/model-experience.md | 63 + .../docs/model-experience.zh.md | 63 + .../deepseek-harness-plugin-integration.md | 290 + deepseek-harness-plugin/docs/use-cases.md | 57 + deepseek-harness-plugin/docs/use-cases.zh.md | 57 + deepseek-harness-plugin/package.json | 136 + deepseek-harness-plugin/pnpm-lock.yaml | 5563 ++++ deepseek-harness-plugin/pnpm-workspace.yaml | 33 + .../scripts/dev-auto-reload.mjs | 217 + .../skills/opengui-coremate-install/SKILL.md | 34 + .../agents/openai.yaml | 7 + .../assets/opengui-mark.svg | 6 + .../assets/opengui-wordmark.svg | 9 + .../scripts/install-macos.sh | 207 + deepseek-harness-plugin/src/adb.ts | 359 + .../src/browser-control.ts | 223 + deepseek-harness-plugin/src/browser.ts | 394 + .../src/client/BrowserInstallPrompt.tsx | 180 + .../src/client/CoremateClaimBridge.tsx | 48 + .../src/client/CorematePromotionCard.tsx | 110 + .../src/client/CoremateTaskNotice.tsx | 69 + .../src/client/CoremateView.tsx | 286 + .../src/client/MirrorButton.tsx | 257 + .../src/client/OpenGuiMark.tsx | 39 + .../src/client/PhoneStream.tsx | 217 + .../src/client/TaskStopButton.tsx | 60 + .../src/client/coremate-trigger.ts | 161 + deepseek-harness-plugin/src/client/index.tsx | 124 + .../src/client/promotion-data.ts | 162 + .../src/client/session-bridge.ts | 62 + .../src/client/task-status-store.ts | 116 + .../src/client/video-decoder.ts | 93 + deepseek-harness-plugin/src/configuration.ts | 192 + deepseek-harness-plugin/src/device-fleet.ts | 145 + deepseek-harness-plugin/src/image.ts | 15 + deepseek-harness-plugin/src/index.ts | 983 + .../src/inherited-model.ts | 117 + deepseek-harness-plugin/src/invariant.ts | 25 + .../src/mirror-contract.ts | 58 + deepseek-harness-plugin/src/mirror-http.ts | 306 + deepseek-harness-plugin/src/model-routing.ts | 53 + deepseek-harness-plugin/src/phone-progress.ts | 271 + deepseek-harness-plugin/src/phone-task.ts | 233 + deepseek-harness-plugin/src/preview.ts | 93 + deepseek-harness-plugin/src/provider.ts | 99 + deepseek-harness-plugin/src/runtime.ts | 237 + deepseek-harness-plugin/src/scrcpy-stream.ts | 503 + deepseek-harness-plugin/src/scrcpy.ts | 854 + deepseek-harness-plugin/src/secure-zip.ts | 114 + deepseek-harness-plugin/src/suggestions.ts | 78 + deepseek-harness-plugin/src/websocket.ts | 97 + deepseek-harness-plugin/tests/adb.spec.ts | 77 + .../tests/browser-control.spec.ts | 70 + .../tests/browser-install-prompt.spec.ts | 47 + deepseek-harness-plugin/tests/browser.spec.ts | 124 + deepseek-harness-plugin/tests/bundle.spec.ts | 87 + .../tests/configuration.spec.ts | 127 + .../tests/coremate-claim-bridge.spec.ts | 17 + .../tests/coremate-trigger.spec.ts | 152 + .../tests/coremate-view.spec.ts | 41 + .../tests/dev-auto-reload.spec.ts | 100 + .../tests/device-fleet.spec.ts | 66 + .../fixtures/assembled/disabled.cordis.yml | 1 + .../fixtures/assembled/enabled.cordis.yml | 5 + .../tests/fixtures/assembled/root.cordis.yml | 19 + .../tests/fixtures/assembled/snapshot.ts | 51 + deepseek-harness-plugin/tests/image.spec.ts | 27 + .../tests/inherited-model.spec.ts | 116 + .../tests/install-skill.spec.ts | 90 + .../tests/loader-composition.spec.ts | 323 + .../tests/mirror-http.spec.ts | 126 + .../tests/model-routing.spec.ts | 55 + .../tests/phone-progress.spec.ts | 257 + .../tests/phone-task.spec.ts | 213 + deepseek-harness-plugin/tests/preview.spec.ts | 54 + .../tests/promotion.spec.ts | 116 + .../tests/provider.spec.ts | 41 + deepseek-harness-plugin/tests/runtime.spec.ts | 163 + .../tests/scrcpy-stream.spec.ts | 51 + deepseek-harness-plugin/tests/scrcpy.spec.ts | 309 + .../tests/secure-zip.spec.ts | 56 + .../tests/session-bridge.spec.ts | 134 + .../tests/stream-manager.spec.ts | 150 + .../tests/suggestions.spec.ts | 37 + .../tests/task-status-store.spec.ts | 44 + deepseek-harness-plugin/tsconfig.json | 27 + deepseek-harness-plugin/tsdown.config.ts | 59 + 119 files changed, 84957 insertions(+) create mode 100644 .github/workflows/deepseek-harness-plugin-ci.yml create mode 100644 deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.i18n.yaml create mode 100644 deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.md create mode 100644 deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.zh.md create mode 100644 deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.i18n.yaml create mode 100644 deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.md create mode 100644 deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.zh.md create mode 100644 deepseek-harness-plugin/.gitattributes create mode 100755 deepseek-harness-plugin/.githooks/post-merge create mode 100644 deepseek-harness-plugin/.github/workflows/ci.yml create mode 100644 deepseek-harness-plugin/.github/workflows/release.yml create mode 100644 deepseek-harness-plugin/.gitignore create mode 100644 deepseek-harness-plugin/LICENSE create mode 100644 deepseek-harness-plugin/README.i18n.yaml create mode 100644 deepseek-harness-plugin/README.md create mode 100644 deepseek-harness-plugin/README.zh.md create mode 100644 deepseek-harness-plugin/SOURCE.md create mode 100644 deepseek-harness-plugin/assets/opengui-banner.svg create mode 100644 deepseek-harness-plugin/assets/platform-tools/MANIFEST.md create mode 100644 deepseek-harness-plugin/assets/platform-tools/darwin/NOTICE.txt create mode 100755 deepseek-harness-plugin/assets/platform-tools/darwin/adb create mode 100644 deepseek-harness-plugin/assets/platform-tools/darwin/source.properties create mode 100644 deepseek-harness-plugin/assets/platform-tools/linux-x64/NOTICE.txt create mode 100755 deepseek-harness-plugin/assets/platform-tools/linux-x64/adb create mode 100644 deepseek-harness-plugin/assets/platform-tools/linux-x64/source.properties create mode 100644 deepseek-harness-plugin/assets/platform-tools/win32-x64/AdbWinApi.dll create mode 100644 deepseek-harness-plugin/assets/platform-tools/win32-x64/AdbWinUsbApi.dll create mode 100644 deepseek-harness-plugin/assets/platform-tools/win32-x64/NOTICE.txt create mode 100644 deepseek-harness-plugin/assets/platform-tools/win32-x64/adb.exe create mode 100644 deepseek-harness-plugin/cordis.patch.yml create mode 100644 deepseek-harness-plugin/docs/implementation-plan.zh.md create mode 100644 deepseek-harness-plugin/docs/install-for-beginners.zh.md create mode 100644 deepseek-harness-plugin/docs/model-experience.md create mode 100644 deepseek-harness-plugin/docs/model-experience.zh.md create mode 100644 deepseek-harness-plugin/docs/research/deepseek-harness-plugin-integration.md create mode 100644 deepseek-harness-plugin/docs/use-cases.md create mode 100644 deepseek-harness-plugin/docs/use-cases.zh.md create mode 100644 deepseek-harness-plugin/package.json create mode 100644 deepseek-harness-plugin/pnpm-lock.yaml create mode 100644 deepseek-harness-plugin/pnpm-workspace.yaml create mode 100755 deepseek-harness-plugin/scripts/dev-auto-reload.mjs create mode 100644 deepseek-harness-plugin/skills/opengui-coremate-install/SKILL.md create mode 100644 deepseek-harness-plugin/skills/opengui-coremate-install/agents/openai.yaml create mode 100644 deepseek-harness-plugin/skills/opengui-coremate-install/assets/opengui-mark.svg create mode 100644 deepseek-harness-plugin/skills/opengui-coremate-install/assets/opengui-wordmark.svg create mode 100755 deepseek-harness-plugin/skills/opengui-coremate-install/scripts/install-macos.sh create mode 100644 deepseek-harness-plugin/src/adb.ts create mode 100644 deepseek-harness-plugin/src/browser-control.ts create mode 100644 deepseek-harness-plugin/src/browser.ts create mode 100644 deepseek-harness-plugin/src/client/BrowserInstallPrompt.tsx create mode 100644 deepseek-harness-plugin/src/client/CoremateClaimBridge.tsx create mode 100644 deepseek-harness-plugin/src/client/CorematePromotionCard.tsx create mode 100644 deepseek-harness-plugin/src/client/CoremateTaskNotice.tsx create mode 100644 deepseek-harness-plugin/src/client/CoremateView.tsx create mode 100644 deepseek-harness-plugin/src/client/MirrorButton.tsx create mode 100644 deepseek-harness-plugin/src/client/OpenGuiMark.tsx create mode 100644 deepseek-harness-plugin/src/client/PhoneStream.tsx create mode 100644 deepseek-harness-plugin/src/client/TaskStopButton.tsx create mode 100644 deepseek-harness-plugin/src/client/coremate-trigger.ts create mode 100644 deepseek-harness-plugin/src/client/index.tsx create mode 100644 deepseek-harness-plugin/src/client/promotion-data.ts create mode 100644 deepseek-harness-plugin/src/client/session-bridge.ts create mode 100644 deepseek-harness-plugin/src/client/task-status-store.ts create mode 100644 deepseek-harness-plugin/src/client/video-decoder.ts create mode 100644 deepseek-harness-plugin/src/configuration.ts create mode 100644 deepseek-harness-plugin/src/device-fleet.ts create mode 100644 deepseek-harness-plugin/src/image.ts create mode 100644 deepseek-harness-plugin/src/index.ts create mode 100644 deepseek-harness-plugin/src/inherited-model.ts create mode 100644 deepseek-harness-plugin/src/invariant.ts create mode 100644 deepseek-harness-plugin/src/mirror-contract.ts create mode 100644 deepseek-harness-plugin/src/mirror-http.ts create mode 100644 deepseek-harness-plugin/src/model-routing.ts create mode 100644 deepseek-harness-plugin/src/phone-progress.ts create mode 100644 deepseek-harness-plugin/src/phone-task.ts create mode 100644 deepseek-harness-plugin/src/preview.ts create mode 100644 deepseek-harness-plugin/src/provider.ts create mode 100644 deepseek-harness-plugin/src/runtime.ts create mode 100644 deepseek-harness-plugin/src/scrcpy-stream.ts create mode 100644 deepseek-harness-plugin/src/scrcpy.ts create mode 100644 deepseek-harness-plugin/src/secure-zip.ts create mode 100644 deepseek-harness-plugin/src/suggestions.ts create mode 100644 deepseek-harness-plugin/src/websocket.ts create mode 100644 deepseek-harness-plugin/tests/adb.spec.ts create mode 100644 deepseek-harness-plugin/tests/browser-control.spec.ts create mode 100644 deepseek-harness-plugin/tests/browser-install-prompt.spec.ts create mode 100644 deepseek-harness-plugin/tests/browser.spec.ts create mode 100644 deepseek-harness-plugin/tests/bundle.spec.ts create mode 100644 deepseek-harness-plugin/tests/configuration.spec.ts create mode 100644 deepseek-harness-plugin/tests/coremate-claim-bridge.spec.ts create mode 100644 deepseek-harness-plugin/tests/coremate-trigger.spec.ts create mode 100644 deepseek-harness-plugin/tests/coremate-view.spec.ts create mode 100644 deepseek-harness-plugin/tests/dev-auto-reload.spec.ts create mode 100644 deepseek-harness-plugin/tests/device-fleet.spec.ts create mode 100644 deepseek-harness-plugin/tests/fixtures/assembled/disabled.cordis.yml create mode 100644 deepseek-harness-plugin/tests/fixtures/assembled/enabled.cordis.yml create mode 100644 deepseek-harness-plugin/tests/fixtures/assembled/root.cordis.yml create mode 100644 deepseek-harness-plugin/tests/fixtures/assembled/snapshot.ts create mode 100644 deepseek-harness-plugin/tests/image.spec.ts create mode 100644 deepseek-harness-plugin/tests/inherited-model.spec.ts create mode 100644 deepseek-harness-plugin/tests/install-skill.spec.ts create mode 100644 deepseek-harness-plugin/tests/loader-composition.spec.ts create mode 100644 deepseek-harness-plugin/tests/mirror-http.spec.ts create mode 100644 deepseek-harness-plugin/tests/model-routing.spec.ts create mode 100644 deepseek-harness-plugin/tests/phone-progress.spec.ts create mode 100644 deepseek-harness-plugin/tests/phone-task.spec.ts create mode 100644 deepseek-harness-plugin/tests/preview.spec.ts create mode 100644 deepseek-harness-plugin/tests/promotion.spec.ts create mode 100644 deepseek-harness-plugin/tests/provider.spec.ts create mode 100644 deepseek-harness-plugin/tests/runtime.spec.ts create mode 100644 deepseek-harness-plugin/tests/scrcpy-stream.spec.ts create mode 100644 deepseek-harness-plugin/tests/scrcpy.spec.ts create mode 100644 deepseek-harness-plugin/tests/secure-zip.spec.ts create mode 100644 deepseek-harness-plugin/tests/session-bridge.spec.ts create mode 100644 deepseek-harness-plugin/tests/stream-manager.spec.ts create mode 100644 deepseek-harness-plugin/tests/suggestions.spec.ts create mode 100644 deepseek-harness-plugin/tests/task-status-store.spec.ts create mode 100644 deepseek-harness-plugin/tsconfig.json create mode 100644 deepseek-harness-plugin/tsdown.config.ts diff --git a/.github/workflows/deepseek-harness-plugin-ci.yml b/.github/workflows/deepseek-harness-plugin-ci.yml new file mode 100644 index 0000000..0812828 --- /dev/null +++ b/.github/workflows/deepseek-harness-plugin-ci.yml @@ -0,0 +1,48 @@ +name: DeepSeek Harness Plugin CI + +on: + push: + paths: + - 'deepseek-harness-plugin/**' + - '.github/workflows/deepseek-harness-plugin-ci.yml' + pull_request: + paths: + - 'deepseek-harness-plugin/**' + - '.github/workflows/deepseek-harness-plugin-ci.yml' + +permissions: + contents: read + +jobs: + test: + strategy: + matrix: + node: [22.19.0, 24] + runs-on: ubuntu-latest + defaults: + run: + working-directory: deepseek-harness-plugin + steps: + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + with: + version: 11.19.0 + - uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node }} + cache: pnpm + cache-dependency-path: deepseek-harness-plugin/pnpm-lock.yaml + - run: pnpm install --frozen-lockfile + - run: pnpm run check + - run: mkdir -p .artifacts && npm pack --pack-destination .artifacts + - name: Verify package contents and bundled ADB executables + shell: bash + run: | + archive="$(find .artifacts -maxdepth 1 -name '*.tgz' -print -quit)" + test -n "$archive" + tar -tzf "$archive" > "$RUNNER_TEMP/archive-files.txt" + tar -tvzf "$archive" > "$RUNNER_TEMP/archive-verbose.txt" + grep -Fx 'package/lib/index.js' "$RUNNER_TEMP/archive-files.txt" + grep -Fx 'package/cordis.patch.yml' "$RUNNER_TEMP/archive-files.txt" + grep -E '^-rwxr-xr-x .* package/assets/platform-tools/darwin/adb$' "$RUNNER_TEMP/archive-verbose.txt" + grep -E '^-rwxr-xr-x .* package/assets/platform-tools/linux-x64/adb$' "$RUNNER_TEMP/archive-verbose.txt" diff --git a/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.i18n.yaml b/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.i18n.yaml new file mode 100644 index 0000000..a7c03d7 --- /dev/null +++ b/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.i18n.yaml @@ -0,0 +1,3 @@ +# Bilingual-pair consistency record. Both languages carry equal authority. +2026-08-18-phone-action-preflight-avoids-device-rediscovery.md: 0c4ea7f6922b7c6d9c689be2bc44a36128323679 +2026-08-18-phone-action-preflight-avoids-device-rediscovery.zh.md: a9ade83506dba048bd7285e3cf20ba5cb5dd6bb0 diff --git a/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.md b/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.md new file mode 100644 index 0000000..0c4ea7f --- /dev/null +++ b/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.md @@ -0,0 +1,29 @@ +# Agent Note: Phone action preflight avoids device rediscovery + +Status: implemented + +English | [中文](2026-08-18-phone-action-preflight-avoids-device-rediscovery.zh.md) + +## Problem + +Every `phone_control` call ran `adb devices -l`, including calls after the child had locked a serial. The fourth identical no-progress action checked its repetition fuse only after that discovery command, so an action documented to fail before ADB still accessed the device service. Explicit observe or wait results that changed the screenshot also left the old repetition count stored. Unit tests covered the state helpers but did not boot the plugin through the Loader or prove registry disposal. + +## Decision + +The first observation discovers and locks one authorized serial. Every later action uses that serial directly with `-s`; a disconnected or unauthorized target fails its addressed ADB command and the task never selects another phone. Mutation validation builds the allowlisted command and checks the repetition fuse before resolving the cached serial or invoking ADB. Publishing any observation whose screenshot fingerprint differs from the preceding observation clears the repetition state. + +Observation identifiers use the package-owned `ObservationId` brand after tool-input validation and generation. A keyless subprocess fixture loads the real bundle patch through the Harness app boot and Loader, snapshots the model-visible provider and tool protocol, disposes the plugin fiber, and verifies that its routes and tools disappear. The fixture copies writable Loader configuration into its isolated temporary directory before testing disposal. + +## Alternatives considered + +**Re-enumerate devices before every action.** This preserved a custom disconnect diagnostic, but paid an extra ADB process for every action and let the preflight fuse touch ADB. Addressed commands already report disconnect and authorization failures without allowing device switching. + +**Keep no-progress clearing only in mutation completion.** This missed changed frames produced by explicit observe and wait calls, allowing a stale count to become active if a later frame matched the older fingerprint. + +**Retain helper-only tests.** Pure tests are fast but cannot prove Loader patch composition, model-visible schemas, or Cordis fiber disposal. + +## Consequences + +Every action after initial discovery removes one `adb devices -l` process from the critical path, and the fourth identical unchanged mutation fails before any ADB process. Disconnect errors now come from the fixed-serial ADB operation instead of a preceding custom enumeration diagnostic. Changed observations reset the repetition fuse regardless of how the observation was requested. + +The Loader smoke adds test-only app-boot, local settings and attachment providers, and their subprocess harness. It does not contact a phone or model endpoint; real-device latency and endpoint compatibility remain deployment smoke responsibilities. diff --git a/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.zh.md b/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.zh.md new file mode 100644 index 0000000..a9ade83 --- /dev/null +++ b/deepseek-harness-plugin/.agents/notes/implemented/bug-fix/2026-08-18-phone-action-preflight-avoids-device-rediscovery.zh.md @@ -0,0 +1,29 @@ +# Agent Note: 手机 action 预检避免重复设备发现 + +Status: implemented + +[English](2026-08-18-phone-action-preflight-avoids-device-rediscovery.md) | 中文 + +## Problem + +每次 `phone_control` 调用都会执行 `adb devices -l`,包括子任务已锁定 serial 后的调用。第四次相同无进展 action 只在该发现命令之后检查重复保护,因此按文档应在 ADB 前失败的 action 仍会访问设备服务。显式 observe 或 wait 得到变化截图时,旧的重复计数也会继续保留。单元测试覆盖了状态 helper,但没有通过 Loader 启动插件,也没有证明 registry 会随 fiber 清理。 + +## Decision + +首次观察发现并锁定一台已授权设备。后续 action 都通过 `-s` 直接使用该 serial;目标断开或失去授权时,定向 ADB 命令失败,任务不会选择另一台手机。修改操作的校验会先构造白名单命令并检查重复保护,然后才解析缓存 serial 或调用 ADB。任何新观察的截图 fingerprint 与前一观察不同时,发布该观察会清除重复状态。 + +观察标识在工具输入校验和生成后使用包拥有的 `ObservationId` brand。免密钥子进程 fixture 通过 Harness app boot 和 Loader 加载真实 bundle patch,对模型可见的 provider 与工具协议生成 snapshot,处置插件 fiber,并验证路由和工具随之消失。Fixture 在测试处置前把 Loader 可写配置复制到隔离的临时目录。 + +## Alternatives considered + +**每次 action 前重新枚举设备。** 这种方案保留自定义断开诊断,但每次 action 都多执行一个 ADB 进程,而且使预检保护仍会接触 ADB。固定 serial 的定向命令已经可以报告断开和授权错误,并且不会允许切换设备。 + +**只在修改操作完成时清除无进展状态。** 这种方案会遗漏显式 observe 和 wait 产生的变化画面;如果后续画面再次匹配更早的 fingerprint,旧计数会重新生效。 + +**只保留 helper 单元测试。** 纯函数测试速度快,但不能证明 Loader patch 组合、模型可见 schema 或 Cordis fiber 处置。 + +## Consequences + +首次发现后的每次 action 都从关键路径移除一个 `adb devices -l` 进程,第四次相同且画面未变化的修改会在任何 ADB 进程前失败。断开错误改由固定 serial 的 ADB 操作报告,不再来自提前执行的自定义枚举诊断。无论通过哪种方式请求观察,只要画面变化就会重置重复保护。 + +Loader smoke 增加仅供测试使用的 app-boot、本地设置与附件 provider,以及子进程 harness。它不连接手机或模型端点;真机延迟和端点兼容性仍由部署 smoke 负责验证。 diff --git a/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.i18n.yaml b/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.i18n.yaml new file mode 100644 index 0000000..5408fd7 --- /dev/null +++ b/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.i18n.yaml @@ -0,0 +1,3 @@ +# Bilingual-pair consistency record. Both languages carry equal authority. +2026-08-18-coremate-direct-phone-command.md: 6631d2477d8b94d4a8af3aa3196d7739a96a588e +2026-08-18-coremate-direct-phone-command.zh.md: 3733112a277464729833efc77956e58ec7a44987 diff --git a/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.md b/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.md new file mode 100644 index 0000000..a43cd03 --- /dev/null +++ b/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.md @@ -0,0 +1,29 @@ +# Agent Note: CoreMate direct phone command + +Status: implemented + +English | [中文](2026-08-18-coremate-direct-phone-command.zh.md) + +## Problem + +Starting a phone task required the parent model to select `phone_agent`, even when the human had already expressed that intent. A direct command still had to preserve the same phone-model configuration, child persona, tool restriction, ADB policy, cancellation, and task result semantics. Independent command and tool implementations could drift or control the same deployment-selected phone concurrently. + +## Decision + +The plugin registers `/coremate ` through the official Harness command registry. The command sends its trimmed argument directly to a package-owned `PhoneTaskCoordinator`; it never sends the command line to the parent model. `phone_agent` calls the same coordinator, which owns configuration checks, credential resolution, child creation, settlement, and teardown cancellation through one injected start operation. + +One plugin instance admits one phone task at a time across both entry points. A competing call fails before model or ADB access because every task selects the same first authorized phone. Plugin disposal aborts the active child signal and awaits settlement. The tool preserves every final content block; the generic command result joins final text blocks and reports a stable run-complete message when none exist. + +## Alternatives considered + +**Convert `/coremate` into a parent-model prompt.** This would spend a parent-model request and leave tool selection nondeterministic even though the command already names the desired execution path. + +**Invoke the registered `phone_agent` tool from the command handler.** The tool runtime owns model-call scheduling and logging, not direct UI composition. An internal coordinator gives both adapters one implementation without fabricating a model tool call. + +**Allow command and tool tasks to overlap.** Per-child tool serialization does not prevent two children from selecting and controlling the same physical phone. A plugin-wide admission check fails predictably before either shared resource is touched. + +**Project child screenshots into the command result.** The official generic command result accepts text and an optional source event, while the phone screenshots belong to the child session. A client-specific projection would enlarge the plugin beyond the host-only command feature. + +## Consequences + +Humans can address the phone runner deterministically with one slash command, while ordinary model-led delegation remains available. Direct commands avoid parent-model tokens but display text only. A second session cannot run a phone task concurrently through the same plugin instance, even if a deployment later connects multiple authorized phones; adding explicit device selection would require revisiting that admission rule. diff --git a/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.zh.md b/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.zh.md new file mode 100644 index 0000000..9534307 --- /dev/null +++ b/deepseek-harness-plugin/.agents/notes/implemented/feature/2026-08-18-coremate-direct-phone-command.zh.md @@ -0,0 +1,29 @@ +# Agent Note: CoreMate 直接手机命令 + +Status: implemented + +[English](2026-08-18-coremate-direct-phone-command.md) | 中文 + +## Problem + +启动手机任务必须由父模型选择 `phone_agent`,即使用户已经明确表达该意图。直接命令仍需保持相同的手机模型配置、子任务 persona、工具限制、ADB policy、取消和任务结果语义。命令与工具各自实现会产生行为偏差,也可能同时控制部署所选择的同一台手机。 + +## Decision + +插件通过官方 Harness 命令 registry 注册 `/coremate `。命令把 trim 后的参数直接交给包内 `PhoneTaskCoordinator`,不会把命令行发送给父模型。`phone_agent` 调用同一个 coordinator;该模块通过一个注入的启动操作统一拥有配置检查、凭据解析、子任务创建、任务结算和卸载取消。 + +同一插件实例在两个入口之间一次只接纳一个手机任务。由于每个任务都会选择同一台排序第一的已授权手机,并发调用会在访问模型或 ADB 前失败。插件卸载会中止活动子任务的 signal 并等待任务结束。工具会保留所有最终 content block;通用命令结果会连接最终文本 block,没有文本时返回稳定的 run 完成消息。 + +## Alternatives considered + +**把 `/coremate` 转换为父模型 prompt。** 这会消耗一次父模型请求,而且即使命令已经指定执行路径,工具选择仍具有不确定性。 + +**从命令 handler 调用已注册的 `phone_agent` 工具。** 工具 runtime 管理模型调用的调度和日志,不负责直接 UI 组合。内部 coordinator 让两个 adapter 共用一个实现,并且不伪造模型工具调用。 + +**允许命令和工具任务重叠。** 子任务内部的工具串行不能阻止两个子任务选择并控制同一台实体手机。插件级接纳检查会在访问共享资源前给出确定失败。 + +**把子任务截图投影到命令结果。** 官方通用命令结果接受文本和可选 source event,而手机截图属于子会话。客户端专用投影会让插件范围超出仅在 host 注册命令的功能。 + +## Consequences + +用户可以用一个斜杠命令确定地调用手机 runner,同时仍可使用普通的模型委派。直接命令不消耗父模型 token,但只显示文本。即使部署以后连接多台已授权手机,第二个会话也不能通过同一插件实例并发运行手机任务;增加显式设备选择时必须重新评估这项接纳规则。 diff --git a/deepseek-harness-plugin/.gitattributes b/deepseek-harness-plugin/.gitattributes new file mode 100644 index 0000000..ce33100 --- /dev/null +++ b/deepseek-harness-plugin/.gitattributes @@ -0,0 +1,4 @@ +assets/platform-tools/darwin/adb binary +assets/platform-tools/linux-x64/adb binary +assets/platform-tools/win32-x64/*.dll binary +assets/platform-tools/win32-x64/*.exe binary diff --git a/deepseek-harness-plugin/.githooks/post-merge b/deepseek-harness-plugin/.githooks/post-merge new file mode 100755 index 0000000..03246c2 --- /dev/null +++ b/deepseek-harness-plugin/.githooks/post-merge @@ -0,0 +1,5 @@ +#!/usr/bin/env bash +set -euo pipefail + +repo_root="$(git rev-parse --show-toplevel)" +exec node "${repo_root}/scripts/dev-auto-reload.mjs" after-pull diff --git a/deepseek-harness-plugin/.github/workflows/ci.yml b/deepseek-harness-plugin/.github/workflows/ci.yml new file mode 100644 index 0000000..bd81bc0 --- /dev/null +++ b/deepseek-harness-plugin/.github/workflows/ci.yml @@ -0,0 +1,34 @@ +name: CI + +on: + push: + pull_request: + +permissions: + contents: read + +jobs: + test: + strategy: + matrix: + node: [22.19.0, 24] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + with: + version: 11.19.0 + - uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node }} + cache: pnpm + - run: pnpm install --frozen-lockfile + - run: pnpm run check + - run: mkdir -p .artifacts && npm pack --pack-destination .artifacts + - name: Verify bundled ADB executables + shell: bash + run: | + archive="$(find .artifacts -maxdepth 1 -name '*.tgz' -print -quit)" + tar -tvzf "$archive" > "$RUNNER_TEMP/archive-verbose.txt" + grep -E '^-rwxr-xr-x .* package/assets/platform-tools/darwin/adb$' "$RUNNER_TEMP/archive-verbose.txt" + grep -E '^-rwxr-xr-x .* package/assets/platform-tools/linux-x64/adb$' "$RUNNER_TEMP/archive-verbose.txt" diff --git a/deepseek-harness-plugin/.github/workflows/release.yml b/deepseek-harness-plugin/.github/workflows/release.yml new file mode 100644 index 0000000..467a6f1 --- /dev/null +++ b/deepseek-harness-plugin/.github/workflows/release.yml @@ -0,0 +1,65 @@ +name: GitHub Release + +on: + push: + tags: + - 'v*' + +permissions: + contents: write + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: pnpm/action-setup@v4 + with: + version: 11.19.0 + + - uses: actions/setup-node@v4 + with: + node-version: 22.19.0 + cache: pnpm + + - name: Verify tag matches package version + shell: bash + run: test "v$(node -p "require('./package.json').version")" = "$GITHUB_REF_NAME" + + - run: pnpm install --frozen-lockfile + - run: pnpm run check + + - name: Pack release artifact + shell: bash + run: | + mkdir -p .artifacts + npm pack --pack-destination .artifacts + + - name: Verify artifact and write checksum + shell: bash + run: | + archive="$(find .artifacts -maxdepth 1 -name '*.tgz' -print -quit)" + test -n "$archive" + tar -tzf "$archive" > "$RUNNER_TEMP/archive-files.txt" + tar -tvzf "$archive" > "$RUNNER_TEMP/archive-verbose.txt" + grep -Fx 'package/lib/index.js' "$RUNNER_TEMP/archive-files.txt" + grep -Fx 'package/cordis.patch.yml' "$RUNNER_TEMP/archive-files.txt" + grep -E '^-rwxr-xr-x .* package/assets/platform-tools/darwin/adb$' "$RUNNER_TEMP/archive-verbose.txt" + grep -E '^-rwxr-xr-x .* package/assets/platform-tools/linux-x64/adb$' "$RUNNER_TEMP/archive-verbose.txt" + archive_name="$(basename "$archive")" + ( + cd .artifacts + sha256sum "$archive_name" > "$archive_name.sha256" + ) + + - name: Create GitHub Release + env: + GH_TOKEN: ${{ github.token }} + run: >- + gh release create "$GITHUB_REF_NAME" + .artifacts/*.tgz + .artifacts/*.sha256 + --verify-tag + --title "dsh-coremate-mobile $GITHUB_REF_NAME" + --generate-notes diff --git a/deepseek-harness-plugin/.gitignore b/deepseek-harness-plugin/.gitignore new file mode 100644 index 0000000..16c1ab0 --- /dev/null +++ b/deepseek-harness-plugin/.gitignore @@ -0,0 +1,6 @@ +node_modules/ +lib/ +coverage/ +.artifacts/ +*.tgz +.DS_Store diff --git a/deepseek-harness-plugin/LICENSE b/deepseek-harness-plugin/LICENSE new file mode 100644 index 0000000..c1f7a78 --- /dev/null +++ b/deepseek-harness-plugin/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 DeepSeek + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/deepseek-harness-plugin/README.i18n.yaml b/deepseek-harness-plugin/README.i18n.yaml new file mode 100644 index 0000000..4cbabc2 --- /dev/null +++ b/deepseek-harness-plugin/README.i18n.yaml @@ -0,0 +1,3 @@ +# Bilingual-pair consistency record. Both languages carry equal authority. +README.md: 1e6181df4e9a161e6eb20e05f4d3425456b83c01 +README.zh.md: 857edcf990cda065eb3dccad83abc883418d6d9d diff --git a/deepseek-harness-plugin/README.md b/deepseek-harness-plugin/README.md new file mode 100644 index 0000000..dd1d8f4 --- /dev/null +++ b/deepseek-harness-plugin/README.md @@ -0,0 +1,305 @@ +# OpenGUI + +English | [中文](README.zh.md) + +`dsh-coremate-mobile` is the OpenGUI plugin for DeepSeek Harness. It uses restricted child tasks to control authorized Android phones and a plugin-managed local browser. It provides `/opengui` and the `phone_agent` and `browser_agent` delegation tools. OpenGUI prefers the model already selected in the receiving DSH conversation; a separate visual model is only a compatibility fallback. The legacy `/coremate` command remains available for compatibility. + +The plugin does not modify DeepSeek Harness and does not depend on CoreMateDesktop2, system Chrome, Python, or Hermes CLI. Chromium is installed on demand only after the first browser task receives user approval. + +## Requirements and support + +Before installing, confirm that: + +- The official DeepSeek Harness is installed and starts successfully. The current verified baseline is `0.1.0-rc.7`. +- Node.js is `^22.19.0` or `>=24`. +- The installation machine can access the public GitHub Releases for this repository. +- The DSH conversation model should support image input and tool calling. If it does not, OpenGUI can guide the user through configuring a separate OpenAI-compatible visual-model fallback. +- Every non-empty `/opengui` or `@OpenGUI` task requires at least one authorized and selected Android phone, including tasks that the router later sends only to the browser. +- The host is macOS arm64/x64, Linux x64, or Windows x64. Bundled ADB is not currently available for Linux arm64 or Windows arm64. + +Chinese-speaking users who are not comfortable with terminals, Git, or YAML can follow the [beginner installation guide](docs/install-for-beginners.zh.md). + +## Install the plugin (shared by both setup paths) + +The examples use the `web` profile and the default `$DSH_HOME=~/.dsh`. Substitute your profile or custom `DSH_HOME` where needed. + +### macOS: install with the Codex Skill + +Ask Codex to install the repository skill from `skills/opengui-coremate-install`, then invoke `$opengui-coremate-install`. The Skill downloads and verifies the pinned `v0.1.5` package from the public Release, preserves the rest of the `web` profile, and starts DSH only when it is not already running. GitHub login is not required. + +If DSH is already listening on port 3080, the installer leaves that process untouched and reports that a manual restart is required. The manual package flow below remains available on every supported host. + +### 1. Download the release package + +Download these files from [GitHub Releases](https://github.com/Core-Mate/Coremate-Mobile-Plugin/releases): + +- `dsh-coremate-mobile-0.1.5.tgz` +- `dsh-coremate-mobile-0.1.5.tgz.sha256` + +Do not extract the `.tgz`, and do not use GitHub's automatically generated source archives. + +From the directory containing both files, verify the package: + +```sh +# Linux +sha256sum -c dsh-coremate-mobile-0.1.5.tgz.sha256 + +# macOS +shasum -a 256 -c dsh-coremate-mobile-0.1.5.tgz.sha256 +``` + +On Windows PowerShell, run `Get-FileHash .\dsh-coremate-mobile-0.1.5.tgz -Algorithm SHA256` and `Get-Content .\dsh-coremate-mobile-0.1.5.tgz.sha256`, then confirm that the displayed hashes match. + +### 2. Install into a Harness profile + +```sh +dsh plugin --profile web add /absolute/path/dsh-coremate-mobile-0.1.5.tgz +``` + +If you run the official CLI through `npx`, replace `dsh` in the commands with: + +```text +npx @deepseek-ai/dsh@0.1.0-rc.7 +``` + +If the first installation stops with `ERR_PNPM_IGNORED_BUILDS`, merge these decisions into the existing `$DSH_HOME/profiles/web/pnpm-workspace.yaml`, then rerun the same installation command: + +```yaml +allowBuilds: + '@google/genai': false + protobufjs: false +``` + +Do not replace the entire file with those three lines. + +After installation, start with the Web UI. A separate model configuration is optional and is used only as a fallback or when explicitly selected. + +## Current-model-first setup in the Web GUI (recommended) + +### 1. Start Harness + +```sh +dsh web +``` + +### 2. Verify the command + +Send this in the Web UI: + +```text +/opengui +``` + +An empty command always returns the usage text. It never opens model setup: + +```text +Usage: /opengui +``` + +Opening DSH, selecting phones, and manually opening one or more mirror windows also never requires an OpenGUI model configuration. + +Run the first task with text after the command: + +```text +/opengui Open Settings and report the Android version +``` + +You can also choose the native `@OpenGUI` candidate and type the same task. A bare `@OpenGUI` behaves like an empty `/opengui` and only shows usage. Both paths delegate to the same command lifecycle. + +OpenGUI reuses the current DSH provider, model, and output-token limit. A model that explicitly declares image input runs without a prompt. If capability metadata is absent, OpenGUI asks once whether to trust the current model; accepting is remembered globally even after switching providers or models. A model that explicitly rejects images enters the dedicated fallback setup instead. + +If the inherited model later returns an image- or tool-capability error, OpenGUI does not retry the task because that could repeat phone or browser side effects. It offers to configure the fallback and asks the user to resubmit after configuration. + +## Optional dedicated visual-model fallback + +Configure this only when the current DSH model is incompatible or when `modelStrategy` is explicitly set to `dedicated`. + +The recommended user configuration is `$DSH_HOME/settings.yaml`: + +```yaml +coremate-mobile: + baseURL: https://gateway.example/v1 + api: openai-responses + model: vision-model +``` + +Change `api` to `openai-completions` only when the provider explicitly requires the Chat Completions protocol. + +Store the API key in `$DSH_HOME/.credentials.yaml`. Do not put it in `settings.yaml` or commit it to Git: + +```yaml +COREMATE_MOBILE_API_KEY: sk-... +``` + +After manually creating the credential file on macOS or Linux, run: + +```sh +chmod 600 "${DSH_HOME:-$HOME/.dsh}/.credentials.yaml" +``` + +When `DSH_HOME` is unset, the command above uses `~/.dsh/.credentials.yaml`. + +## Verify installation and loading + +First inspect the profile's composed configuration: + +```sh +dsh --profile web --dump-config +``` + +The output should contain a `dsh-coremate-mobile` layer and an `id: coremate-mobile` row. This proves that the bundle is in the configuration, but it does not prove that the plugin loaded at runtime. + +Start Harness: + +```sh +dsh web +``` + +Send the following as a standalone message in the Web UI: + +```text +/opengui +``` + +Expected response: + +```text +Usage: /opengui +``` + +This confirms that the plugin module and command loaded successfully. No model configuration is read for an empty command. + +## Run the first phone task + +Keep the phone unlocked and authorized for USB debugging, then send: + +```text +/opengui Open Settings and report the Android version +``` + +The native **OpenGUI** tab owns phone selection and status. One authorized phone is selected automatically. With multiple phones, check any subset in that workbench before sending `/opengui` or `@OpenGUI`. A non-empty task pauses before model routing until a phone is ready. Device selection remains editable while waiting, then locks after detection until the whole batch finishes. + +The native **OpenGUI** tab is a full-width device wall. It renders every visible phone in Host order and appends one connection guide, without reserving empty slots. Connected phones expand automatically into a complete, low-latency H.264 view while the tab, card, and page remain visible. First use asks before downloading and verifying the pinned scrcpy server; unsupported browsers or stream failures fall back to an uncropped JPEG preview. Each phone can also be opened in an optional independent scrcpy window. + +Selecting `@OpenGUI` opens the native input menu with free-form, QA, operations, and game-assistant choices. A scene only fills the composer and never submits automatically. A non-empty OpenGUI submission releases the composer immediately while the task continues in its owner session. Starting another DSH session opens a genuinely blank conversation; the original task keeps running there, with a compact link back from the new session. + +`/opengui` starts a restricted routing child that can call only `phone_agent`, `browser_agent`, or both sequentially when the task truly spans both targets. Phone work still creates one fixed-device child per selected phone. Only one OpenGUI task runs at a time, including tasks started through the legacy `/coremate` alias. + +While it runs, the outer `phone_agent` / `browser_agent` card streams nested `phone_control` / `browser_control` calls and their visible results. Hidden reasoning, system prompts, and model configuration are not projected into the parent conversation. + +While an OpenGUI task is active, a square **Stop OpenGUI operation** button appears at the right side of the composer. It cancels routing, phone or browser children, in-flight ADB work, browser downloads, and browser operations. Manually opened mirrors remain independent. + +After a successful direct OpenGUI task, one turn-tail card may show 2–3 validated follow-up prompts. Clicking one only fills an `@OpenGUI` draft. The same card links to the [use-case guide](docs/use-cases.md) and OpenGUI GitHub. Failed, cancelled, empty, configuration-only, and ordinary tasks do not show it. + +## On-demand browser control + +The plugin checks for its managed Chromium only when a task actually calls `browser_agent`. If absent, the **OpenGUI** tab shows the pinned version, download size, approval actions, and installation progress; Chat only directs the user to that tab. After approval, the same task downloads the archive, verifies its SHA-256, installs it atomically, and opens a visible browser. Declining or pressing Stop ends that task. Later tasks reuse `$DSH_HOME/cache/coremate-mobile/browser` and its isolated profile. + +`browser_control` is intentionally limited to HTTP/HTTPS navigation, observation, clicking, Unicode text insertion, selected keys, scrolling, back, reload, and bounded waits. It does not expose arbitrary CDP or JavaScript execution. The binary lifecycle and control implementation are wholly contained in this plugin. + +## Configuration reference + +| Key | Meaning | +|---|---| +| `modelStrategy` | `current-first` (default) reuses the receiving DSH model; `dedicated` always uses the fallback below. | +| `trustUnknownCurrentModels` | When `true`, reuse models with absent image-capability metadata without asking again. Default `false`; the Web UI can remember consent globally. | +| `baseURL` | Optional dedicated fallback's OpenAI-compatible HTTP/HTTPS endpoint. Prefer HTTPS because requests contain credentials, prompts, and screenshots. | +| `api` | Dedicated fallback protocol: `openai-responses` (default) or `openai-completions`. | +| `model` | Dedicated fallback model; it must support image input and tool calling. | +| `apiKeyEnv` | Harness credential reference; default `COREMATE_MOBILE_API_KEY`. | +| `commandTimeoutMs` | Base timeout for local ADB processes and browser actions; default 15 seconds. | +| `maxOperations` | Maximum `phone_control` or `browser_control` calls in one child task; default 100. | +| `contextWindow` | Declared model context capacity; default 262,144 tokens. | +| `maxTokens` | Declared maximum model output; default 32,768 tokens. | +| `streamIdleTimeoutMs` | Maximum interval without a model stream event; default 300 seconds. | +| `adbPath` | Development/test override only; release packages always use bundled ADB. | + +For profile-specific isolation, you can instead add this to `$DSH_HOME/profiles/web/cordis.patch.yml`: + +```yaml +- id: coremate-mobile + config: + baseURL: https://gateway.example/v1 + api: openai-responses + model: vision-model +``` + +This is an advanced option: a profile patch replaces the target row's entire `config`, and a matching section in `$DSH_HOME/settings.yaml` still has higher precedence. Never put the API key in the patch. + +## Install from Git (development) + +Production installations should pin a release tag or commit SHA instead of following the movable `main` branch: + +```sh +dsh plugin --profile web add 'git+https://github.com/Core-Mate/Coremate-Mobile-Plugin.git#v0.1.5' +``` + +The public repository can be fetched without GitHub authentication. Git installation runs the package's `prepare` build, so the profile allowlist must also contain `dsh-coremate-mobile: true`. Only grant installation-script permission to reviewed, pinned source. See the [developer integration and verification record](docs/research/deepseek-harness-plugin-integration.md) for the full semantics. + +```yaml +allowBuilds: + dsh-coremate-mobile: true + '@google/genai': false + protobufjs: false +``` + +## Troubleshooting + +- **`ERR_PNPM_IGNORED_BUILDS`**: merge the `allowBuilds` decisions from the installation step and retry; do not replace the whole YAML file. +- **`/opengui` is not recognized**: confirm installation succeeded, fully stop and restart Harness, then inspect `--dump-config`. +- **Dedicated fallback API key, 401, or model unauthorized**: check the credential, endpoint, and protocol. This is separate from phone USB authorization. +- **No available device or device unauthorized**: unlock and reconnect the phone, then accept the USB debugging prompt. +- **The current model can chat but does not operate the phone**: confirm that it supports both image input and tool calling, or accept OpenGUI's offer to configure a dedicated fallback. The failed task is never retried automatically. +- **The task makes no progress**: check tool-calling reliability, authorization prompts on the phone, and the complete terminal error output. + +When requesting help, include the host OS and architecture, Harness version, plugin version, steps taken, and complete error text. Never send an API key or credential file. + +## On-demand phone mirror + +Every connected phone has an always-visible eye button beside its device label. No OpenGUI task or operation selection is required. Clicking one eye opens an independent read-only scrcpy window for that device on the **computer running Harness**; clicking it again closes the window. Click several eyes to display several phones at once. If the Web UI is open on another computer, the native windows do not appear on that browser computer. + +On the first mirror or Unicode phone-text action, the plugin downloads the pinned, reviewed official scrcpy v4.1 asset for the Harness Host (about 11–18 MB), verifies its built-in SHA-256, and atomically extracts it under `$DSH_HOME/cache/coremate-mobile/scrcpy`. Later actions reuse the cache. The mirror client is forced to use the plugin's managed ADB, the eye button's device serial, `--no-control`, and `--no-audio`. OpenGUI task completion does not close mirrors; toggling the eye off, disconnecting the device, scrcpy exit, or plugin disposal ends the corresponding window. + +Official prebuilt clients cover macOS arm64/x64, Linux x64, and Windows x64. Other Host architectures show an unsupported state. A failed download can be retried; checksum-mismatched content is never executed. To reclaim the cache, stop Harness completely and remove the `scrcpy` cache directory above. + +## Uninstall + +```sh +dsh plugin --profile web remove dsh-coremate-mobile +``` + +If you used the recommended settings configuration, remove the `coremate-mobile` section from `$DSH_HOME/settings.yaml`; remove the credential only after confirming it is no longer used. + +Uninstall does not delete downloaded scrcpy or Chromium caches. To reclaim them, stop Harness and remove `$DSH_HOME/cache/coremate-mobile/scrcpy` and `$DSH_HOME/cache/coremate-mobile/browser`. + +If you used a profile patch, also remove its `coremate-mobile` row. Leave `[]` when the file has no other rows. A stale patch causes `entry "coremate-mobile" not found` on the next start. + +## Safety behavior and known limitations + +- The plugin ignores offline and unauthorized devices. The browser receives only process-local opaque ids, models, and display labels—never ADB serials. One phone is auto-selected; multiple phones are selected below the input. +- A batch freezes its selected-device set and binds one child task to each device; selection cannot change while the task runs. +- `phone_control` does not accept arbitrary shell or ADB commands, app installation/removal, file transfer, permission changes, reboot, or arbitrary intents. +- Every mutation must reference the latest observation; repeated no-progress actions and operations beyond the budget are rejected. +- Phone text accepts up to 500 Unicode characters. Safe ASCII uses `adb input text`; Chinese, emoji, and other Unicode text uses scrcpy's standard UTF-8 clipboard control message and must receive the matching device ACK. This is independent of the phone vendor and active input method, and never silently falls back to simulated keyboard typing. +- `browser_control` exposes no arbitrary CDP, JavaScript execution, filesystem access, or non-HTTP(S) URL. Page mutations require the latest observation. +- The current DSH route is proxied without copying credentials. Provider requests keep tool schemas, cancellation, streaming, and at most the latest phone screenshot. +- A capability failure never automatically retries a task that may already have caused phone or browser side effects. +- Direct `/opengui` results are text-only; screenshots remain in the phone child session. +- Native mirroring is view-only and opens only on the graphical computer running Harness; a headless Host cannot display the window. + +See the [runtime manifest](assets/platform-tools/MANIFEST.md) for bundled ADB versions, checksums, and upstream notices. See [Model Interaction](docs/model-experience.md) for the complete tool, screenshot-history, token, and KV-cache behavior. + +## Development + +The repository builds without a DeepSeek Harness source checkout: + +```sh +corepack enable +pnpm install +pnpm run check +npm pack +``` + +The [GitHub Release workflow](.github/workflows/release.yml) performs publishing. A tag must be `v` followed by the exact `package.json` version; never reuse an existing version tag. Compatibility is defined by `peerDependencies` in `package.json`. + +See the [developer integration and verification record](docs/research/deepseek-harness-plugin-integration.md) for official Harness source setup, isolated-profile installation, configuration precedence, runtime verification, and removal evidence. diff --git a/deepseek-harness-plugin/README.zh.md b/deepseek-harness-plugin/README.zh.md new file mode 100644 index 0000000..a27e40a --- /dev/null +++ b/deepseek-harness-plugin/README.zh.md @@ -0,0 +1,307 @@ +# OpenGUI + +[English](README.md) | 中文 + +`dsh-coremate-mobile` 是 OpenGUI 的 DeepSeek Harness 插件,让 Harness 通过受限子任务控制一台或多台已授权的 Android 手机,以及插件自行管理的本地浏览器。它提供直接命令 `/opengui`,也允许父 agent 通过 `phone_agent` 和 `browser_agent` 委派任务。OpenGUI 默认复用接收任务的 DSH 会话模型,专用视觉模型只作为兼容性回退。旧 `/coremate` 命令暂时保留用于兼容。 + +当前能力闭环的任务所有权、设备快照、会话归属、视频降级与资源回收设计见[实现方案](docs/implementation-plan.zh.md)。 + +插件不会修改或发布 DeepSeek Harness 源码,也不依赖 CoreMateDesktop2、系统 Chrome、Python 或 Hermes CLI。仓库只包含插件源码、测试、发布元数据和随包 Android Debug Bridge(ADB)runtime;浏览器在首次实际需要时经用户确认后按需安装。 + +## 支持范围与前置条件 + +开始安装前,请确认: + +- 已安装并能启动官方 DeepSeek Harness;当前验证基线为 `0.1.0-rc.7`。 +- Node.js 版本为 `^22.19.0` 或 `>=24`。 +- 安装机器能访问本仓库公开的 GitHub Releases。 +- DSH 当前会话模型应支持图片输入和工具调用;若不兼容,OpenGUI 可引导用户配置独立的 OpenAI 兼容视觉模型作为回退。 +- 每个非空 `/opengui` 或 `@OpenGUI` 任务都需要至少一台已授权且选中的 Android 手机,包括之后被路由为纯浏览器操作的任务。 +- 主机是 macOS arm64/x64、Linux x64 或 Windows x64。Linux arm64 和 Windows arm64 暂未随包提供 ADB。 + +如果你不熟悉终端、Git 或 YAML,请直接使用[普通用户安装指南](docs/install-for-beginners.zh.md)。 + +## 安装插件(两种接入方式共用) + +下面以 `web` profile 和默认的 `$DSH_HOME=~/.dsh` 为例。使用其他 profile 或自定义 `DSH_HOME` 时,请替换对应路径。 + +### macOS:通过 Codex Skill 安装 + +让 Codex 从仓库的 `skills/opengui-coremate-install` 安装 Skill,然后调用 `$opengui-coremate-install`。Skill 会从公开 Release 下载并校验固定的 `v0.1.5` 安装包,保留 `web` profile 中的其他配置,并且只在 DSH 尚未运行时负责启动,不要求登录 GitHub。 + +如果 3080 端口已有 DSH,安装器不会终止或重启该进程,只会提示需要手动重启。下面的手动安装方式仍适用于所有受支持的系统。 + +### 1. 下载发布包 + +从 [GitHub Releases](https://github.com/Core-Mate/Coremate-Mobile-Plugin/releases) 下载: + +- `dsh-coremate-mobile-0.1.5.tgz` +- `dsh-coremate-mobile-0.1.5.tgz.sha256` + +不要解压 `.tgz`,也不要下载 GitHub 自动生成的 Source code 压缩包。 + +在两个文件所在目录校验安装包: + +```sh +# Linux +sha256sum -c dsh-coremate-mobile-0.1.5.tgz.sha256 + +# macOS +shasum -a 256 -c dsh-coremate-mobile-0.1.5.tgz.sha256 +``` + +Windows PowerShell 可分别执行 `Get-FileHash .\dsh-coremate-mobile-0.1.5.tgz -Algorithm SHA256` 和 `Get-Content .\dsh-coremate-mobile-0.1.5.tgz.sha256`,确认两者显示的哈希一致。 + +### 2. 安装到 Harness profile + +```sh +dsh plugin --profile web add /绝对路径/dsh-coremate-mobile-0.1.5.tgz +``` + +如果使用 `npx` 启动官方 CLI,可将命令中的 `dsh` 替换为: + +```text +npx @deepseek-ai/dsh@0.1.0-rc.7 +``` + +首次安装若出现 `ERR_PNPM_IGNORED_BUILDS`,在 `$DSH_HOME/profiles/web/pnpm-workspace.yaml` 已有内容中合并下面两项,然后原样重试安装命令: + +```yaml +allowBuilds: + '@google/genai': false + protobufjs: false +``` + +不要用这三行覆盖整个文件。 + +安装完成后直接启动 Web GUI。独立模型配置不是首启前置条件,只在兼容性回退或用户显式选择时使用。 + +## Web GUI 当前模型优先流程(推荐) + +### 1. 启动 Harness + +```sh +dsh web +``` + +### 2. 验证命令 + +在 Web UI 中发送: + +```text +/opengui +``` + +空命令始终只返回用法,不会进入任何模型配置: + +```text +Usage: /opengui +``` + +打开 DSH、查看手机、选择操作设备和手动打开一个或多个投屏窗口,也都不要求先配置 OpenGUI 专用模型。 + +执行任务时需要在命令后带上文本: + +```text +/opengui 打开设置并报告 Android 版本 +``` + +也可以从原生 `@` 菜单选择 `@OpenGUI`,再输入相同任务。裸 `@OpenGUI` 与空 `/opengui` 一样,只展示用法;两种入口共用同一条命令生命周期。 + +OpenGUI 会继承当前 DSH 的 provider、model 和输出 token 上限。当前模型明确声明支持图片时直接执行;没有能力元数据时只询问一次是否信任,确认后即使切换 provider 或 model 也不再询问;明确不支持图片时才进入专用视觉模型配置。 + +若继承模型实际返回图片或工具能力错误,OpenGUI 不会自动重跑原任务,以免重复手机或浏览器副作用。界面会允许切换到专用视觉模型,并要求配置完成后重新提交。 + +## 可选的专用视觉模型回退 + +只有当前 DSH 模型不兼容,或把 `modelStrategy` 显式设为 `dedicated` 时,才需要配置下面的独立模型。 + +推荐把用户配置写入 `$DSH_HOME/settings.yaml`: + +```yaml +coremate-mobile: + baseURL: https://gateway.example/v1 + api: openai-responses + model: vision-model +``` + +仅当服务商明确要求 Chat Completions 协议时,才把 `api` 改为 `openai-completions`。 + +把 API Key 写入 `$DSH_HOME/.credentials.yaml`,不要放进 `settings.yaml` 或提交到 Git: + +```yaml +COREMATE_MOBILE_API_KEY: sk-... +``` + +macOS 和 Linux 上,手工创建凭据文件后执行: + +```sh +chmod 600 "${DSH_HOME:-$HOME/.dsh}/.credentials.yaml" +``` + +未设置 `DSH_HOME` 时,上面的命令会使用 `~/.dsh/.credentials.yaml`。 + +## 验证安装和装载 + +先检查 profile 的最终组合配置: + +```sh +dsh --profile web --dump-config +``` + +输出中应包含 `dsh-coremate-mobile` 层和 `id: coremate-mobile`。这个检查只证明 bundle 已加入配置,不代表插件已经在运行时成功装载。 + +启动 Harness: + +```sh +dsh web +``` + +在 Web UI 中把下面内容作为一条独立消息发送: + +```text +/opengui +``` + +预期返回: + +```text +Usage: /opengui +``` + +这说明插件模块和命令已经成功装载。空命令不会读取或检查模型配置。 + +## 执行第一个手机任务 + +保持手机解锁并已通过 USB 调试授权,然后发送: + +```text +/opengui 打开设置并报告 Android 版本 +``` + +手机选择和状态统一放在原生 **OpenGUI** Tab。只有一台已授权手机时会自动选中;有多台时,可在工作台中勾选任意一台或多台后再发送 `/opengui` 或 `@OpenGUI`。非空任务会先等待手机,不会提前调用模型;等待期间仍可连接、选择和投屏,检测成功后才锁定本次设备快照,直到整批结束。 + +原生 **OpenGUI** Tab 是全宽设备照片墙。界面按 Host 顺序展示全部可见手机,并在末尾追加唯一的连接说明卡,不会为凑列数预留空卡。新检测到的手机默认展开完整、低延迟的 H.264 实时画面;只有 Tab、设备卡和页面都可见时才保持连接。首次使用会先征得同意,再下载并校验固定版本的 scrcpy server;浏览器不支持或视频流失败时,会降级为不裁切的 JPEG 截图预览。每台手机还可按需打开独立的 scrcpy 窗口。 + +选中 `@OpenGUI` 后,原生输入菜单会显示自由描述、QA、运营和手游四个选项;场景只填入草稿,不会自动发送。提交非空 OpenGUI 任务后,输入框会立即恢复,任务继续写入所属会话。此时新建 DSH 会话会进入真正的空白对话,原任务仍在原会话运行,新会话中会提供紧凑的返回入口。 + +`/opengui` 会启动一个受限的任务路由子任务,只能选择 `phone_agent`、`browser_agent`,或在确有必要时顺序调用两者。手机任务仍为每台已选手机创建一个绑定固定设备的子任务;普通对话也可以直接使用两个委派工具。同一时间只允许一个 OpenGUI 任务,包括通过旧 `/coremate` 别名启动的任务。 + +执行期间,外层 `phone_agent` / `browser_agent` 卡片会实时展示内部 `phone_control` / `browser_control` 调用及其可见结果。内部推理、系统提示词和模型配置不会投影到父对话。 + +OpenGUI 任务运行时,输入框右侧会出现方形“停止 OpenGUI 操作”按钮。点击会取消路由、手机或浏览器子任务,以及正在运行的 ADB、浏览器下载和浏览器操作;手动打开的投屏窗口保持独立。 + +成功的直接 OpenGUI 任务会在对应 Turn 尾部最多显示一次组合卡片,其中可包含 2–3 个经过校验的动态追问。点击建议只会填入 `@OpenGUI` 草稿。卡片同时提供[用例页](docs/use-cases.zh.md)与 OpenGUI GitHub 入口;失败、取消、空命令、仅配置和普通任务均不展示。 + +## 按需浏览器控制 + +只有任务实际调用 `browser_agent` 时,插件才检查托管 Chromium。若尚未安装,**OpenGUI** Tab 会显示固定版本、下载大小、确认操作和安装进度,Chat 只提示前往该 Tab;确认后当前任务继续下载、校验 SHA-256、原子解压并打开可见浏览器。取消安装或点击停止按钮会终止本次任务。后续任务复用 `$DSH_HOME/cache/coremate-mobile/browser` 中的缓存和独立浏览器配置目录。 + +浏览器工具只允许 HTTP/HTTPS 导航,以及观察、点击、Unicode 文本输入、有限按键、滚动、后退、刷新和等待。中文通过 CDP 直接写入当前焦点字段。浏览器二进制、生命周期和控制代码均由插件负责,不会查找或调用 CoreMateDesktop2 或系统 Chrome。 + +## 配置参考 + +| 键 | 含义 | +|---|---| +| `modelStrategy` | `current-first`(默认)复用接收任务的 DSH 模型;`dedicated` 始终使用下面的回退模型。 | +| `trustUnknownCurrentModels` | 为 `true` 时,不再询问能力元数据缺失的当前模型;默认 `false`,也可在 Web UI 首次确认后全局记住。 | +| `baseURL` | 可选专用回退模型的 OpenAI 兼容 HTTP/HTTPS 端点。请求包含凭据、提示词和截图,应优先使用 HTTPS。 | +| `api` | 专用回退协议:`openai-responses`(默认)或 `openai-completions`。 | +| `model` | 专用回退模型,必须同时支持图片输入和工具调用。 | +| `apiKeyEnv` | Harness 凭据引用;默认 `COREMATE_MOBILE_API_KEY`。 | +| `commandTimeoutMs` | 每个本地 ADB 进程及浏览器动作的基础超时;默认 15 秒。 | +| `maxOperations` | 单次子任务允许的 `phone_control` 或 `browser_control` 调用上限;默认 100 次。 | +| `contextWindow` | 声明的模型上下文容量;默认 262,144 token。 | +| `maxTokens` | 声明的最大模型输出;默认 32,768 token。 | +| `streamIdleTimeoutMs` | 模型 stream 无新事件的最长时间;默认 300 秒。 | +| `adbPath` | 仅用于开发和测试覆盖;发布包始终使用自身携带的 ADB。 | + +需要按 profile 隔离配置时,也可以在 `$DSH_HOME/profiles/web/cordis.patch.yml` 中加入: + +```yaml +- id: coremate-mobile + config: + baseURL: https://gateway.example/v1 + api: openai-responses + model: vision-model +``` + +这是高级用法:profile patch 会替换目标行的整个 `config`,之后 `$DSH_HOME/settings.yaml` 中的同名 section 仍具有更高优先级。不要把 API Key 写入 patch。 + +## 从 Git 安装(开发用途) + +发布环境应固定 release tag 或 commit SHA,不要跟随可移动的 `main`: + +```sh +dsh plugin --profile web add 'git+https://github.com/Core-Mate/Coremate-Mobile-Plugin.git#v0.1.5' +``` + +公开仓库无需 GitHub 登录即可拉取。Git 安装需要运行包内 `prepare` 构建,因此还要在 profile 的 `allowBuilds` 中明确允许 `dsh-coremate-mobile: true`。只应对已审查并固定版本的源码授予安装期脚本权限。详细语义见[开发者接入与实测记录](docs/research/deepseek-harness-plugin-integration.md)。 + +```yaml +allowBuilds: + dsh-coremate-mobile: true + '@google/genai': false + protobufjs: false +``` + +## 常见问题 + +- **`ERR_PNPM_IGNORED_BUILDS`**:按安装步骤合并 `allowBuilds` 决定并重试,不要覆盖整个 YAML。 +- **`/opengui` 没有被识别**:确认安装无报错,完全停止并重启 Harness,再检查 `--dump-config` 输出。 +- **专用回退的 API Key、401 或模型 unauthorized**:检查凭据值、端点和协议;这不是手机 USB 授权错误。 +- **没有可用设备或 device unauthorized**:解锁手机、重新插拔 USB,并在手机上接受 USB 调试授权。 +- **当前模型能聊天但不会操作手机**:确认它同时支持图片输入和工具调用,或按 OpenGUI 提示配置专用回退。失败任务不会自动重试。 +- **任务长时间无进展**:检查模型是否可靠调用工具、手机是否停留在授权弹窗,以及终端中的完整错误信息。 + +求助时请提供主机系统与架构、Harness 版本、插件版本、操作步骤和完整错误文本。不要发送 API Key 或凭据文件。 + +## 按需手机投屏 + +每台已连接手机的设备项右侧常驻一个眼睛图标,不需要先运行 OpenGUI 任务,也不要求勾选为操作目标。点击某台的眼睛后,插件会在**运行 Harness 的电脑**上为该设备打开独立的只读 scrcpy 窗口;再次点击关闭。可依次点击多台手机的眼睛,同时显示多个投屏窗口。从另一台电脑访问 Web 界面时,窗口不会出现在浏览器所在电脑。 + +首次投屏或首次输入 Unicode 手机文本时,插件会按 Harness 主机的平台下载固定、已审核的官方 scrcpy v4.1 资产(约 11–18 MB),校验内置 SHA-256 后再原子解压到 `$DSH_HOME/cache/coremate-mobile/scrcpy`。后续直接复用缓存。投屏客户端强制使用随包 ADB、眼睛所对应设备的 serial、`--no-control` 和 `--no-audio`;OpenGUI 任务结束不会关闭投屏,关闭眼睛、设备断开、scrcpy 退出或插件卸载时才会结束对应窗口。 + +官方预构建客户端覆盖 macOS arm64/x64、Linux x64 和 Windows x64。其他主机架构会在按钮上显示不支持。下载失败可直接重试;校验失败的内容绝不会执行。若不再需要缓存,可在 Harness 完全停止后删除上述 `scrcpy` 缓存目录。 + +## 卸载 + +```sh +dsh plugin --profile web remove dsh-coremate-mobile +``` + +如果使用了推荐的 settings 配置,删除 `$DSH_HOME/settings.yaml` 中的 `coremate-mobile` section;确认不再使用后,再删除对应凭据。 + +卸载不会自动删除已下载的 scrcpy 或 Chromium 缓存;需要释放空间时,可在 Harness 停止后删除 `$DSH_HOME/cache/coremate-mobile/scrcpy` 和 `$DSH_HOME/cache/coremate-mobile/browser`。 + +如果使用了 profile patch,还必须删除其中的 `coremate-mobile` 行;文件没有其他条目时保留 `[]`。残留 patch 会导致下次启动出现 `entry "coremate-mobile" not found`。 + +## 安全行为与已知限制 + +- 插件忽略 offline 和 unauthorized 设备;浏览器只接收进程内的 opaque id、型号和显示名,不接收 ADB serial。单台自动选择,多台由用户在 OpenGUI Tab 选择。 +- 一批任务会冻结所选设备,并为每台设备绑定独立子任务;设备选择不能在任务运行中修改。 +- `phone_control` 不接受任意 shell、ADB 子命令、应用安装/卸载、文件传输、权限修改、重启或任意 intent。 +- 每次修改必须引用最新观察;重复无进展操作和超出操作预算会被拒绝。 +- 手机文本输入最多 500 个 Unicode 字符。安全 ASCII 直接使用 `adb input text`;中文、emoji 等文本使用 scrcpy 标准控制协议发送 UTF-8 剪贴板消息,并必须收到对应的设备 ACK。该路径与手机厂商和当前输入法无关,也不会静默退化为模拟屏幕键盘逐字输入。 +- `browser_control` 不暴露任意 CDP、JavaScript 执行、文件系统访问或非 HTTP(S) URL;页面修改必须引用最新观察。 +- 当前 DSH 路由通过内部代理转发,不复制凭据;provider 请求保留工具 schema、取消信号和流式结果,并且最多只保留最新手机截图。 +- 能力错误不会自动重试可能已经产生手机或浏览器副作用的任务。 +- 直接 `/opengui` 的最终结果只显示文本;截图保留在对应控制子会话中。 +- 原生投屏只读且只在运行 Harness 的桌面主机上打开;无图形桌面的主机无法显示窗口。 + +随包 ADB 的版本、校验值和上游 notice 见 [runtime 清单](assets/platform-tools/MANIFEST.md)。更完整的工具、截图历史、Token 与 KV Cache 行为见[模型交互说明](docs/model-experience.zh.md)。 + +## 开发 + +仓库不需要 DeepSeek Harness 源码 checkout 即可构建: + +```sh +corepack enable +pnpm install +pnpm run check +npm pack +``` + +发布由 [GitHub Release workflow](.github/workflows/release.yml) 完成:tag 必须是 `v` 加 `package.json` 中的准确版本。不要重复使用已经存在的版本 tag。兼容范围以 `package.json` 的 `peerDependencies` 为准。 + +完整的官方 Harness 源码准备、隔离 profile 安装、配置优先级、运行时验证和移除记录见[开发者接入与实测记录](docs/research/deepseek-harness-plugin-integration.md)。 diff --git a/deepseek-harness-plugin/SOURCE.md b/deepseek-harness-plugin/SOURCE.md new file mode 100644 index 0000000..7004117 --- /dev/null +++ b/deepseek-harness-plugin/SOURCE.md @@ -0,0 +1,16 @@ +# Source provenance + +This directory was imported from the standalone +[`Core-Mate/Coremate-Mobile-Plugin`](https://github.com/Core-Mate/Coremate-Mobile-Plugin) +repository. + +- Source branch: `main` +- Source commit: `2675d3c2e3428595d1d6cdb016dd641dece75ebf` +- Import date: 2026-08-24 + +The source commit is the migration baseline. Local uncommitted changes from the +standalone checkout were deliberately excluded. + +The code in this directory retains its existing `LICENSE`. Repository-wide +license documentation must not be interpreted as removing notices or license +terms shipped in this directory. diff --git a/deepseek-harness-plugin/assets/opengui-banner.svg b/deepseek-harness-plugin/assets/opengui-banner.svg new file mode 100644 index 0000000..9d34be7 --- /dev/null +++ b/deepseek-harness-plugin/assets/opengui-banner.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + OpenGUI + OpenGUI + OpenGUI + OpenGUI + + + diff --git a/deepseek-harness-plugin/assets/platform-tools/MANIFEST.md b/deepseek-harness-plugin/assets/platform-tools/MANIFEST.md new file mode 100644 index 0000000..a1d83a5 --- /dev/null +++ b/deepseek-harness-plugin/assets/platform-tools/MANIFEST.md @@ -0,0 +1,15 @@ +# Managed Android Platform Tools + +The `coremate-mobile` package carries a fixed Android Debug Bridge runtime so +users do not need to install Android Platform Tools or configure `PATH`. + +- Android Debug Bridge: 1.0.41, Platform Tools 37.0.1-15733141 +- macOS universal `adb` SHA-256: `1811e253b21b12cbfda7201ebaf86c10e7ddcb5c606a7a81f7c82b4c429c2d3b` +- Linux x64 `adb` SHA-256: `a902be8f45c6c62e76c9efaf6947a0fa747c9cabd89a2ac8e0d16ecb30b3ed01` +- Windows `adb.exe` SHA-256: `957e46b8615f7af5b7292a2ddabe98d2e61940c3fb2b0545756507f080613e71` +- Windows `AdbWinApi.dll` SHA-256: `120bef587119c6cb926b86b9be90fdfbce38937588eae28cd91a94ce63c7b965` +- Windows `AdbWinUsbApi.dll` SHA-256: `6ca69a2ca0e31309c087d288f058977d421ad03500e4c3e1dbd981241a069c60` + +The accompanying Android Platform Tools `NOTICE.txt` is preserved in every +platform directory. Runtime selection is package-relative and never falls back +to an arbitrary executable found on `PATH`. diff --git a/deepseek-harness-plugin/assets/platform-tools/darwin/NOTICE.txt b/deepseek-harness-plugin/assets/platform-tools/darwin/NOTICE.txt new file mode 100644 index 0000000..7c45974 --- /dev/null +++ b/deepseek-harness-plugin/assets/platform-tools/darwin/NOTICE.txt @@ -0,0 +1,21862 @@ +============================================================================== +Android used by: + sdk-repo-darwin-platform-tools.zip + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "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. + +============================================================================== + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS + OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT + OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + +============================================================================== + + + + +ICU License - moved to LICENSE + + + +

+ The ICU license is now in plain text format, see LICENSE. +Update links and software appropriately. +

+ © 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html + © 1995-2016 International Business Machines Corporation and others + + + + +============================================================================== +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 2016-2023 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +---------------------------------------------------------------------- + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +---------------------------------------------------------------------- + +ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +---------------------------------------------------------------------- + +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided with + # the distribution. + # Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyright (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the TaBE Project nor the names of its + # * contributors may be used to endorse or promote products derived + # * from this software without specific prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the Computer Systems and Communication Lab + # * nor the names of its contributors may be used to endorse or + # * promote products derived from this software without specific + # * prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + +---------------------------------------------------------------------- + +Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (C) 2016 and later: Unicode, Inc. and others. + # License & terms of use: http://www.unicode.org/copyright.html + # Copyright (c) 2015 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: https://github.com/rober42539/lao-dictionary + # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt + # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary version of Nov 22, 2020 + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in binary + # form must reproduce the above copyright notice, this list of conditions and + # the following disclaimer in the documentation and/or other materials + # provided with the distribution. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # OF THE POSSIBILITY OF SUCH DAMAGE. + # -------------------------------------------------------------------------- + +---------------------------------------------------------------------- + +Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. Redistributions in binary form must reproduce the + # above copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided + # with the distribution. + # + # Neither the name Myanmar Karen Word Lists, nor the names of its + # contributors may be used to endorse or promote products derived + # from this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # -------------------------------------------------------------------------- + +---------------------------------------------------------------------- + +Time Zone Database + + ICU uses the public domain data and code derived from Time Zone +Database for its time zone support. The ownership of the TZ database +is explained in BCP 175: Procedure for Maintaining the Time Zone +Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + +---------------------------------------------------------------------- + +Google double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- + +File: aclocal.m4 (only for ICU4C) +Section: pkg.m4 - Macros to locate and utilise pkg-config. + + +Copyright © 2004 Scott James Remnant . +Copyright © 2012-2015 Dan Nicholson + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. + +As a special exception to the GNU General Public License, if you +distribute this file as part of a program that contains a +configuration script generated by Autoconf, you may include it under +the same distribution terms that you use for the rest of that +program. + + +(The condition for the exception is fulfilled because +ICU4C includes a configuration script generated by Autoconf, +namely the `configure` script.) + +---------------------------------------------------------------------- + +File: config.guess (only for ICU4C) + + +This file is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, see . + +As a special exception to the GNU General Public License, if you +distribute this file as part of a program that contains a +configuration script generated by Autoconf, you may include it under +the same distribution terms that you use for the rest of that +program. This Exception is an additional permission under section 7 +of the GNU General Public License, version 3 ("GPLv3"). + + +(The condition for the exception is fulfilled because +ICU4C includes a configuration script generated by Autoconf, +namely the `configure` script.) + +---------------------------------------------------------------------- + +File: install-sh (only for ICU4C) + + +Copyright 1991 by the Massachusetts Institute of Technology + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +---------------------------------------------------------------------- + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2024 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. + +============================================================================== +2001 September 15 + +The author disclaims copyright to this source code. In place of +a legal notice, here is a blessing: + + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + + +============================================================================== + + Copyright (c) 2005-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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================================== +Code in this repo uses one or more of the following licenses. +Refer to each file to determine which licenses apply. + +------------------------------------------------------------------------- + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +------------------------------------------------------------------------- + +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. + +------------------------------------------------------------------------- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the project nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +============================================================================== + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "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. + + +Licenses for support code +------------------------- + +Parts of the TLS test suite are under the Go license. This code is not included +in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so +distributing code linked against BoringSSL does not trigger this license: + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================== +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +============================================================================== + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Android-specific code. == + ========================================================================= + + Copyright (c) 2005-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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + ========================================================================= + == NOTICE file for the x86 JIT libenc subdirectory. == + ========================================================================= + +Apache Harmony +Copyright 2006, 2010 The Apache Software Foundation. + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +Portions of Harmony were originally developed by +Intel Corporation and are licensed to the Apache Software +Foundation under the "Software Grant and Corporate Contribution +License Agreement" and for which the following copyright notices +apply + (C) Copyright 2005 Intel Corporation + (C) Copyright 2005-2006 Intel Corporation + (C) Copyright 2006 Intel Corporation + +Portions of the Apache Portable Runtime used by DRLVM were +developed at the National Center for Supercomputing Applications +(NCSA) at the University of Illinois at Urbana-Champaign. + +This software contains code derived from the RSA Data Security +Inc. MD5 Message-Digest Algorithm. + +This software contains code derived from UNIX V7, Copyright(C) +Caldera International Inc. + +============================================================================== +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, and the entire permission notice in its entirety, + including the disclaimer of warranties. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. The name of the author may not be used to endorse or promote + products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF +WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +============================================================================== +This package, the EXT2 filesystem utilities, are made available under +the GNU Public License version 2, with the exception of the lib/ext2fs +and lib/e2p libraries, which are made available under the GNU Library +General Public License Version 2, the lib/uuid library which is made +available under a BSD-style license and the lib/et and lib/ss +libraries which are made available under an MIT-style license. Please +see lib/uuid/COPYING for more details for the license for the files +comprising the libuuid library, and the source file headers of the +libet and libss libraries for more information. + +The most recent officially distributed version can be found at +http://e2fsprogs.sourceforge.net. If you need to make a distribution, +that's the one you should use. If there is some reason why you'd like +a more recent version that is still in ALPHA testing (i.e., either +using the "WIP" test distributions or one from the hg or git +repository from the development branch, please contact me +(tytso@mit.edu) before you ship. The release schedules for this +package are flexible, if you give me enough lead time. + + + Theodore Ts'o + 23-June-2007 + +---------------------------------------------------------------------- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +---------------------------------------------------------------------- + + GNU LIBRARY GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain +that everyone understands that there is no warranty for this free +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. + + GNU LIBRARY GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +============================================================================== +Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper +Copyright (c) 2001-2025 Expat maintainers + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +============================================================================== + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://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. + + +============================================================================== +Copyright (c) 2014 Carl Lerche and other MIO contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +============================================================================== +Copyright 2018 MaidSafe.net limited. +Copyright 2020 messense + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +============================================================================== +MIT License + +Copyright (c) 2021 Ilson Roberto Balliego Junior + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +============================================================================== +UNICODE LICENSE V3 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2023 Unicode, Inc. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +============================================================================== + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +============================================================================== + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "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. + +============================================================================== + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 The Fuchsia Authors + + 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. + + +============================================================================== +The tools for F2FS are covered by GNU Public License version 2. +Exceptionally, the following files are also covered by the GNU Lesser General +Public License Version 2.1 as the dual licenses. +- include/f2fs_fs.h +- lib/libf2fs.c +- lib/libf2fs_io.c +- mkfs/f2fs_format.c +- mkfs/f2fs_format_main.c +- mkfs/f2fs_format_utils.c +- mkfs/f2fs_format_utils.h + +================================================================================ +Copyright (c) 2012 Samsung Electronics Co., Ltd. + http://www.samsung.com/ + +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. + +================================================================================ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +================================================================================ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +============================================================================== +Copyright (c) 2012 - 2016, Victor Zverovich + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================== +Copyright (c) 2012 - present, Victor Zverovich and {fmt} contributors + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- Optional exception to the license --- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into a machine-executable object form of such +source code, you may redistribute such embedded portions in such object form +without including the above copyright and permission notices. + +============================================================================== + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Android-specific code. == + ========================================================================= + +Android Code +Copyright 2005-2008 The Android Open Source Project + +This product includes software developed as part of +The Android Open Source Project (http://source.android.com). + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for Apache Commons code. == + ========================================================================= + +Apache Commons +Copyright 1999-2006 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for Jakarta Commons Logging. == + ========================================================================= + +Jakarta Commons Logging (JCL) +Copyright 2005,2006 The Apache Software Foundation. + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Nuance code. == + ========================================================================= + +These files are Copyright 2007 Nuance Communications, but released under +the Apache2 License. + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Media Codecs code. == + ========================================================================= + +Media Codecs +These files are Copyright 1998 - 2009 PacketVideo, but released under +the Apache2 License. + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the mDnsResponder code. == + ========================================================================= + +mDnsResponder TXTRecord +This file is Copyright 2004 Apple Computer, Inc. but released under +the Apache2 License. + + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the TagSoup code. == + ========================================================================= + +This file is part of TagSoup and is Copyright 2002-2008 by John Cowan. + +TagSoup is licensed under the Apache License, +Version 2.0. You may obtain a copy of this license at +http://www.apache.org/licenses/LICENSE-2.0 . You may also have +additional legal rights not granted by this license. + +TagSoup is distributed in the hope that it will be useful, but +unless required by applicable law or agreed to in writing, TagSoup +is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS +OF ANY KIND, either express or implied; not even the implied warranty +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for Additional Codecs code. == + ========================================================================= + +Additional Codecs +These files are Copyright 2003-2010 VisualOn, but released under +the Apache2 License. + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Audio Effects code. == + ========================================================================= + +Audio Effects +These files are Copyright (C) 2004-2010 NXP Software and +Copyright (C) 2010 The Android Open Source Project, but released under +the Apache2 License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +Unicode Data Files include all data files under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, +and http://www.unicode.org/cldr/data/ . Unicode Software includes any +source code published in the Unicode Standard or under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, and +http://www.unicode.org/cldr/data/. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA +FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY +ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF +THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, +DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2008 Unicode, Inc. All rights reserved. Distributed +under the Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation (the +"Data Files") or Unicode software and any associated documentation (the +"Software") to deal in the Data Files or Software without restriction, +including without limitation the rights to use, copy, modify, merge, +publish, distribute, and/or sell copies of the Data Files or Software, +and to permit persons to whom the Data Files or Software are furnished to +do so, provided that (a) the above copyright notice(s) and this permission +notice appear with all copies of the Data Files or Software, (b) both the +above copyright notice(s) and this permission notice appear in associated +documentation, and (c) there is clear notice in each modified Data File +or in the Software as well as in the documentation associated with the +Data File(s) or Software that the data or software has been modified. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS +INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT +OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE +OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE +OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +============================================================================== + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Android-specific code. == + ========================================================================= + +Android Code +Copyright 2005-2008 The Android Open Source Project + +This product includes software developed as part of +The Android Open Source Project (http://source.android.com). + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for Apache Commons code. == + ========================================================================= + +Apache Commons +Copyright 1999-2006 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for Jakarta Commons Logging. == + ========================================================================= + +Jakarta Commons Logging (JCL) +Copyright 2005,2006 The Apache Software Foundation. + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Nuance code. == + ========================================================================= + +These files are Copyright 2007 Nuance Communications, but released under +the Apache2 License. + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Media Codecs code. == + ========================================================================= + +Media Codecs +These files are Copyright 1998 - 2009 PacketVideo, but released under +the Apache2 License. + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the TagSoup code. == + ========================================================================= + +This file is part of TagSoup and is Copyright 2002-2008 by John Cowan. + +TagSoup is licensed under the Apache License, +Version 2.0. You may obtain a copy of this license at +http://www.apache.org/licenses/LICENSE-2.0 . You may also have +additional legal rights not granted by this license. + +TagSoup is distributed in the hope that it will be useful, but +unless required by applicable law or agreed to in writing, TagSoup +is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS +OF ANY KIND, either express or implied; not even the implied warranty +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for Additional Codecs code. == + ========================================================================= + +Additional Codecs +These files are Copyright 2003-2010 VisualOn, but released under +the Apache2 License. + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Audio Effects code. == + ========================================================================= + +Audio Effects +These files are Copyright (C) 2004-2010 NXP Software and +Copyright (C) 2010 The Android Open Source Project, but released under +the Apache2 License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +Unicode Data Files include all data files under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, +and http://www.unicode.org/cldr/data/ . Unicode Software includes any +source code published in the Unicode Standard or under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, and +http://www.unicode.org/cldr/data/. + +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA +FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY +ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF +THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, +DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2008 Unicode, Inc. All rights reserved. Distributed +under the Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation (the +"Data Files") or Unicode software and any associated documentation (the +"Software") to deal in the Data Files or Software without restriction, +including without limitation the rights to use, copy, modify, merge, +publish, distribute, and/or sell copies of the Data Files or Software, +and to permit persons to whom the Data Files or Software are furnished to +do so, provided that (a) the above copyright notice(s) and this permission +notice appear with all copies of the Data Files or Software, (b) both the +above copyright notice(s) and this permission notice appear in associated +documentation, and (c) there is clear notice in each modified Data File +or in the Software as well as in the documentation associated with the +Data File(s) or Software that the data or software has been modified. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS +INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT +OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE +OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE +OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in these Data Files or Software without prior written +authorization of the copyright holder. + +============================================================================== +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================== +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE +========================================= + +PNG Reference Library License version 2 +--------------------------------------- + + * Copyright (c) 1995-2025 The PNG Reference Library Authors. + * Copyright (c) 2018-2025 Cosmin Truta. + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * Copyright (c) 1996-1997 Andreas Dilger. + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + + 2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + +PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) +----------------------------------------------------------------------- + +libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of + the library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is + with the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners, and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the +list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners, +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing +Authors and Group 42, Inc. disclaim all warranties, expressed or +implied, including, without limitation, the warranties of +merchantability and of fitness for any purpose. The Contributing +Authors and Group 42, Inc. assume no liability for direct, indirect, +incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of +the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + + 1. The origin of this source code must not be misrepresented. + + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, +without fee, and encourage the use of this source code as a component +to supporting the PNG file format in commercial products. If you use +this source code in a product, acknowledgment is not required but would +be appreciated. + +============================================================================== + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + +============================================================================== +LZ4 Library +Copyright (c) 2011-2020, Yann Collet +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================== + + Copyright (c) 2006-2009, 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================================== +Notices for files contained in the tools directory: +============================================================ +Notices for file(s): +/bin/mksdcard +------------------------------------------------------------ +Copyright 2007, The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Google Inc. nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY Google Inc. ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL Google Inc. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/framework/conscrypt-hostdex.jar +/framework/core-hostdex.jar +/framework/core-libart-hostdex.jar +/lib/libjavacore.so +/lib/libjavacrypto.so +------------------------------------------------------------ + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Android-specific code. == + ========================================================================= + +Android Code +Copyright 2005-2008 The Android Open Source Project + +This product includes software developed as part of +The Android Open Source Project (http://source.android.com). + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Apache Harmony distribution. == + ========================================================================= + +Apache Harmony +Copyright 2006 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +Portions of Harmony were originally developed by +Intel Corporation and are licensed to the Apache Software +Foundation under the "Software Grant and Corporate Contribution +License Agreement", informally known as the "Intel Harmony CLA". + + + ========================================================================= + == NOTICE file for the ICU License. == + ========================================================================= + +Copyright (c) 1995-2009 International Business Machines Corporation and others + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + + + ========================================================================= + == NOTICE file for the JUnit License. == + ========================================================================= + +Common Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF +THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial code and + documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + + i) changes to the Program, and + + ii) additions to the Program; + + where such changes and/or additions to the Program originate + from and are distributed by that particular Contributor. A + Contribution 'originates' from a Contributor if it was added to + the Program by such Contributor itself or anyone acting on such + Contributor's behalf. Contributions do not include additions to + the Program which: (i) are separate modules of software + distributed in conjunction with the Program under their own + license agreement, and (ii) are not derivative works of the + Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor +which are necessarily infringed by the use or sale of its Contribution +alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this +Agreement, including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor + hereby grants Recipient a non-exclusive, worldwide, royalty-free + copyright license to reproduce, prepare derivative works of, + publicly display, publicly perform, distribute and sublicense + the Contribution of such Contributor, if any, and such + derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor + hereby grants Recipient a non-exclusive, worldwide, royalty-free + patent license under Licensed Patents to make, use, sell, offer + to sell, import and otherwise transfer the Contribution of such + Contributor, if any, in source code and object code form. This + patent license shall apply to the combination of the + Contribution and the Program if, at the time the Contribution is + added by the Contributor, such addition of the Contribution + causes such combination to be covered by the Licensed Patents. + The patent license shall not apply to any other combinations + which include the Contribution. No hardware per se is licensed + hereunder. + + c) Recipient understands that although each Contributor grants + the licenses to its Contributions set forth herein, no + assurances are provided by any Contributor that the Program does + not infringe the patent or other intellectual property rights of + any other entity. Each Contributor disclaims any liability to + Recipient for claims brought by any other entity based on + infringement of intellectual property rights or otherwise. As a + condition to exercising the rights and licenses granted + hereunder, each Recipient hereby assumes sole responsibility to + secure any other intellectual property rights needed, if any. + For example, if a third party patent license is required to + allow Recipient to distribute the Program, it is Recipient's + responsibility to acquire that license before distributing the + Program. + + d) Each Contributor represents that to its knowledge it has + sufficient copyright rights in its Contribution, if any, to + grant the copyright license set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form +under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + + i) effectively disclaims on behalf of all Contributors all + warranties and conditions, express and implied, including + warranties or conditions of title and non-infringement, and + implied warranties or conditions of merchantability and fitness + for a particular purpose; + + ii) effectively excludes on behalf of all Contributors all + liability for damages, including direct, indirect, special, + incidental and consequential damages, such as lost profits; + + iii) states that any provisions which differ from this Agreement + are offered by that Contributor alone and not by any other + party; and + + iv) states that source code for the Program is available from + such Contributor, and informs licensees how to obtain it in a + reasonable manner on or through a medium customarily used for + software exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of + the Program. + +Contributors may not remove or alter any copyright notices contained +within the Program. + +Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain +responsibilities with respect to end users, business partners and the +like. While this license is intended to facilitate the commercial use +of the Program, the Contributor who includes the Program in a +commercial product offering should do so in a manner which does not +create potential liability for other Contributors. Therefore, if a +Contributor includes the Program in a commercial product offering, +such Contributor ("Commercial Contributor") hereby agrees to defend +and indemnify every other Contributor ("Indemnified Contributor") +against any losses, damages and costs (collectively "Losses") arising +from claims, lawsuits and other legal actions brought by a third party +against the Indemnified Contributor to the extent caused by the acts +or omissions of such Commercial Contributor in connection with its +distribution of the Program in a commercial product offering. The +obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. +In order to qualify, an Indemnified Contributor must: a) promptly +notify the Commercial Contributor in writing of such claim, and b) +allow the Commercial Contributor to control, and cooperate with the +Commercial Contributor in, the defense and any related settlement +negotiations. The Indemnified Contributor may participate in any such +claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS +PROVIDED 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. Each Recipient is solely +responsible for determining the appropriateness of using and +distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement, including but not limited to +the risks and costs of program errors, compliance with applicable +laws, damage to or loss of data, programs or equipment, and +unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR +ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further +action by the parties hereto, such provision shall be reformed to the +minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against a Contributor with +respect to a patent applicable to software (including a cross-claim or +counterclaim in a lawsuit), then any patent licenses granted by that +Contributor to such Recipient under this Agreement shall terminate as +of the date such litigation is filed. In addition, if Recipient +institutes patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Program +itself (excluding combinations of the Program with other software or +hardware) infringes such Recipient's patent(s), then such Recipient's +rights granted under Section 2(b) shall terminate as of the date such +litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it +fails to comply with any of the material terms or conditions of this +Agreement and does not cure such failure in a reasonable period of +time after becoming aware of such noncompliance. If all Recipient's +rights under this Agreement terminate, Recipient agrees to cease use +and distribution of the Program as soon as reasonably practicable. +However, Recipient's obligations under this Agreement and any licenses +granted by Recipient relating to the Program shall continue and +survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and +may only be modified in the following manner. The Agreement Steward +reserves the right to publish new versions (including revisions) of +this Agreement from time to time. No one other than the Agreement +Steward has the right to modify this Agreement. IBM is the initial +Agreement Steward. IBM may assign the responsibility to serve as the +Agreement Steward to a suitable separate entity. Each new version of +the Agreement will be given a distinguishing version number. The +Program (including Contributions) may always be distributed subject to +the version of the Agreement under which it was received. In addition, +after a new version of the Agreement is published, Contributor may +elect to distribute the Program (including its Contributions) under +the new version. Except as expressly stated in Sections 2(a) and 2(b) +above, Recipient receives no rights or licenses to the intellectual +property of any Contributor under this Agreement, whether expressly, +by implication, estoppel or otherwise. All rights in the Program not +expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and +the intellectual property laws of the United States of America. No +party to this Agreement will bring a legal action under this Agreement +more than one year after the cause of action arose. Each party waives +its rights to a jury trial in any resulting litigation. + + + ========================================================================= + == NOTICE file for the KXML License. == + ========================================================================= + +Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + ========================================================================= + == NOTICE file for the SQLite Java Wrapper License. == + ========================================================================= + +This software is copyrighted by Christian Werner +and others. The following terms apply to all files associated with the +software unless explicitly disclaimed in individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + + + ========================================================================= + == NOTICE file for the W3C License. == + ========================================================================= + +Copyright (c) 2000 World Wide Web Consortium, (Massachusetts Institute +of Technology, Institut National de Recherche en Informatique et en +Automatique, Keio University). All Rights Reserved. This program is +distributed under the W3C's Software Intellectual Property License. +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See W3C License http://www.w3.org/Consortium/Legal/ for more details. + +============================================================ +Notices for file(s): +/usr/icu/icudt51l.dat +------------------------------------------------------------ +ICU License - ICU 1.8.1 and later + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2008 International Business Machines Corporation and others + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the property of their respective owners. + +============================================================================== + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + + Unicode Data Files include all data files under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, and +http://www.unicode.org/cldr/data/ . Unicode Software includes any source code +published in the Unicode Standard or under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, and +http://www.unicode.org/cldr/data/. + + NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES +("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND +AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU +DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES +OR SOFTWARE. + + COPYRIGHT AND PERMISSION NOTICE + + Copyright ¬© 1991-2007 Unicode, Inc. All rights reserved. Distributed under +the Terms of Use in http://www.unicode.org/copyright.html. + + Permission is hereby granted, free of charge, to any person obtaining a copy +of the Unicode data files and any associated documentation (the "Data Files") or +Unicode software and any associated documentation (the "Software") to deal in +the Data Files or Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files or +Software are furnished to do so, provided that (a) the above copyright notice(s) +and this permission notice appear with all copies of the Data Files or Software, +(b) both the above copyright notice(s) and this permission notice appear in +associated documentation, and (c) there is clear notice in each modified Data +File or in the Software as well as in the documentation associated with the Data +File(s) or Software that the data or software has been modified. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD +PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING +OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR +SOFTWARE. + + Except as contained in this notice, the name of a copyright holder shall not +be used in advertising or otherwise to promote the sale, use or other dealings +in these Data Files or Software without prior written authorization of the +copyright holder. + +=============================================================================== + + +/* This ICU code derived from: */ +/* +punycode.c 0.4.0 (2001-Nov-17-Sat) +http://www.cs.berkeley.edu/~amc/idn/ +Adam M. Costello +http://www.nicemice.net/amc/ + +Disclaimer and license + +Regarding this entire document or any portion of it (including +the pseudocode and C code), the author makes no guarantees and +is not responsible for any damage resulting from its use. The +author grants irrevocable permission to anyone to use, modify, +and distribute it in any way that does not diminish the rights +of anyone else to use, modify, and distribute it, provided that +redistributed derivative works do not contain misleading author or +version information. Derivative works need not be licensed under +similar terms. +*/ + + +/* +** This file is in the public domain, so clarified as of +** 2006-07-17 by Arthur David Olson. +*/ + +============================================================ +Notices for file(s): +/framework/jcommon-1.0.12.jar +/framework/jfreechart-1.0.9-swt.jar +/framework/jfreechart-1.0.9.jar +------------------------------------------------------------ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + +============================================================ +Notices for file(s): +/lib/third_party_icu_icudata_host_gyp.a +/lib/third_party_icu_icui18n_host_gyp.a +/lib/third_party_icu_icuuc_host_gyp.a +/lib/third_party_protobuf_protobuf_full_do_not_use_host_gyp.a +/lib/v8_tools_gyp_v8_base_arm_host_gyp.a +/lib/v8_tools_gyp_v8_nosnapshot_arm_host_gyp.a +/obj/GYP/shared_intermediates/mksnapshot.arm +/obj/GYP/shared_intermediates/protoc +------------------------------------------------------------ +// Copyright (c) 2013 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +/**************************************************************** + * + * The author of this software is David M. Gay. + * + * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose without fee is hereby granted, provided that this entire notice + * is included in all copies of any software which is or includes a copy + * or modification of this software and in all copies of the supporting + * documentation for such software. + * + * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED + * WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY + * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY + * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. + * + ***************************************************************/ + +/* Copyright (c) 2008-2009, Google Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * --- + * Author: Kostya Serebryany + */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (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.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is the Netscape Portable Runtime (NSPR). + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 1998-2000 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +// Copyright (c) 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Notice that the following BSD-style license applies to the Valgrind header + files used by Chromium (valgrind.h and memcheck.h). However, the rest of + Valgrind is licensed under the terms of the GNU General Public License, + version 2, unless otherwise indicated. + + ---------------------------------------------------------------- + + Copyright (C) 2000-2008 Julian Seward. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. The origin of this software must not be misrepresented; you must + not claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + + 3. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 4. The name of the author may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Copyright (c) 2007 Red Hat, inc + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +Copyright 2003-2005 Colin Percival +All rights reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted providing that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2007-2009 Google Inc. + Copyright 2007-2009 WebDriver committers + + 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. + + +Copyright (C) 2009 by Tung Mac. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (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.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is the Netscape security libraries. + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 2000 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (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.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is the Netscape security libraries. + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 1994-2000 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +Copyright 2011, The Chromium Authors +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +/* +** Copyright (c) 2007-2010 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) 2008, Google Inc. + + 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. + +(WebKit doesn't distribute an explicit license. This LICENSE is derived from +license text in the source.) + +Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, +2006, 2007 Alexander Kellett, Alexey Proskuryakov, Alex Mathews, Allan +Sandfeld Jensen, Alp Toker, Anders Carlsson, Andrew Wellington, Antti +Koivisto, Apple Inc., Arthur Langereis, Baron Schwartz, Bjoern Graf, +Brent Fulgham, Cameron Zwarich, Charles Samuels, Christian Dywan, +Collabora Ltd., Cyrus Patel, Daniel Molkentin, Dave Maclachlan, David +Smith, Dawit Alemayehu, Dirk Mueller, Dirk Schulze, Don Gibson, Enrico +Ros, Eric Seidel, Frederik Holljen, Frerich Raabe, Friedmann Kleint, +George Staikos, Google Inc., Graham Dennis, Harri Porten, Henry Mason, +Hiroyuki Ikezoe, Holger Hans Peter Freyther, IBM, James G. Speth, Jan +Alonzo, Jean-Loup Gailly, John Reis, Jonas Witt, Jon Shier, Jonas +Witt, Julien Chaffraix, Justin Haygood, Kevin Ollivier, Kevin Watters, +Kimmo Kinnunen, Kouhei Sutou, Krzysztof Kowalczyk, Lars Knoll, Luca +Bruno, Maks Orlovich, Malte Starostik, Mark Adler, Martin Jones, +Marvin Decker, Matt Lilek, Michael Emmel, Mitz Pettel, mozilla.org, +Netscape Communications Corporation, Nicholas Shanks, Nikolas +Zimmermann, Nokia, Oliver Hunt, Opened Hand, Paul Johnston, Peter +Kelly, Pioneer Research Center USA, Rich Moore, Rob Buis, Robin Dunn, +Ronald Tschalär, Samuel Weinig, Simon Hausmann, Staikos Computing +Services Inc., Stefan Schimanski, Symantec Corporation, The Dojo +Foundation, The Karbon Developers, Thomas Boyer, Tim Copperfield, +Tobias Anton, Torben Weis, Trolltech, University of Cambridge, Vaclav +Slavik, Waldo Bastian, Xan Lopez, Zack Rusin + +The terms and conditions vary from file to file, but are one of: + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + +*OR* + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. +3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of + its contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + GNU LIBRARY GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain +that everyone understands that there is no warranty for this free +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. + + GNU LIBRARY GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + +// Copyright (C) 2002-2013 The ANGLE Project Authors. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// +// Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// +// Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following +// disclaimer in the documentation and/or other materials provided +// with the distribution. +// +// Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. +// Ltd., nor the names of their contributors may be used to endorse +// or promote products derived from this software without specific +// prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "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. + +Copyright (c) 2012, Manfred Moitzi + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Deutsche Übersetzung: + +Copyright (c) 2012, Manfred Moitzi + +Hiermit wird unentgeltlich, jeder Person, die eine Kopie der Software +und der zugehörigen Dokumentationen (die "Software") erhält, die +Erlaubnis erteilt, uneingeschränkt zu benutzen, inklusive und ohne +Ausnahme, dem Recht, sie zu verwenden, kopieren, ändern, fusionieren, +verlegen, verbreiten, unterlizenzieren und/oder zu verkaufen, und +Personen, die diese Software erhalten, diese Rechte zu geben, unter den +folgenden Bedingungen: + +Der obige Urheberrechtsvermerk und dieser Erlaubnisvermerk sind in allen +Kopien oder Teilkopien der Software beizulegen. + +DIE SOFTWARE WIRD OHNE JEDE AUSDRÜCKLICHE ODER IMPLIZIERTE GARANTIE +BEREITGESTELLT, EINSCHLIESSLICH DER GARANTIE ZUR BENUTZUNG FÜR DEN +VORGESEHENEN ODER EINEM BESTIMMTEN ZWECK SOWIE JEGLICHER +RECHTSVERLETZUNG, JEDOCH NICHT DARAUF BESCHRÄNKT. IN KEINEM FALL SIND +DIE AUTOREN ODER COPYRIGHTINHABER FÜR JEGLICHEN SCHADEN ODER SONSTIGE +ANSPRÜCHE HAFTBAR ZU MACHEN, OB INFOLGE DER ERFÜLLUNG EINES VERTRAGES, +EINES DELIKTES ODER ANDERS IM ZUSAMMENHANG MIT DER SOFTWARE ODER +SONSTIGER VERWENDUNG DER SOFTWARE ENTSTANDEN. + + +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + MOZILLA PUBLIC LICENSE + Version 1.1 + + --------------- + +1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to + the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Code, prior Modifications used by a Contributor, and the Modifications + made by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the + combination of the Original Code and Modifications, in each case + including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally + accepted in the software development community for the electronic + transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source + Code. + + 1.6. "Initial Developer" means the individual or entity identified + as the Initial Developer in the Source Code notice required by Exhibit + A. + + 1.7. "Larger Work" means a work which combines Covered Code or + portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: + A. Any addition to or deletion from the contents of a file + containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. "Original Code" means Source Code of computer software code + which is described in the Source Code notice required by Exhibit A as + Original Code, and which, at the time of its release under this + License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, process, + and apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for + making modifications to it, including all modules it contains, plus + any associated interface definition files, scripts used to control + compilation and installation of an Executable, or source code + differential comparisons against either the Original Code or another + well known, available Covered Code of the Contributor's choice. The + Source Code can be in a compressed or archival form, provided the + appropriate decompression or de-archiving software is widely available + for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this + License or a future version of this License issued under Section 6.1. + For legal entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes of + this definition, "control" means (a) the power, direct or indirect, + to cause the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty percent + (50%) of the outstanding shares or beneficial ownership of such + entity. + +2. Source Code License. + + 2.1. The Initial Developer Grant. + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer to use, reproduce, + modify, display, perform, sublicense and distribute the Original + Code (or portions thereof) with or without Modifications, and/or + as part of a Larger Work; and + + (b) under Patents Claims infringed by the making, using or + selling of Original Code, to make, have made, use, practice, + sell, and offer for sale, and/or otherwise dispose of the + Original Code (or portions thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are + effective on the date Initial Developer first distributes + Original Code under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused + by: i) the modification of the Original Code or ii) the + combination of the Original Code with other software or devices. + + 2.2. Contributor Grant. + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor, to use, reproduce, modify, + display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an + unmodified basis, with other Modifications, as Covered Code + and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or + selling of Modifications made by that Contributor either alone + and/or in combination with its Contributor Version (or portions + of such combination), to make, use, sell, offer for sale, have + made, and/or otherwise dispose of: 1) Modifications made by that + Contributor (or portions thereof); and 2) the combination of + Modifications made by that Contributor with its Contributor + Version (or portions of such combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first makes Commercial Use of + the Covered Code. + + (d) Notwithstanding Section 2.2(b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; + 3) for infringements caused by: i) third party modifications of + Contributor Version or ii) the combination of Modifications made + by that Contributor with other software (except as part of the + Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by + that Contributor. + +3. Distribution Obligations. + + 3.1. Application of License. + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be + distributed only under the terms of this License or a future version + of this License released under Section 6.1, and You must include a + copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code + version that alters or restricts the applicable version of this + License or the recipients' rights hereunder. However, You may include + an additional document offering the additional rights described in + Section 3.5. + + 3.2. Availability of Source Code. + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that + the Modification is derived, directly or indirectly, from Original + Code provided by the Initial Developer and including the name of the + Initial Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + (a) Third Party Claims. + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, + Contributor must include a text file with the Source Code + distribution titled "LEGAL" which describes the claim and the + party making the claim in sufficient detail that a recipient will + know whom to contact. If Contributor obtains such knowledge after + the Modification is made available as described in Section 3.2, + Contributor shall promptly modify the LEGAL file in all copies + Contributor makes available thereafter and shall take other steps + (such as notifying appropriate mailing lists or newsgroups) + reasonably calculated to inform those who received the Covered + Code that new knowledge has been obtained. + + (b) Contributor APIs. + If Contributor's Modifications include an application programming + interface and Contributor has knowledge of patent licenses which + are reasonably necessary to implement that API, Contributor must + also include this information in the LEGAL file. + + (c) Representations. + Contributor represents that, except as disclosed pursuant to + Section 3.4(a) above, Contributor believes that Contributor's + Modifications are Contributor's original creation(s) and/or + Contributor has sufficient rights to grant the rights conveyed by + this License. + + 3.5. Required Notices. + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely + to look for such a notice. If You created one or more Modification(s) + You may add your name as a Contributor to the notice described in + Exhibit A. You must also duplicate this License in any documentation + for the Source Code where You describe recipients' rights or ownership + rights relating to Covered Code. You may choose to offer, and to + charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Code. However, You + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear than + any such warranty, support, indemnity or liability obligation is + offered by You alone, and You hereby agree to indemnify the Initial + Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of warranty, + support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code, + and if You include a notice stating that the Source Code version of + the Covered Code is available under the terms of this License, + including a description of how and where You have fulfilled the + obligations of Section 3.2. The notice must be conspicuously included + in any notice in an Executable version, related documentation or + collateral in which You describe recipients' rights relating to the + Covered Code. You may distribute the Executable version of Covered + Code or ownership rights under a license of Your choice, which may + contain terms different from this License, provided that You are in + compliance with the terms of this License and that the license for the + Executable version does not attempt to limit or alter the recipient's + rights in the Source Code version from the rights set forth in this + License. If You distribute the Executable version under a different + license You must make it absolutely clear that any terms which differ + from this License are offered by You alone, not by the Initial + Developer or any Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such + terms You offer. + + 3.7. Larger Works. + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + +4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description + must be included in the LEGAL file described in Section 3.4 and must + be included with all distributions of the Source Code. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + +6. Versions of the License. + + 6.1. New Versions. + Netscape Communications Corporation ("Netscape") may publish revised + and/or new versions of the License from time to time. Each version + will be given a distinguishing version number. + + 6.2. Effect of New Versions. + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Netscape. No one + other than Netscape has the right to modify the terms applicable to + Covered Code created under this License. + + 6.3. Derivative Works. + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must (a) rename Your license so that + the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", + "MPL", "NPL" or any confusingly similar phrase do not appear in your + license (except to note that your license differs from this License) + and (b) otherwise make it clear that Your version of the license + contains terms which differ from the Mozilla Public License and + Netscape Public License. (Filling in the name of the Initial + Developer, Original Code or Contributor in the notice described in + Exhibit A shall not of themselves be deemed to be modifications of + this License.) + +7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declatory judgment actions) against Initial Developer + or a Contributor (the Initial Developer or Contributor against whom + You file such action is referred to as "Participant") alleging that: + + (a) such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate prospectively, + unless if within 60 days after receipt of notice You either: (i) + agree in writing to pay Participant a mutually agreeable reasonable + royalty for Your past and future use of Modifications made by such + Participant, or (ii) withdraw Your litigation claim with respect to + the Contributor Version against such Participant. If within 60 days + of notice, a reasonable royalty and payment arrangement are not + mutually agreed upon in writing by the parties or the litigation claim + is not withdrawn, the rights granted by Participant to You under + Sections 2.1 and/or 2.2 automatically terminate at the expiration of + the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, then + any rights granted to You by such Participant under Sections 2.1(b) + and 2.2(b) are revoked effective as of the date You first made, used, + sold, distributed, or had made, Modifications made by that + Participant. + + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, + all end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + +9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR + ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO + THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +10. U.S. GOVERNMENT END USERS. + + The Covered Code is a "commercial item," as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer + software" and "commercial computer software documentation," as such + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 + C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), + all U.S. Government End Users acquire Covered Code with only those + rights set forth herein. + +11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if + any, provides otherwise), excluding its conflict-of-law provisions. + With respect to disputes in which at least one party is a citizen of, + or an entity chartered or registered to do business in the United + States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern + District of California, with venue lying in Santa Clara County, + California, with the losing party responsible for costs, including + without limitation, court costs and reasonable attorneys' fees and + expenses. The application of the United Nations Convention on + Contracts for the International Sale of Goods is expressly excluded. + Any law or regulation which provides that the language of a contract + shall be construed against the drafter shall not apply to this + License. + +12. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, + out of its utilization of rights under this License and You agree to + work with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +13. MULTIPLE-LICENSED CODE. + + Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the NPL or the alternative licenses, if any, specified + by the Initial Developer in the file described in Exhibit A. + +EXHIBIT A -Mozilla Public License. + + ``The contents of this file are subject to the Mozilla Public License + Version 1.1 (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.mozilla.org/MPL/ + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + License for the specific language governing rights and limitations + under the License. + + The Original Code is ______________________________________. + + The Initial Developer of the Original Code is ________________________. + Portions created by ______________________ are Copyright (C) ______ + _______________________. All Rights Reserved. + + Contributor(s): ______________________________________. + + Alternatively, the contents of this file may be used under the terms + of the _____ license (the "[___] License"), in which case the + provisions of [______] License are applicable instead of those + above. If you wish to allow use of your version of this file only + under the terms of the [____] License and not to allow others to use + your version of this file under the MPL, indicate your decision by + deleting the provisions above and replace them with the notice and + other provisions required by the [___] License. If you do not delete + the provisions above, a recipient may use your version of this file + under either the MPL or the [___] License." + + [NOTE: The text of this Exhibit A may differ slightly from the text of + the notices in the Source Code files of the Original Code. You should + use the text of this Exhibit A rather than the text found in the + Original Code Source Code for Your Modifications.] + + ---------------------------------------------------------------------- + + AMENDMENTS + + The Netscape Public License Version 1.1 ("NPL") consists of the + Mozilla Public License Version 1.1 with the following Amendments, + including Exhibit A-Netscape Public License. Files identified with + "Exhibit A-Netscape Public License" are governed by the Netscape + Public License Version 1.1. + + Additional Terms applicable to the Netscape Public License. + I. Effect. + These additional terms described in this Netscape Public + License -- Amendments shall apply to the Mozilla Communicator + client code and to all Covered Code under this License. + + II. "Netscape's Branded Code" means Covered Code that Netscape + distributes and/or permits others to distribute under one or more + trademark(s) which are controlled by Netscape but which are not + licensed for use under this License. + + III. Netscape and logo. + This License does not grant any rights to use the trademarks + "Netscape", the "Netscape N and horizon" logo or the "Netscape + lighthouse" logo, "Netcenter", "Gecko", "Java" or "JavaScript", + "Smart Browsing" even if such marks are included in the Original + Code or Modifications. + + IV. Inability to Comply Due to Contractual Obligation. + Prior to licensing the Original Code under this License, Netscape + has licensed third party code for use in Netscape's Branded Code. + To the extent that Netscape is limited contractually from making + such third party code available under this License, Netscape may + choose to reintegrate such code into Covered Code without being + required to distribute such code in Source Code form, even if + such code would otherwise be considered "Modifications" under + this License. + + V. Use of Modifications and Covered Code by Initial Developer. + V.1. In General. + The obligations of Section 3 apply to Netscape, except to + the extent specified in this Amendment, Section V.2 and V.3. + + V.2. Other Products. + Netscape may include Covered Code in products other than the + Netscape's Branded Code which are released by Netscape + during the two (2) years following the release date of the + Original Code, without such additional products becoming + subject to the terms of this License, and may license such + additional products on different terms from those contained + in this License. + + V.3. Alternative Licensing. + Netscape may license the Source Code of Netscape's Branded + Code, including Modifications incorporated therein, without + such Netscape Branded Code becoming subject to the terms of + this License, and may license such Netscape Branded Code on + different terms from those contained in this License. + + VI. Litigation. + Notwithstanding the limitations of Section 11 above, the + provisions regarding litigation in Section 11(a), (b) and (c) of + the License shall apply to all disputes relating to this License. + + EXHIBIT A-Netscape Public License. + + "The contents of this file are subject to the Netscape Public + License Version 1.1 (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.mozilla.org/NPL/ + + Software distributed under the License is distributed on an "AS + IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or + implied. See the License for the specific language governing + rights and limitations under the License. + + The Original Code is Mozilla Communicator client code, released + March 31, 1998. + + The Initial Developer of the Original Code is Netscape + Communications Corporation. Portions created by Netscape are + Copyright (C) 1998-1999 Netscape Communications Corporation. All + Rights Reserved. + + Contributor(s): ______________________________________. + + Alternatively, the contents of this file may be used under the + terms of the _____ license (the "[___] License"), in which case + the provisions of [______] License are applicable instead of + those above. If you wish to allow use of your version of this + file only under the terms of the [____] License and not to allow + others to use your version of this file under the NPL, indicate + your decision by deleting the provisions above and replace them + with the notice and other provisions required by the [___] + License. If you do not delete the provisions above, a recipient + may use your version of this file under either the NPL or the + [___] License." + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + and Clark Cooper +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2011 Google Inc. All Rights Reserved. + + 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. + + +Copyright (c) 2007-2009 IOLA and Ole Laursen + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +This software is based in part on the work of the FreeType Team. + +---------------------- + + The FreeType Project LICENSE + ---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + http://www.freetype.org + + +--- end of FTL.TXT --- + +// Copyright (c) 2013 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + COPYRIGHTS + +Compilation copyright is held by the GPSD project. All rights reserved. + +GPSD project copyrights are assigned to the project lead, currently +Eric S. Raymond. Other portions of the GPSD code are Copyright (c) +1997, 1998, 1999, 2000, 2001, 2002 by Remco Treffkorn, and others +Copyright (c) 2005 by Eric S. Raymond. For other copyrights, see +individual files. + + BSD LICENSE + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met:

+ +Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer.

+ +Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution.

+ +Neither name of the GPSD project nor the names of its contributors +may be used to endorse or promote products derived from this software +without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + GNU LIBRARY GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain +that everyone understands that there is no warranty for this free +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. + + GNU LIBRARY GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307 USA. + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright © 2010,2011,2012 Google, Inc. +Copyright © 2012 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2009 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2006 Behdad Esfahbod +Copyright © 2005 David Turner +Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. +Copyright © 1998-2004 David Turner and Werner Lemberg + +For full copyright notices consult the individual files in the package. + + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +/************************************************************************* + * + * IAccessible2 IDL Specification + * + * Copyright (c) 2007, 2010 Linux Foundation + * Copyright (c) 2006 IBM Corporation + * Copyright (c) 2000, 2006 Sun Microsystems, Inc. + * All rights reserved. + * + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * 3. Neither the name of the Linux Foundation nor the names of its + * contributors may be used to endorse or promote products + * derived from this software without specific prior written + * permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This BSD License conforms to the Open Source Initiative "Simplified + * BSD License" as published at: + * http://www.opensource.org/licenses/bsd-license.php + * + * IAccessible2 is a trademark of the Linux Foundation. The IAccessible2 + * mark may be used in accordance with the Linux Foundation Trademark + * Policy to indicate compliance with the IAccessible2 specification. + * + ************************************************************************/ + +LICENSE extracted from IJG's jpeg distribution: +----------------------------------------------- + +In plain English: + +1. We don't promise that this software works. (But if you find any bugs, + please let us know!) +2. You can use this software for whatever you want. You don't have to pay us. +3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. + +In legalese: + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-1998, Thomas G. Lane. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + + +ICU License - ICU 1.8.1 and later + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2010 International Business Machines Corporation and others + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies +of the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL +THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, +OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, +NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE +USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not be +used in advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the property of their respective owners. + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (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.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is mozilla.org code. + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 2002 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +The following is the license for the jemalloc source code, as provided +in the initial section of the source files. + +Copyright (C) 2006-2008 Jason Evans . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice(s), this list of conditions and the following disclaimer as + the first lines of this file unmodified other than the possible + addition of one or more copyright notices. +2. Redistributions in binary form must reproduce the above copyright + notice(s), this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +The JsonCpp library's source code, including accompanying documentation, +tests and demonstration applications, are licensed under the following +conditions... + +The author (Baptiste Lepilleur) explicitly disclaims copyright in all +jurisdictions which recognize such a disclaimer. In such jurisdictions, +this software is released into the Public Domain. + +In jurisdictions which do not recognize Public Domain property (e.g. Germany as of +2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is +released under the terms of the MIT License (see below). + +In jurisdictions which recognize Public Domain property, the user of this +software may choose to accept it either as 1) Public Domain, 2) under the +conditions of the MIT License (see below), or 3) under the terms of dual +Public Domain/MIT License conditions described here, as they choose. + +The MIT License is about as close to Public Domain as a license can get, and is +described in clear, concise terms at: + + http://en.wikipedia.org/wiki/MIT_License + +The full text of the MIT License follows: + +======================================================================== +Copyright (c) 2007-2010 Baptiste Lepilleur + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +======================================================================== +(END LICENSE TEXT) + +The MIT license is compatible with both the GPL and commercial +software, affording one all of the rights of Public Domain with the +minor nuisance of being required to keep the above copyright notice +and license text in the source code. Note also that by accepting the +Public Domain "license" you can re-license your copy using whatever +license you like. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "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. + +Copyright (c) 2007-2010 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + + +SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) + +Copyright (C) 1992 Silicon Graphics, Inc. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice including the dates of first publication and either +this permission notice or a reference to http://oss.sgi.com/projects/FreeB/ +shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON +GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Silicon Graphics, Inc. shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in this Software without prior written authorization from Silicon +Graphics, Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + * Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License copied from bin/lcov: + +# +# Copyright (c) International Business Machines Corp., 2002,2007 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. + +Copyright (c) 2011 The LevelDB Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +/* + * Copyright (c) 2008 NVIDIA, Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +Copyright 2000-2007 Niels Provos +Copyright 2007-2009 Niels Provos and Nick Mathewson + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 2013, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +(Copied from the README.) + +-------------------------------------------------------------------------------- + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-1998, Thomas G. Lane. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + + +ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, +sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. +ansi2knr.c is NOT covered by the above copyright and conditions, but instead +by the usual distribution terms of the Free Software Foundation; principally, +that you must include source code if you redistribute it. (See the file +ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part +of any program generated from the IJG code, this does not limit you more than +the foregoing paragraphs do. + +The Unix configuration script "configure" was produced with GNU Autoconf. +It is copyright by the Free Software Foundation but is freely distributable. +The same holds for its supporting scripts (config.guess, config.sub, +ltconfig, ltmain.sh). Another support script, install-sh, is copyright +by M.I.T. but is also freely distributable. + +It appears that the arithmetic coding option of the JPEG spec is covered by +patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot +legally be used without obtaining one or more licenses. For this reason, +support for arithmetic coding has been removed from the free JPEG software. +(Since arithmetic coding provides only a marginal gain over the unpatented +Huffman mode, it is unlikely that very many implementations will support it.) +So far as we are aware, there are no patent restrictions on the remaining +code. + +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent, GIF reading support has +been removed altogether, and the GIF writer has been simplified to produce +"uncompressed GIFs". This technique does not use the LZW algorithm; the +resulting GIF files are larger than usual, but are readable by all standard +GIF decoders. + +We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + +Copyright (C) 2011 Google Inc. + +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. + + +This copy of the libpng notices is provided for your convenience. In case of +any discrepancy between this copy and the notices in the file png.h that is +included in the libpng distribution, the latter shall prevail. + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + +If you modify libpng you may insert additional notices immediately following +this sentence. + +This code is released under the libpng license. + +libpng versions 1.2.6, August 15, 2004, through 1.2.45, July 7, 2011, are +Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.2.5 +with the following individual added to the list of Contributing Authors + + Cosmin Truta + +libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are +Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.0.6 +with the following individuals added to the list of Contributing Authors + + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-0.96, +with the following individuals added to the list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996, 1997 Andreas Dilger +Distributed according to the same disclaimer and license as libpng-0.88, +with the following individuals added to the list of Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing Authors +and Group 42, Inc. disclaim all warranties, expressed or implied, +including, without limitation, the warranties of merchantability and of +fitness for any purpose. The Contributing Authors and Group 42, Inc. +assume no liability for direct, indirect, incidental, special, exemplary, +or consequential damages, which may result from the use of the PNG +Reference Library, even if advised of the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + +1. The origin of this source code must not be misrepresented. + +2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, without +fee, and encourage the use of this source code as a component to +supporting the PNG file format in commercial products. If you use this +source code in a product, acknowledgment is not required but would be +appreciated. + + +A "png_get_copyright" function is available, for convenient use in "about" +boxes and the like: + + printf("%s",png_get_copyright(NULL)); + +Also, the PNG logo (in PNG format, of course) is supplied in the +files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + +Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a +certification mark of the Open Source Initiative. + +Glenn Randers-Pehrson +glennrp at users.sourceforge.net +July 7, 2011 + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sub license, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice (including the + next paragraph) shall be included in all copies or substantial portions + of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Copyright (c) 2010, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Additional IP Rights Grant (Patents) + +"This implementation" means the copyrightable works distributed by +Google as part of the WebM Project. + +Google hereby grants to you a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) +patent license to make, have made, use, offer to sell, sell, import, +transfer, and otherwise run, modify and propagate the contents of this +implementation of VP8, where such license applies only to those patent +claims, both currently owned by Google and acquired in the future, +licensable by Google that are necessarily infringed by this +implementation of VP8. This grant does not include claims that would be +infringed only as a consequence of further modification of this +implementation. If you or your agent or exclusive licensee institute or +order or agree to the institution of patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging +that this implementation of VP8 or any code incorporated within this +implementation of VP8 constitutes direct or contributory patent +infringement, or inducement of patent infringement, then any patent +rights granted to you under this License for this implementation of VP8 +shall terminate as of the date such litigation is filed. + +Except where otherwise noted in the source code (e.g. the files hash.c, +list.c and the trio files, which are covered by a similar licence but +with different Copyright notices) all the files are: + + Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is fur- +nished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- +NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Daniel Veillard shall not +be used in advertising or otherwise to promote the sale, use or other deal- +ings in this Software without prior written authorization from him. + + +Licence for libxslt except libexslt +---------------------------------------------------------------------- + Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is fur- +nished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- +NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Daniel Veillard shall not +be used in advertising or otherwise to promote the sale, use or other deal- +ings in this Software without prior written authorization from him. + +---------------------------------------------------------------------- + +Licence for libexslt +---------------------------------------------------------------------- + Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. + All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is fur- +nished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- +NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the authors shall not +be used in advertising or otherwise to promote the sale, use or other deal- +ings in this Software without prior written authorization from him. +---------------------------------------------------------------------- + +LZMA SDK is placed in the public domain. + +Copyright (c) 2003-2009 Jonathan 'Wolf' Rentzsch: +Some rights reserved: + +The default Mesa license is as follows: + +Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + +Some parts of Mesa are copyrighted under the GNU LGPL. See the +Mesa/docs/COPYRIGHT file for details. + +The following is the standard GNU copyright file. +---------------------------------------------------------------------- + + + GNU LIBRARY GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1991 Free Software Foundation, Inc. + 675 Mass Ave, Cambridge, MA 02139, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain +that everyone understands that there is no warranty for this free +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. + + GNU LIBRARY GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + Appendix: How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the Free + Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + * MODP_B64 - High performance base64 encoder/decoder + * Version 1.3 -- 17-Mar-2006 + * http://modp.com/release/base64 + * + * Copyright (c) 2005, 2006 Nick Galbreath -- nickg [at] modp [dot] com + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the modp.com nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright 2008 MolokoCacao +All rights reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted providing that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 2004-2009 Sergey Lyubka +Portions Copyright (c) 2009 Gilbert Wellisch + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +Copyright 2010-2011, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. +* Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (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.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is mozilla.org code. + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 2002 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + + A C-program for MT19937, with initialization improved 2002/1/26. + Coded by Takuji Nishimura and Makoto Matsumoto. + + Before using, initialize the state by using init_genrand(seed) + or init_by_array(init_key, key_length). + + Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. The names of its contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Copyright (c) 2006-2009 The Chromium OS Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Version: MPL 1.1/GPL 2.0/LGPL 2.1 + +The contents of this file are subject to the Mozilla Public License Version +1.1 (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.mozilla.org/MPL/ + +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for the specific language governing rights and limitations under the +License. + +The Original Code is mozilla.org code. + +The Initial Developer of the Original Code is +Netscape Communications Corporation. +Portions created by the Initial Developer are Copyright (C) 1998 +the Initial Developer. All Rights Reserved. + +Contributor(s): + +Alternatively, the contents of this file may be used under the terms of +either the GNU General Public License Version 2 or later (the "GPL"), or +the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +in which case the provisions of the GPL or the LGPL are applicable instead +of those above. If you wish to allow use of your version of this file only +under the terms of either the GPL or the LGPL, and not to allow others to +use your version of this file under the terms of the MPL, indicate your +decision by deleting the provisions above and replace them with the notice +and other provisions required by the GPL or the LGPL. If you do not delete +the provisions above, a recipient may use your version of this file under +the terms of any one of the MPL, the GPL or the LGPL. + + + Copyright (c) 2004-2012 by Mulle Kybernetik. All rights reserved. + + Permission to use, copy, modify and distribute this software and its documentation + is hereby granted, provided that both the copyright notice and this permission + notice appear in all copies of the software, derivative works or modified versions, + and any portions thereof, and that both notices appear in supporting documentation, + and that credit is given to Mulle Kybernetik in all documents and publicity + pertaining to direct or indirect use of this code or its derivatives. + + THIS IS EXPERIMENTAL SOFTWARE AND IT IS KNOWN TO HAVE BUGS, SOME OF WHICH MAY HAVE + SERIOUS CONSEQUENCES. THE COPYRIGHT HOLDER ALLOWS FREE USE OF THIS SOFTWARE IN ITS + "AS IS" CONDITION. THE COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY + DAMAGES WHATSOEVER RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE + OR OF ANY DERIVATIVE WORK. + + LICENSE ISSUES + ============== + + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of + the OpenSSL License and the original SSLeay license apply to the toolkit. + See below for the actual license texts. Actually both licenses are BSD-style + Open Source licenses. In case of any license issues related to OpenSSL + please contact openssl-core@openssl.org. + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * The licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + + +Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic, + Jean-Marc Valin, Timothy B. Terriberry, + CSIRO, Gregory Maxwell, Mark Borgerding, + Erik de Castro Lopo + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of Internet Society, IETF or IETF Trust, nor the +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Opus is subject to the royalty-free patent licenses which are +specified at: + +Xiph.Org Foundation: +https://datatracker.ietf.org/ipr/1524/ + +Microsoft Corporation: +https://datatracker.ietf.org/ipr/1914/ + +Broadcom Corporation: +https://datatracker.ietf.org/ipr/1526/ + +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PLY (Python Lex-Yacc) Version 3.4 + +Copyright (C) 2001-2011, +David M. Beazley (Dabeaz LLC) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the David Beazley or Dabeaz LLC may be used to + endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// Copyright (c) 2012 The Polymer Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Code generated by the Protocol Buffer compiler is owned by the owner +of the input file used when generating it. This code is not +standalone and requires a support library to be linked with it. This +support library is itself covered by the above license. + +Copyright (c) 2003-2012, Michael Foord +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +qcms +Copyright (C) 2009 Mozilla Corporation +Copyright (C) 1998-2007 Marti Maria + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +// Copyright (c) 2009 The RE2 Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2011 Google Inc. All Rights Reserved. + + 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. + + +Copyright (c) 2006 Bob Ippolito + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +// Copyright (c) 2011 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +All MurmurHash source files are placed in the public domain. + +The license below applies to all other code in SMHasher: + +Copyright (c) 2011 Google, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +The author disclaims copyright to this source code. In place of +a legal notice, here is a blessing: + + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + +SWIG is distributed under the following terms: + +I. + +Copyright (c) 1995-1998 +The University of Utah and the Regents of the University of California +All Rights Reserved + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that +(1) The above copyright notice and the following two paragraphs +appear in all copies of the source code and (2) redistributions +including binaries reproduces these notices in the supporting +documentation. Substantial modifications to this software may be +copyrighted by their authors and need not follow the licensing terms +described here, provided that the new terms are clearly indicated in +all files where they apply. + +IN NO EVENT SHALL THE AUTHOR, THE UNIVERSITY OF CALIFORNIA, THE +UNIVERSITY OF UTAH OR DISTRIBUTORS OF THIS SOFTWARE BE LIABLE TO ANY +PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, +EVEN IF THE AUTHORS OR ANY OF THE ABOVE PARTIES HAVE BEEN ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +THE AUTHOR, THE UNIVERSITY OF CALIFORNIA, AND THE UNIVERSITY OF UTAH +SPECIFICALLY DISCLAIM ANY WARRANTIES,INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND +THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, +SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +II. + +This software includes contributions that are Copyright (c) 1998-2005 +University of Chicago. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. Redistributions +in binary form must reproduce the above copyright notice, this list of +conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. Neither the name of +the University of Chicago nor the names of its contributors may be +used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF CHICAGO AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF +CHICAGO OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +III. + +This software includes contributions that are Copyright (c) 2005-2006 +Arizona Board of Regents (University of Arizona). +All Rights Reserved + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that +(1) The above copyright notice and the following two paragraphs +appear in all copies of the source code and (2) redistributions +including binaries reproduces these notices in the supporting +documentation. Substantial modifications to this software may be +copyrighted by their authors and need not follow the licensing terms +described here, provided that the new terms are clearly indicated in +all files where they apply. + +THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF ARIZONA AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF +ARIZONA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +// Copyright (c) 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +All code here is public domain. + +Copyright (c) 2012, Linux USB Project +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +o Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +o Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +o Neither the name of the Linux USB Project nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +(Copied from the COPYRIGHT file of +https://code.google.com/p/sctp-refimpl/source/browse/trunk/COPYRIGHT) +-------------------------------------------------------------------------------- + +Copyright (c) 2001, 2002 Cisco Systems, Inc. +Copyright (c) 2002-12 Randall R. Stewart +Copyright (c) 2002-12 Michael Tuexen +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +;***************************************************************************** +;* x86inc.asm +;***************************************************************************** +;* Copyright (C) 2005-2011 x264 project +;* +;* Authors: Loren Merritt +;* Anton Mitrofanov +;* Jason Garrett-Glaser +;* +;* Permission to use, copy, modify, and/or distribute this software for any +;* purpose with or without fee is hereby granted, provided that the above +;* copyright notice and this permission notice appear in all copies. +;* +;* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +;* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +;* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +;* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +;* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +;* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +;* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +;***************************************************************************** + +; This is a header file for the x264ASM assembly language, which uses +; NASM/YASM syntax combined with a large number of macros to provide easy +; abstraction between different calling conventions (x86_32, win64, linux64). +; It also has various other useful features to simplify writing the kind of +; DSP functions that are most often used in x264. + +; Unlike the rest of x264, this file is available under an ISC license, as it +; has significant usefulness outside of x264 and we want it to be available +; to the largest audience possible. Of course, if you modify it for your own +; purposes to add a new feature, we strongly encourage contributing a patch +; as this feature might be useful for others as well. Send patches or ideas +; to x264-devel@videolan.org . + +Yasm is Copyright (c) 2001-2010 Peter Johnson and other Yasm developers. + +Yasm developers and/or contributors include: + Peter Johnson + Michael Urman + Brian Gladman (Visual Studio build files, other fixes) + Stanislav Karchebny (options parser) + Mathieu Monnier (SSE4 instruction patches, NASM preprocessor additions) + Anonymous "NASM64" developer (NASM preprocessor fixes) + Stephen Polkowski (x86 instruction patches) + Henryk Richter (Mach-O object format) + Ben Skeggs (patches, bug reports) + Alexei Svitkine (GAS preprocessor) + Samuel Thibault (TASM parser and frontend) + +----------------------------------- +Yasm licensing overview and summary +----------------------------------- + +Note: This document does not provide legal advice nor is it the actual +license of any part of Yasm. See the individual licenses for complete +details. Consult a lawyer for legal advice. + +The primary license of Yasm is the 2-clause BSD license. Please use this +license if you plan on submitting code to the project. + +Yasm has absolutely no warranty; not even for merchantibility or fitness +for a particular purpose. + +------- +Libyasm +------- +Libyasm is 2-clause or 3-clause BSD licensed, with the exception of +bitvect, which is triple-licensed under the Artistic license, GPL, and +LGPL. Libyasm is thus GPL and LGPL compatible. In addition, this also +means that libyasm is free for binary-only distribution as long as the +terms of the 3-clause BSD license and Artistic license (as it applies to +bitvect) are fulfilled. + +------- +Modules +------- +The modules are 2-clause or 3-clause BSD licensed. + +--------- +Frontends +--------- +The frontends are 2-clause BSD licensed. + +------------- +License Texts +------------- +The full text of all licenses are provided in separate files in the source +distribution. Each source file may include the entire license (in the case +of the BSD and Artistic licenses), or may reference the GPL or LGPL license +file. + +BSD.txt - 2-clause and 3-clause BSD licenses +Artistic.txt - Artistic license +GNU_GPL-2.0 - GNU General Public License +GNU_LGPL-2.0 - GNU Library General Public License + +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.4, March 14th, 2010 + + Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly + Mark Adler + +*/ + +Copyright 2007, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------- + +The file url_parse.cc is based on nsURLParsers.cc from Mozilla. This file is +licensed separately as follows: + +The contents of this file are subject to the Mozilla Public License Version +1.1 (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.mozilla.org/MPL/ + +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for the specific language governing rights and limitations under the +License. + +The Original Code is mozilla.org code. + +The Initial Developer of the Original Code is +Netscape Communications Corporation. +Portions created by the Initial Developer are Copyright (C) 1998 +the Initial Developer. All Rights Reserved. + +Contributor(s): + Darin Fisher (original author) + +Alternatively, the contents of this file may be used under the terms of +either the GNU General Public License Version 2 or later (the "GPL"), or +the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +in which case the provisions of the GPL or the LGPL are applicable instead +of those above. If you wish to allow use of your version of this file only +under the terms of either the GPL or the LGPL, and not to allow others to +use your version of this file under the terms of the MPL, indicate your +decision by deleting the provisions above and replace them with the notice +and other provisions required by the GPL or the LGPL. If you do not delete +the provisions above, a recipient may use your version of this file under +the terms of any one of the MPL, the GPL or the LGPL. + +Copyright 2007, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------- + +The file url_parse.cc is based on nsURLParsers.cc from Mozilla. This file is +licensed separately as follows: + +The contents of this file are subject to the Mozilla Public License Version +1.1 (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.mozilla.org/MPL/ + +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for the specific language governing rights and limitations under the +License. + +The Original Code is mozilla.org code. + +The Initial Developer of the Original Code is +Netscape Communications Corporation. +Portions created by the Initial Developer are Copyright (C) 1998 +the Initial Developer. All Rights Reserved. + +Contributor(s): + Darin Fisher (original author) + +Alternatively, the contents of this file may be used under the terms of +either the GNU General Public License Version 2 or later (the "GPL"), or +the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +in which case the provisions of the GPL or the LGPL are applicable instead +of those above. If you wish to allow use of your version of this file only +under the terms of either the GPL or the LGPL, and not to allow others to +use your version of this file under the terms of the MPL, indicate your +decision by deleting the provisions above and replace them with the notice +and other provisions required by the GPL or the LGPL. If you do not delete +the provisions above, a recipient may use your version of this file under +the terms of any one of the MPL, the GPL or the LGPL. + +This license applies to all parts of V8 that are not externally +maintained libraries. The externally maintained libraries used by V8 +are: + + - PCRE test suite, located in + test/mjsunit/third_party/regexp-pcre.js. This is based on the + test suite from PCRE-7.3, which is copyrighted by the University + of Cambridge and Google, Inc. The copyright notice and license + are embedded in regexp-pcre.js. + + - Layout tests, located in test/mjsunit/third_party. These are + based on layout tests from webkit.org which are copyrighted by + Apple Computer, Inc. and released under a 3-clause BSD license. + + - Strongtalk assembler, the basis of the files assembler-arm-inl.h, + assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, + assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h, + assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h, + assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h. + This code is copyrighted by Sun Microsystems Inc. and released + under a 3-clause BSD license. + + - Valgrind client API header, located at third_party/valgrind/valgrind.h + This is release under the BSD license. + +These libraries have their own licenses; we recommend you read them, +as their terms may differ from the terms below. + +Copyright 2006-2012, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/bin/make_ext4fs +/bin/mkuserimg.sh +/lib/libext4_utils_host.a +------------------------------------------------------------ + + 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/lib/libsqlite_jni.so +------------------------------------------------------------ +This software is copyrighted by Christian Werner +and others. The following terms apply to all files associated with the +software unless explicitly disclaimed in individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +============================================================ +Notices for file(s): +/lib/libgccdemangle.so +------------------------------------------------------------ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +============================================================ +Notices for file(s): +/bin/aapt +/bin/aidl +/bin/dexdump +/bin/jasmin +/bin/split-select +/framework/android-mock-generatorlib.jar +/framework/jasmin.jar +/lib/lib64cutils.a +/lib/lib64log.a +/lib/lib64utils.a +/lib/libandroidfw.a +/lib/libcutils.a +/lib/liblog.a +/lib/liblog.so +/lib/libnativehelper.so +/lib/libsqlite3_android.a +/lib/libutils.a +/lib/libzipfile.a +------------------------------------------------------------ + + Copyright (c) 2005-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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/framework/org.eclipse.core.commands_3.6.0.I20100512-1500.jar +/framework/org.eclipse.core.expressions_3.4.200.v20100505.jar +/framework/org.eclipse.core.runtime_3.6.0.v20100505.jar +/framework/org.eclipse.equinox.common_3.6.0.v20100503.jar +/framework/org.eclipse.jface_3.6.2.M20110210-1200.jar +/framework/org.eclipse.osgi_3.6.2.R36x_v20110210.jar +/framework/org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar +/framework/org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar +/framework/osgi.jar +/framework/propertysheet.jar +/framework/swt.jar +------------------------------------------------------------ + + Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF +THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +*1. DEFINITIONS* + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and +documentation distributed under this Agreement, and + +b) in the case of each subsequent Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and +are distributed by that particular Contributor. A Contribution +'originates' from a Contributor if it was added to the Program by such +Contributor itself or anyone acting on such Contributor's behalf. +Contributions do not include additions to the Program which: (i) are +separate modules of software distributed in conjunction with the Program +under their own license agreement, and (ii) are not derivative works of +the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which +are necessarily infringed by the use or sale of its Contribution alone +or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +*2. GRANT OF RIGHTS* + +a) Subject to the terms of this Agreement, each Contributor hereby +grants Recipient a non-exclusive, worldwide, royalty-free copyright +license to reproduce, prepare derivative works of, publicly display, +publicly perform, distribute and sublicense the Contribution of such +Contributor, if any, and such derivative works, in source code and +object code form. + +b) Subject to the terms of this Agreement, each Contributor hereby +grants Recipient a non-exclusive, worldwide, royalty-free patent license +under Licensed Patents to make, use, sell, offer to sell, import and +otherwise transfer the Contribution of such Contributor, if any, in +source code and object code form. This patent license shall apply to the +combination of the Contribution and the Program if, at the time the +Contribution is added by the Contributor, such addition of the +Contribution causes such combination to be covered by the Licensed +Patents. The patent license shall not apply to any other combinations +which include the Contribution. No hardware per se is licensed hereunder. + +c) Recipient understands that although each Contributor grants the +licenses to its Contributions set forth herein, no assurances are +provided by any Contributor that the Program does not infringe the +patent or other intellectual property rights of any other entity. Each +Contributor disclaims any liability to Recipient for claims brought by +any other entity based on infringement of intellectual property rights +or otherwise. As a condition to exercising the rights and licenses +granted hereunder, each Recipient hereby assumes sole responsibility to +secure any other intellectual property rights needed, if any. For +example, if a third party patent license is required to allow Recipient +to distribute the Program, it is Recipient's responsibility to acquire +that license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient +copyright rights in its Contribution, if any, to grant the copyright +license set forth in this Agreement. + +*3. REQUIREMENTS* + +A Contributor may choose to distribute the Program in object code form +under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and + +b) its license agreement: + +i) effectively disclaims on behalf of all Contributors all warranties +and conditions, express and implied, including warranties or conditions +of title and non-infringement, and implied warranties or conditions of +merchantability and fitness for a particular purpose; + +ii) effectively excludes on behalf of all Contributors all liability for +damages, including direct, indirect, special, incidental and +consequential damages, such as lost profits; + +iii) states that any provisions which differ from this Agreement are +offered by that Contributor alone and not by any other party; and + +iv) states that source code for the Program is available from such +Contributor, and informs licensees how to obtain it in a reasonable +manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and + +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained +within the Program. + +Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution. + +*4. COMMERCIAL DISTRIBUTION* + +Commercial distributors of software may accept certain responsibilities +with respect to end users, business partners and the like. While this +license is intended to facilitate the commercial use of the Program, the +Contributor who includes the Program in a commercial product offering +should do so in a manner which does not create potential liability for +other Contributors. Therefore, if a Contributor includes the Program in +a commercial product offering, such Contributor ("Commercial +Contributor") hereby agrees to defend and indemnify every other +Contributor ("Indemnified Contributor") against any losses, damages and +costs (collectively "Losses") arising from claims, lawsuits and other +legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such +Commercial Contributor in connection with its distribution of the +Program in a commercial product offering. The obligations in this +section do not apply to any claims or Losses relating to any actual or +alleged intellectual property infringement. In order to qualify, an +Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial +Contributor to control, and cooperate with the Commercial Contributor +in, the defense and any related settlement negotiations. The Indemnified +Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages. + +*5. NO WARRANTY* + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED +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. Each Recipient is solely responsible for +determining the appropriateness of using and distributing the Program +and assumes all risks associated with its exercise of rights under this +Agreement , including but not limited to the risks and costs of program +errors, compliance with applicable laws, damage to or loss of data, +programs or equipment, and unavailability or interruption of operations. + +*6. DISCLAIMER OF LIABILITY* + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR +ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +*7. GENERAL* + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including +a cross-claim or counterclaim in a lawsuit) alleging that the Program +itself (excluding combinations of the Program with other software or +hardware) infringes such Recipient's patent(s), then such Recipient's +rights granted under Section 2(b) shall terminate as of the date such +litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails +to comply with any of the material terms or conditions of this Agreement +and does not cure such failure in a reasonable period of time after +becoming aware of such noncompliance. If all Recipient's rights under +this Agreement terminate, Recipient agrees to cease use and distribution +of the Program as soon as reasonably practicable. However, Recipient's +obligations under this Agreement and any licenses granted by Recipient +relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and may +only be modified in the following manner. The Agreement Steward reserves +the right to publish new versions (including revisions) of this +Agreement from time to time. No one other than the Agreement Steward has +the right to modify this Agreement. The Eclipse Foundation is the +initial Agreement Steward. The Eclipse Foundation may assign the +responsibility to serve as the Agreement Steward to a suitable separate +entity. Each new version of the Agreement will be given a distinguishing +version number. The Program (including Contributions) may always be +distributed subject to the version of the Agreement under which it was +received. In addition, after a new version of the Agreement is +published, Contributor may elect to distribute the Program (including +its Contributions) under the new version. Except as expressly stated in +Sections 2(a) and 2(b) above, Recipient receives no rights or licenses +to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in +the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to +this Agreement will bring a legal action under this Agreement more than +one year after the cause of action arose. Each party waives its rights +to a jury trial in any resulting litigation. + + +============================================================ +Notices for file(s): +/framework/bouncycastle-host.jar +/framework/bouncycastle-hostdex.jar +------------------------------------------------------------ +Copyright (c) 2000-2013 The Legion Of The Bouncy Castle (http://www.bouncycastle.org) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +============================================================ +Notices for file(s): +/framework/commons-compress-1.0.jar +------------------------------------------------------------ +Apache Commons Compress +Copyright 2002-2009 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +Original BZip2 classes contributed by Keiron Liddle +, Aftex Software to the Apache Ant project + +Original Tar classes from contributors of the Apache Ant project + +Original Zip classes from contributors of the Apache Ant project + +Original CPIO classes contributed by Markus Kuss and the jRPM project +(jrpm.sourceforge.net) + +============================================================ +Notices for file(s): +/lib/libbcc.so +------------------------------------------------------------ +========================== +NOTICE file for libbcc.git +========================== + +* NOTICE for lib/ExecutionEngine/, lib/ScriptCRT/, include and helper/. + + Copyright (c) 2005-2011, 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +* NOTICE for runtime/ and lib/CodeGen/. + Note: The NOTICE is the same for another git project, external/llvm.git. + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + + + +* NOTICE for tests/disassem.cpp and tests/disassem.h. + +/* $NetBSD: disassem.c,v 1.14 2003/03/27 16:58:36 mycroft Exp $ */ + +/*- + * Copyright (c) 1996 Mark Brinicombe. + * Copyright (c) 1996 Brini. + * + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Brini. + * 4. The name of the company nor the name of the author may be used to + * endorse or promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * RiscBSD kernel project + * + * db_disasm.c + * + * Kernel disassembler + * + * Created : 10/02/96 + * + * Structured after the sparc/sparc/db_disasm.c by David S. Miller & + * Paul Kranenburg + * + * This code is not complete. Not all instructions are disassembled. + */ + +============================================================ +Notices for file(s): +/lib/libfdlibm.a +------------------------------------------------------------ +Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. + +Developed at SunSoft, a Sun Microsystems, Inc. business. +Permission to use, copy, modify, and distribute this +software is freely granted, provided that this notice +is preserved. + +============================================================ +Notices for file(s): +/bin/emulator-arm +/bin/emulator-mips +/bin/emulator-x86 +/bin/emulator +/bin/emulator64-arm +/bin/emulator64-mips +/bin/emulator64-x86 +/lib/emulator-common.a +/lib/emulator-libelff.a +/lib/emulator-libjpeg.a +/lib/emulator-libqemu.a +/lib/emulator-libui.a +/lib/emulator-target-arm.a +/lib/emulator-target-i386.a +/lib/emulator-target-mips.a +/lib/emulator64-common.a +/lib/emulator64-libelff.a +/lib/emulator64-libjpeg.a +/lib/emulator64-libqemu.a +/lib/emulator64-libui.a +/lib/emulator64-target-arm.a +/lib/emulator64-target-i386.a +/lib/emulator64-target-mips.a +------------------------------------------------------------ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 675 Mass Ave, Cambridge, MA 02139, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +============================================================ +Notices for file(s): +/framework/groovy-all-1.7.0.jar +------------------------------------------------------------ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "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. + +============================================================ +Notices for file(s): +/lib/libcorkscrew.so +------------------------------------------------------------ + + Copyright (c) 2011, 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/framework/liblzf.jar +------------------------------------------------------------ +Copyright (c) 2000-2009 Marc Alexander Lehmann + +Redistribution and use in source and binary forms, with or without modifica- +tion, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- +CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE- +CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH- +ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + +Alternatively, the following files carry an additional notice that +explicitly allows relicensing under the GPLv2: lzf.c lzf.h lzfP.h lzf_c.c +lzf_d.c + + +============================================================ +Notices for file(s): +/lib/libLLVM.so +------------------------------------------------------------ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + +====================================================================== +== LICENSE.TXT for ./autoconf/LICENSE.TXT +====================================================================== + +------------------------------------------------------------------------------ +Autoconf Files +------------------------------------------------------------------------------ +All autoconf files are licensed under the LLVM license with the following +additions: + +llvm/autoconf/install-sh: + This script is licensed under the LLVM license, with the following + additional copyrights and restrictions: + + Copyright 1991 by the Massachusetts Institute of Technology + + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that + the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation, and that the name of M.I.T. not be used in advertising or + publicity pertaining to distribution of the software without specific, + written prior permission. M.I.T. makes no representations about the + suitability of this software for any purpose. It is provided "as is" + without express or implied warranty. + +Please see the source files for additional copyrights. + + +====================================================================== +== LICENSE.TXT for ./projects/sample/autoconf/LICENSE.TXT +====================================================================== + +------------------------------------------------------------------------------ +Autoconf Files +------------------------------------------------------------------------------ +All autoconf files are licensed under the LLVM license with the following +additions: + +llvm/autoconf/install-sh: + This script is licensed under the LLVM license, with the following + additional copyrights and restrictions: + + Copyright 1991 by the Massachusetts Institute of Technology + + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that + the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation, and that the name of M.I.T. not be used in advertising or + publicity pertaining to distribution of the software without specific, + written prior permission. M.I.T. makes no representations about the + suitability of this software for any purpose. It is provided "as is" + without express or implied warranty. + +Please see the source files for additional copyrights. + + +====================================================================== +== LICENSE.TXT for ./utils/unittest/googletest/LICENSE.TXT +====================================================================== + +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +====================================================================== +== LICENSE.TXT for ./include/llvm/Support/LICENSE.TXT +====================================================================== + +LLVM System Interface Library +------------------------------------------------------------------------------- +The LLVM System Interface Library is licensed under the Illinois Open Source +License and has the following additional copyright: + +Copyright (C) 2004 eXtensible Systems, Inc. + +============================================================ +Notices for file(s): +/framework/doclava.jar +------------------------------------------------------------ + + Copyright (C) 2010 Google Inc. + + 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. + + +====================================================================== + +jQuery 1.2.6 - New Wave Javascript + +Copyright (c) 2008 John Resig (jquery.com) +Dual licensed under the MIT (MIT-LICENSE.txt) +and GPL (GPL-LICENSE.txt) licenses. + +Copyright (c) 2009 John Resig, http://jquery.com/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +============================================================ +Notices for file(s): +/bin/sqlite3 +/lib/libsqlite.so +------------------------------------------------------------ +2001 September 15 + +The author disclaims copyright to this source code. In place of +a legal notice, here is a blessing: + + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + + +============================================================ +Notices for file(s): +/lib/libcrypto-host.so +/lib/libcrypto_static.a +/lib/libssl-host.so +------------------------------------------------------------ + + LICENSE ISSUES + ============== + + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of + the OpenSSL License and the original SSLeay license apply to the toolkit. + See below for the actual license texts. Actually both licenses are BSD-style + Open Source licenses. In case of any license issues related to OpenSSL + please contact openssl-core@openssl.org. + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * The licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + + +============================================================ +Notices for file(s): +/lib/libexpat-host.so +/lib/libexpat.a +------------------------------------------------------------ +Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + and Clark Cooper +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +============================================================ +Notices for file(s): +/lib/libLLVMAnalysis.a +------------------------------------------------------------ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + +============================================================ +Notices for file(s): +/framework/emmalib.jar +------------------------------------------------------------ +Common Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S +ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + + i) changes to the Program, and + + ii) additions to the Program; + + where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was +added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules +of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative +works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, +use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the +combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered +by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the +Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other +entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole +responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the +Program, it is Recipient's responsibility to acquire that license before distributing the Program. + + d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this +Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, +and implied warranties or conditions of merchantability and fitness for a particular purpose; + + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost +profits; + + iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium +customarily used for software exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the +Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the +commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other +Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify +every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a +third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a +commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to +qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate +with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor +then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this +section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for +determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to +the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this +Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any +patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes +patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other +software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a +reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the +Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and +survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following +manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the +right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new +version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under +which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new +version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal +action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. + +============================================================ +Notices for file(s): +/lib/libselinux.a +------------------------------------------------------------ +This library (libselinux) is public domain software, i.e. not copyrighted. + +Warranty Exclusion +------------------ +You agree that this software is a +non-commercially developed program that may contain "bugs" (as that +term is used in the industry) and that it may not function as intended. +The software is licensed "as is". NSA makes no, and hereby expressly +disclaims all, warranties, express, implied, statutory, or otherwise +with respect to the software, including noninfringement and the implied +warranties of merchantability and fitness for a particular purpose. + +Limitation of Liability +----------------------- +In no event will NSA be liable for any damages, including loss of data, +lost profits, cost of cover, or other special, incidental, +consequential, direct or indirect damages arising from the software or +the use thereof, however caused and on any theory of liability. This +limitation will apply even if NSA has been advised of the possibility +of such damage. You acknowledge that this is a reasonable allocation of +risk. + +============================================================ +Notices for file(s): +/framework/org-netbeans-api-visual.jar +/framework/org-openide-util.jar +------------------------------------------------------------ +The GNU General Public License (GPL) Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. + +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away +your freedom to share and change it. By contrast, the GNU +General Public License is intended to guarantee your freedom +to share and change free software--to make sure the software +is free for all its users. This General Public License +applies to most of the Free Software Foundation's software +and to any other program whose authors commit to using it. +(Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can +apply it to your programs, too. When we speak of free +software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and +charge for this service if you wish), that you receive +source code or can get it if you want it, that you can +change the software or use pieces of it in new free +programs; and that you know you can do these things. To +protect your rights, we need to make restrictions that +forbid anyone to deny you these rights or to ask you to +surrender the rights. These restrictions translate to +certain responsibilities for you if you distribute copies of +the software, or if you modify it. + +For example, if you distribute copies of such a program, +whether gratis or for a fee, you must give the recipients +all the rights that you have. You must make sure that they, +too, receive or can get the source code. And you must show +them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the +software, and (2) offer you this license which gives you +legal permission to copy, distribute and/or modify the +software. + +Also, for each author's protection and ours, we want to make +certain that everyone understands that there is no warranty +for this free software. If the software is modified by +someone else and passed on, we want its recipients to know +that what they have is not the original, so that any +problems introduced by others will not reflect on the +original authors' reputations. + +Finally, any free program is threatened constantly by +software patents. We wish to avoid the danger that +redistributors of a free program will individually obtain +patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must +be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution +and modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND +MODIFICATION + +0. This License applies to any program or other work which +contains a notice placed by the copyright holder saying it +may be distributed under the terms of this General Public +License. The "Program", below, refers to any such program or +work, and a "work based on the Program" means either the +Program or any derivative work under copyright law: that is +to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into +another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each +licensee is addressed as "you". + +Activities other than copying, distribution and modification +are not covered by this License; they are outside its scope. +The act of running the Program is not restricted, and the +output from the Program is covered only if its contents +constitute a work based on the Program (independent of +having been made by running the Program). Whether that is +true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the +Program's source code as you receive it, in any medium, +provided that you conspicuously and appropriately publish on +each copy an appropriate copyright notice and disclaimer of +warranty; keep intact all the notices that refer to this +License and to the absence of any warranty; and give any +other recipients of the Program a copy of this License along +with the Program. + +You may charge a fee for the physical act of transferring a +copy, and you may at your option offer warranty protection +in exchange for a fee. + +2. You may modify your copy or copies of the Program or any +portion of it, thus forming a work based on the Program, and +copy and distribute such modifications or work under the +terms of Section 1 above, provided that you also meet all of +these conditions: + +a) You must cause the modified files to carry prominent +notices stating that you changed the files and the date of +any change. + +b) You must cause any work that you distribute or publish, +that in whole or in part contains or is derived from the +Program or any part thereof, to be licensed as a whole at no +charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands +interactively when run, you must cause it, when started +running for such interactive use in the most ordinary way, +to print or display an announcement including an appropriate +copyright notice and a notice that there is no warranty (or +else, saying that you provide a warranty) and that users may +redistribute the program under these conditions, and telling +the user how to view a copy of this License. (Exception: if +the Program itself is interactive but does not normally +print such an announcement, your work based on the Program +is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the +Program, and can be reasonably considered independent and +separate works in themselves, then this License, and its +terms, do not apply to those sections when you distribute +them as separate works. But when you distribute the same +sections as part of a whole which is a work based on the +Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees +extend to the entire whole, and thus to each and every part +regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights +or contest your rights to work written entirely by you; +rather, the intent is to exercise the right to control the +distribution of derivative or collective works based on the +Program. In addition, mere aggregation of another work not +based on the Program with the Program (or with a work based +on the Program) on a volume of a storage or distribution +medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based +on it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you +also do one of the following: + +a) Accompany it with the complete corresponding +machine-readable source code, which must be distributed +under the terms of Sections 1 and 2 above on a medium +customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least +three years, to give any third party, for a charge no more +than your cost of physically performing source distribution, +a complete machine-readable copy of the corresponding source +code, to be distributed under the terms of Sections 1 and 2 +above on a medium customarily used for software interchange; +or, + +c) Accompany it with the information you received as to the +offer to distribute corresponding source code. (This +alternative is allowed only for noncommercial distribution +and only if you received the program in object code or +executable form with such an offer, in accord with +Subsection b above.) + +The source code for a work means the preferred form of the +work for making modifications to it. For an executable work, +complete source code means all the source code for all +modules it contains, plus any associated interface +definition files, plus the scripts used to control +compilation and installation of the executable. However, as +a special exception, the source code distributed need not +include anything that is normally distributed (in either +source or binary form) with the major components (compiler, +kernel, and so on) of the operating system on which the +executable runs, unless that component itself accompanies +the executable. If distribution of executable or object code +is made by offering access to copy from a designated place, +then offering equivalent access to copy the source code from +the same place counts as distribution of the source code, +even though third parties are not compelled to copy the +source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the +Program except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense or distribute +the Program is void, and will automatically terminate your +rights under this License. However, parties who have +received copies, or rights, from you under this License will +not have their licenses terminated so long as such parties +remain in full compliance. + +5. You are not required to accept this License, since you +have not signed it. However, nothing else grants you +permission to modify or distribute the Program or its +derivative works. These actions are prohibited by law if you +do not accept this License. Therefore, by modifying or +distributing the Program (or any work based on the Program), +you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or +modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based +on the Program), the recipient automatically receives a +license from the original licensor to copy, distribute or +modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the +recipients' exercise of the rights granted herein. You are +not responsible for enforcing compliance by third parties to +this License. + +7. If, as a consequence of a court judgment or allegation of +patent infringement or for any other reason (not limited to +patent issues), conditions are imposed on you (whether by +court order, agreement or otherwise) that contradict the +conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as +to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a +consequence you may not distribute the Program at all. For +example, if a patent license would not permit royalty-free +redistribution of the Program by all those who receive +copies directly or indirectly through you, then the only way +you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or +unenforceable under any particular circumstance, the balance +of the section is intended to apply and the section as a +whole is intended to apply in other circumstances. It is not +the purpose of this section to induce you to infringe any +patents or other property right claims or to contest +validity of any such claims; this section has the sole +purpose of protecting the integrity of the free software +distribution system, which is implemented by public license +practices. Many people have made generous contributions to +the wide range of software distributed through that system +in reliance on consistent application of that system; it is +up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee +cannot impose that choice. + +This section is intended to make thoroughly clear what is +believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is +restricted in certain countries either by patents or by +copyrighted interfaces, the original copyright holder who +places the Program under this License may add an explicit +geographical distribution limitation excluding those +countries, so that distribution is permitted only in or +among countries not thus excluded. In such case, this +License incorporates the limitation as if written in the +body of this License. + +9. The Free Software Foundation may publish revised and/or +new versions of the General Public License from time to +time. Such new versions will be similar in spirit to the +present version, but may differ in detail to address new +problems or concerns. + +Each version is given a distinguishing version number. If +the Program specifies a version number of this License which +applies to it and "any later version", you have the option +of following the terms and conditions either of that version +or of any later version published by the Free Software +Foundation. If the Program does not specify a version number +of this License, you may choose any version ever published +by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into +other free programs whose distribution conditions are +different, write to the author to ask for permission. For +software which is copyrighted by the Free Software +Foundation, write to the Free Software Foundation; we +sometimes make exceptions for this. Our decision will be +guided by the two goals of preserving the free status of all +derivatives of our free software and of promoting the +sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS +NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE +COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM +"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR +IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE +OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE +DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED +TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY +WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED +ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, +SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF +THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT +LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR +LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE +PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH +HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the +greatest possible use to the public, the best way to achieve +this is to make it free software which everyone can +redistribute and change under these terms. + +To do so, attach the following notices to the program. It is +safest to attach them to the start of each source file to +most effectively convey the exclusion of warranty; and each +file should have at least the "copyright" line and a pointer +to where the full notice is found. + +One line to give the program's name and a brief idea of what +it does. + +Copyright (C) +This program is free software; you can redistribute it +and/or modify it under the terms of the GNU General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later +version. This program is distributed in the hope that it +will be useful, but WITHOUT ANY WARRANTY; without even the +implied warranty of MERCHANTABILITY or FITNESS FOR A +PARTICULAR PURPOSE. See the GNU General Public License for +more details. You should have received a copy of the GNU +General Public License along with this program; if not, +write to the Free Software Foundation, Inc., 59 Temple +Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and +paper mail. If the program is interactive, make it output a +short notice like this when it starts in an interactive +mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details +type `show w'. This is free software, and you are welcome to +redistribute it under certain conditions; type `show c' for +details. The hypothetical commands `show w' and `show c' +should show the appropriate parts of the General Public +License. Of course, the commands you use may be called +something other than `show w' and `show c'; they could even +be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a +programmer) or your school, if any, to sign a "copyright +disclaimer" for the program, if necessary. Here is a sample; +alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in +the program `Gnomovision' (which makes passes at compilers) +written by James Hacker. + +signature of Ty Coon, 1 April 1989 +Ty Coon, President of Vice +This General Public License does not permit incorporating +your program into proprietary programs. If your program is a +subroutine library, you may consider it more useful to +permit linking proprietary applications with the library. If +this is what you want to do, use the GNU Library General +Public License instead of this License. + +"CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + +Certain source files distributed by Sun Microsystems, Inc. +are subject to the following clarification and special +exception to the GPL Version 2, but only where Sun has +expressly included in the particular source file's header +the words "Sun designates this particular file as subject +to the "Classpath" exception as provided by Sun in the +License file that accompanied this code." + + Linking this library statically or dynamically with other +modules is making a combined work based on this library. +Thus, the terms and conditions of the GNU General Public +License Version 2 cover the whole combination. + + As a special exception, the copyright holders of this +library give you permission to link this library with +independent modules to produce an executable, regardless of +the license terms of these independent modules, and to copy +and distribute the resulting executable under terms of your +choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license +of that module. An independent module is a module which is +not derived from or based on this library. If you modify +this library, you may extend this exception to your version +of the library, but you are not obligated to do so. If you +do not wish to do so, delete this exception statement from +your version. +============================================================ +Notices for file(s): +/bin/adb +------------------------------------------------------------ + + Copyright (c) 2006-2009, 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/framework/apache-xml-hostdex.jar +------------------------------------------------------------ + ========================================================================= + == NOTICE file corresponding to section 4(d) of the Apache License, == + == Version 2.0, in this case for the Apache Xalan Java distribution. == + ========================================================================= + + Apache Xalan (Xalan XSLT processor) + Copyright 1999-2006 The Apache Software Foundation + + Apache Xalan (Xalan serializer) + Copyright 1999-2006 The Apache Software Foundation + + This product includes software developed at + The Apache Software Foundation (http://www.apache.org/). + + ========================================================================= + Portions of this software was originally based on the following: + - software copyright (c) 1999-2002, Lotus Development Corporation., + http://www.lotus.com. + - software copyright (c) 2001-2002, Sun Microsystems., + http://www.sun.com. + - software copyright (c) 2003, IBM Corporation., + http://www.ibm.com. + + ========================================================================= + The binary distribution package (ie. jars, samples and documentation) of + this product includes software developed by the following: + + - The Apache Software Foundation + - Xerces Java - see LICENSE.txt + - JAXP 1.3 APIs - see LICENSE.txt + - Bytecode Engineering Library - see LICENSE.txt + - Regular Expression - see LICENSE.txt + + - Scott Hudson, Frank Flannery, C. Scott Ananian + - CUP Parser Generator runtime (javacup\runtime) - see LICENSE.txt + + ========================================================================= + The source distribution package (ie. all source and tools required to build + Xalan Java) of this product includes software developed by the following: + + - The Apache Software Foundation + - Xerces Java - see LICENSE.txt + - JAXP 1.3 APIs - see LICENSE.txt + - Bytecode Engineering Library - see LICENSE.txt + - Regular Expression - see LICENSE.txt + - Ant - see LICENSE.txt + - Stylebook doc tool - see LICENSE.txt + + - Elliot Joel Berk and C. Scott Ananian + - Lexical Analyzer Generator (JLex) - see LICENSE.txt + + ========================================================================= + Apache Xerces Java + Copyright 1999-2006 The Apache Software Foundation + + This product includes software developed at + The Apache Software Foundation (http://www.apache.org/). + + Portions of Apache Xerces Java in xercesImpl.jar and xml-apis.jar + were originally based on the following: + - software copyright (c) 1999, IBM Corporation., http://www.ibm.com. + - software copyright (c) 1999, Sun Microsystems., http://www.sun.com. + - voluntary contributions made by Paul Eng on behalf of the + Apache Software Foundation that were originally developed at iClick, Inc., + software copyright (c) 1999. + + ========================================================================= + Apache xml-commons xml-apis (redistribution of xml-apis.jar) + + Apache XML Commons + Copyright 2001-2003,2006 The Apache Software Foundation. + + This product includes software developed at + The Apache Software Foundation (http://www.apache.org/). + + Portions of this software were originally based on the following: + - software copyright (c) 1999, IBM Corporation., http://www.ibm.com. + - software copyright (c) 1999, Sun Microsystems., http://www.sun.com. + - software copyright (c) 2000 World Wide Web Consortium, http://www.w3.org + + +============================================================ +Notices for file(s): +/bin/llvm-rs-cc +/bin/rs-spec-gen +/lib/libslang.a +------------------------------------------------------------ +========================= +NOTICE file for slang.git +========================= + + Copyright (c) 2005-2011, 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +=========================================== +NOTICE file for external/clang (clang.git). +Note: libclang*.a are statically linked. +=========================================== + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- + + + + +========================================= +NOTICE file for external/llvm (llvm.git). +Note: libLLVM*.a are statically linked. +========================================= + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + +============================================================ +Notices for file(s): +/bin/minigzip +/lib/libunz.a +/lib/libz-host.so +/lib/libz.a +------------------------------------------------------------ + (C) 1995-2013 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +============================================================ +Notices for file(s): +/bin/mksnapshot.arm +------------------------------------------------------------ +Copyright (c) 1994-2006 Sun Microsystems Inc. +All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +- Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +- Redistribution in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of Sun Microsystems or the names of contributors may +be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +The original source code covered by the above license above has been +modified significantly by Google Inc. +Copyright 2006-2008 the V8 project authors. All rights reserved. + +============================================================ +Notices for file(s): +/lib/libpng.a +------------------------------------------------------------ + +This copy of the libpng notices is provided for your convenience. In case of +any discrepancy between this copy and the notices in the file png.h that is +included in the libpng distribution, the latter shall prevail. + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + +If you modify libpng you may insert additional notices immediately following +this sentence. + +This code is released under the libpng license. + +libpng versions 1.2.6, August 15, 2004, through 1.2.46, July 9, 2011, are +Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.2.5 +with the following individual added to the list of Contributing Authors + + Cosmin Truta + +libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are +Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.0.6 +with the following individuals added to the list of Contributing Authors + + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-0.96, +with the following individuals added to the list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996, 1997 Andreas Dilger +Distributed according to the same disclaimer and license as libpng-0.88, +with the following individuals added to the list of Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing Authors +and Group 42, Inc. disclaim all warranties, expressed or implied, +including, without limitation, the warranties of merchantability and of +fitness for any purpose. The Contributing Authors and Group 42, Inc. +assume no liability for direct, indirect, incidental, special, exemplary, +or consequential damages, which may result from the use of the PNG +Reference Library, even if advised of the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + +1. The origin of this source code must not be misrepresented. + +2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, without +fee, and encourage the use of this source code as a component to +supporting the PNG file format in commercial products. If you use this +source code in a product, acknowledgment is not required but would be +appreciated. + + +A "png_get_copyright" function is available, for convenient use in "about" +boxes and the like: + + printf("%s",png_get_copyright(NULL)); + +Also, the PNG logo (in PNG format, of course) is supplied in the +files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + +Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a +certification mark of the Open Source Initiative. + +Glenn Randers-Pehrson +glennrp at users.sourceforge.net +July 9, 2011 + +============================================================ +Notices for file(s): +/framework/antlr-runtime.jar +------------------------------------------------------------ +[The "BSD license"] +Copyright (c) 201 Terence Parr +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/framework/junit.jar +------------------------------------------------------------ +Common Public License - v 1.0 + + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + + +"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + + +"Program" means the Contributions distributed in accordance with this Agreement. + + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + + +2. GRANT OF RIGHTS + +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED 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. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + +If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +============================================================ +Notices for file(s): +/framework/ant-glob.jar +------------------------------------------------------------ +/* + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "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. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "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. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "[]" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright [yyyy] [name of copyright owner] + * + * Licensed under the Apache License, Version 2.0 (the "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. + */ + +W3C® SOFTWARE NOTICE AND LICENSE +http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + +This work (and included software, documentation such as READMEs, or other +related items) is being provided by the copyright holders under the following +license. By obtaining, using and/or copying this work, you (the licensee) agree +that you have read, understood, and will comply with the following terms and +conditions. + +Permission to copy, modify, and distribute this software and its documentation, +with or without modification, for any purpose and without fee or royalty is +hereby granted, provided that you include the following on ALL copies of the +software and documentation or portions thereof, including modifications: + + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or terms + and conditions. If none exist, the W3C Software Short Notice should be + included (hypertext is preferred, text is permitted) within the body + of any redistributed or derivative code. + 3. Notice of any changes or modifications to the files, including the date + changes were made. (We recommend you provide URIs to the location from + which the code is derived.) + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE +NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT +THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY +PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + +The name and trademarks of copyright holders may NOT be used in advertising or +publicity pertaining to the software without specific, written prior permission. +Title to copyright in this software and any associated documentation will at +all times remain with copyright holders. + +____________________________________ + +This formulation of W3C's notice and license became active on December 31 2002. +This version removes the copyright ownership notice such that this license can +be used with materials other than those owned by the W3C, reflects that ERCIM +is now a host of the W3C, includes references to this specific dated version of +the license, and removes the ambiguous grant of "use". Otherwise, this version +is the same as the previous version and is written so as to preserve the Free +Software Foundation's assessment of GPL compatibility and OSI's certification +under the Open Source Definition. Please see our Copyright FAQ for common +questions about using materials from our site, including specific terms and +conditions for packages like libwww, Amaya, and Jigsaw. Other questions about +this notice can be directed to site-policy@w3.org. + +Joseph Reagle + +This license came from: http://www.megginson.com/SAX/copying.html + However please note future versions of SAX may be covered + under http://saxproject.org/?selected=pd + +SAX2 is Free! + +I hereby abandon any property rights to SAX 2.0 (the Simple API for +XML), and release all of the SAX 2.0 source code, compiled code, and +documentation contained in this distribution into the Public Domain. +SAX comes with NO WARRANTY or guarantee of fitness for any +purpose. + +David Megginson, david@megginson.com +2000-05-05 + +============================================================ +Notices for file(s): +/lib/libclang.so +/lib/libclangAnalysis.a +------------------------------------------------------------ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- + + +============================================================ +Notices for file(s): +/framework/guavalib.jar +------------------------------------------------------------ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "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. + +============================================================ +Notices for file(s): +/core-lambda-stubs.jar +------------------------------------------------------------ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., 59 + Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. + +============================================================ +Notices for file(s): +/lib/d8.jar +------------------------------------------------------------ +This file lists all licenses for code distributed. +All non-library code has the following 3-Clause BSD license. + + +Copyright (c) 2016, the R8 project authors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Summary of distributed libraries: + +- artifact: com.google.guava:guava:+ + name: Guava Google Core Libraries for Java + copyrightHolder: The Guava Authors + license: The Apache Software License, Version 2.0 + licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.txt +- artifact: com.google.code.gson:gson:+ + name: Gson + license: The Apache Software License, Version 2.0 + licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.txt + url: https://github.com/google/gson +- artifact: it.unimi.dsi:fastutil:+ + name: fastutil + license: Apache License, Version 2.0 + licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.html + url: http://fasutil.di.unimi.it/ +- artifact: net.sf.jopt-simple:jopt-simple:+ + name: JOpt Simple + license: The MIT License + licenseUrl: http://www.opensource.org/licenses/mit-license.php + url: http://pholser.github.com/jopt-simple +- artifact: org.ow2.asm:asm-commons:+ + name: ASM Commons + copyrightHolder: INRIA, France Telecom + license: ASM license + licenseUrl: http://asm.ow2.org/license.html + url: http://asm.ow2.org/index.html +- artifact: org.ow2.asm:asm-tree:+ + name: ASM Tree + copyrightHolder: INRIA, France Telecom + license: ASM license + licenseUrl: http://asm.ow2.org/license.html + url: http://asm.ow2.org/index.html +- artifact: org.ow2.asm:asm-util:+ + name: ASM Util + copyrightHolder: INRIA, France Telecom + license: ASM license + licenseUrl: http://asm.ow2.org/license.html + url: http://asm.ow2.org/index.html +- artifact: org.ow2.asm:asm-analysis:+ + name: ASM Util + copyrightHolder: INRIA, France Telecom + license: ASM license + licenseUrl: http://asm.ow2.org/license.html + url: http://asm.ow2.org/index.html +- artifact: org.ow2.asm:asm:+ + name: ASM Core + copyrightHolder: INRIA, France Telecom + license: ASM license + licenseUrl: http://asm.ow2.org/license.html + url: http://asm.ow2.org/index.html +- artifact: org.jetbrains.kotlin:kotlin-stdlib:+ + name: org.jetbrains.kotlin:kotlin-stdlib + copyrightHolder: JetBrains s.r.o. + license: The Apache License, Version 2.0 + licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.txt + url: https://kotlinlang.org/ +- artifact: org.jetbrains.kotlin:kotlin-stdlib-common:+ + name: org.jetbrains.kotlin:kotlin-stdlib + copyrightHolder: JetBrains s.r.o. + license: The Apache License, Version 2.0 + licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.txt + url: https://kotlinlang.org/ +- artifact: org.jetbrains.kotlinx:kotlinx-metadata-jvm:+ + name: org.jetbrains.kotlinx:kotlinx-metadata-jvm + copyrightHolder: JetBrains s.r.o. + license: The Apache License, Version 2.0 + licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.txt + url: https://kotlinlang.org/ +- artifact: org.jetbrains:annotations:+ + name: IntelliJ IDEA Annotations + copyrightHolder: JetBrains s.r.o. + license: The Apache Software License, Version 2.0 + licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.txt + url: http://www.jetbrains.org + + +Licenses details: + + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "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. + + +Copyright (c) 2000-2011 INRIA, France Telecom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +Apache Commons Compress +Copyright 2002-2016 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The files in the package org.apache.commons.compress.archivers.sevenz +were derived from the LZMA SDK, version 9.20 (C/ and CPP/7zip/), +which has been placed in the public domain: + +"LZMA SDK is placed in the public domain." (http://www.7-zip.org/sdk.html) + + + The MIT License + + Copyright (c) 2004-2016 Paul R. Holser, Jr. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +============================================================================== +Copyright 2008 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Code generated by the Protocol Buffer compiler is owned by the owner +of the input file used when generating it. This code is not +standalone and requires a support library to be linked with it. This +support library is itself covered by the above license. + +============================================================================== + + 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================================== + + Copyright (c) 2005-2019, 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================================== + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "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. + +Copyright 2010 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================== + + Copyright (c) 2005-2014, 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. + + 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. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "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. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================================== +Copyright notice: + + (C) 1995-2026 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +============================================================================== +BSD License + +For Zstandard software + +Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook, nor Meta, nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================== + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/deepseek-harness-plugin/assets/platform-tools/darwin/adb b/deepseek-harness-plugin/assets/platform-tools/darwin/adb new file mode 100755 index 0000000000000000000000000000000000000000..8e505d4fbfa95d3b0d90ae9503345a3f0de7129a GIT binary patch literal 18844128 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 l?_QrTBfEZH?r+7;<>cG9A7d zHa|R)R~PqZjTGK~t;}TZ_=yR>={f1$xsWCa67#;@P2L2M8ce&PL6OPl{ zy+*i%h(m2gcrZ_o@v-~zHBx>z{>}hRVjOxzpGB^$NC*_k0VEE^NE*6l5W{!ZQe)~b zwAx?G_c;X$iH2ZZ7TX*Z6jH@16hb#;v5%cL5 z$7=?dD7)<*qq99KCtE|i9N-WLBGC8sStAv9Ju670=7zWf1BLiV5_RCS&}h3zH4|yr z?Kl|MsJQe+WJK>!bAhqn2re`Hze9(KfOGlOYIm->@SLhM{ zQeVU)I%gTMXb0|KnQ%VF$b%KpC2D}Gt`a7kVs4jQhKmd1{7bdMUI{TPRVhNB7ii(% zL5^Zq@b8%Zh>T6NN73wfNM*Kn^WGs% zo=E=*t{V3Dg>Js)YTDOZ{95dBId*s)n?1cg_YdJlAK8i+0HrvB*#>IB*1&y-#-SHr zkMyHiH4D3{v*zs8R%u4-H)M@1?U*yVDc0L9`t&6!cM+dMJ9uH7YVdu4|drB?KnBrr`Hc2I9Kt&LV~*^g>DK-V%&m z`VR_B-~xH2!%7k*?a7^9j_1g)W1-IF%X9RKPh>@;@Tf*V7&}6{*|GbawO?UOInhix9t&*gZhn3_Um1JC}_5IskjJYr< zDx+rp()YCR52X=uVL9iwr+X`2kp5#j%_G_u8I23#mOSavirw-7dYwV#a zlq9SlTx*RL_ef$h>8&^N{GisiXs2+E(aR{@+fqA7=Xjab)~5$e7KfvxnkHUFRjPbD z)i(U7B~$GpEUBVAtyFt2vtZqx>iVY#%~pN?{GfT#`3hE}O64A8ckPHl)KO}V65^;9 z{+{%pMd0Fj5V&e7&TBG3yhiPyR$k!0Y!mvxl{8xMo-}$Y2!QFk-~64G%BX21v8V+v zu43FOCy)wNJ6yV#f_Y{n8|OeLBUTR zR+68nBpLYmqQXyVh+mW>eyTQrqM(g5A#iPySC5Q#2#N~Z4vO-iTaxl<5iZv14*{*xTxckOI!t6BT``L%K;V7UD}eu)u3N z2Z<;fKpQREX`!bGDRSg5B`bGk;2bE39xR>wgvWlYdm^pisy@saj=s4nQSg#QOQlkH6?==jr7 zn_?F>%Dy6*U~FE|YWGvvp|KWo^Zu-wdxg2#t*y#IEf82KC%TPB@el$yjFKola!-M) zv~v!=B;a_iJK{2n2HB!qJEENH&}PpNVX*Pcv%#hPwoN>4(Fm9y;l6i`jX1MmfQ)uw zh2C~>VzblD7?+O27Hf$lG#5Jc$PER!Akpq00iL-`Ep>6WJ_HfCQ3trTrZe%HtAX!G zw7Xn~+VE!sucT|gWfSt@rXjDPs=6mvcs%^Bz~UhuI@)@5#&&nXOpEEfoc$1&%kQl3 z!pMFa<~(>kB-Zx%6zb-ek^N|v=k$E)KEBrZPPgHI0`V7laVC}W8vlu1>g|Mpi?HWu zV|!>A;lYHLv9nnM?g@v@zLhd(UE4a0x*7`_qfcUn=tpcdM4__6i=PeA0R_($^?fPo zcXXwqZWptl%B$qiY<#|a`eyo*7W#8Gvw-aT4K};Hh`zf1Y)O_`b$T+&Cw3Gd8@;ztqM5u@lWOG$1pTt z1>Z>RycG{-QLrqB7^~(n#IpqjoqyKZVw2UKbe&)0Bd0A574nW++(AUJ4^?X&elR-l zBC9@@L&h2$$a33q?HxR{RSFTVs-_*?5%k8 zb|5RZH8P?w;ap533uWVr!e;WtDojEYHjPK{|1qN|=L`Bg{&R5zL*HgaKjKwdZ@raV zsNPmsZ)TM#EjaW)Sh5@hs7DjnXI9h-N#-lH(UrKBPgcbUoEM_8^LxgeBH06=?%7dsPcWK z+va|TZ4hl_D*{T>91TTPUUsU5fK4tDS)))lXBS9+N87)N<0bV)MKneOlAInQvQ;*} zbmRNbArz{jkyhs?*#@69n7UQXRTcR})uWzui}L-YZ_oW~d}PEL)ha3xb#^a)uoQm= z#TT;+m#wNWFngE{OULvvcHuiDMOOvI2rQrHx!hl3`vsXWXLTf0pB@)AI!T6fz~WTA4?3^5M3I_}A11Sc;!j_$wD| zbZWIbm}YbU*0gB?ZccHqGqFU0$t2^|P_7e_@nHQ|q2Uba)+H?%F8L(`w~>x;NrMd7*d%eIWC7iSP!tpvGv`R`$=v zeyHB2|7Y`=Ia&Q*rvGhlJd6(X-)sC81|_=g6505|NMsM|ZbNJZ-!XJm>%k}rMb7}s z$LE-SzN)Uaa#YWSsIV^O^fpBx{0lz<#p z=qA4#n2$W!p0;mxnWINIw)#z#&FkO*)#x5BbN&ct_sID@oD!RNY;2yy<{ul&d0F@+ z>u_xFanT>=$|B?))mvM1uj&e05UHbz8G^{Kk&T0!G0Tijfs?dkl>KGU^1#40`aF zHVdBM3()RJK~uuysQ(ZkbGFfX*Wk2lcN$WibWOT5H$}e!4NS1Pd^*c;Yav=%~6L>fzPgFR1m&%ke=+qrddf+|R&uA!VCCICdc>#~OwEhQqEOU(<2Trf%ZP6Fr zR`6xv_Zh={M&)3&vnt@%2>6!8!fwhh*|AD0mNifHSZFr=$8OKyj1d(6{ws}NZ+rX% z1J(Ee)h?!N;VH-OOe!Ra89xc~v&WA&{VR^&MmGCSJbve%moa|pCE4FSez%hQWaIaA ze^rb%em9ZuZx}xje`MI57W{7GC$pFF`$E7oe!R-B`}h%QkDv6|-#LEC`Bx_3kC}hp zJ>~eZh9u{o1o_$Hrxus5Hvf9DJ$~ZxyXoAF@ynKEfA{$P?yn~wzfaG}7{8yB@T-rX zk{@OK+!p-I@vCM=$@pC*tvJQ5ls$gZV_!CYH6KLjVk7tf&aH4RT7s8li_&2bRNAC# z=;1}_%bQ~7RLE=khv}mnmEYDYwki1m z0hH5l11we9$Hjt8wF6E>&T9t=j@tD4K;43;>{dlaLwU9N@$yQPl^>Zzb-nH6POUm#D6WFAcBvzHt1WT7&` z#k>g}(j#?h=`xfig@bC?u|!H#QvdA)2TQt8qc~$4reZyAf+Hn1k~DExw!$%dBmUb2 zB~`uSGmqi#IGHP2Nl74Bgj|%Rf`tWGyKcrI%JfG*6RhHcxJ{wm1F!+ zpAn7{BZ4nveKwSK2boUN8y$GhtIhx)E0hXVHy_B6E}7tX;A+)1mXb-Ad(B_2ybVYE9CunG{U?^zrR|m1 z>N%=!d^u~RUl0}Q%_()Cx*Ss;`jkMY1Ud;EmB3MaYq=an52<}B%R5l8J+_#Jb>m-i zl#(8Z(*MIZa`CXcu8se`x?P;2ynD(+AVXK11lHJ^7m`FCd{&t| zR3h!}{5k?JSzjde!hER;VureFBgi=sMKJx5p|uR!M%Oy&^W|93f_ml*jFg{|zSY9L zp{8kmTl9yE9wVjNS?xy(vG8rdLN(Vl)0zQZ^-NPG+Ys8uimLPUNbcg=q-|>a3WY!^ zeqQL)ENzRTPs;i_y6nufUGOK`ed)=8Z8Wac9z}}DkOxF%;uUqgIGeH@b=ia*|9*Y@ zNx66(YKmWK?^mbF0~4+ChEX1A)XTBu328qS{6B@h9DW-JcyjpCzoBJxYwR+?J5w!u z-kPgL_|ih}(DCH;EQ2T)OfA4#hfXN)*K3R0`NHcaZE*`B7gjSuv04Ab^3!ns4A~ya zJrO>BYH^*j5F#!U$cqgJ5A_jc1VI5DmI*3kKP+Tl0*_0~-%0;Z`&;P$ZmWU*daIS% zwA@?n6Rf(VDWgf+;w>bz8zxITD^Rhva!OuTT~S`LWtdw?o$-XJ9;%&sl29z*Kqw^g z8J*d$C_{8vA)|79+vyA;wyHByeUM(SycLfp=}daX`vOp3y5iMSEBV2a;How(d+0F{ zw53%J_s@=cE7nNG)m}=@f>u>Y_F{y7y#`P?ZiXcpxiqnwP~@xBvt70Zamy9UxyvX- z@+`2QvNX!O5L$W4Y~-kksunjhh<*+rG!j!z^U8$7N{oMu+@CRctiTsZ+xNnK~6hO`D8Y$hGgSl zL19scoPA1KBjGgSA?bTF$7jU-kvqf8+8Z{yo|g)Gjkn>;!?G>Fx!>ga@owN@Sv!<} z)Z81bwWF_kX09FTP=j3~s#5hemXC4w*~`bS_{ih<59@OBIx0z5Et$zPI)e!Vp;s>u zmWX_`TL+V6ts}C`i@pfkwhgQvFC4Raz)$yWTacvg-TcXszfggcB}A3?p=ObIc}bRM z6*Rr|WCd`Nr0?CS0){8;ZDf5q4u0em@TG%8zoOvSa9X4%#v)#Y72+m9*KOSDG|lJO zqZ`wv;R?GP%shoEH>cy!E}>!J8f!Exocrg(7G)6>dkg)oV586^ zdH&C1JEk3i)@P`?_JN0OV`irL+(zEK5g|*FUFw5kd7~0r@v@?E*m~c^pF{?Xm^e*OmSX_n{5M$*hW#H(fswXctup zI3&g~De2_juD9mbAJua(N6XGoN6c*L1U^HmRW+Q+_5M#REZ-LQF&|_Sr|5x76nAIx zui&Sgnu}PdUbsZ2R`kPs3;(T2I9PqOfiMk}i$h4tCLtmZd^QvGdCH+j6gd-PNE=%G zHrdaEHGR{bs`SHTpxbo?zz(!3%jgB>$1h$Hnuv&jPs8c`Sti0u)rV=td@Qz{f>6X@ z5{U;L%X+%@QeNqHNs1^Wu#G4x$QOK$j`8O7_)NYDd|$;b87+*81WhJIMqFS^6X-CW zkzt75+=~tLiVbS;%_TB!$QIeQY;l1tTgd1t+2Ym83S^6HU(UZZ3iQ%CsQ$JHhqN=jQP-^ik?$@^6@UYcYN?OVr{m!JPXS-;2(IJUjaol3 zGeGf6D|J)TM@=ZGtY91zrQ&&Ai7kLdgs#l}p2%Nwr^a6JI;w9;^)3+BzLNgJGeZai9PNH(lVg-0OdA2}2oWXp664 zl28&{AH`h98N@(gS6SVNLZn*OyDsxLs89k(eri+bcm#!Nx#crg}9lk#w zRowz*l5W9dJekQ3StET3yI`k@-y`c6 zFVY%+#hrt!CYx)d$$rNdwE7aO)i3AZ+`xE;7GEMug{rCA0TU~g2}bQD(qedDtEGx_ zU@ej!XUjT|KAlNWPA3{K;B=YhBMqr2d#pG+=yR}EDK3XW8fFdBAG4)c1xLmTXTgQ+ zcUin*Xe6A4Fmy!B13KTF8)BDAgz=2PR<`fGK*9D@oGUh9s7)&D!)Kihoi` z$~&cNxxNKYmDs~KTjw=CNZP}zc3}y?o}ct>;O68uVZ}=d;~hopSO!I9%&BASZ9aBn*xO7r1|_X*@VOIAN?JIAwNTZfH8ui;)`(b~6*!&6`vP#S z%x9GF7>xNAgPuF5S4y3&h1K=rH7|%Xogs3|RPiS5=i?e z6jT;4k3mS8P(ITZR4USO-367(JUPuFn-G5o%BK3G8@`^O^`-bq{|ic=3SZw!+$c#- zg|DkslK&Nay@sMw_F-R!uPvc8X@wRVV|5#MSv6Z>gygUwgB3lvPQq#-wXs?Yf0OUA z5&Vme?z$1v`C3LQec0HtpFffQP-)svs6Ui1U#34KjXD$bKdL``?5-r=lfKvm)JK1~ zf!<~!bko0miT-f>NrBBhA+VILDy=_!Ot(1YU#Vw$x8)f9;jTNaYM(-Xm_w1!gl_fE z)F0B_vL(5sjzGr#v5b`1D~E5F_)PsFqI`Ojl9%X{M`gC4KjcMzndSuO4~dnnPQb|T zZ_pp+*p17${-ezrlS@Iz6OG9!^oJ|&IN1R2{^CTyQe%?VALfj+#-xvWrlprm{oy3L zn3L%bgH~Z_6^Xii21)tv(;w2eh-R`emee1rnE!qKp`g!yS$`-%()vSMCcH6iP3jN% zu8jSY`a?;9{;=vW_=x^cx05k;a-sL%Ub^@p$iFgedpu0QMmK_DL|Ebq(ohd=rX@asRM4|yc@hXh5E2v=JH^oMrfaf$gm>HopMh5qkm5uo!k^oQr)Y>CXG zKa@(K68%#Bp-LB#mWlpQJybhIe<)-CEt;)Ad)GR}PD6c21WcQ`H z=*ugL{t#fc{!l{Q^oKk!Q-b5n=O(Dh2%E4IeB1(E9X1j&zCehpKD-JMGI#{_pUI zsw)3@{_verYX-#BGfkCFz#o3|draQ1$RCz<{Nwn;Kg~!Ijg#|-Z6L_s%O6hs3h-y2 z68=AqKLr0z%^ykv_(L8^{*a)>BUu6XLp$(zHG#jA{(tbd(EsE4!<=bp{!l9MRro`d zE+Q=x{!l$sJK+y4LXqSTTbcc7thRUK4+W6T9}<+G@P`Big5nQ_ zibNj=l<sF;=moO5YTr| zTl9!D!JK$Ir=GRiCSI!Vab|0aRuMA7L)GSoOXuKJ5GMhy$t-v!YI*zCoRPTgj;tBR z+v=qxj_zk%*yNPYxNE_Mjn6pjizwr-sQ9-q)(<~uDu~>9ncVNRF3kRBz-vDLjDW%q zH9sw|&o~@QUb~;`7)Wo6Z3LI4|6Q>MX?ILAiSB{~X9IyU<0e2~}1?;Iyn$U5jGM9Xl9vE0_z;#8j-HMF{m1-QxW2$P24a(_e(|9mx$ za&6VEHQ65HkSnxr08vFF)nz7bqaAl}9z15({*{LMOTU=2ihkQV#`HCmxQ#v9lRNaB zy5)T0<|SA4;oe$!I%)%LrNbSW_A6KQ=Vxp8KTO1BJw}&k;X2VMB%1J+YT&wKMm=i3 z&=EWa1((kmD?T*v9?6M$yT0Si{$HDDjyT&_`UyAepb)GOe zfJTz3RT`?S6Q7inkr6p!?;^jHzCjv$(YPx|T%?8Pk%r^BzS3wg#u3ig9lY0%F{da~(rt~T=zudXYkYyHMfzp=+J zK6ci7hv2c`aPWLC*kF#h(NS~icZ`|8y0nRD!bN|p)#ZjDD<~aY?&Y>WFP|1Iq{XXo zGJ?-a5NbC!9TaiBz1wkEj=a(H>yDOg(#C8WWBAq`^+qOTTlYP2iM6jZR_Uo8-J>FS z4L2}d{iEPWE*rYq@x$P->e2m5f)_RnPXfjDO}9GvR_EK5a<9(E-pU`TLR0Hm3c>Md z<2qc`iQYc^(R(8|ba_kL8R2$s=@#w&72v2p@*~Wq#yhw>3Af2!ZQK{WA&2DFHEq$E zg2HC74P(!heCFFL`Y2CbWnb)$9`u&Jq%HcC3hBmS?sDovGykJ~*a^JrmeBk1?^9k6 zy2Y}l%j>8Rb zX0Xr5Qy;fFlgk-1VvQrEpME5LH{$3q>qA*MpgzqJE(q zBIUBAt3!#&cUh%Sw4p?<)z8@(&kd7gIv z7l%c3?0e&B84boorI73;jd*bjwK~;xe5&xyx! zf9w!*Mn&Hs(PRELuvcs0F-fpLko=w`*kypFiSDZ%q0S4mT5;_i>ioJEKAq%t%N}VA zbyUPYAGXMBw^p7QaVlw*jWb|x_zQv9{;Ru|t6CUZbJK+w=e`ONv0RpU? zE-L#It@eBh33blZ!n0KBd$MoS!Z%sL96E9`!G`JNi1o(jhalXYT6mP5l<(qDzhR1e zw;FMeBdCSXwZD_JzzPbeTuFMPBwd%w0dnyDE220ZzY*t=4QG%e{_O_eSI$VG^^y@j z!!F9@c)`{5ZZ72Df>;n~+U|!+t@df&LY;H8+Bqt4s}`P0RvMfQl<@-PTR@53%2&5z zPt%@UT#ya0)|_sgZ$WJQRjBh!?f%oq2dXa=t~WWiB|)~7^w58*t}oGQm$2%GI)9{v zcjKpxB6BExs}*!o`pX0xFvQM^{e&D1MXA;tx6WkD1Q{x6zvLZod=A*A)p;pOk|*t) z0zI|Mzg-L8AVI3?40Tp$wck-y1vSd76uE%@mVmxUs&zT_Z@64S)%>&j^d7BtA8$hE z!o96r*_B#2fuC4uBEe6spfoW?uwjNkcuYoxx`Re}^B>#(XUh%!(juaX>BH(bx-q;<*Y``8CK+7$TYe}`bhwWrFM!AivbVrL9!;pJ9P z=Go%{C_uy8TG2ZHG#QxYaQ{Kb`i+l2&BQ*hO|D?tyPkfB%kr|E7HJlZJJ- zR{NNO1)2<#v=osO>imILtC2_z_}LZ+8QOjVf(f4$6C)~VXN49%jIUOLIn?|kE9eB+ z9xEuwCDvgL=S!|F6lFJp**Q!Vd^dcq4Pg%JpACU*zm{xglP!L&orkGCNabOAh3q^e zoF@qj1pZ|LpIQO)7W+H3nq~#10e(p;wp%A1%%appDvAvtb*Ph4H<2UM38=m{R6u15 zsL@iY-50sw_J{a1r2;+pzMEjfgi{sOKUGx!*wa=<8S{UajCjY%iqDd6CFU`Sf$n6* zr$`K~3tP#ZcWL3DSV8INyCvN>B;9N~=M0ItRASC)=+7fI8{XXh=8|uh5P8zRC`eVX zAa=S{jFV2tvw~9M7dTaIIPX+2ic>I(W3Q1qDQ$A=CYRnG3IcA=oL|&zA5H=B8EdwrKdS z#EebH)QjC+*0cUpjPmj9HWuJlZCm_wKN}B;^`6>yh11gN`cRl|p2e9qk!c6ji%eVZ z7^AJ4UXM(>ms`jNz$xTkrUcnNz?519*Z4|<4N9KnCi3}zE^!%ey0s^_={c)Kpv5ts zFb!IG0;sC3Jj;z7WeKzk;eV-s>#~CCBlJQgui|Mf(ISSTnC#A2t{X=}ogyuAId_XK z&q5EE>t@k8KC}M-AFjy5m(xPbOpzHev*rHDs<*J~8=&XRSPpP?2>3EmOpNr$>TgCh z@^N?hkTwoI2l?<^Eu1Bg5*zR(hdhgS?AQUSERE9^ZDCVGHBM@1Y(uzhw%dnwvAX?k zJC$`+cje6)fv-*2nLlBJ4xZM6LE_s)-bPo{|TUU$yWcs;gw! zW|hFDy1u9rL;&cyID?TUdBE(eX1mS?)Fk zT{h@Lj;Q!elAJsIV5K=;=;#m$wpWKpBuJnuoj6Awv!1KzS314mYK8;~JN=NAwN?1d zVX$z61BIc^5-!%UypzSwrlNqZj};IQ=?Y4D|5LB57=0}=VlDep>;iUKSHcdco?q|C;ud#*X@^`xQkM5xkRx((wbA_g>~izgr`VtC z6cXmk`L&Q}4wK?m$8WrX@wFmh7qfXnj7;fz=+}@*X3et^8MC6=S(Ic_U-@u{@=&*ggIxQeOY_$wbxpE?X}mA z>}7E35?n$QX-OO#fblR7H#S%>9xKr^=xGTS?2*m)g?za^GJ-F+ zMb6~QIgwLuDa|~3w8O_R(wU)H1@TM$aA)~H#ljur&X)F#_DC+;Lo9I_NM{^<>T2JV zaXgqhjs*T)k&ZBW$}0+iEsCC#aYPh_45F}dZ0C>~$B{&(Bc+r5mhl`q(HwBPjOPT# zlJVS(-29I5#N>2($n!D>*TQAQaYJP0Gn`6Xc8n+Ta%^td=&=JLCo!C%qBkOt3aUh> zaom;2VH^XH5K*zs=`xh`m!*`*cp0pVy=qYFbijV0z#g3@;iqOroy*GQo~&YX$(jL0 zP1+?*40vX-QL<)$nhU|A54Gs?j3G5?HBZZ6#!9n^LaRleQA6y9AV%@&G2SYdjPjsD z{@Q-T09W%9`%zTQdw8t7nEzDkkvdzRd6YaWMVJip6>Ve|Dv36XM*7gm0xm3}fhD6d z!jXXUn0a&LV&}2vtjKxJW0p6PUl(v|57l`ZFw4Qfj}amiCVqaBiJz}J7T<%E`rGI2 z?Y}0P>>%!@kl)n5Uy}Azm-J@meUnozHUEG6dg+E6|Ceb?yR`oS_)Tr^Z}hP(CGD}4=N>6# z{XE~tw^RAO|I?1Y4Jq&YQ=Z*CC$nY|e7NuKuhi#0*Ydm)D^D7$-2e9PBn)AackBOQ zxzze^kvg1zYFD!-GPcvksJes#MLIFmSM^d_T0g>~@9Q_u*Yx?%`;8CTk7IALy`EMhW68T@h{tby>x+KE z1p?nzO6qBT<2~MoU}Ed(i+;Oo;Xula^XKgGtphqP|NAC>C+tgV)T$-^t6l3pYTYH} zukW_jOG&+P2&<=0G0@Z2ca@U&e82I&ui?`^-1>~+e$O~0e@}nTmsHh`)RLAzq2+IV z>o5}0^2hP-l(=eR=S1Y4E$0vUs@nGP9eV?5v=f#-$<8C~v`ahKo9r)31cKDw+V^*H z^WP9IEt77$XwYg*)qtdBfr|bt`T*}=ead2Io#v~0F)a;cvFbZqLW%Yx=j{ABtPAZP zL_Z!^lJiYT&H>*#Y-$AZeK+nWhwRd@S#iU_hU1if%)l+`H-9T<{JB#0s;wPTF_9t1 z`6Va-C%SGJxWXy0(k{Ryumj(r0Do6+;@WdNqE5m|1RC$IY$QX)0Hu%P&FwZEaT;AX)lQR)9U?_?7nAS>r^zx ze<+f}#-~}vouc*%V}$~gRz@E2Dj*O z;cZa!-<+#!{;RTWK-ahih?3a(C;Fmo$1muQ1^I$nKbNjmJjG3qk&6`Jb|rO`<@>JXw>$RoGLgS_*jGo+EEp`!@!)invKaiy2%D52yL}ilcBgVbX#&&05k-N6agRdC8e)=iEY0N#c&(k;mIfYe@p}e`~QveT=^) zq7h7TR0pYUvQDF>*(=n5EC*Aa_}3)%!<8q;m4$L`Kx?`J^77n750pNdsh^@?ETTGFoFt#|)_dE+gxyuNZE4kk;XLwh8E{&CV+ljf0S%g@$2dy^+WY9LV*sJunq8FDC z-*|I&3VaT}U9ctt62Y=T)xvDOppk2lqiwm7T=vV=JssD}MKrC6`FcYe;mO&h-P0C~ zjn8vGAJ^dz!d-`fXuX#W%kZgz=%RgT;oc!rw?aMc$d`-KqNCEn?~-uHNl0uP-`eO2 zpP=qNh%U*_P7C*Cn^5im>oHGCK!J<0SOT2Um>}Z*K3y)`{3`m9N6%@%B5_8;0qv^# z1Kb*I;*o)wguJA_lsI0FVD7Mtw>z>Do9-(9uA|7bdX7r@Sw>v+?`^j--t3=_oPLGE zc~zqjfF#^TLeSXHsdL=j{JYjb`hvmhd_SBXzlK~#`=2l$bw9Q#<0TbtIkH9#EO)o& zCbHOCRp+U>T7psZK!ImAO~X*p9_eFws4a@NxI1xfP5q+bK4Y`dq+*1V>v6vQnF(DP z860i)lo)$9h`7NQr`}q@r$kTR^RT9NYyFGU2K6CmW%3ON?2s ztJD#%T7My_gnNpHvvDRK1kg+gk(tNwsv93-|KobgHmj0X?xW|*+@Sd*e0XR#?FISo zIr+~HjTAid3{2y~a2meL@V#JD=qJz&_jq!xO>5%p&i1sBXP4Yb#2vDpmodx13BL(& zjgj2uvxQ1^GyPICJc?C;#GT$AEZ7q?XA{A>eQD#RW(Le|9?A7V>`6I03D`slqEoNJ zr)OnQte^PxVCSr-dh};&UJ(`6ylYmxzO*0zk;JuB)*yPt8?(O74$S@t7!w5Wy#!7* zT1v6bkmup@+=ESH2>|VRJH+W@upvtna;%hl(BtQW{FM1fmiSPTWc?;k66Rk}780tk zf#VVa;{)Q!T02IOUh_HazP_|?iE)tYdX3Ml#WcxFGHiVNW|0dO&0IsciUP1xo_;Px zJ>LmfK~J0rERkDqU0WS0*t4*}&JiYuQ|A%ubm|--<*p-DJxt-jx^L68G&2vL-yY5; zuk};jtqA`a$c@c<3bO!a0h5Npzku((@RIPoQOuF>Wim&0LyQ5+*%xO|=PAh#T>j#_ zVlra45>&|Kc*}NUyIs`-$@zEcv5HkzIopuI*rPWq{6W9g7wm_IioOk>g9T6|Fd=V$ z6fn!Pkz*00h`NRiOc7x%oMnB*-clmd8iZ90(Y1;pyhwE=GR~+bSRA*mwDQtiIKV6QW`e-V3u{XSDxD5e7C)_j`q5!6cnc2UEj8*c_N5eo!K6$=h!^@(V7GalQ6(?ze}uQ zjaB{A)^@w}3KWu63B zH9Ew^aiT?h?j-GqEX1u;H;A-rPlS(>cJ}AIl=)8ZqVJJ+cXgF_D&arLyG6FVYhNUn zor%b6N}Px(PKi9cDMjSThg7Ne(D3WvA&!LH)~$r>D)y8{tD7esX%gZe!z7*=QgnCk z3&Lq6VF3v?%8-02{~C{VvwXHOiYB#2kA+s0m^DJ|)+e*+v_s7w1#IReUNhjuq7rNX!a`DlGtmJq(CzTtL33$tr~syMSZ_F- zAz`iVBs$|&WUHyyYKNkwLpZWr2%0x%hYG$9G<=dFOyx`g*w`e2(CnM81D^MgK!`cv z=UJ*db}SP3s(oj%Zs<5=l6?o98jM?)Z!v zSPU=;H9xa4rpC~k3=BZ3#?zi8>z=#o!r!p@q?|30Wh_W_4_v&F+a%Hhp0>aU?uMVW zns9aw%EG4wVoQcG_YMSVz6}=;ZE61LsBc`Da`4}1nu$S<{>i;&OH%o%K2+?Xt8n|= zNsq$U2hIFMAART{y=Z4-a>%?*Bxd+hIW;IQ&HVyJq1=cSD2n7ocE=w>Gm_R?fdp<5QJ&g&CiR9^rGIxi%5uh*;>BBnAUH6 zuHdiVc(2|xUY2km21TR2e$hy0F4oiOyZjQEL{!s{I`qvQ=$o%53OnmRa@FOIIQM+( zIn8bbqQX+iqJPSqfBgW*KSiV6L2z8{o+T{tmF184NE*_`PcP_QndqE(FVbaCg=} zr*S)-n$-pa$NcZhG+)i7H9f51d?ObA>gsp38u2{}#O`djFZ*M8(PP26Ty~{)H4R)I zKfd#)(5n``lza-uGV6BHf{Uhjf*075{#+8EpLSzB$$`n&#n*sDv=|7@Etse zm!!;4kpad4T*9*mVw$3#Amnio0Bh!ejk?)CVC33w85@HJ?Hv--7)>G6E~6m?#-|6& z@q)qdFfPTKe~Oy6N7S@E%RyO-=y%PDKEm(yq5I@*ovJfBc4Jy3rW<27CjM%Jrm{Yg z_$aA=3Reomt{v7MsCh5kPldBoM8BXPtSK=xIP?IasALu-2Bxs5j{exps1M9&3v$iG z0O5xQ3!L#wussx76EH%g;l^#FMDjY{!#Za!vel$z%7#xA#&kCQ4(5EMH^jYREyKCjrg2q`8o?6~i!uj&y?qZb+jPVx|9u!N3eVMv3r4|S(IsLE#J!|EH zlXV0Ash;r6{(OW*c5uvki3P3ISh#K``lEK$TDQSokZMw0;w{}&Vp5M?f{eNJC>e8! z$e8f4j(idF#TF4C%N*d>5sk7cFz0bO#=-DVxyGshDm|2;YwKI0`^U*0ocot54_a%O z@+FzhJbE{By**L=tDrs>Y^e<7^R-GDD1AY66{QSlH9uv}5a<$ZU4(s#QXurPLHIe+ z*Ls?g;(1Zi8eSDN*>G75`0e2jbz^Zp(d-IEFF&Zn=`q91?`M`z+jR?yFMC??#qy60Tv zu{{uiJ*~QlnZ@PH!5%l~i;%G+IXkkO=(et`4#uuevEE&8TkmvRR&!mbENXxEjNqw) z!x`=2U+d9|y0q{^Ts=;4~ija+kx1m}ndH!sK2bC1&1>0*o&2AZ^-1bSA10l z@*EI+6*Wf&hl+}GBcFzfCgepv>>4j$8rz^V@t+rptwRTxf7;x{34 zfj2;OKsh~7{j6{#Tc=~V)a)eyWhEmI5|-sUIEjOkntF$*0ZEWeygh1ghogEfX(4lX zz^nk*d$5#dt@ecb2us(C-j3`@^jcvw?1;-JFkGKdz zyI0I4m`Li_LKXsUMs$BlQkr$g)6?*LI%^c+)OIPmi5Y5UoqH)R1ruY#Mk&)FVmwsv zwcJULnN;btN38QG7c|Zc8Z)yYiFznpG}&+;R9HlRi*+I2`9OnYV|Cc+mMbeqnyy~L zdXM?);OFx- z{X2A)7eSDv*X`>-P_vDoIHyardt*`o7Z^JT;)=9S(d@spF8e#N#A1U-$&H9+s71@g z*{xs3CAg{d^Vju?(4Ec#$3?ziJ)f>=xMg{ z_^$8K>3vzx6ud1<8a;YAQ@dw1YXqK-*B)4o8ppV4)kD#cnCr^kftwB3z%S1Va6Pte zUhX9}Zxt!?&(}?cJHRxIz=kwTT3r^>8UT(YACtTO&0Y3k!{DzumRc6EHz@}=s28NlO!Fa;1U^=dKM&QG>Z zDb==Qmnv8CQB`>bVlJ7h1IA>v9Z=@l)ym0%4jAZL5(awKGqtuZZ3fIf04e=dHC5zw z)RHl*qZTgVh)qF?==%_t{4Ml`qxCU&f;2ftM;t@R3r#0$^TdCnKDgu3x!VD5 z4nZg}{EX-rAJw!mV*d%N@%Pm*AKebh8~yCBhzrohTw!%oI(%NwSErl>0R{k zKrDj7GYM2J;%^yf3whb#7k56CWdw$FLMfz>Ffu| zY!y#aZg3&8WxXS>Cz#>PTsDky^`eR1C0~`t2IR9g2}BR&hSh!NL9=WhZe{xdMY^|Q zf1;3&o#bnv=*WT-J7rP_Qj_vGXuKv_Ch*H~!PzUc+#X4??_pDfhcWQF_RgR=As6#$ zZm7uTU9w-sCqVlR`{cc1zh3mx{PlWl0pNTc&SoeTyFvF~g$&%M8X7km2xGMwVH4vEtwzVUP+J>%Udpon zWF1CbZ}N*%eOml1@jK*Rd*MNUs zwpa9xEP;;b=6w3MkqSZoe&%+z8o(s}I4-wfOcH6#O9yF?+&qw$hF}e#!k`Q_b?~4ih4G*89q)H^gb1V+f{;Z*fgzDxbV`f;0(PyWzyjP3l9b$y6o~t! zEi-fH-))(S>5)TXs{TkWi1o^44Cn>24b*9WBz~m}1j{iPxzIR(%m)yzI5qE9++5?h zv;YFHJ}VUvCZ$45JU}W(zqJQ9(oU|J5+1D2ZjrgA)dVOi6!Qo2C~pENB{3BI1CDNJ za`!k#X&DJ7lJTaLt(N20y0KL^@jIKC8#I01;FvOR#ZG2=o}ToV2Mr|`?E`?4i_i+% zbHh(c&X5_rh(0#$3&H4@yh{M)#KQtw^$(=dn6C|67y5c4Z$-!x4;V!u!0QX%7jKcx0x-U0NG8N-4H-mlCq%~a& zvfem|g^@hyS7bGpT$C0x%e@oKC7Il>Tkc)*vyg{N)G!-hNmK^5B)x`=cS210hL5TG z+LIWFYrFyDK+t$oAM-=6c7F&Bkn`QrwB#wK_kGid@m+Ef(CyRiKb!Bt*no(D9gGc@ zV|2)hmnt3?{y_mwX$Knq1xVD*RV3bWGdz-ej<54Bxrb&GRV!?kA_`Wz9t(htuc#tP zbb9PEQ1=;wC(cVSIHhFt>#1W%MNKPuYgu{7XqHanY}r#r6J0$dz;Kc_WCOFM;-!FR zU&x%48#1qAq%QY{#!U8Btd(7N*&8*sC;rm0{$RbiPhB=Xlb!(wg3#5bh*G>USnwIM zKUZ%!f_8W$UAw=SY@`U34*G>d)7PaCa-lwEDHCc4c^CjhaQ2Fj(Lk-DA2I&nALv9K z*zuV%LGH?!7|X~H$N&e;Nr2WIM9?qU7BEHxjJvYqZ_6T16iC^XafA+4b=H#NDwu)H z89B<76iptd7YH||7^5r~2&3R2`?Od#Ig=RgBCwPVQ6|zfGQl?T5~pJZ$Wu;b|Pj+!;wQ2`u8E7gF>FPa^@FmOy6V=BA2 zdsJgERGdv%>t)`Gyzd7r^Jh;anW*xON!?DidOa$>G4DV}@^`KXHU75o_Yi-n@=L7` zqk91?)92J^_zx*ZmGL0__@LPd*qPos@E@*I9O+o?NTp)|QfrlY(9H7*!I)ix$|mc8{H>m&$XkfTQv-IHF?$ z0U0{gLtEX|(+Nu2a(b5nPk?o#>Pe2YrNw@%$Vk-bT?~+;>+#4OH65tZ17pT}EB+Hy zoCpvtzv4eZr7o2qPq$DpV#^m6CUhvXtaC@fXJL?2TGeM##fVnlbFzz>o0xL1j6?F;{yl-orwUW#=W9fF(orT>=Xo z5{Q128~$5>OcTxUkX;1P*{3vv_X3`862I&;*bZL00)I4m1NPF8!BQQ()#;#3)51p- zO*?1|vOOVY1HaAWI}emPxM`ERh{+0XcK{`NNx!Af57z5u-|dgd{FNw77S5>5U%cO# z!olB8OWO_KmcRShi`&58l}vy(ev|f10Xf5ta;Q?VtUy#h_XMLX)Tg> zW3ktosvf*JWwwW>DVsee6uepZTg4x)!Tw6ej-T`$R!+sd$sPiIz(^X-P|K#6x*XLi zut5)plzH7K&P&`ReDF`Vrjc8`T`~B|wo2xBl3aJC8*$SZah7sWhC)h%K@Z0FhgXh)sgbk(VzP1X%$>Z~8h_)d=>hwjD@lsNWD__y(m zHHOT1ASRJk%)2vu))4t-6aq>lQxTD@N7d5tUv2Up&me*~fB#d{^dKjCLNm)MUM4QxRF&H^x`#4#8R{u_RI;K()69eM23Lrk!_x5#DXkKmWVb}2~L%cPN zQnJb1=ah4RY-BsR?USlTlXYlPEBI`;#}`LX92blD$II4l&)ybhteU|%+U%kmTmZ&8 z0*|!kBuo)2B5SDHy~mV#%rh;OA9)g(YBT@-dqLzVA8ai=Q2F}y zcRq&)lYduYkVI9AjqD=`Gxo!)PNoM5{H&(zFz5F%FNf#hF|{DOu{hULy#;R!wotJB zu>QtLYVX6$3tHziLXLoCz4XpF8NTyXt7*7LSrM*0m!TVPbLS^1(FH#;pB(?htMELf z_}9O)N8dnLG9ywrnCoyPXi&O-C{IY-nhD;twbNHue&dOpfwL)=G3-@6FmFZM4zlkF zws<=3&NJlnfUnk1c&}NW#5J5diLCMA;!PX}!S0SP-)KC>1GyeefcncmgW%X-zjAD<$GH*^HMe3PiI z>-xl}^w;sS-)$i4`mR(}=de{{aY-P)Jj*&LFnZ+pWdPWBiON$XOsov$JvUJzF5}US zlvw8HILtC}{aEIg(;2(KM;g{PMU^5Ht+!w+4oNadAxJV*pEwPtB*<*{Y1atZLT1nY z0y4X>)!(8H7ld}n35XC*Nw@p50V^|o&ve{$M;%`uK1cFIN|GdY^G=1K9lv!kWJNAX zB{5M6P?!R8eyZ_M&^S*hSG9x9GKF>v0l=o+$YY5ot%1C*aP!)RK~Z;W&0m@B|47w2)D>vvS3 z(q*LPkT>-7h02yCFZaUeKTFv6@%NBa5rO}hth^Ea7 ztGJK{K+TsPGSTueC%YWm#HMLz=B2Q>^6bX4T+j4PN9!X>UvT(a9suSk z0O<*$I@&gTK^9I-f2HNBag!!^(j%A3**^@R&z23=o-IFFdzLLR#RGBiZ_qv4AcNt0 z%wI3w+j30j4UqzW>@|X}TE134-8-u>&C6^{6w=t!zZPs@eZ6Sa53Whua3<~8#|kcf z5Wl$k#0B^bW{dQZS&qVv(vT)MxB1MHVP^!4o*Y#3MVAcgm4?bqTJ?Z{fng3SZQsjO z&2|h_IbD>BHLLk&LNepK(2MQ=s{HF6y{V6?MBzdlytP^h;1-I_J~@alXsBrOQkYTZ zm%maYDvII+teUwA{riN%0-10to;#WT2;-fI)?ZnHYs7h+$X^lcaoZ|iRYlsQ2|Y3* zBNJEZ?VBKymrl7xIS3i=*mU9r^0=T#G3y^tki&&`A?$}{<_#UdpalWUHNn_zPq|ql z?=u8Fvmo26%YL%7sMVZI z+wn8_&xY@=F7Q?URJ@fX>w`mV4tQP`4+Q2?abB>fekr@FnUDX{#i3R$ zN67{BxC-ck9VGcJ{6p2HYZZQN4^#Jup;{)u*(xcVhPR6zQ+{dB3GHx-!P<=>P+MCg z&Pihd?sp{PqbtrYdJpA<6#t_nDV(oN?Ni7&#Pt00PwZ|*PDzZgGc^qD7?_X9aj%o3 zi$C^{NLFJk`o{`u!mEn2{o`TjuIL}^k?aIV-FjrTsxI2{r!v9$!Pp(ZYvzo2wd(Ms z30c`{uOkd1wUU1|>?U&2L*j`Qh+Q!Z4zd9Is_l?w`)BJ#`xUkNRMTo%GYAbhH<1V1 zWqo8Lu!rr;M%c;89FrJ1nobgK7GEe?e$mU{t(XQmZsDFcX)57Q0nx8OtPv2M&na*U zc(F_6Kw<_H7Q*A`#f}oQ4_1QBeVj@-IVzQgPsF86T(6K1l}bLGMx*#)$;V1{XvGsb z))`;x2wJf7&2^$Hsu@L2?SV6yUijA8)OZt$aD0Ji!?BUKo-E4uEEXPn)&)TRbNF=7 zD_8k`Y?CP8d#vThDdqdTAt>Jig*Z^Y7yDUU$3_lYH_hf#l6I4%$qA(ote1;KH{WCZ zar3ye`0J3Ib=~s+q)(1YYTdv8g-sETO4+ZBMOGP$EYW=mX&iu;6|$ZfbOM^9xv(%Q zi>2tlzD+J-Mkp$3w@w&)tP*c1rLHo{ulV{QL;S1cm!lzG$B{jVBfHPo?%VODeYkaA zF1q6)_%WJ#EVMcp^RIF|>vyoLs65xi9}1;XtzRLtY&n4#xfQ{gXPwPP9;-OqJYTHT zb1{}ql2u@2YRL014p+%$TeK+;%&$RcTJy%J_26ohQLn7s#nI9i4dwQ<8)VYD5Li=a znmH&Zv?>5RVVsLqqV60xkyTP7g=~@4#ri`1D}-Q}Yyt;sdTWaDP%Y{ssjp@PzfX3q7>(S_0Ymh~9%t{hNP^cOPEAIxlE8|O-Ke6Y^KiI3*P zlLAI*zEsP;9D&P<-jBTD^ugM~f>e-WRTB3B3MqK7gF>dcY_MvxjC3lYn3>rsqbP1e zPhyc^K6Di*fh9g*x<~hZ&y!U&3~pd%zVkDwR&qBC=74sKHHD8#etHowZ6*rxwfEDP9cN!z4F*({ED6Nlk@eFU8)s1(s(w_@GG3{_xGz7zxk<)E!(D< zYppZBtqFQ?Xjd%;ixQEa0B)~jhg%}0Soowzo#|rVPXr}-*4;E? zjbuff405OmIOg_9483EWj-xW^R+g4B9}!M zbEtbBRc(N)AeZ)AO_NR#_9C-K^m5U7%^pqTCGHv)!)*Csc@&S@uXd?}Ru!+h(Ias? z$DOi$W6IjYM2y<*Gs}q#yYxIl6Udr0HW;q8DLZi~^+>^lFSX%`G#oU?P^Je(+Z%jF zc}8&N%xs_dlN!a@6Jmq+NO6IzKcy!aC3`Rh_7HrjRhy!JIV=B-cv@>4gc;C)b!y?U z7}#ErSL?)D@Ta6HYbom+IX9-*cJ?*XH`((?d23`IUIW_cx@(*=GtUuTZ^$hKoT)U* z^7$*Y7d%P&aMy>EVGwe}R3Ndd`-@YZIbR7hw7A$})DIRI8`` zkZ*lAij?RkRIrslRJ|`EGqLNNK5Wt^JU1Jz+l-T7TrhJv-pke8)Xq z>=pS*U1#kBHWR^WQDQF5h0Zmtx*2*CiVx3$q34NeL)PePXf3tm5vROCr;t{d8y=I!Un66s%cHbhW z9#UJJBP~A5PvF+;VO-+hZ5*H3M+r?lw*-WHE{`*=$CEhef} zAG1}9P*itVE$rOlDw&0^L4)1*@hLtltgazTH+{T|7E5v#<59NIo=F3QB?!W0Cdq7n z?43LjUTf~RsbGwM7wV((a(B*++h*)jQcTx!BfG1seUb8fg=i&?*}Gp#`kg7y@25PA ze~$H1w3EGvO^}oDjhMa(eWNCip>h#FW)frmNee%u@r?^Z@G&xbA z#aMI7Y&rI*e1AFl0O5Z0ZL7x<89cj*p;?_C-X!4?^<2z3V#*+ES|XyGm*qC5li*Vc z2f^3 zDSLYS-JN+|=YNO38{LaG_LkCjzbj#*Um2pSAEOJLN^A~s>?6Rj4`Ru1?nA3qoBk%A zbm9{)FF1CJS3Q=qJ>7y4gaqEwfy94f*qkoM(dclvwErRYgO zacr&M)&jtUld1t07MSRFTYd%7#{v>HtEoSQ zp>sj$?Sj(xe`@jWqg%X5wK%9ti?3A*65JLc*+)S@$c*4?@h=%I;i|{T^rYL7W8$K3 zIY-46vjJ^*IOht_Bf@> zc;zcllj9`^lbLhCdae zXtpjBL>x%4+-!HWr`AZ) z{;B5&4~^CaE!+_%Y``=&Xc4m-Moast&ij+US(B=JbB63 z7~Sg8*1sAX@M?5ppy4x4ueD%_arh;s#z>ct?t?fk@1p-V(HCq$}aXC9W$k=)m{LOY3 zD65PNIdpTVQ8qw0+iqy((rl@UwaulutWD!YMFJron&kticW2^lTYu7v+QLJXQYf47 z5>!h0i=&9K=8>gMd^B-7Hg#H0sbfy&L_`_q+>Fv}jftX?@?6TcGpyT~$R8>y+8^&IWE1&w)zyymjDY4Ss9R(UzmvW@&Xkn0JXyM9 zFGAJr*dId2eodmp*vf6pDGOOJ_XnY~B9MvBqK>!H)kf>s*Ycp>HnW&@B5U=gQl;dw zFcc+M^vXP|@bqI@Yn0|`xy5Ql56v8n7_{4)!H=PO$;S7YxTr zWy{;H`evPEmIlko<1P^#rE>5RWuiG+pJzV|WM*DlZR-?hmgaT2t(&sKk=9L~a1bAE zC7HFg{e;A!ipxZ&{7jci%b@Vngo@Bl14cXFwVJg|F0}~RW^Kto7R)e>TN9bBX+6Tz zTQ{Z48GQy8iX)s?nYVRQhDynIQ}T1F+|{AW_E^lez!XV!w4sYTo)a%vJMZpTpQG=@{@6v| z@o;1{MR_T(HHx0$EQhwb)g6A@B3nXMWJU8^PQj>6@5pnl{K0C}8r>3og)bTE3**@FMGRTkrG%R( zPh6H{*ZQWrA&x$R)7*trx+BLpvg5PytY45wcZgWJ3wrG51?62HfS&P4VJj>45K2GR-+rqaJL>@UHjNtC` zMKFGlc)HvA^ZsAgKj^6X|6BQ&6+TABAXmx1@N6afL-tpjul-wl-vh$pptn3Xy4xWZDwzv!$v*Wr`yTnT7u=5d{D1M*iG_ zK{Q4F3}O@Ee=mQuwd^CTo#?GC_tuv3R5p~ip|#~hYfE`5JB7DXYRgZlE#;}~2fY2D zw)_XRr971l<84@N`LNnjp2|+;?bO=xQ)^3kDm#t0(`w64t1acJ>~!8vuPr~lwv?x` zeBSbF%kyhXc`7U5t)RBNpth8!vNL!)qqh8v+ESj%&gAXP+VV4NOL;0gi?_3C%g?GU z<*Dp!-p;NqKfAV+r?TO^4X-U9UR%mj**UzOQ(JycZRt7P?PohO?*ws;FdPP!il(Y{ij#)gQsd$*Q7c>^LsX;U{akg8W z7lMpc~AfWXqt_(2q=qB_J*T^&b z;uH9wm_RrC8(r%g<<__TG`Bum0T@CxU5q^Uhr5@@w*R3wxmB`xi7oEL|InT+TFtAV zCxj+aV$Kv{(8FG+@#F~~D`7hksj&rMY-yhLOfl;X;oGxS?1`hT801n`jAH}l@k)SK zQMq-@P>dMoiD_s!aRAf0;m1Qi(QRteiJBJ(*4k3C7JN_M(h%9A^5RZ{g=7v<+?Rbx( zkSOK${bpJHcd`F7h+bsXA=V#)39yt@3x7={Giyn;>W}n~vtN*AY_k{CYTd14 z<`2Y{c_g1}0k}IuR+D1vwO5lj&2}vSvfy6LPS8|OK=V(P73EE=D8I!Dz&`o%w<&=& zIaq*16Dt5q?naV)i2MK|-(P#ZyXM|;2O^d-LC-E*NNNIS z2$)A{0v}m#A|pXJdZ=u9CrqWIbkzZd4$tfG2UGq|=mFpSH^LPA7L!f32Mqt~tOu?R z&J=$Mf}5$(XsO$85|?5${vYDY!47%*1as_ItBg&yfTxjos@nScSVn!cKG0zGBt@dL zaLzIEcB}vO^zej44iQY%<9KR@sks}5%q=6BMno>$9CX>A$)a}!UfEkB{Ql&7*mybY=?A5>e)Q`w2U zomg9bVr?l;cvG#NIJmZaaBV41Whe1=Qf>K3wWU0joy^JVW|k%MX)Iv8NGRe02rDhI`26 z!Wyk?{0D{QOBInZ(n2KIjUD`s+k^*YZjHE-Vi#9f7&|F>m9wdX*jb6#S*=iV3E362 z{~&n{$uK!Eb*4&gCVEcd?^b_a6agpKzh-$KQB03jb^`R^=;7=IIdY;SF=a&kCSzOl zU)<{VWxa%R|8fiZCLXIJ25?8ms1etu6Aiv?BY!W68Gv{$k=?vBbK7sj7d#LaZ(j2h zJ7sBe(YA1Z;gs_#acDnwrN#u#lgvbE&vtlWmcc2GLP?v#lhK4Wto%xjb&MB@kjVj)pq$6 z!O6>RsA?;xBCUF*U2x)66S**o=VZZ&Qt+yYs^E>P;8a@Fsw-6i-;^tKt>#ZD1$PUrKbNK|x=(}2F?3DuRB89{TYHib;J9gCxi?&;Ztn^&G z0(RM_OqB~dhZCD{i&Qm?{0-YoPmK@;qiwEyeSA z?T=KkR)3vGcH4+Vk6B!iqS-*&dV3N`+5_Upx51S`|V)?NWRlr&aC-~;~TU1F!T1gb7##A-{O9ddV4$N=*W$; z!ZT*xJnP29X^mOO0NCxbXU}OW%b0V^+*yrfxYW5FoddG$~C^;sg-M)W|q78dk)N&(!8g;Wf z=h!pMXTA$uiKs9|I$8( zB$iEU`)v0d(t*Rk5sS0{%et5O)TKYarWBv7>d%K``)x#o)~WrB53EaIhLKCwAM-2o0-l3jVAa0tRQa2FXBAmBM2wag*JqR%i?S>KxeG$^M7+Kxe;<33 zOgVv~f-%&OTz-&vJpMe+HmXQ0A6Sc@WWdeL2j{p0jeqn#g6vNFXUWrbFaN@(YO$1B zhiBq|#hPX_Gw;NMLf5x(j^oR95>cfKU2mowpRB)rrsnCn$YPdTU1UltXAcvJ6fk4u94G3Xq~Z&Qm-46#U7lm4sJ}Yx=Wm2Qu zcY{=tIrO`EIBgXI#v0j2ST{x*SV#l5Zj39Zy4)osm%9W67>T_t=j^OG;3iUp`tb{_65YNi#AyyqL&WxwU$|)@IEX91j1W}c7QJXLrNyz7hQq~ zPc2lsQ=*6l1WYsY_djw+d>2QMI_b&QAhLA$J9Y4XwH~;|Dae)&y?y-c4iWG-o<#%% zZF1c>!;w%Ow5mTRsvii!aKK)ba^XJwxT3)RDe&B#A|YHRbNNGx$^6lZQmri;9{acA zr8_~$x^YL-+$2f}lNn_xn)`&@>twWr=7t?FGn)AFa%C_(S+A;S_MmOfAMip?zT%c%{GghMH9e?{j>sM#=gI1Q zMiZ{(tL54xMm;vGfrnY5u!>7?zWk@0=LSv^J|K>CDgxvpV8q)lA3#)4Ox#ar{>1|^ z9%ZcSLr#ci*3B;QAQ$=q0t0rmT=?zJY-Vu)CB}OBhwiZL+pmVLUWQFSde|POlnhPP zztpgm9$?sHb5w@ywt@DrJwxxUyQM~k?Ln#jHdVcsIrS4&y^@>jB%V{3!v>>O_3hRv zcJ<$qdtJU${V`O}0nmDN#}77*NHaE#FQnlO((l;FXV^+oi&RP5H9&xAxAFy;� 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

AaPWRA7KWZA1YoXn0z%Sk%xBV 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%0DlR8is?w8wU>ZocaKWQ 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%0An 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 k>%B74%M}=Dk6t6U5+NKIP(9FD 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

Zdkq(;#F)I_2LKl95GLL}-L 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