From 6762aa72136edb3551ff51be3b59ef6b9b5f5cf2 Mon Sep 17 00:00:00 2001 From: Henry Hein Date: Tue, 18 Feb 2025 15:32:01 +0800 Subject: [PATCH 1/2] fix: change code to accomodate new api response --- src/components/Chart.tsx | 1 + src/feed/Feed.ts | 3 + src/feed/TickHistoryFormatter.ts | 30 ++++++--- .../__tests__/TickHistoryFormatter.spec.ts | 2 + src/feed/subscription/DelayedSubscription.ts | 4 +- src/feed/subscription/RealtimeSubscription.ts | 2 +- src/feed/subscription/Subscription.ts | 5 +- src/store/ChartStore.ts | 62 +++---------------- src/types/props.types.ts | 41 +++--------- 9 files changed, 52 insertions(+), 98 deletions(-) diff --git a/src/components/Chart.tsx b/src/components/Chart.tsx index 4583f3112..f81bfa9bf 100644 --- a/src/components/Chart.tsx +++ b/src/components/Chart.tsx @@ -135,6 +135,7 @@ const Chart = React.forwardRef((props: TChartProps, ref) => { React.useEffect(() => { if (props.streamingData) { + // @ts-expect-error fix types later chart.onStreamingData(props.streamingData); } }, [props.streamingData]); diff --git a/src/feed/Feed.ts b/src/feed/Feed.ts index 142c7a0f8..9b8031908 100644 --- a/src/feed/Feed.ts +++ b/src/feed/Feed.ts @@ -279,6 +279,7 @@ class Feed { quotes = new_quotes; if (!this.endEpoch) { + // @ts-expect-error type mismatch resolve later this._mainStore.lastDigitStats.updateLastDigitStats(response); } } catch (error) { @@ -319,6 +320,7 @@ class Feed { const response: TicksHistoryResponse = await this._binaryApi.getTickHistory( tickHistoryRequest as TCreateTickHistoryParams ); + // @ts-expect-error type mismatch resolve later quotes = TickHistoryFormatter.formatHistory(response); } else { // Passed all_ticks from Deriv-app store modules.contract_replay.contract_store.contract_info.audit_details.all_ticks @@ -406,6 +408,7 @@ class Feed { this.setHasReachedEndOfData(true); return; } + // @ts-expect-error type mismatch resolve later result.quotes = TickHistoryFormatter.formatHistory(response); if (firstEpoch <= startLimit) { callback({ moreAvailable: false, quotes: [] }); diff --git a/src/feed/TickHistoryFormatter.ts b/src/feed/TickHistoryFormatter.ts index 381b16032..7a8b88e3c 100644 --- a/src/feed/TickHistoryFormatter.ts +++ b/src/feed/TickHistoryFormatter.ts @@ -1,17 +1,33 @@ -import { TicksHistoryResponse, TicksStreamResponse, ProposalOpenContract } from '@deriv/api-types'; +import { TicksStreamResponse, ProposalOpenContract, TicksHistoryResponse as BaseTicksHistoryResponse } from '@deriv/api-types'; import { OHLCStreamResponse, TAllTicks, TQuote } from 'src/types'; import { getUTCDate, lerp } from '../utils'; +interface HistoryTick { + epoch: string; + ask: string; + bid: string; + quote: string; +} + +export interface TicksHistoryResponse extends Omit { + history?: HistoryTick[]; + candles?: { + epoch: string; + open: string; + high: string; + low: string; + close: string; + }[]; +} + export class TickHistoryFormatter { static formatHistory(response: TicksHistoryResponse): TQuote[] | undefined { const { history, candles } = response; - if (history) { - const { times = [], prices = [] } = history; - const quotes = prices.map((p, idx) => ({ - Date: getUTCDate(+times[idx]), - Close: +p, + if (history?.length) { + return history.map(tick => ({ + Date: getUTCDate(+tick.epoch), + Close: +tick.quote, })); - return quotes; } if (candles) { diff --git a/src/feed/__tests__/TickHistoryFormatter.spec.ts b/src/feed/__tests__/TickHistoryFormatter.spec.ts index bbb170419..aaf526128 100644 --- a/src/feed/__tests__/TickHistoryFormatter.spec.ts +++ b/src/feed/__tests__/TickHistoryFormatter.spec.ts @@ -153,11 +153,13 @@ const tickTickResponseResult = { describe('TickHistoryFormatter test', () => { it('Test parse history style="candles"', () => { + // @ts-expect-error type mismatch resolve later const history = TickHistoryFormatter.formatHistory(historyCandleResponse); expect(history).to.deep.equal(historyCandleResponseResult); }); it('Test parse history style="ticks"', () => { + // @ts-expect-error type mismatch resolve later const history = TickHistoryFormatter.formatHistory(historyTicksResponse); expect(history).to.deep.equal(historyTicksResponseResult); }); diff --git a/src/feed/subscription/DelayedSubscription.ts b/src/feed/subscription/DelayedSubscription.ts index ed8a38551..20d60f5a6 100644 --- a/src/feed/subscription/DelayedSubscription.ts +++ b/src/feed/subscription/DelayedSubscription.ts @@ -21,9 +21,10 @@ class DelayedSubscription extends Subscription { pause() { this._endTimer(); } - + // @ts-expect-error type mismatch resolve later async _startSubscribe(tickHistoryRequest: TCreateTickHistoryParams) { const response: TicksHistoryResponse = await this._binaryApi.getTickHistory(tickHistoryRequest); + // @ts-expect-error type mismatch resolve later const quotes = this._processHistoryResponse(response); this._startTimer(); return { quotes, response }; @@ -57,6 +58,7 @@ class DelayedSubscription extends Subscription { adjust_start_time: 0, }; const response = await this._binaryApi.getTickHistory(tickHistoryRequest as TCreateTickHistoryParams); + // @ts-expect-error type mismatch resolve later const quotes = this._processHistoryResponse(response); this._emitter?.emit(Subscription.EVENT_CHART_DATA, quotes); } else { diff --git a/src/feed/subscription/RealtimeSubscription.ts b/src/feed/subscription/RealtimeSubscription.ts index 8be53addb..f9c0a2e88 100644 --- a/src/feed/subscription/RealtimeSubscription.ts +++ b/src/feed/subscription/RealtimeSubscription.ts @@ -25,7 +25,7 @@ class RealtimeSubscription extends Subscription { const contract_info = this.contractInfo as ProposalOpenContract; const [tickHistoryPromise, processTickHistory] = this._getProcessTickHistoryClosure(); - //here we include duration = 'ticks' && exclude duration = 'seconds' which hasn't tick_stream, all_ticks, tick_count (consist of 15-86.400 ticks) + // here we include duration = 'ticks' && exclude duration = 'seconds' which hasn't tick_stream, all_ticks, tick_count (consist of 15-86.400 ticks) if (!this.shouldFetchTickHistory && !!contract_info.tick_stream) { this._binaryApi.subscribeTickHistory( Object.assign(tickHistoryRequest, { count: contract_info.tick_count }), diff --git a/src/feed/subscription/Subscription.ts b/src/feed/subscription/Subscription.ts index b7150a5e2..b6ef679b3 100644 --- a/src/feed/subscription/Subscription.ts +++ b/src/feed/subscription/Subscription.ts @@ -1,9 +1,9 @@ -import { TicksHistoryResponse, TicksStreamResponse } from '@deriv/api-types'; +import { TicksStreamResponse } from '@deriv/api-types'; import EventEmitter from 'event-emitter-es6'; import { BinaryAPI } from 'src/binaryapi'; import { TCreateTickHistoryParams } from 'src/binaryapi/BinaryAPI'; import { Listener, OHLCStreamResponse, TMainStore, TQuote } from 'src/types'; -import { TickHistoryFormatter } from '../TickHistoryFormatter'; +import { TickHistoryFormatter, TicksHistoryResponse } from '../TickHistoryFormatter'; export type TQuoteResponse = { quotes: TQuote[]; response: TicksHistoryResponse; error?: unknown }; @@ -88,6 +88,7 @@ class Subscription { } if (history) { + // @ts-expect-error type mismatch resolve later const { times = [] } = history; return times[times.length - 1]; } diff --git a/src/store/ChartStore.ts b/src/store/ChartStore.ts index 8dc92927b..770a9e0d5 100644 --- a/src/store/ChartStore.ts +++ b/src/store/ChartStore.ts @@ -3,6 +3,7 @@ import { action, computed, observable, reaction, makeObservable } from 'mobx'; import moment from 'moment'; import { TickHistoryFormatter } from 'src/feed/TickHistoryFormatter'; +import { TicksStreamResponse } from '@deriv/api-types'; import MainStore from '.'; import { ActiveSymbols, BinaryAPI, TradingTimes } from '../binaryapi'; import { TProcessedSymbolItem, TSubCategoryDataItem } from '../binaryapi/ActiveSymbols'; @@ -12,6 +13,7 @@ import { STATE } from '../Constant'; import { Feed } from '../feed'; import { IPendingPromise, + OHLCStreamResponse, TBinaryAPIRequest, TBinaryAPIResponse, TChanges, @@ -32,54 +34,16 @@ type TDefaults = { granularity: TGranularity; chartType: React.ReactNode; }; - class ChartStore { static chartCount = 0; static tradingTimes: TradingTimes | null; static activeSymbols: ActiveSymbols; - onStreamingData(data: { - type: 'tick' | 'candle'; - instrument_id: string; - quote?: number; - timestamp: string; - ohlc?: { open: number; high: number; low: number; close: number }; - }) { + onStreamingData(data: TicksStreamResponse | OHLCStreamResponse) { if (!this.feed || !data) return; - const epoch = Math.floor(new Date(data.timestamp).getTime() / 1000); - - const adaptedData = - data.type === 'tick' - ? { - msg_type: 'tick' as const, - tick: { - epoch, - quote: data.quote || 0, - symbol: data.instrument_id, - pip_size: 2, - }, - echo_req: {}, - } - : { - msg_type: 'ohlc' as const, - ohlc: { - open_time: epoch, - open: String(data.ohlc?.open || 0), - high: String(data.ohlc?.high || 0), - low: String(data.ohlc?.low || 0), - close: String(data.ohlc?.close || 0), - epoch, - symbol: data.instrument_id, - id: `${data.instrument_id}_${epoch}`, - granularity: 60, - }, - echo_req: {}, - }; - - const formattedData = TickHistoryFormatter.formatTick(adaptedData); + const formattedData = TickHistoryFormatter.formatTick(data); if (!formattedData) return; - this.feed.processQuotes([formattedData]); this.feed.addQuote(formattedData); @@ -286,24 +250,12 @@ class ChartStore { this.mainStore.chartAdapter.newChart(); - const transformCandle = (candles: any[]) => - candles.map(candle => ({ - close: candle.close, - epoch: candle.timestamp ? Math.floor(new Date(candle.timestamp).getTime() / 1000) : candle.epoch, - high: candle.high, - low: candle.low, - open: candle.open, - })); setTimeout(() => { - if (props.ticksHistory) { - const response = { - ...props.ticksHistory, - candles: transformCandle(props.ticksHistory.candles), - }; - - const quotes = TickHistoryFormatter.formatHistory(response); + if (props.ticksHistory) { + const quotes = TickHistoryFormatter.formatHistory(props.ticksHistory); this.mainStore.chartAdapter.onTickHistory(quotes!); this.loader.hide(); + // this.mainStore.chartAdapter.updateChartStyle('candles'); } }, 1000); }; diff --git a/src/types/props.types.ts b/src/types/props.types.ts index be0243560..931d0f31a 100644 --- a/src/types/props.types.ts +++ b/src/types/props.types.ts @@ -12,6 +12,7 @@ import { BinaryAPI } from 'src/binaryapi'; import { ChartTypes } from 'src/Constant'; import ChartState from 'src/store/ChartState'; import { TNotification } from 'src/store/Notifier'; +import { TicksHistoryResponse } from 'src/feed/TickHistoryFormatter'; import { TGranularity } from '.'; import { OHLCStreamResponse } from './api.types'; @@ -260,41 +261,17 @@ export type TChartProps = { isLive?: boolean; startWithDataFitMode?: boolean; leftMargin?: number; - ticksHistory?: { - msg_type: 'candles'; - candles: Array<{ - close: number; - timestamp?: string; - high: number; - low: number; - open: number; - }>; - echo_req: { - adjust_start_time: number; - count: number; - end: string; - granularity: number; - req_id: number; - style: string; - subscribe: number; - ticks_history: string; - }; - pip_size: number; - req_id: number; - subscription: { - id: string; - }; - }; + ticksHistory?: TicksHistoryResponse; streamingData?: { - type: 'tick' | 'candle'; + msg_type: 'tick' | 'ohlc'; instrument_id: string; - quote?: number; - timestamp: string; + quote?: string; + epoch: string; ohlc?: { - open: number; - high: number; - low: number; - close: number; + open: string; + high: string; + low: string; + close: string; }; }; }; From c38049f3243b6b59bd57ff69fbe3a1d6a64d7f4e Mon Sep 17 00:00:00 2001 From: Henry Hein Date: Tue, 18 Feb 2025 15:51:50 +0800 Subject: [PATCH 2/2] fix: commit dist for release --- dist/ar-json-09a236.smartcharts.js | 1 + dist/bn-json-9c0e5f.smartcharts.js | 1 + dist/chart/.last_build_id | 1 + dist/chart/assets/AssetManifest.bin | 1 + dist/chart/assets/AssetManifest.json | 1 + dist/chart/assets/FontManifest.json | 1 + dist/chart/assets/NOTICES | 33328 ++++++++++++++++ .../chart/assets/fonts/IBMPlexSans-Bold.woff2 | Bin 0 -> 14272 bytes .../assets/fonts/IBMPlexSans-Regular.woff2 | Bin 0 -> 14120 bytes .../assets/fonts/MaterialIcons-Regular.otf | Bin 0 -> 1645184 bytes dist/chart/assets/shaders/ink_sparkle.frag | 160 + dist/chart/canvaskit/canvaskit.js | 1 + dist/chart/canvaskit/canvaskit.wasm | Bin 0 -> 6756877 bytes dist/chart/canvaskit/chromium/canvaskit.js | 1 + dist/chart/canvaskit/chromium/canvaskit.wasm | Bin 0 -> 5357872 bytes dist/chart/canvaskit/skwasm.js | 1 + dist/chart/canvaskit/skwasm.wasm | Bin 0 -> 4447420 bytes dist/chart/canvaskit/skwasm.worker.js | 1 + dist/chart/favicon.png | Bin 0 -> 917 bytes dist/chart/flutter.js | 1 + dist/chart/flutter_service_worker.js | 1 + dist/chart/index.html | 100 + dist/chart/main.dart.js | 1 + dist/chart/manifest.json | 12 + dist/chart/version.json | 1 + dist/de-json-e99a36.smartcharts.js | 1 + dist/es-json-4bfad7.smartcharts.js | 1 + ...lutter-chart-adapter-0c2451.smartcharts.js | 2 + ...er-chart-adapter-0c2451.smartcharts.js.map | 1 + dist/fr-json-4c679b.smartcharts.js | 1 + dist/html2canvas-7375f9.smartcharts.js | 3 + ...l2canvas-7375f9.smartcharts.js.LICENSE.txt | 18 + dist/html2canvas-7375f9.smartcharts.js.map | 1 + dist/id-json-3614f3.smartcharts.js | 1 + dist/it-json-5a017f.smartcharts.js | 1 + dist/km-json-6e649f.smartcharts.js | 1 + dist/ko-json-164315.smartcharts.js | 1 + dist/messages-json-045f0b.smartcharts.js | 1 + dist/mn-json-e20afd.smartcharts.js | 1 + dist/nl-json-3c6e26.smartcharts.js | 1 + dist/pl-json-d0f7f8.smartcharts.js | 1 + dist/pt-json-444264.smartcharts.js | 1 + ...ze-observer-polyfill-9d6f84.smartcharts.js | 2 + ...bserver-polyfill-9d6f84.smartcharts.js.map | 1 + dist/ru-json-cd22eb.smartcharts.js | 1 + dist/si-json-c9518f.smartcharts.js | 1 + dist/smartcharts.css | 263 + dist/smartcharts.css.map | 1 + dist/smartcharts.js | 3 + dist/smartcharts.js.LICENSE.txt | 5 + dist/smartcharts.js.map | 1 + dist/sprite-a4edd7.smartcharts.svg | 4 + dist/sw-json-1bcaaf.smartcharts.js | 1 + dist/th-json-9a1cb9.smartcharts.js | 1 + dist/tr-json-a9cd3e.smartcharts.js | 1 + dist/uz-json-6fec7f.smartcharts.js | 1 + dist/vi-json-cb843e.smartcharts.js | 1 + dist/zh-json-263198.smartcharts.js | 1 + dist/zh_cn-json-a60677.smartcharts.js | 1 + dist/zh_tw-json-53f3eb.smartcharts.js | 1 + 60 files changed, 33941 insertions(+) create mode 100644 dist/ar-json-09a236.smartcharts.js create mode 100644 dist/bn-json-9c0e5f.smartcharts.js create mode 100644 dist/chart/.last_build_id create mode 100644 dist/chart/assets/AssetManifest.bin create mode 100644 dist/chart/assets/AssetManifest.json create mode 100644 dist/chart/assets/FontManifest.json create mode 100644 dist/chart/assets/NOTICES create mode 100644 dist/chart/assets/fonts/IBMPlexSans-Bold.woff2 create mode 100644 dist/chart/assets/fonts/IBMPlexSans-Regular.woff2 create mode 100644 dist/chart/assets/fonts/MaterialIcons-Regular.otf create mode 100644 dist/chart/assets/shaders/ink_sparkle.frag create mode 100644 dist/chart/canvaskit/canvaskit.js create mode 100644 dist/chart/canvaskit/canvaskit.wasm create mode 100644 dist/chart/canvaskit/chromium/canvaskit.js create mode 100644 dist/chart/canvaskit/chromium/canvaskit.wasm create mode 100644 dist/chart/canvaskit/skwasm.js create mode 100644 dist/chart/canvaskit/skwasm.wasm create mode 100644 dist/chart/canvaskit/skwasm.worker.js create mode 100644 dist/chart/favicon.png create mode 100644 dist/chart/flutter.js create mode 100644 dist/chart/flutter_service_worker.js create mode 100644 dist/chart/index.html create mode 100644 dist/chart/main.dart.js create mode 100644 dist/chart/manifest.json create mode 100644 dist/chart/version.json create mode 100644 dist/de-json-e99a36.smartcharts.js create mode 100644 dist/es-json-4bfad7.smartcharts.js create mode 100644 dist/flutter-chart-adapter-0c2451.smartcharts.js create mode 100644 dist/flutter-chart-adapter-0c2451.smartcharts.js.map create mode 100644 dist/fr-json-4c679b.smartcharts.js create mode 100644 dist/html2canvas-7375f9.smartcharts.js create mode 100644 dist/html2canvas-7375f9.smartcharts.js.LICENSE.txt create mode 100644 dist/html2canvas-7375f9.smartcharts.js.map create mode 100644 dist/id-json-3614f3.smartcharts.js create mode 100644 dist/it-json-5a017f.smartcharts.js create mode 100644 dist/km-json-6e649f.smartcharts.js create mode 100644 dist/ko-json-164315.smartcharts.js create mode 100644 dist/messages-json-045f0b.smartcharts.js create mode 100644 dist/mn-json-e20afd.smartcharts.js create mode 100644 dist/nl-json-3c6e26.smartcharts.js create mode 100644 dist/pl-json-d0f7f8.smartcharts.js create mode 100644 dist/pt-json-444264.smartcharts.js create mode 100644 dist/resize-observer-polyfill-9d6f84.smartcharts.js create mode 100644 dist/resize-observer-polyfill-9d6f84.smartcharts.js.map create mode 100644 dist/ru-json-cd22eb.smartcharts.js create mode 100644 dist/si-json-c9518f.smartcharts.js create mode 100644 dist/smartcharts.css create mode 100644 dist/smartcharts.css.map create mode 100644 dist/smartcharts.js create mode 100644 dist/smartcharts.js.LICENSE.txt create mode 100644 dist/smartcharts.js.map create mode 100644 dist/sprite-a4edd7.smartcharts.svg create mode 100644 dist/sw-json-1bcaaf.smartcharts.js create mode 100644 dist/th-json-9a1cb9.smartcharts.js create mode 100644 dist/tr-json-a9cd3e.smartcharts.js create mode 100644 dist/uz-json-6fec7f.smartcharts.js create mode 100644 dist/vi-json-cb843e.smartcharts.js create mode 100644 dist/zh-json-263198.smartcharts.js create mode 100644 dist/zh_cn-json-a60677.smartcharts.js create mode 100644 dist/zh_tw-json-53f3eb.smartcharts.js diff --git a/dist/ar-json-09a236.smartcharts.js b/dist/ar-json-09a236.smartcharts.js new file mode 100644 index 000000000..c3b8d8416 --- /dev/null +++ b/dist/ar-json-09a236.smartcharts.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunksmartcharts=self.webpackChunksmartcharts||[]).push([[785],{1405:e=>{e.exports=JSON.parse('{"-DI":"-DI","[symbol] feed is delayed by [delay] minutes":"يتم تأخير [symbol] تغذية لمدة [delay] دقيقة","[symbol] market is now opened.":"[symbol] سوق مفتوح الآن.","[symbol] market is presently closed.":"[symbol] سوق مغلق حاليًا.","+DI":"+DI","2-Exponential":"2-الأسي","3-Exponential":"3-الإكسبونسي","A technical momentum indicator that compares a security\'s closing price to its price range over a given time period. The oscillator\'s sensitivity to market movements can be reduced by adjusting the time period or by taking a moving average of the result.":"مؤشر الزخم الفني الذي يقارن سعر إغلاق الورقة المالية بنطاق السعر الخاص بها خلال فترة زمنية معينة. يمكن تقليل حساسية المذبذب لتحركات السوق عن طريق تعديل الفترة الزمنية أو عن طريق أخذ متوسط متحرك للنتيجة.","Active":"نشيط","Add":"أضف","Add new template":"إضافة قالب جديد","Add new templates":"إضافة قوالب جديدة","ADX":"سوق أبوظبي للأوراق المالية","ADX/DMS":"إضافة/دمس","All drawings":"جميع الرسومات","Alligator":"تمساح","already exists.":"موجود بالفعل.","Are you sure?":"هل أنت متأكد؟","Area":"المنطقة","Aroon":"آرون","Aroon Down":"أرون داون","Aroon Up":"أرون أب","Available only for \\\\\\"Area\\\\\\" chart type.":"متاح فقط لنوع مخطط\\\\ «المنطقة\\\\».","Available only for non-tick time intervals.":"متاح فقط للفترات الزمنية الخالية من العلامات.","Awesome":"رائع","Awesome Oscillator":"مذبذب رائع","Axis Label":"تسمية المحور","Base Line":"خط الأساس","Base Line Period":"فترة خط الأساس","Bill Williams introduced the Alligator indicator in 1995. The Alligator is as much a metaphor as it is an indicator. It consists of three lines, overlaid on a pricing chart, that represent the jaw, the teeth and the lips of the beast, and was created to help the trader confirm the presence of a trend and its direction. The Alligator indicator can also help traders designate impulse and corrective wave formations, but the tool works best when combined with a momentum indicator.":"قدم بيل ويليامز مؤشر التمساح في عام 1995. التمساح هو استعارة بقدر ما هو مؤشر. وتتكون من ثلاثة أسطر، متراكبة على مخطط التسعير، تمثل الفك والأسنان وشفاه الوحش، وقد تم إنشاؤها لمساعدة المتداول على تأكيد وجود الاتجاه واتجاهه. يمكن أن يساعد مؤشر Alligator أيضًا المتداولين على تحديد تشكيلات الموجة الدافعة والتصحيحية، ولكن الأداة تعمل بشكل أفضل عند دمجها مع مؤشر الزخم.","Bollinger Bands":"بولينجر باندز","Bollinger Bands Bottom":"قاع بولينجر باندز","Bollinger Bands can be used to measure the highness or lowness of the price relative to previous trades.":"يمكن استخدام Bollinger Bands لقياس ارتفاع أو انخفاض السعر مقارنة بالتداولات السابقة.","Bollinger Bands Median":"متوسط بولينجر باندز","Bollinger Bands Top":"قمة بولينجر باندز","Cancel":"إلغاء","Candle":"شمعة","CCI":"CCI","Channel [num]":"القناة [num]","Channel Fill":"تعبئة القناة","Chart data is not available for this symbol.":"بيانات المخطط غير متوفرة لهذا الرمز.","Chart types":"أنواع الرسوم البيانية","Charts":"الرسوم البيانية","Clear all":"مسح الكل","Close":"أغلق","CLOSED":"مغلق","Color":"اللون","Commodity Channel Index":"مؤشر قناة السلع","Continue":"استمر","Continuous [num]":"مستمر [num]","Conversion Line":"خط التحويل","Conversion Line Period":"فترة خط التحويل","CSV":"CSV","Dark":"داكن","day":"يوم","days":"أيام","Decreasing Bar":"شريط متناقص","Detrended":"مفككة","Detrended Price Oscillator":"مذبذب السعر المتدافع","Developed by Larry Williams, Williams %R is a momentum indicator that is the inverse of the Fast Stochastic Oscillator. Also referred to as %R, Williams %R reflects the level of the close relative to the highest high for the look-back period.":"تم تطوير مؤشر Williams %R بواسطة لاري ويليامز، وهو مؤشر الزخم الذي يمثل معكوس مذبذب الاستوكاستك السريع. يُشار إلى Williams %R أيضًا باسم %R، ويعكس مستوى الإغلاق بالنسبة إلى أعلى مستوى خلال فترة المراجعة.","Developed by Tushar Chande in 1995, Aroon is an indicator system that determines whether a stock is trending or not and how strong the trend is. There are two separate indicators: Aroon-Up and Aroon-Down. A 25-day Aroon-Up measures the number of days since a 25-day high. A 25-day Aroon-Down measures the number of days since a 25-day low.":"تم تطوير Aroon بواسطة Tushar Chande في عام 1995، وهو نظام مؤشرات يحدد ما إذا كان السهم يتجه أم لا ومدى قوة الاتجاه. هناك مؤشران منفصلان: Aroon-Up و Aroon-Down. يقيس Aroon-Up لمدة 25 يومًا عدد الأيام منذ أعلى مستوى في 25 يومًا. يقيس Aroon-Down لمدة 25 يومًا عدد الأيام منذ أدنى مستوى له في 25 يومًا.","Display data for a specific date and time":"عرض البيانات لتاريخ ووقت محددين","Display remaining time for each interval":"عرض الوقت المتبقي لكل فاصل زمني","Display the highest and lowest spot price":"اعرض أعلى وأدنى سعر فوري","Distance(%)":"المسافة (%)","Don\'t show price info on chart":"لا تعرض معلومات الأسعار على الرسم البياني","Donchian Channel":"قناة دونشيان","Donchian High":"دونشيان هاي","Donchian Low":"دونشيان لو","Donchian Median":"دونشيان ميديان","Done":"تم","Double Smoothing Period":"فترة تنعيم مزدوجة","Download":"تنزيل","Drawing tools":"أدوات الرسم","Exponential":"أسي","Fast":"سريع","Fast MA Period":"فترة المتوسط المتحرك السريع","Favorites":"مفضلات","Fib Fan [num]":"مروحة الألياف [num]","Field":"الحقل","Fill Color":"لون التعبئة","Fractal Channel":"قناة فركتال","Fractal Chaos Band":"فرقة فراكتال تشاوس","Fractal High":"فركتال هاي","Fractal Low":"كسورية منخفضة","Fractals are indicators on candlestick charts that identify reversal points in the market. Traders often use fractals to get an idea about the direction in which the price will develop. A fractal will form when a particular price pattern happens on a chart.":"الفركتلات هي مؤشرات على مخططات الشموع التي تحدد نقاط الانعكاس في السوق. غالبًا ما يستخدم المتداولون الفركتلات للحصول على فكرة عن الاتجاه الذي سيتطور فيه السعر. سيتشكل الفراكتل عندما يحدث نمط سعر معين على الرسم البياني.","H":"ح","High":"مرتفع","High Period":"فترة عالية","Highest and lowest spot":"أعلى وأدنى بقعة","Histogram":"الرسم البياني","Historical data mode":"وضع البيانات التاريخية","Hl/2":"هـ / 2","Hlc/3":"Hlc/3","Hlcc/4":"Hlcc/4","Hollow":"مجوف","Horizontal [num]":"أفقي [num]","hour":"ساعة","hours":"ساعات","Hull":"هال","Ichimoku Clouds":"غيوم إيشيموكو","Increasing Bar":"زيادة البار","Indicators":"المؤشرات","Interval duration":"مدة الفاصل الزمني","Jaw":"الفك","Jaw Offset":"إزاحة الفك","Jaw Period":"فترة الفك","L":"ل","Lagging Span":"الفترة الزمنية المتخلفة","Lagging Span Period":"فترة الامتداد الزمني المتأخر","Language":"اللغة","Last digits stats for latest 1000 ticks on":"إحصائيات الأرقام الأخيرة لأحدث 1000 علامة","Leading Span A":"الفترة الرائدة أ","Leading Span B":"الفترة الرائدة ب","Leading Span B Period":"الفترة الزمنية الرائدة ب","Light":"ضوء","Line [num]":"السطر [num]","Lips":"الشفاه","Lips Offset":"إزاحة الشفاه","Lips Period":"فترة الشفاه","Low":"منخفض","Low Period":"فترة منخفضة","MA":"ماجستير","MA Env":"MA Env","MA Env Bottom":"قاع المحيط الحيوي MA Env Bottom","MA Env Median":"المتوسط البيئي MA Env Median","MA Env Top":"MA Env Top","MACD":"MACD","MACD is a trading indicator used in technical analysis of stock prices. It is supposed to reveal changes in the strength, direction, momentum, and duration of a trend in a stock\'s price.":"MACD هو مؤشر تداول يستخدم في التحليل الفني لأسعار الأسهم. من المفترض أن تكشف عن تغييرات في قوة واتجاه وزخم ومدة الاتجاه في سعر السهم.","Markets":"الأسواق","Maximum AF":"الحد الأقصى للتركيز البؤري التلقائي","Minimum AF":"الحد الأدنى من التركيز البؤري التلقائي","minute":"دقيقة","minutes":"الدقائق","Momentum":"الزخم","Moving Average (MA)":"المتوسط المتحرك (MA)","Moving Average Envelope":"مغلف المتوسط المتحرك","Moving Average Type":"نوع المتوسط المتحرك","Moving averages":"المتوسطات المتحركة","Negative Bar":"الشريط السالب","Network status":"حالة الشبكة","No results for":"لا توجد نتائج لـ","Offset":"الأوفست","OHLC":"OHLC","Ohlc/4":"أولك/4","Only selected charts and time intervals are available for this trade type.":"تتوفر الرسوم البيانية والفترات الزمنية المحددة فقط لهذا النوع من التجارة.","Open":"افتح","Opens in:":"يفتح في:","Others":"أخرى","OverBought":"الإفراط في الشراء","OverSold":"الإفراط في البيع","Overwrite":"الكتابة الفوقية","Parabolic SAR":"باربوليك SAR","Percent":"النسبة المئوية","Period":"الفترة","Platform settings":"إعدادات النظام الأساسي","PNG":"PNG","Point":"نقطة","Positive Bar":"شريط موجب","Price Rate of Change":"معدل تغيير السعر","Price ROC":"السعر ROC","PSAR":"PSAR","Rainbow MA":"قوس قزح MA","Rainbow Moving Average":"المتوسط المتحرك لقوس قزح","Ray [num]":"يوم [num]","Rectangle [num]":"المستطيل [num]","Relative Strength Index (RSI)":"مؤشر القوة النسبية (RSI)","Reset":"إعادة الضبط","Result":"النتيجة","Retrieving Chart Data...":"جاري استرداد بيانات المخطط...","Retrieving Chart Engine...":"جاري استرداد محرك المخطط...","Retrieving Market Symbols...":"جاري استرداد رموز السوق...","Retrieving Trading Times...":"جاري استرداد أوقات التداول...","RSI":"مؤشر القوة النسبية","Saved templates":"القوالب المحفوظة","Search":"ابحث","Search...":"ابحث...","Select language":"حدد اللغة","Select theme":"حدد الموضوع","Series":"السلسلة","Settings":"إعدادات","Shading":"التظليل","Shift":"المناوبة","Shift Type":"نوع الوردية","Show Fractals":"إظهار الفركتلات","Show Lines":"عرض الخطوط","Show price info on chart":"عرض معلومات الأسعار على الرسم البياني","Show price info on x & y axes":"عرض معلومات الأسعار على محاور x & y","Show Zones":"مناطق العرض","Signal":"إشارة","Signal Period":"فترة الإشارة","Simple":"سهل","Size":"الحجم","Slow":"بطيء","Slow MA Period":"فترة التباطؤ في المتوسط المتحرك البطيء","SMA1":"SMA1","SMA10":"SMA10","SMA2":"SMA2","SMA3":"SMA3","SMA4":"SMA4","SMA5":"SMA5","SMA6":"SMA6","SMA7":"SMA7","SMA8":"SMA8","SMA9":"SMA9","Smooth":"سلس","Smoothing Period":"فترة التنعيم","Some of your active indicators don’t support 1-tick intervals. If you change to a 1-tick interval, these indicators will be removed from your chart.":"بعض المؤشرات النشطة الخاصة بك لا تدعم الفواصل الزمنية بنقرة واحدة. إذا قمت بالتغيير إلى فاصل زمني مكون من علامة واحدة، فستتم إزالة هذه المؤشرات من الرسم البياني الخاص بك.","Some of your templates may not work with this trade type.":"قد لا تعمل بعض القوالب الخاصة بك مع هذا النوع من التجارة.","Standard Deviations":"الانحرافات المعيارية","Stch Mtm":"Stch Mtm","Stochastic":"العشوائية","Stochastic Momentum Index":"مؤشر ستوكاستيك للزخم","Stochastic Oscillator":"مذبذب ستوكاستيك","Streaming for [symbol] is not available due to license restrictions":"البث لـ [symbol] غير متاح بسبب قيود الترخيص","Teeth":"الأسنان","Teeth Offset":"إزاحة الأسنان","Teeth Period":"فترة الأسنان","Templates":"قوالب","The Average Directional Movement Index index (ADX) was developed in 1978 by J. Welles Wilder as an indicator of trend strength in a series of prices of a financial instrument ADX will range between 0 and 100. Generally, ADX readings below 20 indicate trend weakness, and readings above 40 indicate trend strength.":"تم تطوير مؤشر متوسط الحركة الاتجاهية (ADX) في عام 1978 من قبل J. Welles Wilder كمؤشر لقوة الاتجاه في سلسلة من أسعار الأدوات المالية، وسيتراوح ADX بين 0 و 100. بشكل عام، تشير قراءات ADX التي تقل عن 20 إلى ضعف الاتجاه، وتشير القراءات فوق 40 إلى قوة الاتجاه.","The Awesome Oscillator is an indicator used to measure market momentum. AO calculates the difference of a 34 Period and 5 Period Simple Moving Averages. The Simple Moving Averages that are used are not calculated using closing price but rather each bar\'s midpoints. AO is generally used to affirm trends or to anticipate possible reversals.":"Awesome Oscillator هو مؤشر يستخدم لقياس زخم السوق. يحسب AO الفرق بين المتوسطات المتحركة البسيطة لمدة 34 فترة و 5 فترات. لا يتم حساب المتوسطات المتحركة البسيطة المستخدمة باستخدام سعر الإغلاق ولكن بدلاً من ذلك يتم حساب نقاط الوسط لكل شريط. يستخدم AO بشكل عام لتأكيد الاتجاهات أو لتوقع الانعكاسات المحتملة.","The Commodity Channel Index (CCI) is a versatile indicator that can be used to identify a new trend or warn of extreme conditions.":"مؤشر قناة السلع (CCI) هو مؤشر متعدد الاستخدامات يمكن استخدامه لتحديد اتجاه جديد أو التحذير من الظروف القاسية.","The Detrended Price Oscillator (DPO) helps to identify price cycles without the influence of short- and long-term trends. The DPO compares a simple moving average to a historical pricenear the middle of a specified period. It also shows the peaks and drops over that particular period, making it easier to predict buy points.":"يساعد مذبذب الأسعار المتراجع (DPO) على تحديد دورات الأسعار دون تأثير الاتجاهات قصيرة وطويلة الأجل. يقارن DPO المتوسط المتحرك البسيط بالسعر التاريخي بالقرب من منتصف فترة محددة. كما يُظهر أيضًا القمم والانخفاضات خلال تلك الفترة المحددة، مما يسهل التنبؤ بنقاط الشراء.","The Donchian Channel is an indicator used in market trading developed by Richard Donchian. It is formed by taking the highest high and the lowest low of the last n periods. The area between the high and the low is the channel for the period chosen.":"قناة Donchian هي مؤشر يستخدم في تداول السوق تم تطويره بواسطة Richard Donchian. يتم تشكيله من خلال أخذ أعلى مستوى وأدنى مستوى منخفض في الفترات n الأخيرة. المنطقة بين الأعلى والمنخفض هي القناة للفترة المختارة.","The Ichimoku Cloud, also known as Ichimoku Kinko Hyo, is a versatile indicator that defines support and resistance, identifies trend direction, gauges momentum and provides trading signals. Ichimoku Kinko Hyo translates into “one look equilibrium chart”.":"يعد Ichimoku Cloud، المعروف أيضًا باسم Ichimoku Kinko Hyo، مؤشرًا متعدد الاستخدامات يحدد الدعم والمقاومة، ويحدد اتجاه الاتجاه، ويقيس الزخم ويوفر إشارات التداول. يُترجم إيشيموكو كينكو هيو إلى «مخطط التوازن بنظرة واحدة».","The Moving Average (MA) helps to identify the overall market trend by filtering out short-term price fluctuations. Using historical data, it calculates the average price over a specific period and plots a line on the chart. If the MA line moves upwards, it’s an indicator of an uptrend, a downtrend if it moves downwards. A buy signal occurs when the price moves above the MA line.":"يساعد المتوسط المتحرك (MA) على تحديد الاتجاه العام للسوق من خلال تصفية تقلبات الأسعار على المدى القصير. باستخدام البيانات التاريخية، يقوم بحساب متوسط السعر خلال فترة محددة ويرسم خطًا على الرسم البياني. إذا تحرك خط المتوسط المتحرك لأعلى، فهذا مؤشر على الاتجاه الصعودي، والاتجاه الهبوطي إذا تحرك لأسفل. تحدث إشارة الشراء عندما يتحرك السعر فوق خط المتوسط المتحرك.","The Moving Average Envelope (MAE) helps to identify strong price movement that indicates the start of a trend. The MAE creates a moving average line as well as 2 bands around it. In theory, when the market price touches the upper or lower bands, a trend reversal will occur, indicating a buy signal.":"يساعد مغلف المتوسط المتحرك (MAE) على تحديد حركة السعر القوية التي تشير إلى بداية الاتجاه. يقوم MAE بإنشاء خط متوسط متحرك بالإضافة إلى نطاقين حوله. من الناحية النظرية، عندما يلامس سعر السوق النطاقات العلوية أو السفلية، سيحدث انعكاس الاتجاه، مما يشير إلى إشارة شراء.","The parabolic SAR is calculated almost independently for each trend in the price. When the price is in an uptrend, the SAR emerges below the price and converges upwards towards it. Similarly, on a downtrend, the SAR emerges above the price and converges downwards. At each step within a trend, the SAR is calculated one period in advance.":"يتم حساب SAR المكافئ بشكل مستقل تقريبًا لكل اتجاه في السعر. عندما يكون السعر في اتجاه صعودي، يظهر SAR تحت السعر ويتقارب صعودًا نحوه. وبالمثل، في الاتجاه الهبوطي، يظهر SAR فوق السعر ويتقارب هبوطًا. في كل خطوة داخل الاتجاه، يتم احتساب SAR بفترة واحدة مقدمًا.","The Price Rate-of-Change (ROC) indicator displays the difference between the current price and the price x-time periods ago. The difference can be displayed in either points or as a percentage.":"يعرض مؤشر سعر التغيير (ROC) الفرق بين السعر الحالي والسعر قبل فترات x-time. يمكن عرض الفرق بالنقاط أو كنسبة مئوية.","The Rainbow Moving Average (RMA) displays several moving average lines simultaneously. When the lines intersect, it’s an indicator of price reversal and the angle of the lines are helpful to predict the trend strength. The steeper the curve, the stronger the trend. When the price crosses the moving average lines from below, it signals an upward trend. When the price crosses the moving average lines from above, it signals a downward trend. The RMA is easier to use compared to using several different moving average indicators at once.":"يعرض المتوسط المتحرك لقوس قزح (RMA) العديد من خطوط المتوسط المتحرك في وقت واحد. عندما تتقاطع الخطوط، فهذا مؤشر على انعكاس السعر وزاوية الخطوط مفيدة للتنبؤ بقوة الاتجاه. كلما كان المنحنى أكثر حدة، كلما كان الاتجاه أقوى. عندما يتجاوز السعر خطوط المتوسط المتحرك من الأسفل، فإنه يشير إلى اتجاه صعودي. عندما يتجاوز السعر خطوط المتوسط المتحرك من الأعلى، فإنه يشير إلى اتجاه هبوطي. يعد RMA أسهل في الاستخدام مقارنة باستخدام العديد من مؤشرات المتوسط المتحرك المختلفة في وقت واحد.","The Relative Strength Index (RSI) was published by J. Welles Wilder. The current price is normalized as a percentage between 0 and 100. The name of this oscillator is misleading because it does not compare the instrument relative to another instrument or set of instruments, but rather represents the current price relative to other recent prices within the selected lookback window length.":"تم نشر مؤشر القوة النسبية (RSI) بواسطة J. Welles Wilder. السعر الحالي مُعَدل كنسبة مئوية تتراوح بين ٠ و ١٠٠. اسم هذا المؤشر مُضلل لأنه لا يقارن الأداة بأداة أخرى أو مجموعة من الأدوات، بل يمثل السعر الحالي بالنسبة لأسعار حديثة أخرى ضمن فترة الإرجاع المحددة.","The Stochastic Momentum Index (SMI) helps to identify overbought or oversold conditions in the market and to predict bearish or bullish trends. It calculates the distance between the current closing price and the median of the high/low range, and displays 2 lines on the chart: the first (known as %K) represents the price movement while the second (known as %D) is a moving average of the first line. If the closing price is higher than the median of the high/low range, the SMI returns a positive value. If the closing price is lower than the average price, a negative value is returned. Values above 40 indicate a bullish trend while values below -40 indicate a bearish trend.":"يساعد مؤشر Stochastic Momentum (SMI) على تحديد ظروف ذروة الشراء أو ذروة البيع في السوق والتنبؤ بالاتجاهات الهبوطية أو الصعودية. يقوم بحساب المسافة بين سعر الإغلاق الحالي ومتوسط النطاق المرتفع/المنخفض، ويعرض سطرين على الرسم البياني: الأول (المعروف باسم %K) يمثل حركة السعر بينما يمثل الثاني (المعروف باسم %D) المتوسط المتحرك للسطر الأول. إذا كان سعر الإغلاق أعلى من متوسط النطاق المرتفع/المنخفض، يقوم SMI بإرجاع قيمة إيجابية. إذا كان سعر الإغلاق أقل من متوسط السعر، يتم إرجاع قيمة سالبة. تشير القيم فوق 40 إلى اتجاه صعودي بينما تشير القيم الأقل من -40 إلى اتجاه هبوطي.","Themes":"ثيمات","There are no favorites yet.":"لا توجد مفضلات حتى الآن.","This indicator does not support 1-tick intervals. To use this indicator, change your chart time interval to 1 minute or more.":"لا يدعم هذا المؤشر الفواصل الزمنية بنقرة واحدة. لاستخدام هذا المؤشر، قم بتغيير الفاصل الزمني للرسم البياني إلى دقيقة واحدة أو أكثر.","tick":"علامة","Tick interval only available for \\\\\\"Area\\\\\\" Chart type.":"الفاصل الزمني للتأشير متاح فقط لنوع المخطط\\\\ «المنطقة\\\\».","Time interval":"فترة زمنية","Time Series":"السلاسل الزمنية","Trend":"تريند","Trend [num]":"الاتجاه [num]","Triangular":"مثلث","Try checking your spelling or use a different term":"حاول التدقيق الإملائي أو استخدم مصطلحًا مختلفًا","Type":"النوع","Up to 2 active indicators allowed.":"يُسمح بما يصل إلى مؤشرين نشطين.","Up to 5 active indicators allowed.":"يُسمح بما يصل إلى 5 مؤشرات نشطة.","Variable":"متغير","Vertical [num]":"عمودي [num]","Volatility":"التقلب","Weighted":"مرجح","Welles Wilder":"ويلز وايلدر","William\'s %R":"ويليامز %R","William\'s Percent Range":"نطاق ويليام المئوي","Would you like to overwrite it?":"هل ترغب في الكتابة فوقه؟","You have no active drawings yet.":"ليس لديك رسومات نشطة حتى الآن.","You have no active indicators yet.":"ليس لديك مؤشرات نشطة حتى الآن.","You have no saved templates yet.":"ليس لديك قوالب محفوظة حتى الآن.","Zero Lag":"التأخر الصفري","Zig Zag":"زيغ زاج","Zig Zag helps to identify trend reversals and filters out relatively small price movements by determining the support and resistance levels of the market. It accepts a percentage of deviation as the input and displays a line if the price change is larger than the percentage of deviation. Zig Zag ignores any sideways movement and is useful to filter out “market noise”.":"يساعد Zig Zag في تحديد انعكاسات الاتجاه وتصفية حركات الأسعار الصغيرة نسبيًا من خلال تحديد مستويات الدعم والمقاومة في السوق. يقبل النسبة المئوية للانحراف كمدخل ويعرض سطرًا إذا كان تغيير السعر أكبر من نسبة الانحراف. يتجاهل Zig Zag أي حركة جانبية وهو مفيد لتصفية «ضوضاء السوق».","Zoom in":"قم بالتكبير","Zoom out":"تصغير"}')}}]); \ No newline at end of file diff --git a/dist/bn-json-9c0e5f.smartcharts.js b/dist/bn-json-9c0e5f.smartcharts.js new file mode 100644 index 000000000..6540f3cd2 --- /dev/null +++ b/dist/bn-json-9c0e5f.smartcharts.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunksmartcharts=self.webpackChunksmartcharts||[]).push([[50],{8462:e=>{e.exports=JSON.parse('{"-DI":"-ডিআই","[symbol] feed is delayed by [delay] minutes":"[symbol] ফিড [delay] মিনিট দ্বারা বিলম্বিত হয়","[symbol] market is now opened.":"[symbol] বাজার এখন মুক্ত হয়েছে।","[symbol] market is presently closed.":"[symbol] বর্তমানে বাজার বন্ধ রয়েছে।","+DI":"+ডিআই","2-Exponential":"2-এক্সপোনেন্সিয়াল","3-Exponential":"3-এক্সপোনেন্সিয়াল","A technical momentum indicator that compares a security\'s closing price to its price range over a given time period. The oscillator\'s sensitivity to market movements can be reduced by adjusting the time period or by taking a moving average of the result.":"একটি প্রযুক্তিগত গতির সূচক যা একটি নির্দিষ্ট সময়ের মধ্যে একটি নিরাপত্তার ক্লোজিং প্রাইসকে এর মুল্যের রেঞ্জের সাথে তুলনা করে। বাজারের গতিবিধির প্রতি অসিলেটরের সংবেদনশীলতা সময়কাল সামঞ্জস্য করে বা ফলাফলের চলমান গড় গ্রহণ করে হ্রাস করা যেতে পারে।","Active":"সক্রিয়","Add":"যোগ করুন","Add new template":"নতুন টেমপ্লেট যোগ করুন","Add new templates":"নতুন টেমপ্লেটসমূহ যোগ করুন","ADX":"এডিএক্স","ADX/DMS":"ADX/DMS","All drawings":"সমস্ত অঙ্কন","Alligator":"অ্যালিগেটর","already exists.":"ইতিমধ্যে বিদ্যমান।","Are you sure?":"আপনি কি নিশ্চিত?","Area":"এলাকা","Aroon":"অ্যারুন","Aroon Down":"অরুন ডাউন","Aroon Up":"অরুন আপ","Available only for \\\\\\"Area\\\\\\" chart type.":"শুধুমাত্র\\\\ \\"Erea\\\\” লেখচিত্রের ধরন অনুযায়ী উপলব্ধ।","Available only for non-tick time intervals.":"শুধুমাত্র নন-টিক সময়ের ব্যবধানের জন্য উপলব্ধ।","Awesome":"অসাধারণ","Awesome Oscillator":"দুর্দান্ত অসিলেটর","Axis Label":"অক্ষ লেবেল","Base Line":"বেস লাইন","Base Line Period":"বেস লাইন পিরিয়ড","Bill Williams introduced the Alligator indicator in 1995. The Alligator is as much a metaphor as it is an indicator. It consists of three lines, overlaid on a pricing chart, that represent the jaw, the teeth and the lips of the beast, and was created to help the trader confirm the presence of a trend and its direction. The Alligator indicator can also help traders designate impulse and corrective wave formations, but the tool works best when combined with a momentum indicator.":"বিল উইলিয়ামস 1995 সালে অ্যালিগেটর সূচকটি প্রবর্তন করেছিলেন। অ্যালিগেটর যতটা একটি রূপক ততটাই এটি একটি সূচক। এটি তিনটি লাইন নিয়ে গঠিত, একটি মূল্যের চার্টে ওভারলেড, যা পশুর চোয়াল, দাঁত এবং ঠোঁটকে প্রতিনিধিত্ব করে, এবং এটি ব্যবসায়ীকে একটি প্রবণতা এবং এর দিকনির্দেশের উপস্থিতি নিশ্চিত করতে সহায়তা করার জন্য তৈরি করা হয়েছিল৷ অ্যালিগেটর সূচকটি ব্যবসায়ীদের আবেগ এবং সংশোধনমূলক তরঙ্গ গঠনকে মনোনীত করতেও সাহায্য করতে পারে, তবে একটি ভরবেগ নির্দেশকের সাথে মিলিত হলে টুলটি সবচেয়ে ভাল কাজ করে।","Bollinger Bands":"বলিঙ্গার ব্যান্ডস","Bollinger Bands Bottom":"বোলিংগার ব্যান্ড বটম","Bollinger Bands can be used to measure the highness or lowness of the price relative to previous trades.":"পূর্ববর্তী ট্রেডের সাপেক্ষে মূল্যের উচ্চতা বা নিম্নতা পরিমাপ করতে বলিঙ্গার ব্যান্ডগুলি ব্যবহার করা যেতে পারে।","Bollinger Bands Median":"বোলিংগার ব্যান্ড মিডিয়ান","Bollinger Bands Top":"বোলিংগার ব্যান্ড শীর্ষ","Cancel":"বাতিল","Candle":"মোমবাতি","CCI":"সিসিআই","Channel [num]":"চ্যানেল [num]","Channel Fill":"চ্যানেল ফিল","Chart data is not available for this symbol.":"এই প্রতীকের জন্য লেখচিত্রের তথ্য উপলব্ধ নেই।","Chart types":"লেখচিত্রের ধরন","Charts":"চার্ট","Clear all":"সব মুছে ফেলুন","Close":"বন্ধ","CLOSED":"বন্ধ","Color":"রঙ","Commodity Channel Index":"কমোডিটি চ্যানেল ইনডেক্স","Continue":"চালিয়ে যান","Continuous [num]":"ক্রমাগত [num]","Conversion Line":"রূপান্তর লাইন","Conversion Line Period":"রূপান্তর লাইন পিরিয়ড","CSV":"CSV","Dark":"ডার্ক","day":"দিন","days":"দিনগুলো","Decreasing Bar":"হ্রাস করা বার","Detrended":"হ্রাস করা","Detrended Price Oscillator":"ডিট্রেন্ডেড প্রাইস অসিলেটর","Developed by Larry Williams, Williams %R is a momentum indicator that is the inverse of the Fast Stochastic Oscillator. Also referred to as %R, Williams %R reflects the level of the close relative to the highest high for the look-back period.":"ল্যারি উইলিয়ামস দ্বারা বিকশিত, উইলিয়ামস %R হল একটি ভরবেগ নির্দেশক যা দ্রুত স্টোকাস্টিক অসিলেটরের বিপরীত। %R হিসাবেও উল্লেখ করা হয়, উইলিয়ামস %R লুক-ব্যাক পিরিয়ডের জন্য সর্বোচ্চ উচ্চের কাছাকাছি আপেক্ষিক স্তরকে প্রতিফলিত করে।","Developed by Tushar Chande in 1995, Aroon is an indicator system that determines whether a stock is trending or not and how strong the trend is. There are two separate indicators: Aroon-Up and Aroon-Down. A 25-day Aroon-Up measures the number of days since a 25-day high. A 25-day Aroon-Down measures the number of days since a 25-day low.":"1995 সালে তুষার চান্দে দ্বারা বিকশিত, অরুন একটি সূচক সিস্টেম যা নির্ধারণ করে যে একটি স্টক ট্রেন্ডিং কি না এবং প্রবণতা কতটা শক্তিশালী। দুটি পৃথক সূচক রয়েছে: আরুন-আপ এবং আরুন-ডাউন। একটি 25-দিনের আরুন-আপ 25-দিনের উচ্চ থেকে দিনের সংখ্যা পরিমাপ করে। একটি 25-দিনের আরুন-ডাউন 25-দিনের নিম্ন থেকে দিনের সংখ্যা পরিমাপ করে৷","Display data for a specific date and time":"একটি নির্দিষ্ট তারিখ এবং সময়ের জন্য ডাটা প্রদর্শন করা হবে","Display remaining time for each interval":"প্রতিটি ব্যবধানের জন্য অবশিষ্ট সময় প্রদর্শন করা হবে","Display the highest and lowest spot price":"সর্বোচ্চ এবং সর্বনিম্ন স্পট মূল্য প্রদর্শন","Distance(%)":"দূরত্ব (%)","Don\'t show price info on chart":"চার্টে মুল্যের তথ্য প্রদর্শন করা হবে না","Donchian Channel":"ডনচিয়ান চ্যানেল","Donchian High":"ডনচিয়ান হাই","Donchian Low":"ডনচিয়ান লো","Donchian Median":"ডনচিয়ান মিডিয়ান","Done":"সম্পন্ন","Double Smoothing Period":"ডাবল স্মুথিং পিরিয়ড","Download":"ডাউনলোড","Drawing tools":"অঙ্কন সরঞ্জাম","Exponential":"এক্সপোনেন্সিয়াল","Fast":"দ্রুত","Fast MA Period":"দ্রুত এমএ পিরিয়ড","Favorites":"প্রিয়","Fib Fan [num]":"ফিব ফ্যান [num]","Field":"ক্ষেত্র","Fill Color":"রঙ পূরণ করুন","Fractal Channel":"ফ্র্যাক্টাল চ্যানেল","Fractal Chaos Band":"ফ্র্যাক্টাল ক্যাওস ব্যান্ড","Fractal High":"ফ্র্যাকটাল হাই","Fractal Low":"ফ্র্যাকটাল লো","Fractals are indicators on candlestick charts that identify reversal points in the market. Traders often use fractals to get an idea about the direction in which the price will develop. A fractal will form when a particular price pattern happens on a chart.":"ফ্র্যাকটাল ক্যান্ডেলস্টিক চার্টের সূচক যা বাজারে উলটাপালটা পয়েন্ট সনাক্ত করে। ব্যবসায়ীরা প্রায়ই fractals ব্যবহার করে দাম বিকাশ হবে যা দিক সম্পর্কে একটি ধারণা পেতে। একটি ফ্রাক্টাল গঠন করবে যখন একটি চার্টে একটি নির্দিষ্ট মূল্য প্যাটার্ন ঘটবে।","H":"এইচ","High":"উচ্চ","High Period":"উচ্চ সময়কাল","Highest and lowest spot":"সর্বোচ্চ এবং সর্বনিম্ন স্পট","Histogram":"হিস্টোগ্রাম","Historical data mode":"ঐতিহাসিক ডাটা মোড","Hl/2":"এইচএল/2","Hlc/3":"এইচএলসি/3","Hlcc/4":"এইচএলসিসি/4","Hollow":"ফাঁকা","Horizontal [num]":"অনুভূমিক [num]","hour":"ঘন্টা","hours":"ঘণ্টা","Hull":"হাল","Ichimoku Clouds":"ইচিমোকু মেঘ","Increasing Bar":"বর্ধমান বার","Indicators":"ইন্ডিকেটর","Interval duration":"ব্যবধান সময়কাল","Jaw":"চোয়াল","Jaw Offset":"চোয়াল অফসেট","Jaw Period":"চোয়াল পিরিয়ড","L":"এল","Lagging Span":"ল্যাগিং স্প্যান","Lagging Span Period":"ল্যাগিং স্প্যান পিরিয়ড","Language":"ভাষা","Last digits stats for latest 1000 ticks on":"সর্বশেষ সংখ্যা সর্বশেষ 1000 টি টিকগুলির পরিসংখ্যান","Leading Span A":"নেতৃস্থানীয় স্প্যান এ","Leading Span B":"শীর্ষস্থানীয় স্প্যান বি","Leading Span B Period":"লিডিং স্প্যান বি পিরিয়ড","Light":"হাল্কা","Line [num]":"লাইন [num]","Lips":"ঠোঁট","Lips Offset":"লিপ অফসেট","Lips Period":"ঠোঁটের মেয়াদ","Low":"নিচু","Low Period":"নিম্ন পিরিয়ড","MA":"মা","MA Env":"এমএ এনভি","MA Env Bottom":"এমএ এনভি বটম","MA Env Median":"এমএ এনভি মিডিয়ান","MA Env Top":"এমএ এনভি শীর্ষ","MACD":"MACD","MACD is a trading indicator used in technical analysis of stock prices. It is supposed to reveal changes in the strength, direction, momentum, and duration of a trend in a stock\'s price.":"MACD একটি ট্রেডিং ইনডিকেটর যা স্টক মূল্যের প্রযুক্তিগত বিশ্লেষণে ব্যবহৃত হয়। এটি একটি স্টক এর দাম একটি প্রবণতা শক্তি, দিক, ভরবেগ, এবং সময়কাল পরিবর্তন প্রকাশ অনুমিত হয়।","Markets":"মার্কেটস","Maximum AF":"সর্বোচ্চ এএফ","Minimum AF":"ন্যূনতম AF","minute":"মিনিট","minutes":"মিনিট","Momentum":"ভরবেগ","Moving Average (MA)":"মুভিং এভারেজ (এমএ)","Moving Average Envelope":"মুভিং গড় খাম","Moving Average Type":"মুভিং এভারেজ প্রকার","Moving averages":"মুভিং এভারেজ","Negative Bar":"নেতিবাচক বার","Network status":"নেটওয়ার্ক স্ট্যাটাস","No results for":"এর জন্য কোন ফলাফল নেই","Offset":"অফসেট","OHLC":"OHLC","Ohlc/4":"ওএইচএলসি/4","Only selected charts and time intervals are available for this trade type.":"এই ট্রেড টাইপের জন্য শুধুমাত্র নির্বাচিত চার্ট এবং সময় অন্তর উপলব্ধ।","Open":"ওপেন","Opens in:":"খোলে:","Others":"অন্যান্য","OverBought":"অতিরিক্ত খরচ","OverSold":"ওভারসেলড","Overwrite":"ওভাররাইট","Parabolic SAR":"অধিবৃত্তীয় SAR","Percent":"শতাংশ","Period":"সময়কাল","Platform settings":"প্লাটফর্ম সেটিংস","PNG":"PNG","Point":"পয়েন্ট","Positive Bar":"ইতিবাচক বার","Price Rate of Change":"পরিবর্তনের মূল্য হার","Price ROC":"আরওসি মূল্য","PSAR":"পিএসআর","Rainbow MA":"রেইনবো এমএ","Rainbow Moving Average":"রেনবো মুভিং এভারেজ","Ray [num]":"রে [num]","Rectangle [num]":"আয়তক্ষেত্র [num]","Relative Strength Index (RSI)":"আপেক্ষিক শক্তি সূচক (আরএসআই)","Reset":"রিসেট","Result":"ফলাফল","Retrieving Chart Data...":"লেখচিত্রের তথ্য উদ্ধার করা হচ্ছে...","Retrieving Chart Engine...":"লেখচিত্রের ইঞ্জিন উদ্ধার করা হচ্ছে...","Retrieving Market Symbols...":"বাজারের প্রতীক উদ্ধার করা হচ্ছে...","Retrieving Trading Times...":"ট্রেডিং টাইমস উদ্ধার করা হচ্ছে...","RSI":"আরএসআই","Saved templates":"সংরক্ষিত টেমপ্লেট","Search":"অনুসন্ধান","Search...":"অনুসন্ধান ...","Select language":"ভাষা নির্বাচন করুন","Select theme":"থীম নির্বাচন করুন","Series":"সিরিজ","Settings":"সেটিংস","Shading":"শেডিং","Shift":"শিফট","Shift Type":"শিফট টাইপ","Show Fractals":"ফ্র্যাকটাল দেখান","Show Lines":"লাইন দেখান","Show price info on chart":"চার্টে মুল্যের তথ্য দেখান","Show price info on x & y axes":"x ও y অক্ষের উপর মুল্যের তথ্য দেখানো","Show Zones":"অঞ্চল দেখান","Signal":"সিগনাল","Signal Period":"সংকেত সময়কাল","Simple":"সহজ","Size":"সাইজ","Slow":"ধীর","Slow MA Period":"ধীর এমএ পিরিয়ড","SMA1":"এসএমএ 1","SMA10":"এসএমএ 10","SMA2":"এসএমএ 2","SMA3":"এসএমএ 3","SMA4":"এসএমএ 4","SMA5":"এসএমএ 5","SMA6":"এসএমএ 6","SMA7":"এসএমএ 7","SMA8":"এসএমএ 8","SMA9":"এসএমএ 9","Smooth":"মসৃণ","Smoothing Period":"স্মুথিং পিরিয়ড","Some of your active indicators don’t support 1-tick intervals. If you change to a 1-tick interval, these indicators will be removed from your chart.":"আপনার কিছু সক্রিয় ইন্ডিকেটর ১-টিক অন্তর সমর্থন করে না। যদি আপনি 1-টিক ব্যবধানে পরিবর্তন করেন, তাহলে এই সূচকগুলি আপনার চার্ট থেকে মুছে ফেলা হবে।","Some of your templates may not work with this trade type.":"আপনার কিছু টেমপ্লেট এই ট্রেড টাইপের সাথে কাজ করতে পারে না।","Standard Deviations":"মান বিচ্যুতি","Stch Mtm":"এসটিসিএইচ এমটিএম","Stochastic":"স্টোকাস্টিক","Stochastic Momentum Index":"স্টোচাস্টিক ভরবেগ সূচক","Stochastic Oscillator":"স্টোচাস্টিক অসিলেটর","Streaming for [symbol] is not available due to license restrictions":"লাইসেন্স সীমাবদ্ধতার কারণে [symbol] এর জন্য স্ট্রিমিং উপলব্ধ নয়","Teeth":"দাঁত","Teeth Offset":"দাঁত অফসেট","Teeth Period":"দাঁত সময়কাল","Templates":"টেমপ্লেট","The Average Directional Movement Index index (ADX) was developed in 1978 by J. Welles Wilder as an indicator of trend strength in a series of prices of a financial instrument ADX will range between 0 and 100. Generally, ADX readings below 20 indicate trend weakness, and readings above 40 indicate trend strength.":"এভারেজ ডিরেকশনাল মুভমেন্ট ইনডেক্স ইনডেক্স (ADX) 1978 সালে জে. ওয়েলেস ওয়াইল্ডার দ্বারা তৈরি করা হয়েছিল একটি আর্থিক উপকরণ ADX-এর দামের একটি সিরিজের প্রবণতা শক্তির সূচক হিসাবে 0 থেকে 100 এর মধ্যে। সাধারণত, 20 এর নিচে ADX রিডিং প্রবণতা দুর্বলতা নির্দেশ করে , এবং 40 এর উপরে রিডিং প্রবণতা শক্তি নির্দেশ করে।","The Awesome Oscillator is an indicator used to measure market momentum. AO calculates the difference of a 34 Period and 5 Period Simple Moving Averages. The Simple Moving Averages that are used are not calculated using closing price but rather each bar\'s midpoints. AO is generally used to affirm trends or to anticipate possible reversals.":"Awesome Oscillator হল একটি সূচক যা বাজারের গতি পরিমাপ করতে ব্যবহৃত হয়। AO একটি 34 পিরিয়ড এবং 5 পিরিয়ড সিম্পল মুভিং এভারেজের পার্থক্য গণনা করে। ব্যবহৃত সরল চলমান গড়গুলি সমাপনী মূল্য ব্যবহার করে গণনা করা হয় না বরং প্রতিটি বারের মিডপয়েন্ট ব্যবহার করে। AO সাধারণত প্রবণতা নিশ্চিত করতে বা সম্ভাব্য বিপরীত পরিবর্তনের পূর্বাভাস দিতে ব্যবহৃত হয়।","The Commodity Channel Index (CCI) is a versatile indicator that can be used to identify a new trend or warn of extreme conditions.":"কমোডিটি চ্যানেল ইনডেক্স (CCI) একটি বহুমুখী নির্দেশক যা একটি নতুন প্রবণতা সনাক্ত করতে বা চরম অবস্থার সতর্ক করতে ব্যবহার করা যেতে পারে।","The Detrended Price Oscillator (DPO) helps to identify price cycles without the influence of short- and long-term trends. The DPO compares a simple moving average to a historical pricenear the middle of a specified period. It also shows the peaks and drops over that particular period, making it easier to predict buy points.":"ডিট্রেন্ডেড প্রাইস অসিলেটর (ডিপিও) স্বল্প এবং দীর্ঘমেয়াদী প্রবণতার প্রভাব ছাড়াই মূল্য চক্র সনাক্ত করতে সাহায্য করে। ডিপিও একটি সাধারণ চলমান গড়কে একটি নির্দিষ্ট সময়ের মাঝামাঝি একটি ঐতিহাসিক মূল্যের সাথে তুলনা করে। এটি সেই নির্দিষ্ট সময়ের মধ্যে শিখর এবং ড্রপগুলিও দেখায়, যা ক্রয় পয়েন্টের পূর্বাভাস দেওয়া সহজ করে তোলে।","The Donchian Channel is an indicator used in market trading developed by Richard Donchian. It is formed by taking the highest high and the lowest low of the last n periods. The area between the high and the low is the channel for the period chosen.":"ডনচিয়ান চ্যানেল রিচার্ড ডনচিয়ান দ্বারা উন্নত মার্কেট ট্রেডিংয়ে ব্যবহৃত একটি সূচক। এটি শেষ n সময়ের সর্বোচ্চ উচ্চ এবং সর্বনিম্ন নিম্ন গ্রহণ করে গঠিত হয়। উচ্চ এবং নিম্ন মধ্যে এলাকা নির্বাচিত সময়ের জন্য চ্যানেল হয়।","The Ichimoku Cloud, also known as Ichimoku Kinko Hyo, is a versatile indicator that defines support and resistance, identifies trend direction, gauges momentum and provides trading signals. Ichimoku Kinko Hyo translates into “one look equilibrium chart”.":"ইচিমোকু ক্লাউড, যা ইচিমোকু কিঙ্কো হাইও নামেও পরিচিত, একটি বহুমুখী নির্দেশক যা সমর্থন এবং প্রতিরোধের সংজ্ঞায়িত করে, প্রবণতা দিক চিহ্নিত করে, ভরবেগ নির্ণয় করে এবং ট্রেডিং সংকেত প্রদান করে। ইচিমোকু কিঙ্কো হাইও অনুবাদ করেন “এক চেহারা সমতুল্য চার্ট\\"।","The Moving Average (MA) helps to identify the overall market trend by filtering out short-term price fluctuations. Using historical data, it calculates the average price over a specific period and plots a line on the chart. If the MA line moves upwards, it’s an indicator of an uptrend, a downtrend if it moves downwards. A buy signal occurs when the price moves above the MA line.":"মুভিং এভারেজ (এমএ) স্বল্পমেয়াদী মূল্যের ওঠানামা ফিল্টার করে সামগ্রিক বাজার প্রবণতা সনাক্ত করতে সহায়তা করে। ঐতিহাসিক তথ্য ব্যবহার করে, এটি একটি নির্দিষ্ট সময়ের মধ্যে গড় মূল্য গণনা করে এবং চার্টের একটি লাইন প্লট করে। এমএ লাইন ঊর্ধ্বমুখী হলে, এটি একটি ঊর্ধ্বমুখী একটি সূচক, একটি downtrend যদি এটি নিচের দিকে চলে যায়। একটি বাই সিগন্যাল ঘটে যখন দাম এমএ লাইনের উপরে চলে যায়।","The Moving Average Envelope (MAE) helps to identify strong price movement that indicates the start of a trend. The MAE creates a moving average line as well as 2 bands around it. In theory, when the market price touches the upper or lower bands, a trend reversal will occur, indicating a buy signal.":"মুভিং এভারেজ এনভেলফে (MAE) শক্তিশালী মূল্য আন্দোলন সনাক্ত করতে সাহায্য করে যা একটি প্রবণতার সূচনা নির্দেশ করে। MAE একটি চলন্ত গড় লাইন তৈরি করে পাশাপাশি এর চারপাশে ২টি ব্যান্ড তৈরি করে। তত্ত্বগতভাবে, যখন বাজার মূল্য ঊর্ধ্ব বা নিম্ন ব্যান্ডগুলিকে স্পর্শ করে, তখন একটি ট্রেন্ড রিভার্সাল ঘটবে, যা একটি বাই সিগন্যাল নির্দেশ করে।","The parabolic SAR is calculated almost independently for each trend in the price. When the price is in an uptrend, the SAR emerges below the price and converges upwards towards it. Similarly, on a downtrend, the SAR emerges above the price and converges downwards. At each step within a trend, the SAR is calculated one period in advance.":"প্যারাবোলিক SAR মূল্যের প্রতিটি প্রবণতার জন্য প্রায় স্বাধীনভাবে গণনা করা হয়। যখন দাম একটি আপট্রেন্ডে থাকে, তখন SAR দামের নিচে উঠে আসে এবং এর দিকে ঊর্ধ্বমুখী হয়। একইভাবে, নিম্নমুখী প্রবণতায়, SAR মূল্যের উপরে উঠে আসে এবং নিচের দিকে একত্রিত হয়। একটি প্রবণতার মধ্যে প্রতিটি ধাপে, SAR এক সময় আগে থেকে গণনা করা হয়।","The Price Rate-of-Change (ROC) indicator displays the difference between the current price and the price x-time periods ago. The difference can be displayed in either points or as a percentage.":"প্রাইস রেট-অফ-চেঞ্জ (ROC) ইনডিকেটর বর্তমান মূল্য এবং মূল্য এক্স-টাইম সময়ের মধ্যে পার্থক্য প্রদর্শন করে। পার্থক্য পয়েন্ট বা শতাংশ হিসাবে প্রদর্শিত হতে পারে।","The Rainbow Moving Average (RMA) displays several moving average lines simultaneously. When the lines intersect, it’s an indicator of price reversal and the angle of the lines are helpful to predict the trend strength. The steeper the curve, the stronger the trend. When the price crosses the moving average lines from below, it signals an upward trend. When the price crosses the moving average lines from above, it signals a downward trend. The RMA is easier to use compared to using several different moving average indicators at once.":"রেইনবো মুভিং এভারেজ (RMA) একই সাথে বেশ কয়েকটি চলমান গড় লাইন প্রদর্শন করে। যখন রেখাগুলিকে ছেদ করে, তখন এটি মূল্যের বিপরীতমুখীতার একটি সূচক এবং লাইনগুলির কোণ প্রবণতা শক্তির পূর্বাভাস দিতে সহায়ক। বক্ররেখা যত বেশি হবে, প্রবণতা তত শক্তিশালী হবে। যখন মূল্য নীচে থেকে চলমান গড় লাইন অতিক্রম করে, এটি একটি ঊর্ধ্বমুখী প্রবণতাকে নির্দেশ করে। যখন মূল্য উপরে থেকে চলমান গড় লাইন অতিক্রম করে, তখন এটি নিম্নগামী প্রবণতাকে নির্দেশ করে। একই সময়ে বিভিন্ন চলমান গড় সূচক ব্যবহার করার তুলনায় RMA ব্যবহার করা সহজ।","The Relative Strength Index (RSI) was published by J. Welles Wilder. The current price is normalized as a percentage between 0 and 100. The name of this oscillator is misleading because it does not compare the instrument relative to another instrument or set of instruments, but rather represents the current price relative to other recent prices within the selected lookback window length.":"The Relative Strength Index (RSI) was published by J. Welles Wilder. The current price is normalized as a percentage between 0 and 100. The name of this oscillator is misleading because it does not compare the instrument relative to another instrument or set of instruments, but rather represents the current price relative to other recent prices within the selected lookback window length.","The Stochastic Momentum Index (SMI) helps to identify overbought or oversold conditions in the market and to predict bearish or bullish trends. It calculates the distance between the current closing price and the median of the high/low range, and displays 2 lines on the chart: the first (known as %K) represents the price movement while the second (known as %D) is a moving average of the first line. If the closing price is higher than the median of the high/low range, the SMI returns a positive value. If the closing price is lower than the average price, a negative value is returned. Values above 40 indicate a bullish trend while values below -40 indicate a bearish trend.":"স্টকাস্টিক মোমেন্টাম ইনডেক্স (এসএমআই) বাজারে অতিরিক্ত কেনা বা বেশি বিক্রি হওয়া অবস্থা সনাক্ত করতে এবং বিয়ারিশ বা বুলিশ প্রবণতার পূর্বাভাস দিতে সহায়তা করে। এটি বর্তমান সমাপনী মূল্য এবং উচ্চ/নিম্ন পরিসরের মধ্যকার মধ্যে দূরত্ব গণনা করে এবং চার্টে 2টি লাইন প্রদর্শন করে: প্রথমটি (%K নামে পরিচিত) মূল্যের গতিবিধি উপস্থাপন করে যখন দ্বিতীয়টি (%D নামে পরিচিত) একটি প্রথম লাইনের চলমান গড়। যদি সমাপনী মূল্য উচ্চ/নিম্ন পরিসরের মধ্যমা থেকে বেশি হয়, তাহলে SMI একটি ইতিবাচক মান প্রদান করে। যদি সমাপনী মূল্য গড় মূল্যের চেয়ে কম হয়, একটি ঋণাত্মক মান ফেরত দেওয়া হয়। 40-এর উপরে মানগুলি একটি বুলিশ প্রবণতা নির্দেশ করে যখন -40-এর নীচের মানগুলি একটি বিয়ারিশ প্রবণতা নির্দেশ করে।","Themes":"থিম","There are no favorites yet.":"এখনও কোন প্রিয় নেই।","This indicator does not support 1-tick intervals. To use this indicator, change your chart time interval to 1 minute or more.":"এই সূচকটি 1-টিক ব্যবধান সমর্থন করে না। এই সূচকটি ব্যবহার করতে, আপনার চার্ট সময়ের ব্যবধান 1 মিনিট বা তার বেশি পরিবর্তন করুন।","tick":"টিক","Tick interval only available for \\\\\\"Area\\\\\\" Chart type.":"টিক ব্যবধান শুধুমাত্র \\\\\\"এরিয়া\\\\\\" চার্ট প্রকারের জন্য উপলব্ধ।","Time interval":"সময়ের ব্যবধান","Time Series":"টাইম সিরিজ","Trend":"ট্রেন্ড","Trend [num]":"ট্রেন্ড [num]","Triangular":"ত্রিভুজ","Try checking your spelling or use a different term":"আপনার বানান পরীক্ষা করার চেষ্টা করুন অথবা একটি ভিন্ন শব্দ ব্যবহার করুন","Type":"ধরণ","Up to 2 active indicators allowed.":"2 সক্রিয় সূচক পর্যন্ত অনুমোদিত।","Up to 5 active indicators allowed.":"5 টি সক্রিয় সূচক পর্যন্ত অনুমোদিত।","Variable":"চলক","Vertical [num]":"উল্লম্ব [num]","Volatility":"Volatility","Weighted":"ওজনযুক্ত","Welles Wilder":"ওয়েলস ওয়াইল্ডার","William\'s %R":"উইলিয়ামের %R","William\'s Percent Range":"উইলিয়ামের পারসেন্ট রেঞ্জ","Would you like to overwrite it?":"আপনি কি এটিকে ওভাররাইট করতে চান?","You have no active drawings yet.":"আপনার এখনও কোন সক্রিয় অঙ্কন আছে।","You have no active indicators yet.":"আপনার এখনও কোন সক্রিয় সূচক আছে।","You have no saved templates yet.":"আপনার এখনও কোন সংরক্ষিত টেমপ্লেট নেই।","Zero Lag":"জিরো ল্যাগ","Zig Zag":"জিগ জ্যাগ","Zig Zag helps to identify trend reversals and filters out relatively small price movements by determining the support and resistance levels of the market. It accepts a percentage of deviation as the input and displays a line if the price change is larger than the percentage of deviation. Zig Zag ignores any sideways movement and is useful to filter out “market noise”.":"Zig Zag ট্রেন্ড রিভার্সাল শনাক্ত করতে সাহায্য করে এবং বাজারের সাপোর্ট এবং রেজিস্ট্যান্স লেভেল নির্ধারণ করে তুলনামূলকভাবে ছোট দামের গতিবিধি ফিল্টার করে। এটি ইনপুট হিসাবে বিচ্যুতির শতাংশ গ্রহণ করে এবং মূল্য পরিবর্তন বিচ্যুতির শতাংশের চেয়ে বড় হলে একটি লাইন প্রদর্শন করে। Zig Zag যেকোন পাশ দিয়ে চলাচল উপেক্ষা করে এবং \\"বাজারের গোলমাল\\" ফিল্টার করতে কার্যকর।","Zoom in":"জুম ইন","Zoom out":"জুম আউট"}')}}]); \ No newline at end of file diff --git a/dist/chart/.last_build_id b/dist/chart/.last_build_id new file mode 100644 index 000000000..5f3edb82d --- /dev/null +++ b/dist/chart/.last_build_id @@ -0,0 +1 @@ +0774950006278fc52e2502f28c8d46d1 \ No newline at end of file diff --git a/dist/chart/assets/AssetManifest.bin b/dist/chart/assets/AssetManifest.bin new file mode 100644 index 000000000..412b7c866 --- /dev/null +++ b/dist/chart/assets/AssetManifest.bin @@ -0,0 +1 @@ + gfonts/IBMPlexSans-Bold.woff2  assetfonts/IBMPlexSans-Bold.woff2fonts/IBMPlexSans-Regular.woff2  assetfonts/IBMPlexSans-Regular.woff26packages/deriv_chart/assets/icons/icon_placeholder.png  asset6packages/deriv_chart/assets/icons/icon_placeholder.png5packages/deriv_chart/assets/icons/symbols/1hz100v.png  asset5packages/deriv_chart/assets/icons/symbols/1hz100v.png4packages/deriv_chart/assets/icons/symbols/1hz10v.png  asset4packages/deriv_chart/assets/icons/symbols/1hz10v.png5packages/deriv_chart/assets/icons/symbols/1hz150v.png  asset5packages/deriv_chart/assets/icons/symbols/1hz150v.png5packages/deriv_chart/assets/icons/symbols/1hz200v.png  asset5packages/deriv_chart/assets/icons/symbols/1hz200v.png5packages/deriv_chart/assets/icons/symbols/1hz250v.png  asset5packages/deriv_chart/assets/icons/symbols/1hz250v.png4packages/deriv_chart/assets/icons/symbols/1hz25v.png  asset4packages/deriv_chart/assets/icons/symbols/1hz25v.png5packages/deriv_chart/assets/icons/symbols/1hz300v.png  asset5packages/deriv_chart/assets/icons/symbols/1hz300v.png4packages/deriv_chart/assets/icons/symbols/1hz50v.png  asset4packages/deriv_chart/assets/icons/symbols/1hz50v.png4packages/deriv_chart/assets/icons/symbols/1hz75v.png  asset4packages/deriv_chart/assets/icons/symbols/1hz75v.png4packages/deriv_chart/assets/icons/symbols/bchusd.png  asset4packages/deriv_chart/assets/icons/symbols/bchusd.png4packages/deriv_chart/assets/icons/symbols/bnbusd.png  asset4packages/deriv_chart/assets/icons/symbols/bnbusd.png6packages/deriv_chart/assets/icons/symbols/boom1000.png  asset6packages/deriv_chart/assets/icons/symbols/boom1000.png6packages/deriv_chart/assets/icons/symbols/boom300n.png  asset6packages/deriv_chart/assets/icons/symbols/boom300n.png5packages/deriv_chart/assets/icons/symbols/boom500.png  asset5packages/deriv_chart/assets/icons/symbols/boom500.png4packages/deriv_chart/assets/icons/symbols/btcusd.png  asset4packages/deriv_chart/assets/icons/symbols/btcusd.png7packages/deriv_chart/assets/icons/symbols/crash1000.png  asset7packages/deriv_chart/assets/icons/symbols/crash1000.png7packages/deriv_chart/assets/icons/symbols/crash300n.png  asset7packages/deriv_chart/assets/icons/symbols/crash300n.png6packages/deriv_chart/assets/icons/symbols/crash500.png  asset6packages/deriv_chart/assets/icons/symbols/crash500.png7packages/deriv_chart/assets/icons/symbols/crybchusd.png  asset7packages/deriv_chart/assets/icons/symbols/crybchusd.png7packages/deriv_chart/assets/icons/symbols/crybnbusd.png  asset7packages/deriv_chart/assets/icons/symbols/crybnbusd.png7packages/deriv_chart/assets/icons/symbols/crybtcusd.png  asset7packages/deriv_chart/assets/icons/symbols/crybtcusd.png7packages/deriv_chart/assets/icons/symbols/crydshusd.png  asset7packages/deriv_chart/assets/icons/symbols/crydshusd.png7packages/deriv_chart/assets/icons/symbols/cryeosusd.png  asset7packages/deriv_chart/assets/icons/symbols/cryeosusd.png7packages/deriv_chart/assets/icons/symbols/cryethusd.png  asset7packages/deriv_chart/assets/icons/symbols/cryethusd.png7packages/deriv_chart/assets/icons/symbols/cryltcusd.png  asset7packages/deriv_chart/assets/icons/symbols/cryltcusd.png7packages/deriv_chart/assets/icons/symbols/cryxmrusd.png  asset7packages/deriv_chart/assets/icons/symbols/cryxmrusd.png7packages/deriv_chart/assets/icons/symbols/cryxrpusd.png  asset7packages/deriv_chart/assets/icons/symbols/cryxrpusd.png7packages/deriv_chart/assets/icons/symbols/cryzecusd.png  asset7packages/deriv_chart/assets/icons/symbols/cryzecusd.png4packages/deriv_chart/assets/icons/symbols/dshusd.png  asset4packages/deriv_chart/assets/icons/symbols/dshusd.png4packages/deriv_chart/assets/icons/symbols/eosusd.png  asset4packages/deriv_chart/assets/icons/symbols/eosusd.png4packages/deriv_chart/assets/icons/symbols/ethusd.png  asset4packages/deriv_chart/assets/icons/symbols/ethusd.png7packages/deriv_chart/assets/icons/symbols/frxaudcad.png  asset7packages/deriv_chart/assets/icons/symbols/frxaudcad.png7packages/deriv_chart/assets/icons/symbols/frxaudchf.png  asset7packages/deriv_chart/assets/icons/symbols/frxaudchf.png7packages/deriv_chart/assets/icons/symbols/frxaudjpy.png  asset7packages/deriv_chart/assets/icons/symbols/frxaudjpy.png7packages/deriv_chart/assets/icons/symbols/frxaudnzd.png  asset7packages/deriv_chart/assets/icons/symbols/frxaudnzd.png7packages/deriv_chart/assets/icons/symbols/frxaudusd.png  asset7packages/deriv_chart/assets/icons/symbols/frxaudusd.png7packages/deriv_chart/assets/icons/symbols/frxbrousd.png  asset7packages/deriv_chart/assets/icons/symbols/frxbrousd.png7packages/deriv_chart/assets/icons/symbols/frxeuraud.png  asset7packages/deriv_chart/assets/icons/symbols/frxeuraud.png7packages/deriv_chart/assets/icons/symbols/frxeurcad.png  asset7packages/deriv_chart/assets/icons/symbols/frxeurcad.png7packages/deriv_chart/assets/icons/symbols/frxeurchf.png  asset7packages/deriv_chart/assets/icons/symbols/frxeurchf.png7packages/deriv_chart/assets/icons/symbols/frxeurgbp.png  asset7packages/deriv_chart/assets/icons/symbols/frxeurgbp.png7packages/deriv_chart/assets/icons/symbols/frxeurjpy.png  asset7packages/deriv_chart/assets/icons/symbols/frxeurjpy.png7packages/deriv_chart/assets/icons/symbols/frxeurnzd.png  asset7packages/deriv_chart/assets/icons/symbols/frxeurnzd.png7packages/deriv_chart/assets/icons/symbols/frxeurusd.png  asset7packages/deriv_chart/assets/icons/symbols/frxeurusd.png7packages/deriv_chart/assets/icons/symbols/frxgbpaud.png  asset7packages/deriv_chart/assets/icons/symbols/frxgbpaud.png7packages/deriv_chart/assets/icons/symbols/frxgbpcad.png  asset7packages/deriv_chart/assets/icons/symbols/frxgbpcad.png7packages/deriv_chart/assets/icons/symbols/frxgbpchf.png  asset7packages/deriv_chart/assets/icons/symbols/frxgbpchf.png7packages/deriv_chart/assets/icons/symbols/frxgbpjpy.png  asset7packages/deriv_chart/assets/icons/symbols/frxgbpjpy.png7packages/deriv_chart/assets/icons/symbols/frxgbpnok.png  asset7packages/deriv_chart/assets/icons/symbols/frxgbpnok.png7packages/deriv_chart/assets/icons/symbols/frxgbpnzd.png  asset7packages/deriv_chart/assets/icons/symbols/frxgbpnzd.png7packages/deriv_chart/assets/icons/symbols/frxgbpusd.png  asset7packages/deriv_chart/assets/icons/symbols/frxgbpusd.png7packages/deriv_chart/assets/icons/symbols/frxnzdjpy.png  asset7packages/deriv_chart/assets/icons/symbols/frxnzdjpy.png7packages/deriv_chart/assets/icons/symbols/frxnzdusd.png  asset7packages/deriv_chart/assets/icons/symbols/frxnzdusd.png7packages/deriv_chart/assets/icons/symbols/frxusdcad.png  asset7packages/deriv_chart/assets/icons/symbols/frxusdcad.png7packages/deriv_chart/assets/icons/symbols/frxusdchf.png  asset7packages/deriv_chart/assets/icons/symbols/frxusdchf.png7packages/deriv_chart/assets/icons/symbols/frxusdjpy.png  asset7packages/deriv_chart/assets/icons/symbols/frxusdjpy.png7packages/deriv_chart/assets/icons/symbols/frxusdmxn.png  asset7packages/deriv_chart/assets/icons/symbols/frxusdmxn.png7packages/deriv_chart/assets/icons/symbols/frxusdnok.png  asset7packages/deriv_chart/assets/icons/symbols/frxusdnok.png7packages/deriv_chart/assets/icons/symbols/frxusdpln.png  asset7packages/deriv_chart/assets/icons/symbols/frxusdpln.png7packages/deriv_chart/assets/icons/symbols/frxusdsek.png  asset7packages/deriv_chart/assets/icons/symbols/frxusdsek.png7packages/deriv_chart/assets/icons/symbols/frxxagusd.png  asset7packages/deriv_chart/assets/icons/symbols/frxxagusd.png7packages/deriv_chart/assets/icons/symbols/frxxauusd.png  asset7packages/deriv_chart/assets/icons/symbols/frxxauusd.png7packages/deriv_chart/assets/icons/symbols/frxxpdusd.png  asset7packages/deriv_chart/assets/icons/symbols/frxxpdusd.png7packages/deriv_chart/assets/icons/symbols/frxxptusd.png  asset7packages/deriv_chart/assets/icons/symbols/frxxptusd.png2packages/deriv_chart/assets/icons/symbols/jd10.png  asset2packages/deriv_chart/assets/icons/symbols/jd10.png3packages/deriv_chart/assets/icons/symbols/jd100.png  asset3packages/deriv_chart/assets/icons/symbols/jd100.png3packages/deriv_chart/assets/icons/symbols/jd150.png  asset3packages/deriv_chart/assets/icons/symbols/jd150.png3packages/deriv_chart/assets/icons/symbols/jd200.png  asset3packages/deriv_chart/assets/icons/symbols/jd200.png2packages/deriv_chart/assets/icons/symbols/jd25.png  asset2packages/deriv_chart/assets/icons/symbols/jd25.png2packages/deriv_chart/assets/icons/symbols/jd50.png  asset2packages/deriv_chart/assets/icons/symbols/jd50.png2packages/deriv_chart/assets/icons/symbols/jd75.png  asset2packages/deriv_chart/assets/icons/symbols/jd75.png4packages/deriv_chart/assets/icons/symbols/ltcusd.png  asset4packages/deriv_chart/assets/icons/symbols/ltcusd.png5packages/deriv_chart/assets/icons/symbols/otc_aex.png  asset5packages/deriv_chart/assets/icons/symbols/otc_aex.png6packages/deriv_chart/assets/icons/symbols/otc_as51.png  asset6packages/deriv_chart/assets/icons/symbols/otc_as51.png5packages/deriv_chart/assets/icons/symbols/otc_dji.png  asset5packages/deriv_chart/assets/icons/symbols/otc_dji.png6packages/deriv_chart/assets/icons/symbols/otc_fchi.png  asset6packages/deriv_chart/assets/icons/symbols/otc_fchi.png6packages/deriv_chart/assets/icons/symbols/otc_ftse.png  asset6packages/deriv_chart/assets/icons/symbols/otc_ftse.png7packages/deriv_chart/assets/icons/symbols/otc_gdaxi.png  asset7packages/deriv_chart/assets/icons/symbols/otc_gdaxi.png5packages/deriv_chart/assets/icons/symbols/otc_hsi.png  asset5packages/deriv_chart/assets/icons/symbols/otc_hsi.png6packages/deriv_chart/assets/icons/symbols/otc_n225.png  asset6packages/deriv_chart/assets/icons/symbols/otc_n225.png5packages/deriv_chart/assets/icons/symbols/otc_ndx.png  asset5packages/deriv_chart/assets/icons/symbols/otc_ndx.png5packages/deriv_chart/assets/icons/symbols/otc_spc.png  asset5packages/deriv_chart/assets/icons/symbols/otc_spc.png6packages/deriv_chart/assets/icons/symbols/otc_ssmi.png  asset6packages/deriv_chart/assets/icons/symbols/otc_ssmi.png6packages/deriv_chart/assets/icons/symbols/otc_sx5e.png  asset6packages/deriv_chart/assets/icons/symbols/otc_sx5e.png2packages/deriv_chart/assets/icons/symbols/r_10.png  asset2packages/deriv_chart/assets/icons/symbols/r_10.png3packages/deriv_chart/assets/icons/symbols/r_100.png  asset3packages/deriv_chart/assets/icons/symbols/r_100.png2packages/deriv_chart/assets/icons/symbols/r_25.png  asset2packages/deriv_chart/assets/icons/symbols/r_25.png2packages/deriv_chart/assets/icons/symbols/r_50.png  asset2packages/deriv_chart/assets/icons/symbols/r_50.png2packages/deriv_chart/assets/icons/symbols/r_75.png  asset2packages/deriv_chart/assets/icons/symbols/r_75.png4packages/deriv_chart/assets/icons/symbols/rdbear.png  asset4packages/deriv_chart/assets/icons/symbols/rdbear.png4packages/deriv_chart/assets/icons/symbols/rdbull.png  asset4packages/deriv_chart/assets/icons/symbols/rdbull.png4packages/deriv_chart/assets/icons/symbols/stprng.png  asset4packages/deriv_chart/assets/icons/symbols/stprng.png4packages/deriv_chart/assets/icons/symbols/wldaud.png  asset4packages/deriv_chart/assets/icons/symbols/wldaud.png4packages/deriv_chart/assets/icons/symbols/wldeur.png  asset4packages/deriv_chart/assets/icons/symbols/wldeur.png4packages/deriv_chart/assets/icons/symbols/wldgbp.png  asset4packages/deriv_chart/assets/icons/symbols/wldgbp.png4packages/deriv_chart/assets/icons/symbols/wldusd.png  asset4packages/deriv_chart/assets/icons/symbols/wldusd.png4packages/deriv_chart/assets/icons/symbols/wldxau.png  asset4packages/deriv_chart/assets/icons/symbols/wldxau.png4packages/deriv_chart/assets/icons/symbols/xmrusd.png  asset4packages/deriv_chart/assets/icons/symbols/xmrusd.png4packages/deriv_chart/assets/icons/symbols/xrpusd.png  asset4packages/deriv_chart/assets/icons/symbols/xrpusd.png4packages/deriv_chart/assets/icons/symbols/zecusd.png  asset4packages/deriv_chart/assets/icons/symbols/zecusd.png \ No newline at end of file diff --git a/dist/chart/assets/AssetManifest.json b/dist/chart/assets/AssetManifest.json new file mode 100644 index 000000000..7f557414c --- /dev/null +++ b/dist/chart/assets/AssetManifest.json @@ -0,0 +1 @@ +{"fonts/IBMPlexSans-Bold.woff2":["fonts/IBMPlexSans-Bold.woff2"],"fonts/IBMPlexSans-Regular.woff2":["fonts/IBMPlexSans-Regular.woff2"],"packages/deriv_chart/assets/icons/icon_placeholder.png":["packages/deriv_chart/assets/icons/icon_placeholder.png"],"packages/deriv_chart/assets/icons/symbols/1hz100v.png":["packages/deriv_chart/assets/icons/symbols/1hz100v.png"],"packages/deriv_chart/assets/icons/symbols/1hz10v.png":["packages/deriv_chart/assets/icons/symbols/1hz10v.png"],"packages/deriv_chart/assets/icons/symbols/1hz150v.png":["packages/deriv_chart/assets/icons/symbols/1hz150v.png"],"packages/deriv_chart/assets/icons/symbols/1hz200v.png":["packages/deriv_chart/assets/icons/symbols/1hz200v.png"],"packages/deriv_chart/assets/icons/symbols/1hz250v.png":["packages/deriv_chart/assets/icons/symbols/1hz250v.png"],"packages/deriv_chart/assets/icons/symbols/1hz25v.png":["packages/deriv_chart/assets/icons/symbols/1hz25v.png"],"packages/deriv_chart/assets/icons/symbols/1hz300v.png":["packages/deriv_chart/assets/icons/symbols/1hz300v.png"],"packages/deriv_chart/assets/icons/symbols/1hz50v.png":["packages/deriv_chart/assets/icons/symbols/1hz50v.png"],"packages/deriv_chart/assets/icons/symbols/1hz75v.png":["packages/deriv_chart/assets/icons/symbols/1hz75v.png"],"packages/deriv_chart/assets/icons/symbols/bchusd.png":["packages/deriv_chart/assets/icons/symbols/bchusd.png"],"packages/deriv_chart/assets/icons/symbols/bnbusd.png":["packages/deriv_chart/assets/icons/symbols/bnbusd.png"],"packages/deriv_chart/assets/icons/symbols/boom1000.png":["packages/deriv_chart/assets/icons/symbols/boom1000.png"],"packages/deriv_chart/assets/icons/symbols/boom300n.png":["packages/deriv_chart/assets/icons/symbols/boom300n.png"],"packages/deriv_chart/assets/icons/symbols/boom500.png":["packages/deriv_chart/assets/icons/symbols/boom500.png"],"packages/deriv_chart/assets/icons/symbols/btcusd.png":["packages/deriv_chart/assets/icons/symbols/btcusd.png"],"packages/deriv_chart/assets/icons/symbols/crash1000.png":["packages/deriv_chart/assets/icons/symbols/crash1000.png"],"packages/deriv_chart/assets/icons/symbols/crash300n.png":["packages/deriv_chart/assets/icons/symbols/crash300n.png"],"packages/deriv_chart/assets/icons/symbols/crash500.png":["packages/deriv_chart/assets/icons/symbols/crash500.png"],"packages/deriv_chart/assets/icons/symbols/crybchusd.png":["packages/deriv_chart/assets/icons/symbols/crybchusd.png"],"packages/deriv_chart/assets/icons/symbols/crybnbusd.png":["packages/deriv_chart/assets/icons/symbols/crybnbusd.png"],"packages/deriv_chart/assets/icons/symbols/crybtcusd.png":["packages/deriv_chart/assets/icons/symbols/crybtcusd.png"],"packages/deriv_chart/assets/icons/symbols/crydshusd.png":["packages/deriv_chart/assets/icons/symbols/crydshusd.png"],"packages/deriv_chart/assets/icons/symbols/cryeosusd.png":["packages/deriv_chart/assets/icons/symbols/cryeosusd.png"],"packages/deriv_chart/assets/icons/symbols/cryethusd.png":["packages/deriv_chart/assets/icons/symbols/cryethusd.png"],"packages/deriv_chart/assets/icons/symbols/cryltcusd.png":["packages/deriv_chart/assets/icons/symbols/cryltcusd.png"],"packages/deriv_chart/assets/icons/symbols/cryxmrusd.png":["packages/deriv_chart/assets/icons/symbols/cryxmrusd.png"],"packages/deriv_chart/assets/icons/symbols/cryxrpusd.png":["packages/deriv_chart/assets/icons/symbols/cryxrpusd.png"],"packages/deriv_chart/assets/icons/symbols/cryzecusd.png":["packages/deriv_chart/assets/icons/symbols/cryzecusd.png"],"packages/deriv_chart/assets/icons/symbols/dshusd.png":["packages/deriv_chart/assets/icons/symbols/dshusd.png"],"packages/deriv_chart/assets/icons/symbols/eosusd.png":["packages/deriv_chart/assets/icons/symbols/eosusd.png"],"packages/deriv_chart/assets/icons/symbols/ethusd.png":["packages/deriv_chart/assets/icons/symbols/ethusd.png"],"packages/deriv_chart/assets/icons/symbols/frxaudcad.png":["packages/deriv_chart/assets/icons/symbols/frxaudcad.png"],"packages/deriv_chart/assets/icons/symbols/frxaudchf.png":["packages/deriv_chart/assets/icons/symbols/frxaudchf.png"],"packages/deriv_chart/assets/icons/symbols/frxaudjpy.png":["packages/deriv_chart/assets/icons/symbols/frxaudjpy.png"],"packages/deriv_chart/assets/icons/symbols/frxaudnzd.png":["packages/deriv_chart/assets/icons/symbols/frxaudnzd.png"],"packages/deriv_chart/assets/icons/symbols/frxaudusd.png":["packages/deriv_chart/assets/icons/symbols/frxaudusd.png"],"packages/deriv_chart/assets/icons/symbols/frxbrousd.png":["packages/deriv_chart/assets/icons/symbols/frxbrousd.png"],"packages/deriv_chart/assets/icons/symbols/frxeuraud.png":["packages/deriv_chart/assets/icons/symbols/frxeuraud.png"],"packages/deriv_chart/assets/icons/symbols/frxeurcad.png":["packages/deriv_chart/assets/icons/symbols/frxeurcad.png"],"packages/deriv_chart/assets/icons/symbols/frxeurchf.png":["packages/deriv_chart/assets/icons/symbols/frxeurchf.png"],"packages/deriv_chart/assets/icons/symbols/frxeurgbp.png":["packages/deriv_chart/assets/icons/symbols/frxeurgbp.png"],"packages/deriv_chart/assets/icons/symbols/frxeurjpy.png":["packages/deriv_chart/assets/icons/symbols/frxeurjpy.png"],"packages/deriv_chart/assets/icons/symbols/frxeurnzd.png":["packages/deriv_chart/assets/icons/symbols/frxeurnzd.png"],"packages/deriv_chart/assets/icons/symbols/frxeurusd.png":["packages/deriv_chart/assets/icons/symbols/frxeurusd.png"],"packages/deriv_chart/assets/icons/symbols/frxgbpaud.png":["packages/deriv_chart/assets/icons/symbols/frxgbpaud.png"],"packages/deriv_chart/assets/icons/symbols/frxgbpcad.png":["packages/deriv_chart/assets/icons/symbols/frxgbpcad.png"],"packages/deriv_chart/assets/icons/symbols/frxgbpchf.png":["packages/deriv_chart/assets/icons/symbols/frxgbpchf.png"],"packages/deriv_chart/assets/icons/symbols/frxgbpjpy.png":["packages/deriv_chart/assets/icons/symbols/frxgbpjpy.png"],"packages/deriv_chart/assets/icons/symbols/frxgbpnok.png":["packages/deriv_chart/assets/icons/symbols/frxgbpnok.png"],"packages/deriv_chart/assets/icons/symbols/frxgbpnzd.png":["packages/deriv_chart/assets/icons/symbols/frxgbpnzd.png"],"packages/deriv_chart/assets/icons/symbols/frxgbpusd.png":["packages/deriv_chart/assets/icons/symbols/frxgbpusd.png"],"packages/deriv_chart/assets/icons/symbols/frxnzdjpy.png":["packages/deriv_chart/assets/icons/symbols/frxnzdjpy.png"],"packages/deriv_chart/assets/icons/symbols/frxnzdusd.png":["packages/deriv_chart/assets/icons/symbols/frxnzdusd.png"],"packages/deriv_chart/assets/icons/symbols/frxusdcad.png":["packages/deriv_chart/assets/icons/symbols/frxusdcad.png"],"packages/deriv_chart/assets/icons/symbols/frxusdchf.png":["packages/deriv_chart/assets/icons/symbols/frxusdchf.png"],"packages/deriv_chart/assets/icons/symbols/frxusdjpy.png":["packages/deriv_chart/assets/icons/symbols/frxusdjpy.png"],"packages/deriv_chart/assets/icons/symbols/frxusdmxn.png":["packages/deriv_chart/assets/icons/symbols/frxusdmxn.png"],"packages/deriv_chart/assets/icons/symbols/frxusdnok.png":["packages/deriv_chart/assets/icons/symbols/frxusdnok.png"],"packages/deriv_chart/assets/icons/symbols/frxusdpln.png":["packages/deriv_chart/assets/icons/symbols/frxusdpln.png"],"packages/deriv_chart/assets/icons/symbols/frxusdsek.png":["packages/deriv_chart/assets/icons/symbols/frxusdsek.png"],"packages/deriv_chart/assets/icons/symbols/frxxagusd.png":["packages/deriv_chart/assets/icons/symbols/frxxagusd.png"],"packages/deriv_chart/assets/icons/symbols/frxxauusd.png":["packages/deriv_chart/assets/icons/symbols/frxxauusd.png"],"packages/deriv_chart/assets/icons/symbols/frxxpdusd.png":["packages/deriv_chart/assets/icons/symbols/frxxpdusd.png"],"packages/deriv_chart/assets/icons/symbols/frxxptusd.png":["packages/deriv_chart/assets/icons/symbols/frxxptusd.png"],"packages/deriv_chart/assets/icons/symbols/jd10.png":["packages/deriv_chart/assets/icons/symbols/jd10.png"],"packages/deriv_chart/assets/icons/symbols/jd100.png":["packages/deriv_chart/assets/icons/symbols/jd100.png"],"packages/deriv_chart/assets/icons/symbols/jd150.png":["packages/deriv_chart/assets/icons/symbols/jd150.png"],"packages/deriv_chart/assets/icons/symbols/jd200.png":["packages/deriv_chart/assets/icons/symbols/jd200.png"],"packages/deriv_chart/assets/icons/symbols/jd25.png":["packages/deriv_chart/assets/icons/symbols/jd25.png"],"packages/deriv_chart/assets/icons/symbols/jd50.png":["packages/deriv_chart/assets/icons/symbols/jd50.png"],"packages/deriv_chart/assets/icons/symbols/jd75.png":["packages/deriv_chart/assets/icons/symbols/jd75.png"],"packages/deriv_chart/assets/icons/symbols/ltcusd.png":["packages/deriv_chart/assets/icons/symbols/ltcusd.png"],"packages/deriv_chart/assets/icons/symbols/otc_aex.png":["packages/deriv_chart/assets/icons/symbols/otc_aex.png"],"packages/deriv_chart/assets/icons/symbols/otc_as51.png":["packages/deriv_chart/assets/icons/symbols/otc_as51.png"],"packages/deriv_chart/assets/icons/symbols/otc_dji.png":["packages/deriv_chart/assets/icons/symbols/otc_dji.png"],"packages/deriv_chart/assets/icons/symbols/otc_fchi.png":["packages/deriv_chart/assets/icons/symbols/otc_fchi.png"],"packages/deriv_chart/assets/icons/symbols/otc_ftse.png":["packages/deriv_chart/assets/icons/symbols/otc_ftse.png"],"packages/deriv_chart/assets/icons/symbols/otc_gdaxi.png":["packages/deriv_chart/assets/icons/symbols/otc_gdaxi.png"],"packages/deriv_chart/assets/icons/symbols/otc_hsi.png":["packages/deriv_chart/assets/icons/symbols/otc_hsi.png"],"packages/deriv_chart/assets/icons/symbols/otc_n225.png":["packages/deriv_chart/assets/icons/symbols/otc_n225.png"],"packages/deriv_chart/assets/icons/symbols/otc_ndx.png":["packages/deriv_chart/assets/icons/symbols/otc_ndx.png"],"packages/deriv_chart/assets/icons/symbols/otc_spc.png":["packages/deriv_chart/assets/icons/symbols/otc_spc.png"],"packages/deriv_chart/assets/icons/symbols/otc_ssmi.png":["packages/deriv_chart/assets/icons/symbols/otc_ssmi.png"],"packages/deriv_chart/assets/icons/symbols/otc_sx5e.png":["packages/deriv_chart/assets/icons/symbols/otc_sx5e.png"],"packages/deriv_chart/assets/icons/symbols/r_10.png":["packages/deriv_chart/assets/icons/symbols/r_10.png"],"packages/deriv_chart/assets/icons/symbols/r_100.png":["packages/deriv_chart/assets/icons/symbols/r_100.png"],"packages/deriv_chart/assets/icons/symbols/r_25.png":["packages/deriv_chart/assets/icons/symbols/r_25.png"],"packages/deriv_chart/assets/icons/symbols/r_50.png":["packages/deriv_chart/assets/icons/symbols/r_50.png"],"packages/deriv_chart/assets/icons/symbols/r_75.png":["packages/deriv_chart/assets/icons/symbols/r_75.png"],"packages/deriv_chart/assets/icons/symbols/rdbear.png":["packages/deriv_chart/assets/icons/symbols/rdbear.png"],"packages/deriv_chart/assets/icons/symbols/rdbull.png":["packages/deriv_chart/assets/icons/symbols/rdbull.png"],"packages/deriv_chart/assets/icons/symbols/stprng.png":["packages/deriv_chart/assets/icons/symbols/stprng.png"],"packages/deriv_chart/assets/icons/symbols/wldaud.png":["packages/deriv_chart/assets/icons/symbols/wldaud.png"],"packages/deriv_chart/assets/icons/symbols/wldeur.png":["packages/deriv_chart/assets/icons/symbols/wldeur.png"],"packages/deriv_chart/assets/icons/symbols/wldgbp.png":["packages/deriv_chart/assets/icons/symbols/wldgbp.png"],"packages/deriv_chart/assets/icons/symbols/wldusd.png":["packages/deriv_chart/assets/icons/symbols/wldusd.png"],"packages/deriv_chart/assets/icons/symbols/wldxau.png":["packages/deriv_chart/assets/icons/symbols/wldxau.png"],"packages/deriv_chart/assets/icons/symbols/xmrusd.png":["packages/deriv_chart/assets/icons/symbols/xmrusd.png"],"packages/deriv_chart/assets/icons/symbols/xrpusd.png":["packages/deriv_chart/assets/icons/symbols/xrpusd.png"],"packages/deriv_chart/assets/icons/symbols/zecusd.png":["packages/deriv_chart/assets/icons/symbols/zecusd.png"]} \ No newline at end of file diff --git a/dist/chart/assets/FontManifest.json b/dist/chart/assets/FontManifest.json new file mode 100644 index 000000000..75053f430 --- /dev/null +++ b/dist/chart/assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"IBMPlexSans","fonts":[{"asset":"fonts/IBMPlexSans-Regular.woff2"},{"weight":700,"asset":"fonts/IBMPlexSans-Bold.woff2"}]}] \ No newline at end of file diff --git a/dist/chart/assets/NOTICES b/dist/chart/assets/NOTICES new file mode 100644 index 000000000..c24fc3856 --- /dev/null +++ b/dist/chart/assets/NOTICES @@ -0,0 +1,33328 @@ +abseil-cpp + +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. +-------------------------------------------------------------------------------- +abseil-cpp +angle +etc1 +expat +flatbuffers +fuchsia-vulkan +fuchsia_sdk +glslang +khronos +perfetto +shaderc +spirv-cross +txt +vulkan +vulkan-headers +vulkan-validation-layers +wuffs + +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. +-------------------------------------------------------------------------------- +accessibility + +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. +-------------------------------------------------------------------------------- +accessibility + +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. +-------------------------------------------------------------------------------- +accessibility + +Copyright (c) 2014 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. +-------------------------------------------------------------------------------- +accessibility + +Copyright 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. +-------------------------------------------------------------------------------- +accessibility + +Copyright 2016 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. +-------------------------------------------------------------------------------- +accessibility + +Copyright 2020 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. +-------------------------------------------------------------------------------- +accessibility +angle + +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. +-------------------------------------------------------------------------------- +accessibility +angle +fuchsia_sdk +skia +zlib + +Copyright 2018 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. +-------------------------------------------------------------------------------- +accessibility +angle +icu +zlib + +Copyright 2014 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. +-------------------------------------------------------------------------------- +accessibility +angle +zlib + +Copyright (c) 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. +-------------------------------------------------------------------------------- +accessibility +angle +zlib + +Copyright 2017 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. +-------------------------------------------------------------------------------- +accessibility +engine +spring_animation +tonic +txt +web_test_fonts +web_unicode + +Copyright 2013 The Flutter 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. +-------------------------------------------------------------------------------- +accessibility +fuchsia_sdk +zlib + +Copyright 2019 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. +-------------------------------------------------------------------------------- +accessibility +skia + +Copyright 2015 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. +-------------------------------------------------------------------------------- +accessibility +zlib + +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. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2008-2018 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. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2013-2017 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. +-------------------------------------------------------------------------------- +angle + +Copyright (c) 2020 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2002 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2010 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2011 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2012 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. +-------------------------------------------------------------------------------- +angle + +Copyright 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2013-2020 The Khronos Group 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2014 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2015 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2016 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2017 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2018 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2018 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2019 The ANGLE 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: + + 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2020 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2020 The ANGLE 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: + + 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2021 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2021 The ANGLE 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: + + 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2021-2022 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. +-------------------------------------------------------------------------------- +angle + +Copyright 2022 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. +-------------------------------------------------------------------------------- +angle + +Copyright 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. +-------------------------------------------------------------------------------- +angle +khronos + +Copyright (c) 2013-2018 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. +-------------------------------------------------------------------------------- +angle +xxhash + +Copyright 2019 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. +-------------------------------------------------------------------------------- +async +collection +stream_channel + +Copyright 2015, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +boolean_selector +meta + +Copyright 2016, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +boringssl + +Copyright (C) 1995-1997 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.] +-------------------------------------------------------------------------------- +boringssl + +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.] +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2000 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2001 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2002 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2003 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2004 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2005 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2005 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2006 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2007 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. +-------------------------------------------------------------------------------- +boringssl + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2002 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2003 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2004 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2005 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2007 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1999-2008 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2000 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2000-2002 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2000-2003 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2000-2005 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2001 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2001-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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2002-2006 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2003 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2004 Kungliga Tekniska Högskolan +(Royal Institute of Technology, Stockholm, Sweden). +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 Institute 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 INSTITUTE 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 INSTITUTE 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2004 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2005 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2006 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2006,2007 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2008 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2010 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2012 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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2013 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2014, Google Inc. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2015, Google Inc. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2016, Google Inc. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2017, Google Inc. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2017, the HRSS authors. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2018, Google Inc. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2018, Google Inc. +Copyright (c) 2020, Arm Ltd. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2019, Google Inc. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2020, Google Inc. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 2021, Google Inc. + +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. +-------------------------------------------------------------------------------- +boringssl + +Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. + +The Contribution is licensed pursuant to the Eric Young open source +license provided above. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. + +The Contribution is licensed pursuant to the OpenSSL open source +license provided above. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 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. 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 + licensing@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. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +ECC cipher suite support in OpenSSL originally developed by +SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +ECDH support in OpenSSL originally developed by +SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2005 Nokia. All rights reserved. + +The portions of the attached software ("Contribution") is developed by +Nokia Corporation and is licensed pursuant to the OpenSSL open source +license. + +The Contribution, originally written by Mika Kousa and Pasi Eronen of +Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites +support (see RFC 4279) to OpenSSL. + +No patent licenses or other rights except those expressly stated in +the OpenSSL open source license shall be deemed granted or received +expressly, by implication, estoppel, or otherwise. + +No assurances are provided by Nokia that the Contribution does not +infringe the patent or other intellectual property rights of any third +party or that the license provides you with all the necessary rights +to make use of the Contribution. + +THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN +ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA +SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY +OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR +OTHERWISE. +-------------------------------------------------------------------------------- +boringssl + +Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright (c) 2012, Intel Corporation. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright (c) 2014, Intel Corporation. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright (c) 2015, Intel Inc. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +boringssl + +Copyright 2016 Brian Smith. + +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. +-------------------------------------------------------------------------------- +boringssl + +DTLS code by Eric Rescorla + +Copyright (C) 2006, Network Resonance, Inc. +Copyright (C) 2011, RTFM, Inc. +-------------------------------------------------------------------------------- +boringssl + +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.] + +ISC license used for completely new code in BoringSSL: + +Copyright (c) 2015, Google Inc. + +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. + +The code in third_party/fiat carries the MIT license: + +Copyright (c) 2015-2016 the fiat-crypto authors (see +https://github.com/mit-plv/fiat-crypto/blob/master/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. + +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. + +BoringSSL uses the Chromium test infrastructure to run a continuous build, +trybots etc. The scripts which manage this, and the script for generating build +metadata, are under the Chromium license. Distributing code linked against +BoringSSL does not trigger this license. + +Copyright 2015 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. +-------------------------------------------------------------------------------- +ceval + +Copyright (c) 2021 e_t + +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. +-------------------------------------------------------------------------------- +characters +ffi + +Copyright 2019, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +clock +fake_async +material_color_utilities + + + 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2012 Adam Singer (adam@solvr.io) +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" AND WITHOUT WARRANTY OF ANY KIND, +EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF +THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +In addition, the following condition applies: + +All redistributions must retain an intact copy of this copyright notice +and disclaimer. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2010, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2014 The Polymer 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file +for details. 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 LLC 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. +-------------------------------------------------------------------------------- +dart + +Copyright 2012, the Dart project authors. + +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 LLC 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. +-------------------------------------------------------------------------------- +deriv_chart +deriv_technical_analysis + +TODO: Add your license here. + +-------------------------------------------------------------------------------- +double-conversion +icu + +Copyright 2006-2008 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. +-------------------------------------------------------------------------------- +double-conversion +icu + +Copyright 2010 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. +-------------------------------------------------------------------------------- +double-conversion +icu + +Copyright 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. +-------------------------------------------------------------------------------- +engine + +License for the Ahem font embedded below is from: +https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING + +The Ahem font in this directory belongs to the public domain. In +jurisdictions that do not recognize public domain ownership of these +files, the following Creative Commons Zero declaration applies: + + + +which is quoted below: + + The person who has associated a work with this document (the "Work") + affirms that he or she (the "Affirmer") is the/an author or owner of + the Work. The Work may be any work of authorship, including a + database. + + The Affirmer hereby fully, permanently and irrevocably waives and + relinquishes all of her or his copyright and related or neighboring + legal rights in the Work available under any federal or state law, + treaty or contract, including but not limited to moral rights, + publicity and privacy rights, rights protecting against unfair + competition and any rights protecting the extraction, dissemination + and reuse of data, whether such rights are present or future, vested + or contingent (the "Waiver"). The Affirmer makes the Waiver for the + benefit of the public at large and to the detriment of the Affirmer's + heirs or successors. + + The Affirmer understands and intends that the Waiver has the effect + of eliminating and entirely removing from the Affirmer's control all + the copyright and related or neighboring legal rights previously held + by the Affirmer in the Work, to that extent making the Work freely + available to the public for any and all uses and purposes without + restriction of any kind, including commercial use and uses in media + and formats or by methods that have not yet been invented or + conceived. Should the Waiver for any reason be judged legally + ineffective in any jurisdiction, the Affirmer hereby grants a free, + full, permanent, irrevocable, nonexclusive and worldwide license for + all her or his copyright and related or neighboring legal rights in + the Work. +-------------------------------------------------------------------------------- +equatable + +MIT License + +Copyright (c) 2024 Felix Angelov + +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. + +-------------------------------------------------------------------------------- +etc_decoder + +Copyright (c) 2020-2022 Hans-Kristian Arntzen + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2004 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2016 Cristian Rodríguez +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Yury Gribov + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2005 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Cristian Rodríguez +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2017 Rhodri James +Copyright (c) 2022 Thijs Schreijer + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2006 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016 Eric Rahm +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Gaurav +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2016 Gustavo Grieco +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Ed Schouten +Copyright (c) 2017-2022 Rhodri James +Copyright (c) 2017 Václav Slavík +Copyright (c) 2017 Viktor Szakats +Copyright (c) 2017 Chanho Park +Copyright (c) 2017 Rolf Eike Beer +Copyright (c) 2017 Hans Wennborg +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Marco Maggi +Copyright (c) 2018 Mariusz Zaborski +Copyright (c) 2019 David Loffredo +Copyright (c) 2019-2020 Ben Wagner +Copyright (c) 2019 Vadim Zeitlin +Copyright (c) 2021 Dong-hee Na +Copyright (c) 2022 Samanta Navarro +Copyright (c) 2022 Jeffrey Walton +Copyright (c) 2022 Jann Horn + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2002 Fred L. Drake, Jr. +Copyright (c) 2006 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Don Lewis +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Alexander Bluhm +Copyright (c) 2017 Benbuck Nason +Copyright (c) 2017 José Gutiérrez de la Concha +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2009 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Joe Orton +Copyright (c) 2020 Kleber Tarcísio +Copyright (c) 2021 Tim Bray +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2004 Fred L. Drake, Jr. +Copyright (c) 2002-2009 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Franek Korta + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2005 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Boris Kolpackov +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005-2006 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2019 David Loffredo + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Karl Waclawek +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017-2019 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2018 Sebastian Pipping +Copyright (c) 2018 Marco Maggi + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper +Copyright (c) 2001-2022 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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1999-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2007 Karl Waclawek +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2003 Greg Stein +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2018 Yury Gribov +Copyright (c) 2019 David Loffredo + +Licensed under the MIT license: + +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. +-------------------------------------------------------------------------------- +expat +harfbuzz + +Copyright (c) 2021 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. +-------------------------------------------------------------------------------- +ffx_spd + +Copyright (c) 2017-2019 Advanced Micro Devices, Inc. All rights reserved. +Copyright (c) <2014> + +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. +-------------------------------------------------------------------------------- +ffx_spd + +Copyright (c) 2017-2020 Advanced Micro Devices, 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 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. +-------------------------------------------------------------------------------- +fiat + +Copyright (c) 2015-2016 the fiat-crypto authors (see + +https://github.com/mit-plv/fiat-crypto/blob/master/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. +-------------------------------------------------------------------------------- +file + +Copyright 2017, the Dart 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. +-------------------------------------------------------------------------------- +flatbuffers + +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 2014 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. +-------------------------------------------------------------------------------- +flutter + +Copyright 2014 The Flutter 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. + +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 1995-2017 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001, 2002 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001, 2002, 2003, 2004 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001-2008, 2011, 2013, 2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 1990, 1994, 1998 The Open Group + +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. + +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 +OPEN GROUP 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 The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2004, 2011 Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2014 + Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2015 + Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000, 2001, 2004 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000-2001, 2002 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000-2001, 2003 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2000-2010, 2012-2014 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2001, 2002, 2012 Francesco Zappa Nardelli + +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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2003 by +Francesco Zappa Nardelli + +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. +-------------------------------------------------------------------------------- +freetype2 + +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 + + https://www.freetype.org + + +--- end of FTL.TXT --- +-------------------------------------------------------------------------------- +freetype2 + +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. +-------------------------------------------------------------------------------- +freetype2 + +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. + +(This is a heavily cut-down "BSD license".) +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2014 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2016 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2017 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2018 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2019 The Fuchsia Authors. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2019 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2020 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2021 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2022 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +Copyright 2023 The Fuchsia 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. + +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. +-------------------------------------------------------------------------------- +fuchsia_sdk + +musl as a whole is licensed under the following standard MIT license: + + +Copyright © 2005-2014 Rich Felker, et al. + +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. + + +Authors/contributors include: + +Alex Dowad +Alexander Monakov +Anthony G. Basile +Arvid Picciani +Bobby Bingham +Boris Brezillon +Brent Cook +Chris Spiegel +Clément Vasseur +Daniel Micay +Denys Vlasenko +Emil Renner Berthing +Felix Fietkau +Felix Janda +Gianluca Anzolin +Hauke Mehrtens +Hiltjo Posthuma +Isaac Dunham +Jaydeep Patil +Jens Gustedt +Jeremy Huntwork +Jo-Philipp Wich +Joakim Sindholt +John Spencer +Josiah Worcester +Justin Cormack +Khem Raj +Kylie McClain +Luca Barbato +Luka Perkov +M Farkas-Dyck (Strake) +Mahesh Bodapati +Michael Forney +Natanael Copa +Nicholas J. Kain +orc +Pascal Cuoq +Petr Hosek +Pierre Carrier +Rich Felker +Richard Pennington +Shiz +sin +Solar Designer +Stefan Kristiansson +Szabolcs Nagy +Timo Teräs +Trutz Behn +Valentin Ochs +William Haddon + +Portions of this software are derived from third-party works licensed +under terms compatible with the above MIT license: + +Much of the math library code (third_party/math/* and +third_party/complex/*, and third_party/include/libm.h) is +Copyright © 1993,2004 Sun Microsystems or +Copyright © 2003-2011 David Schultz or +Copyright © 2003-2009 Steven G. Kargl or +Copyright © 2003-2009 Bruce D. Evans or +Copyright © 2008 Stephen L. Moshier +and labelled as such in comments in the individual source files. All +have been licensed under extremely permissive terms. + +The smoothsort implementation (third_party/smoothsort/qsort.c) is +Copyright © 2011 Valentin Ochs and is licensed under an MIT-style +license. + +The x86_64 files in third_party/arch were written by Nicholas J. Kain +and is licensed under the standard MIT terms. + +All other files which have no copyright comments are original works +produced specifically for use as part of this library, written either +by Rich Felker, the main author of the library, or by one or more +contibutors listed above. Details on authorship of individual files +can be found in the git version control history of the project. The +omission of copyright and license comments in each file is in the +interest of source tree size. + +In addition, permission is hereby granted for all public header files +(include/* and arch/*/bits/*) and crt files intended to be linked into +applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit +the copyright notice and permission notice otherwise required by the +license, and to use these files without any requirement of +attribution. These files include substantial contributions from: + +Bobby Bingham +John Spencer +Nicholas J. Kain +Rich Felker +Richard Pennington +Stefan Kristiansson +Szabolcs Nagy + +all of whom have explicitly granted such permission. + +This file previously contained text expressing a belief that most of +the files covered by the above exception were sufficiently trivial not +to be subject to copyright, resulting in confusion over whether it +negated the permissions granted in the license. In the spirit of +permissive licensing, and of not having licensing issues being an +obstacle to adoption, that text has been removed. +-------------------------------------------------------------------------------- +fuchsia_sdk +libjxl + +Copyright 2021 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. +-------------------------------------------------------------------------------- +glfw + +Copyright (C) 1997-2013 Sam Lantinga + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard + +Copyright (c) 2006-2019 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2016 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2017 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2018 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy +Copyright (c) 2012 Torsten Walluhn + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2006-2017 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2006-2018 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2016 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2019 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2019 Camilla Löwy +Copyright (c) 2012 Torsten Walluhn + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2009-2021 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2014 Jonas Ådahl + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016 Google Inc. +Copyright (c) 2016-2017 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016 Google Inc. +Copyright (c) 2016-2019 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2016-2017 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2021 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glfw + +Copyright (c) 2022 Camilla Löwy + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2019 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2018-2020 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017, 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2016 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020-2021 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (c) 2002-2010 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2020 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2016-2020 Google, Inc. +Modifications Copyright(C) 2021 Advanced Micro Devices, Inc.All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2017 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013-2016 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014 LunarG, Inc. +Copyright (C) 2015-2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018-2020 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2016 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017 ARM Limited. + +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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. +Copyright (C) 2020 The Khronos Group 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017-2018 Google, Inc. +Copyright (C) 2017 LunarG, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 The Khronos Group 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2020 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2020 The Khronos Group 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 The Khronos Group 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2002, NVIDIA Corporation. + +NVIDIA Corporation("NVIDIA") supplies this software to you in +consideration of your agreement to the following terms, and your use, +installation, modification or redistribution of this NVIDIA software +constitutes acceptance of these terms. If you do not agree with these +terms, please do not use, install, modify or redistribute this NVIDIA +software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, NVIDIA grants you a personal, non-exclusive +license, under NVIDIA's copyrights in this original NVIDIA software (the +"NVIDIA Software"), to use, reproduce, modify and redistribute the +NVIDIA Software, with or without modifications, in source and/or binary +forms; provided that if you redistribute the NVIDIA Software, you must +retain the copyright notice of NVIDIA, this notice and the following +text and disclaimers in all such redistributions of the NVIDIA Software. +Neither the name, trademarks, service marks nor logos of NVIDIA +Corporation may be used to endorse or promote products derived from the +NVIDIA Software without specific prior written permission from NVIDIA. +Except as expressly stated in this notice, no other rights or licenses +express or implied, are granted by NVIDIA herein, including but not +limited to any patent rights that may be infringed by your derivative +works or by other works in which the NVIDIA Software may be +incorporated. No hardware is licensed hereunder. + +THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, +INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER +PRODUCTS. + +IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, +INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY +OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE +NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, +TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF +NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2013 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2017 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. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2020 The Khronos Group Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +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. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2018 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. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2019, Viktor Latypov +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 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020 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. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020, Travis Fort +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 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. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2022 ARM Limited + +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. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +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. +-------------------------------------------------------------------------------- +glslang + +Copyright(C) 2021 Advanced Micro Devices, 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 3Dlabs Inc. Ltd. 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 HOLDERS 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. +-------------------------------------------------------------------------------- +glslang +skia + +Copyright (c) 2014-2016 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. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +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. +-------------------------------------------------------------------------------- +glslang +spirv-cross + +Copyright (c) 2014-2020 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. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2012 Grigori Goronzy + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (c) Microsoft 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 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 +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2006 Behdad Esfahbod +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007 Chris Wilson +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. +Copyright © 2019, Facebook Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2018,2019,2020 Ebrahim Byagowi +Copyright © 2018 Khaled Hosny + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. +Copyright © 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2011,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2010,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2013 Google, Inc. +Copyright © 2021 Khaled Hosny + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2012,2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2011,2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012 Mozilla Foundation. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2013 Mozilla Foundation. +Copyright © 2012,2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2017 Google, Inc. +Copyright © 2021 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2012,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2013 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2014 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015 Google, Inc. +Copyright © 2019 Adobe Inc. +Copyright © 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015 Mozilla Foundation. +Copyright © 2015 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2015-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Elie Roux +Copyright © 2018 Google, Inc. +Copyright © 2018-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Google, Inc. +Copyright © 2018 Khaled Hosny +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2016 Igalia S.L. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017 Google, Inc. +Copyright © 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2017,2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi +Copyright © 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi +Copyright © 2020 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Ebrahim Byagowi. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Google, Inc. +Copyright © 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018 Adobe Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2018-2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe Inc. +Copyright © 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Facebook, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019 Adobe Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2019-2020 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Ebrahim Byagowi + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2020 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Behdad Esfahbod. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2021 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc +Copyright © 2021, 2022 Black Foundry + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Matthias Clasen + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2022 Red Hat, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Behdad Esfahbod + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Behdad Esfahbod +Copyright © 1999 David Turner +Copyright © 2005 Werner Lemberg +Copyright © 2013-2015 Alexei Podtelezhnikov + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright © 2023 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +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. +-------------------------------------------------------------------------------- +harfbuzz + +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-2022 Google, Inc. +Copyright © 2015-2020 Ebrahim Byagowi +Copyright © 2019,2020 Facebook, Inc. +Copyright © 2012,2015 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2011 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod +Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. +Copyright © 1998-2005 David Turner and Werner Lemberg +Copyright © 2016 Igalia S.L. +Copyright © 2022 Matthias Clasen +Copyright © 2018,2021 Khaled Hosny +Copyright © 2018,2019,2020 Adobe, Inc +Copyright © 2013-2015 Alexei Podtelezhnikov + +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. +-------------------------------------------------------------------------------- +harfbuzz +icu +web_unicode + +Unicode® Copyright and Terms of Use +For the general privacy policy governing access to this site, see the Unicode Privacy Policy. + +A. Unicode Copyright +1. Copyright © 1991-2022 Unicode, Inc. All rights reserved. +B. Definitions +Unicode Data Files ("DATA FILES") include all data files under the directories: +https://www.unicode.org/Public/ +https://www.unicode.org/reports/ +https://www.unicode.org/ivd/data/ + +Unicode Data Files do not include PDF online code charts under the directory: +https://www.unicode.org/Public/ + +Unicode Software ("SOFTWARE") includes any source code published in the Unicode Standard +or any source code or compiled code under the directories: +https://www.unicode.org/Public/PROGRAMS/ +https://www.unicode.org/Public/cldr/ +http://site.icu-project.org/download/ +C. Terms of Use +1. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. +2. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. +3. Further specifications of rights and restrictions pertaining to the use of the Unicode DATA FILES and SOFTWARE can be found in the Unicode Data Files and Software License. +4. Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. +5. The Unicode PDF online code charts carry specific restrictions. Those restrictions are incorporated as the first page of each PDF code chart. +6. All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. +7. No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. +8. Modification is not permitted with respect to this document. All copies of this document must be verbatim. +D. Restricted Rights Legend +1. Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. +E.Warranties and Disclaimers +1. This publication and/or website may include technical or typographical errors or other inaccuracies. Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode, Inc. may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. +2. If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. +3. EXCEPT AS PROVIDED IN SECTION E.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE, INC. AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. +F. Waiver of Damages +1. In no event shall Unicode, Inc. or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode, Inc. was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. +G. Trademarks & Logos +1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. “The Unicode Consortium” and “Unicode, Inc.” are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.’s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. +3. The Unicode Consortium Name and Trademark Usage Policy (“Trademark Policy”) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. +4. All third party trademarks referenced herein are the property of their respective owners. +H. Miscellaneous +1. Jurisdiction and Venue. This website is operated from a location in the State of California, United States of America. Unicode, Inc. makes no representation that the materials are appropriate for use in other locations. If you access this website from other locations, you are responsible for compliance with local laws. This Agreement, all use of this website and any claims and damages resulting from use of this website are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this website shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. +2. Modification by Unicode, Inc. Unicode, Inc. shall have the right to modify this Agreement at any time by posting it to this website. The user may not assign any part of this Agreement without Unicode, Inc.’s prior written consent. +3. Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicode’s net income. +4. Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. +5. Entire Agreement. This Agreement constitutes the entire agreement between the parties. + +EXHIBIT 1 +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use +for definitions of Unicode Inc.’s Data Files and Software. + +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-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://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 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. +-------------------------------------------------------------------------------- +icu + +# Copyright (c) 2006-2015 International Business Machines Corporation, + # Apple Inc., and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2001, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2002, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2003, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +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 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 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. +-------------------------------------------------------------------------------- +icu + +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 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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2008, International Business Machines Corporation * +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2012, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2013, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2014, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2014, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2000, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2003, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2009,2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2010, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2010, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2011, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2011,2014-2015 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines * +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2013, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2015, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2016, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1997-2016, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2004, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2008, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2016, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2001, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2003, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2004, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2007, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2008, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2009, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2010, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2010, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2011, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2013, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014 International Business Machines Corporation * +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines Corporation +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines Corporation * +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation + and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2003, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2004, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2004, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2008, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2010, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2012, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2016, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2003, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2008, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2008,2010 IBM and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2010, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011 IBM and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines * + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation. * +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011,2014 IBM and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2013, International Business Machines + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014 IBM and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines * + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines Corporation. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015 IBM and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2003, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2005, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2008 International Business Machines Corporation * +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2008, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2010, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2013, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014 International Business Machines Corporation +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015 International Business Machines Corporation +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines Corporation and others. + All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation * +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation and others. + All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2008, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2009, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2013, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2013, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2003, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2008, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2009, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2009,2012,2016 International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2010, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2014, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines * + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines * + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004 - 2008, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2010, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2015, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2008, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006 International Business Machines Corporation * +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2012, International Business Machines Corporation and others. * +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2014, International Business Machines Corporation * +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2016, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, Google, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2009, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2011, International Business Machines +Corporation, Google and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2012, International Business Machines Corporation * +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2013, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2013, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2014, Google, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2014, Google, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, Google, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010 IBM Corporation and Others. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010, Google, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines Corporation, * +Google, and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2017, International Business Machines Corporation, * +Google, and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010 , Yahoo! Inc. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012,2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012,2015 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, Apple Inc. and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, Apple Inc.; Unicode, Inc.; and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012 International Business Machines Corporation +and others. All rights reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012,2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2015, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (C) The Internet Society (2002). All Rights Reserved. + +This document and translations of it may be copied and furnished to +others, and derivative works that comment on or otherwise explain it +or assist in its implementation may be prepared, copied, published +and distributed, in whole or in part, without restriction of any +kind, provided that the above copyright notice and this paragraph are +included on all such copies and derivative works. However, this +document itself may not be modified in any way, such as by removing +the copyright notice or references to the Internet Society or other +Internet organizations, except as needed for the purpose of +developing Internet standards in which case the procedures for +copyrights defined in the Internet Standards process must be +followed, or as required to translate it into languages other than +English. + +The limited permissions granted above are perpetual and will not be +revoked by the Internet Society or its successors or assigns. + +This document and the information contained herein is provided on an +"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING +TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING +BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION +HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) {1999-2001}, International Business Machines Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2016, International Business Machines Corporation + and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2011, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2016, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2004 IBM, Inc. and Others. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2005, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2007, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2010 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2012, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2004, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2005, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2005, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2006, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2007, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2010, International Business Machines Corporation * +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2011, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2012, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2014, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2016 International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2008, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2010 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2010, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2014 International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2015, International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2010, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2011, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2009, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2011-2012 International Business Machines Corporation +and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2010. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2011. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2012. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2014. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright (c) IBM Corporation, 2000-2016. All rights reserved. + +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu + +Copyright 2001 and onwards Google Inc. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright 2004 and onwards Google Inc. + +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 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. +-------------------------------------------------------------------------------- +icu + +Copyright 2007 Google Inc. All Rights Reserved. + +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 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. +-------------------------------------------------------------------------------- +icu + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use +for definitions of Unicode Inc.’s Data Files and Software. + +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-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://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 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. + +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 + +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. + +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. + +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: 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. +-------------------------------------------------------------------------------- +icu + +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. +-------------------------------------------------------------------------------- +include + +Copyright (C) 2011 Nick Bruun +Copyright (C) 2013 Vlad Lazarenko +Copyright (C) 2014 Nicolas Pauss +-------------------------------------------------------------------------------- +include + +Copyright (c) 2008-2009 Bjoern Hoehrmann + +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. +-------------------------------------------------------------------------------- +include + +Copyright (c) 2009 Florian Loitsch. + +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. +-------------------------------------------------------------------------------- +include + +Copyright (c) 2011 - Nick Bruun. + +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. If you meet (any of) the author(s), you're encouraged to buy them a beer, + a drink or whatever is suited to the situation, given that you like the + software. +4. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +include + +Copyright (c) 2013-2019 Niels Lohmann . + +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. +-------------------------------------------------------------------------------- +inja + +Copyright (c) 2018-2021 Berscheid + +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. +-------------------------------------------------------------------------------- +inja + +Copyright (c) 2018-2021 Lars Berscheid + +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. +-------------------------------------------------------------------------------- +intl + +Copyright 2013, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +js + +Copyright 2012, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +json + +Copyright (c) 2013-2022 Niels Lohmann + +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. +-------------------------------------------------------------------------------- +json_annotation + +Copyright 2017, the Dart 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. + +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2007-2012 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. +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2008-2009 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. +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2013-2014 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. +-------------------------------------------------------------------------------- +khronos + +Copyright (c) 2013-2016 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. +-------------------------------------------------------------------------------- +libXNVCtrl + +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. +-------------------------------------------------------------------------------- +libXNVCtrl + +Copyright (c) 2010 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. +-------------------------------------------------------------------------------- +libcxx + +Copyright 2018 Ulf Adams +Copyright (c) Microsoft Corporation. All rights reserved. + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +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, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS 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. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +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. + + +--- LLVM Exceptions to the Apache 2.0 License ---- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT + +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. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT + +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 1988 by Jef Poskanzer. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 1989 by Jef Poskanzer. +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. +Author: Ragesh Radhakrishnan +Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. + +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. +Copyright (C) 2014, Linaro Limited. All Rights Reserved. +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. + +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014, D. R. Commander. All Rights Reserved. + +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. + +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2014, Jay Foad. All Rights Reserved. + +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2015, D. R. Commander. All Rights Reserved. + +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2014 D. R. Commander. 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 libjpeg-turbo 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 HOLDERS 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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2015 D. R. Commander. 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 libjpeg-turbo 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 HOLDERS 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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2016 D. R. Commander. 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 libjpeg-turbo 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 HOLDERS 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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011 D. R. Commander. 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 libjpeg-turbo 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 HOLDERS 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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011, 2015 D. R. Commander. 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 libjpeg-turbo 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 HOLDERS 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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011-2016 D. R. Commander. 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 libjpeg-turbo 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 HOLDERS 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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, D. R. Commander. + +Based on the x86 SIMD extension for IJG JPEG library - version 1.02 + +Copyright (C) 1999-2006, MIYASAKA Masaru. + +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. +-------------------------------------------------------------------------------- +libjpeg-turbo + +We are also 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." +-------------------------------------------------------------------------------- +libjpeg-turbo + +libjpeg-turbo Licenses +====================== + +libjpeg-turbo is covered by three compatible BSD-style open source licenses: + +- The IJG (Independent JPEG Group) License, which is listed in + [README.ijg](README.ijg) + + This license applies to the libjpeg API library and associated programs + (any code inherited from libjpeg, and any modifications to that code.) + +- The Modified (3-clause) BSD License, which is listed in + [turbojpeg.c](turbojpeg.c) + + This license covers the TurboJPEG API library and associated programs. + +- The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc) + + This license is a subset of the other two, and it covers the libjpeg-turbo + SIMD extensions. + + +Complying with the libjpeg-turbo Licenses +========================================= + +This section provides a roll-up of the libjpeg-turbo licensing terms, to the +best of our understanding. + +1. If you are distributing a modified version of the libjpeg-turbo source, + then: + + 1. You cannot alter or remove any existing copyright or license notices + from the source. + + **Origin** + - Clause 1 of the IJG License + - Clause 1 of the Modified BSD License + - Clauses 1 and 3 of the zlib License + + 2. You must add your own copyright notice to the header of each source + file you modified, so others can tell that you modified that file (if + there is not an existing copyright header in that file, then you can + simply add a notice stating that you modified the file.) + + **Origin** + - Clause 1 of the IJG License + - Clause 2 of the zlib License + + 3. You must include the IJG README file, and you must not alter any of the + copyright or license text in that file. + + **Origin** + - Clause 1 of the IJG License + +2. If you are distributing only libjpeg-turbo binaries without the source, or + if you are distributing an application that statically links with + libjpeg-turbo, then: + + 1. Your product documentation must include a message stating: + + This software is based in part on the work of the Independent JPEG + Group. + + **Origin** + - Clause 2 of the IJG license + + 2. If your binary distribution includes or uses the TurboJPEG API, then + your product documentation must include the text of the Modified BSD + License. + + **Origin** + - Clause 2 of the Modified BSD License + +3. You cannot use the name of the IJG or The libjpeg-turbo Project or the + contributors thereof in advertising, publicity, etc. + + **Origin** + - IJG License + - Clause 3 of the Modified BSD License + +4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be + free of defects, nor do we accept any liability for undesirable + consequences resulting from your use of the software. + + **Origin** + - IJG License + - Modified BSD License + - zlib License +-------------------------------------------------------------------------------- +libjpeg-turbo + +libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project +to include only information relevant to libjpeg-turbo, to wordsmith certain +sections, and to remove impolitic language that existed in the libjpeg v8 +README. It is included only for reference. Please see README.md for +information specific to libjpeg-turbo. + + +The Independent JPEG Group's JPEG software +========================================== + +This distribution contains a release of the Independent JPEG Group's free JPEG +software. You are welcome to redistribute this software and to use it for any +purpose, subject to the conditions under LEGAL ISSUES, below. + +This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, +Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, +Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, +and other members of the Independent JPEG Group. + +IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee +(also known as JPEG, together with ITU-T SG16). + + +DOCUMENTATION ROADMAP +===================== + +This file contains the following sections: + +OVERVIEW General description of JPEG and the IJG software. +LEGAL ISSUES Copyright, lack of warranty, terms of distribution. +REFERENCES Where to learn more about JPEG. +ARCHIVE LOCATIONS Where to find newer versions of this software. +FILE FORMAT WARS Software *not* to get. +TO DO Plans for future IJG releases. + +Other documentation files in the distribution are: + +User documentation: + usage.txt Usage instructions for cjpeg, djpeg, jpegtran, + rdjpgcom, and wrjpgcom. + *.1 Unix-style man pages for programs (same info as usage.txt). + wizard.txt Advanced usage instructions for JPEG wizards only. + change.log Version-to-version change highlights. +Programmer and internal documentation: + libjpeg.txt How to use the JPEG library in your own programs. + example.c Sample code for calling the JPEG library. + structure.txt Overview of the JPEG library's internal structure. + coderules.txt Coding style rules --- please read if you contribute code. + +Please read at least usage.txt. Some information can also be found in the JPEG +FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find +out where to obtain the FAQ article. + +If you want to understand how the JPEG code works, we suggest reading one or +more of the REFERENCES, then looking at the documentation files (in roughly +the order listed) before diving into the code. + + +OVERVIEW +======== + +This package contains C software to implement JPEG image encoding, decoding, +and transcoding. JPEG (pronounced "jay-peg") is a standardized compression +method for full-color and grayscale images. JPEG's strong suit is compressing +photographic images or other types of images that have smooth color and +brightness transitions between neighboring pixels. Images with sharp lines or +other abrupt features may not compress well with JPEG, and a higher JPEG +quality may have to be used to avoid visible compression artifacts with such +images. + +JPEG is lossy, meaning that the output pixels are not necessarily identical to +the input pixels. However, on photographic content and other "smooth" images, +very good compression ratios can be obtained with no visible compression +artifacts, and extremely high compression ratios are possible if you are +willing to sacrifice image quality (by reducing the "quality" setting in the +compressor.) + +This software implements JPEG baseline, extended-sequential, and progressive +compression processes. Provision is made for supporting all variants of these +processes, although some uncommon parameter settings aren't implemented yet. +We have made no provision for supporting the hierarchical or lossless +processes defined in the standard. + +We provide a set of library routines for reading and writing JPEG image files, +plus two sample applications "cjpeg" and "djpeg", which use the library to +perform conversion between JPEG and some other popular image file formats. +The library is intended to be reused in other applications. + +In order to support file conversion and viewing software, we have included +considerable functionality beyond the bare JPEG coding/decoding capability; +for example, the color quantization modules are not strictly part of JPEG +decoding, but they are essential for output to colormapped file formats or +colormapped displays. These extra functions can be compiled out of the +library if not required for a particular application. + +We have also included "jpegtran", a utility for lossless transcoding between +different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple +applications for inserting and extracting textual comments in JFIF files. + +The emphasis in designing this software has been on achieving portability and +flexibility, while also making it fast enough to be useful. In particular, +the software is not intended to be read as a tutorial on JPEG. (See the +REFERENCES section for introductory material.) Rather, it is intended to +be reliable, portable, industrial-strength code. We do not claim to have +achieved that goal in every aspect of the software, but we strive for it. + +We welcome the use of this software as a component of commercial products. +No royalty is required, but we do ask for an acknowledgement in product +documentation, as described under LEGAL ISSUES. + + +LEGAL ISSUES +============ + +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-2016, Thomas G. Lane, Guido Vollbeding. +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. + + +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, +ltmain.sh). Another support script, install-sh, is copyright by X Consortium +but is also freely distributable. + +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent (now expired), 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." + + +REFERENCES +========== + +We recommend reading one or more of these references before trying to +understand the innards of the JPEG software. + +The best short technical introduction to the JPEG compression algorithm is + Wallace, Gregory K. "The JPEG Still Picture Compression Standard", + Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. +(Adjacent articles in that issue discuss MPEG motion picture compression, +applications of JPEG, and related topics.) If you don't have the CACM issue +handy, a PDF file containing a revised version of Wallace's article is +available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually +a preprint for an article that appeared in IEEE Trans. Consumer Electronics) +omits the sample images that appeared in CACM, but it includes corrections +and some added material. Note: the Wallace article is copyright ACM and IEEE, +and it may not be used for commercial purposes. + +A somewhat less technical, more leisurely introduction to JPEG can be found in +"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by +M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides +good explanations and example C code for a multitude of compression methods +including JPEG. It is an excellent source if you are comfortable reading C +code but don't know much about data compression in general. The book's JPEG +sample code is far from industrial-strength, but when you are ready to look +at a full implementation, you've got one here... + +The best currently available description of JPEG is the textbook "JPEG Still +Image Data Compression Standard" by William B. Pennebaker and Joan L. +Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. +Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG +standards (DIS 10918-1 and draft DIS 10918-2). + +The original JPEG standard is divided into two parts, Part 1 being the actual +specification, while Part 2 covers compliance testing methods. Part 1 is +titled "Digital Compression and Coding of Continuous-tone Still Images, +Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS +10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of +Continuous-tone Still Images, Part 2: Compliance testing" and has document +numbers ISO/IEC IS 10918-2, ITU-T T.83. + +The JPEG standard does not specify all details of an interchangeable file +format. For the omitted details we follow the "JFIF" conventions, revision +1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report +and thus received a formal publication status. It is available as a free +download in PDF format from +http://www.ecma-international.org/publications/techreports/E-TR-098.htm. +A PostScript version of the JFIF document is available at +http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at +http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. + +The TIFF 6.0 file format specification can be obtained by FTP from +ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme +found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. +IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). +Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 +(Compression tag 7). Copies of this Note can be obtained from +http://www.ijg.org/files/. It is expected that the next revision +of the TIFF spec will replace the 6.0 JPEG design with the Note's design. +Although IJG's own code does not support TIFF/JPEG, the free libtiff library +uses our library to implement TIFF/JPEG per the Note. + + +ARCHIVE LOCATIONS +================= + +The "official" archive site for this software is www.ijg.org. +The most recent released version can always be found there in +directory "files". + +The JPEG FAQ (Frequently Asked Questions) article is a source of some +general information about JPEG. +It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ +and other news.answers archive sites, including the official news.answers +archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. +If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu +with body + send usenet/news.answers/jpeg-faq/part1 + send usenet/news.answers/jpeg-faq/part2 + + +FILE FORMAT WARS +================ + +The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together +with ITU-T SG16) currently promotes different formats containing the name +"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does +not support these formats (see REFERENCES). Indeed, one of the original +reasons for developing this free software was to help force convergence on +common, interoperable format standards for JPEG files. +Don't use an incompatible file format! +(In any case, our decoder will remain capable of reading existing JPEG +image files indefinitely.) + + +TO DO +===== + +Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. +-------------------------------------------------------------------------------- +libmicrohttpd +skia + +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 the copyright holder 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. +-------------------------------------------------------------------------------- +libpng + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE +========================================= + +PNG Reference Library License version 2 +--------------------------------------- + +* Copyright (c) 1995-2019 The PNG Reference Library Authors. +* Copyright (c) 2018-2019 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. +-------------------------------------------------------------------------------- +libtess2 + +Copyright (C) [dates of first publication] 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. +-------------------------------------------------------------------------------- +libwebp + +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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 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 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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2012 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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 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. + + * 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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2014 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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2015 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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2016 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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2017 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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 2018 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. +-------------------------------------------------------------------------------- +matcher +path +source_span +string_scanner + +Copyright 2014, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +nested +provider + +MIT License + +Copyright (c) 2019 Remi Rousselet + +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. +-------------------------------------------------------------------------------- +path_provider_linux +path_provider_platform_interface +path_provider_windows +platform +plugin_platform_interface +shared_preferences +shared_preferences_android +shared_preferences_foundation +shared_preferences_linux +shared_preferences_platform_interface +shared_preferences_web +shared_preferences_windows +xdg_directories + +Copyright 2013 The Flutter 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. + +-------------------------------------------------------------------------------- +perfetto + +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) 2017, 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. +-------------------------------------------------------------------------------- +rapidjson + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> 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 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. +-------------------------------------------------------------------------------- +rapidjson + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. 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 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. +-------------------------------------------------------------------------------- +rapidjson + +Copyright (c) 2006-2013 Alexander Chemeris + +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 product 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 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. +-------------------------------------------------------------------------------- +rapidjson + +The above software in this distribution may have been modified by +THL A29 Limited ("Tencent Modifications"). +All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. +-------------------------------------------------------------------------------- +root_certificates + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + 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. License Grants and Conditions +-------------------------------- + +2.1. Grants + +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 such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +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 Software 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 placed in a text file included with all distributions of the Covered +Software under this License. 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. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software 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 Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any 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 Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, 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. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the 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. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +You may obtain a copy of this library's Source Code Form from: https://dart.googlesource.com/root_certificates/+/692f6d6488af68e0121317a9c2c9eb393eb0ee50 + +-------------------------------------------------------------------------------- +skia + +Copyright (C) 2014 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +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. +-------------------------------------------------------------------------------- +skia + +Copyright (c) 2014 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2005 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2006 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2006-2012 The Android Open Source Project +Copyright 2012 Mozilla Foundation + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2008 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2008 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2009 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2009-2015 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2010 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2010 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 Google Inc. +Copyright 2012 Mozilla Foundation + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2011 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 Google LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2012 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2013 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 Google Inc. +Copyright 2017 ARM Ltd. + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2014 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2015 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 Mozilla Foundation + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2016 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 ARM Ltd. + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2017 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google LLC. + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 Google, LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2018 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google LLC. + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 Google, LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2019 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 the copyright holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google LLC. + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2020 Google, LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google LLC. + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2021 Google, LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google LLC. + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2022 Google, LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google 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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 Google LLC + +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 holder 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. +-------------------------------------------------------------------------------- +skia + +Copyright 2023 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 the copyright holder 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. +-------------------------------------------------------------------------------- +spirv-cross + +Copyright 2014-2016,2021 The Khronos Group, 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. +-------------------------------------------------------------------------------- +spring_animation + +Copyright (c) Meta Platforms, Inc. and affiliates. + +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. +-------------------------------------------------------------------------------- +sqlite + +The source code for SQLite is in the public domain. No claim of +copyright is made on any part of the core source code. (The +documentation and test code is a different matter - some sections of +documentation and test logic are governed by open-source licenses.) +All contributors to the SQLite core software have signed affidavits +specifically disavowing any copyright interest in the code. This means +that anybody is able to legally do anything they want with the SQLite +source code. + +There are other SQL database engines with liberal licenses that allow +the code to be broadly and freely used. But those other engines are +still governed by copyright law. SQLite is different in that copyright +law simply does not apply. + +The source code files for other SQL database engines typically begin +with a comment describing your legal rights to view and copy that +file. The SQLite source code contains no license since it is not +governed by copyright. Instead of a license, the SQLite source code +offers 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. +-------------------------------------------------------------------------------- +stack_trace + +Copyright 2014, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +systeminfo + +Copyright (C) 2009 Apple 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. + +THIS SOFTWARE IS PROVIDED BY APPLE 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 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. +-------------------------------------------------------------------------------- +tcmalloc + +Copyright (c) 2003, 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. +-------------------------------------------------------------------------------- +tcmalloc + +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. +-------------------------------------------------------------------------------- +term_glyph + +Copyright 2017, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +test_api + +Copyright 2018, the Dart project authors. + +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 LLC 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. + +-------------------------------------------------------------------------------- +vector_math + +Copyright 2015, 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 (C) 2013 Andrew Magill + +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. + +-------------------------------------------------------------------------------- +vulkan-validation-layers + +Copyright (C) 2012-2020 Yann Collet + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +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. +-------------------------------------------------------------------------------- +vulkan-validation-layers +vulkan_memory_allocator + +Copyright (c) 2017-2022 Advanced Micro Devices, 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 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. +-------------------------------------------------------------------------------- +vulkanmemoryallocator + +Copyright 2018 Google 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 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. +-------------------------------------------------------------------------------- +web_locale_keymap + +Copyright (c) 2022 Google LLC + +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. +-------------------------------------------------------------------------------- +win32 + +Copyright 2019, Dart | Windows. 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. +-------------------------------------------------------------------------------- +xxhash + +Copyright (C) 2012-2016, Yann Collet + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +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. +-------------------------------------------------------------------------------- +xxhash + +Copyright (C) 2012-2016, Yann Collet. + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +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. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1995-2022 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. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 1998-2005 Gilles Vollant +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 2017 ARM, Inc. +Copyright 2017 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. +-------------------------------------------------------------------------------- +zlib + +Copyright (c) 2022 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. +-------------------------------------------------------------------------------- +zlib + +Copyright 2022 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. +-------------------------------------------------------------------------------- +zlib + +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. +-------------------------------------------------------------------------------- +zlib + +version 1.2.12, March 27th, 2022 + +Copyright (C) 1995-2022 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. diff --git a/dist/chart/assets/fonts/IBMPlexSans-Bold.woff2 b/dist/chart/assets/fonts/IBMPlexSans-Bold.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..27c8ea3e93cd83bc296ccd953ce6a1b0dd5d1e0a GIT binary patch literal 14272 zcmV;xH$TXCPew8T0RR9105`w@4gdfE0Fh7t05@m=0RR9100000000000000000000 z0000QMjP~K9EJ=AU;u<{5fBQ2hFs}(3xpB?0X7081Bf65AO(XW2Z$LP;D04!*MQpr zqQBpN)F^_DLkNK}jYQbY!HH7*|JUSX41p9jE$fF>D$+2eSEH$SQQebx7y@5p@*Z;v)v6pGGwE%Rjlf05bPmaeE+7~3$J9*+)R$&yS{e=nBW& zMM~0^=jq46ckX@PPGW)=j+{=0L?*d!=t5}Q&9<`-sxird{|(PR^vs#i5~!=L5fxrm z$_!H6ZVClbQj7G(r7f-dbR~7JQ&X3cS&d1}WfC>#No0^=12U{Z5Bsop|9i0aw%@D! zw;B04aIckDCEO-es@)p60vbtv_6PQ!^)lG4)Gh&cTr_K<&K3nEI~O3H+CE_alhotX z=`_pSly6%YApcyMPwG-B*`(_hM6%t+1%R!~9EJx<*!&4UuxuB=KRw^BH(|dVgX1IF zD^tr9&E@Kdx9or6jfcK?j&hXAiE}dUDCcr(1~WTc%np|HM=n+@@*i&q;vI-{JX7Lg zdH-0Dr+V_8b0F^x`IdKYj5#@LG8@DS6-q&HqrizPtag71^v!Kl9Gw zPI2Z@f&oU5?jGo^sKepe%+>~ozqQp<54^j|+nay{4JbbHq4;pq zBVngUzzC?5g1htP)+R_^()0TyKwb~jDzDpakCFwSw+s#%2snr)XB|Y|@E0&iw+?e? zc~8@#j$0`wJ2Rb3$&|!+SSSdB;mM7L58n90OFww-4-egT)r9kl!A=@>$X?qGX6kbT z>9As!wO^+N!NV*Q+94|MI7AHS(k@B9Ez5GqY!dqsXmP_ zql!3EP*X`cd4_UgK_H491h|;YTYFw%lV(I9c%C25zQd*u0Xm^BJ@_Y(f}jUMIU?Z5 zQWno2O0dYmi4p}`VI{G(K&e5L*^Y8M%PJf;NebjL(MXp_PWV3Zf`KGlprIk! zco^S#ni@5iTI*Qf{e&A$2}ZyVRtp6Pu%#jbNf-zqfB*srFn}Wr1Q1|QXi8N9p!-%# zol>HtDk+Luu`1i*pjH5^AYpI_!~#eq;_A18gx5y#HrXlD9>*DOUX}dxDhQyw0_yXBCXhhs;rD3i z*t-HD7qmcw@@p0hz)J)ZPUvGc%VPhP$ri@Y*$1Uti{%VlwahR@q+ z+Vu%J@_!fEKsnN}2m&bRn5^LnJt?d}b_k0teSyf?-KtKi<9n9Gve1CVt`IP6&9A*i zT=)lXN;}|^ksnVj*p29$h>EUF#`b5X(U);skd{NfaLM5ctZ@S@d)}gK^!(-?QoL{j zvS%Zo^$ir{K&wg)zIG3vi`>^PcTR;NFmafNdWUJTGc04Cvd`qXnfK12#m$n9;A-NWSyIo^yRG|6su)w4 zNAS6N^j!vVZ3$d=5xyB#V!V9B0~nUwLICT<*%cwe`0X0Z3F(ya1!_Lksdz!C0N4Yh zzQ1wmy9($kGYN5lrx7raCYp$e9Dmt(bFMws>z*W9QMlIj`aphN6EQI(m(2m33O>%h z2Wyu-d=(0a3vz!mRrUF;dZJ606@Lb9fJb12YXPAjMiDFdAt?QsRGXEHezIRbc_si} zs+yC{E|_%9Z$0)nFn<_O4wp`)wkdXJ;~sy@nCPhQ4!mpC8Kyq;z|>5R7gk^beP?WW^`C7DoY1xE`MC z>6AagSz(QSaEI2FS$mX_j2Fs%p(`o^4MD_zT{sRN!e;##_v{Z&Pe7TN*~r|kJVvFNvB{YnitRv{Xc5rl5UUHVuE*mGeYfqL!d(aC zEk~}rDa|thpX_8X5?RvwUcGP+L#8vNiTUnKOU!WKTgumihLk^MzvD+5>)8?liE z6N^(l!R%}?rsUEI)_&U{iW*g59bz63!~v=nbR%sc`)4F=Y|}z_`}r(%HX*oAcp%Q> zRF+3lM%}P3!D{i82(=aw)y7O}ZZ?qdH9gq98#EoSM>;I*;{+)f8WyNTghECZfr^fR ziH#^)G>RB}R3aiw5(+GF;>1Xhh^Nm^e7gGCnO>iO-4pe zK}jx-nwpS?h*~C$bPQMmKDcne4j?<+1TiSG+gE#=FO>jzJbwJot#@TXUPy%@Cn6Dp90j0ieM)I zj+dt&Ff0NMS*T!9A_WP@6pM-^ghUd8Kw*$FU|=9%VIhZFD849*hUW*vAMpYZD-eAI zAx>~vUm-%_g`uBtM2J8i1oRh)0irMv5rdF17!^a%FcclbFfkkpBe0Pm8Y9JE6dn@A zA_*VKL`We)3Mo>_kVcMl3S@{wrUYb3M7BP}T7f7l5y@ND&ng2@)|U0L&PG^+=wnk^ zyv=s-vlCHvFCD@jLxSvgK!}5m33GgqU>L)VCL)YE=?6dMtSIMwg<=9_2`;*V;p(!p zAeV2326fLZ{|iqvP@(+tLiV+5W62BIwfFp==Hty>D}KrJ!)0Ka6@UD2kCmXoeZqeA z&>#}4ueM6!`w$!Cp;)RPwCZKd!GP)UY1n*VyY=GIJ}hqkO*)5{)EjfDGdINs+d)&H zJFTP%ll%nyU$3gCbc!%^6=riu+(sojnRM(U!uM7^v=oqDcgS9$;2Q2y)A~^~EcF@2 zR%R5vO9Qi5Nywx%J_mS1xNcu=w3}vG(p=2mCh-iJTJ~nSaB(+*H*7v5P>g8GnfdO? zu`*0bd_KI%*S*AYdG*wn>k6!=YI;j|WVw)beE`cmt!6%hL**fdJQcTI6XMB zNmysD3=rMKx^ph9O<6>v>04dMC}e=AGqNvzDk_$*+-uT!&in!YregbflKW0%;hEXC z=T`weUOeL4;fn_5>euBUCpC;N%w?um3IHaj_H}L+QjJYJ`pB#VT%PMzHt}Wm~jqK?P1$=w}k?Kuk z-sGa%IXU$p-s{$9hqJhx(q$N}$|SC>TyK4qo0E@8hR}r7ZwYWqcKJ{u>&-ZO%!F^{ z{xyG#+7;|#l^x6PDS`kD-ivr4kazs8rHvrwh030Z4x2^m5VoioMXuSio{(~T-Ka>s; zB1mv)1cU$-FMv4;ef8CqY&xa|R7|0a9u5Hlri=gwlpujlz=rxvPXg*dMbI4p!|8s= zkYZ{U2L%|7g9u_oQX*PBVyF>IgFcMN=0dy@j8uvQlQEnJscJDoGe&7ahFuus0-{{U z7&kD?O=P)+bhk0k9rSk>DefW3ef0GJLp(&TM;PicGA;KB(%>luz%%rN=SYUHkqF-) z4!)&}W?Sg>fNWeUPVRHrXQ_|V$Bz9D`w)8@dlfr@wNoAqHXSpHIe;m{xFtQr7%<5g z28M+3hpt%kJM=&3pU^jZkjv;V(TC83Xra%UU*#s&Lp{Z&za21k=Huj8Jr<3sp&6`! zLtgAq=e4Zy8)YgB(FHlxiuCC)s(3&@ain5R~8eru&_Hy&st7@|ByJpV?tM*3c6_V7G69b|X z%^LU%5RjP0o{i+KQ|CGtdL#$-rpN*%5@cNjg~HqV2NrUHD`;5AnPQLyo;VW+u*bTc zw(4sGSF?E*6?bjjW~~;1s+6i$ zvg23r;~G3kP7`O*xtPrWMH|r3;s%oBT?|8vsO*?CVWuz>v4sRun2QBqnaud=^-IcP z9Z&~BXT@4&8@OV}i_dv$FC~)8j$TvtLB$7EPLK;hFTcu%B406BY1xz{P==^bqV_hg zlXqlU=54E#5}#R!`HzAdfFxQAiXh&oWqewPOUQO7d(klq@9?LnnR(HD7Cm8M@m#X? z@MATv#+T$Pd#wh1vt-P!VDwI@VKgdgt_1aqiDpjFsn`9YLN~sOYL_)p3w2Nr4VWPs zU9G`c-c%B^x%f#WMx-R>D=fqkG^p0Tz<{c6{gCD4fm+dSE_tsweqHpfQy=g!pxUBq zpeOr&Q~?1G0fHI;zyg6+LOSqNDC9+86PgP101(ImyQGDMOMcnWPrmfEtA~KFO%5*x z)DHmUss~@*DRBL^T~k~uomqKi?a=Y>qRGiO{WKcZm0t2#-kewvdNZVjCMh!yK4CN{ zeuEo~vqYq%*@Lu@P@^n4Zbca!D4LcQIT(asU_dZ1ARr(h0H7pTOjh&z)`5Rmeb}*g zRimF3)TLFC;8&X}1&V4?Vnq(`CrDW1)gxiy1qyxj2pGNsgnV^CDI9;n!f&i>Yyt1` zWw@!Sxe=Cj|55T!0yI6c#?g5lH-U#s4JAtr3sd=j82!w(_ zgAfV?Pyqq$jko^y4iW}kBJgS$$*55jU-}Z&gbQd;KnR7PQrSI1V6!}54FHxJx(6iW zYcW~L!lNFG1X02Trv4Ab78c<9#lBn-%>>jZAd ze;IKNcTzwu$DuGt6d=a}a1YD?;OZg^1Hk~p8&UorBV2$$glz}J+kjk&90vv=fdoo` zRwxLd6}nE~QYH)>P)8z3ref7*ndc)ymb{+qmwnjB1A#)Ld{OM};S3Uk#$YkH3Z zp<%Q$hL|kor_7bCP*%jpD?l9vsbpDPYRtAdve=;!{g4x57#TR#|P0 zjn-Lj1OB}>*=DmXcGzm3?S|~J*FO90cEE(4{`HT)y&lVhI4b z2EOzOub=ui{iLT`Fw|fwoYeVnSw;jZx zODmh5Qr?&gUWlkuG1@=lSL}ZPkG2%VoWg4wA)ZnCXOv3(jGMuvqNcb_h4CB2*n@Y3y5>+x`DUf7#@B5D3}Y!mr_GFm!dII z@%aLovR$`mJjIF-P)jR6%p$KFeYq*iF>@pBu!hg!G;9%+H8|^-I?E_~3!+`eMFoxQ z6c1En5bhNn-@FT3`ObM;5&%+(z*Pv(1LAv=HLW>AFPx9ES7el(AXjEdN_rsOcX-Ki zc`A?=`?jVsnhV4dfI9n84uXW(kjDa@Rs;_Qi-SmJ=WlerW}%eY5(sp1xO;MtFR5|c zVtb@s&#&W5X7fe9^5P=3D3vPFpTA&f>fQrJ%%aZBJi>EJfJ;hxW{U#Na7;uHiE-^+ zZp!iU!TYuu?=v1cgd>B6YCcB!)UX5=HnSYpR&bHp#2GGR0w-c32+9JK$yH5>wn8)k zvj%G}D6A>WXRG9@UGVUs?V=@&Jz=b{ixe3luR)$!>2d>gzV5y~eMM>eic#n@cP+rs zj!HqLj0>2eUL@?awI!qK69Sz3uHUaa2>`nt7Z+7(g;Yi{?rx`C%3{xEg!^jj zje)MIN}D3tHo7#31kT;r`XaMUTg{}|(&o6@pw<$;El@+3vgsga=pa3A##qITZ`v~T zTuXB5g`$hFc8Lxx5Ms0H;7D)X@|X?{E~>U|d>{Y<2K+`A6Bk{Ujiyf(`(}-;n9c`U zCrd)y)FZco5P7y}uqQ(gX(lCcM|$9?#F_HGrv8F{nV+mGE)i>47WLZbKu3Y>u)?E_ z^{nWH0KKM<1R*|1_ZJgc-;Gu?y~DK`$Ct}_Ou7#5v9V2vB~`6$tzrG|r@JmK1M+Wm zO&>lQcv+hKr*ks``jeJ@Vrl5|(H^_mgZDM>mUlmqQVX3Zf#Meq*fyqxnCd%%XBoW( zVO38jz*i*!ZRAT3Yw54n(wTo+n&YLVDT=yGhp@aw8rFgnRDti!Zo=(oXh%to`{r%;YSMxg@VgZDk z^bd|23v(-{@Q3Y2O~FDU#VN>%(4H&V5PX82Qd--XZ%mtZ}H4+G(JfDg2^o+NUjRs9mG^yZT%i>M#Wh%6JIM z8X9ug3Zz*e$_(j8-Y@K`L z@es(7b~ryHIeGv^1y7iD<1gHeGOEEf#Q1;YLuD-f2@pB{!~kC#g^v|mE>R{JK@%qj{O`xNGJ) zTn^#9aBz@!fid8WZ{}P%ApP=7Pj1|8v#Iop*2H;ZYt=v z4#p8q_*Dg$GtOE^W4e_gCNf^lE;oT<5|VO!g)1C(#DSrK?OiX~mQN`4dLSQ8X{u?q zbh`FZw8%Gokxp*`bUppV+`!&mKqhC(vKYQ^l&Q+&DfiD>DrPtY(!x3ogeCw59_T?lf+@8M9PEWs^^wi{aV4U8+>iKnYm%NV8ui>oc)IgM9ii?}3 zqkA$k=@~&PEW|3u4o*K5j~Vw$RCJ!zie%l5lszR=q$uIyr$Pgx2M0e)6?fx z#l99UFQXUH2+$buz`@PDGfd_L>0>J_!Zb$ z5rI3?!q9(<%!=HmvR0)roWF>h*VK-^BQPthO{J}hbxq{3&shUy1=ik4kqM$>YrFla zq}0?@($Xoy?QDPcb|JCo&of2jR2`_y{GZFdKk?rN`;R;L(N4JOQtW+gO1jNn?>2hV z6u-rWMs0f+=J3K&ji{SJV04R!Z|AfGZ-5sx{$8z4Ys|@M%Q3DkMH^fm$FZ4ZHFLHf zm^iOKH1$cA(d&i#W}Q*z@J>;+fi}Qfgngh+PKnQsL!mrhu9woxxuQF{4b1!)MdZs5M18UNBf{{#Bbw2%qN$tYF<@NHvg#=Z*H>aKX7@>+D zV5ivWy%VaSGJXWMV&W2mZqiA;(OF-M74VOrxmwy^Pb_T z_80V0xuc-_C6oJactq7-yM_o|+>ZzBM0jt>v1B7mZPBzz83MPvJhz>9_j1;UUz2nfw-e6FPQN%B`-{ zTYO41;q&z@_g|m!gwus$cl~@A4nXJ-elKEo`F3>a_6_^72Qa(cd(mZkVX=Sjg_2Z5 zl4ep{C2=HXrTMSuHCXN%h?$D!yldOtj)@Lvga2haewOW6_x;$(Z^l#-j2X8X%wu_l zW#u-Wp8b3?mRNrGl_-{E_&bXh)4FEjA&WJVYuKI3ttt(-fZ>KK}e3~%rF0D1ST4X5_EOt6Y zU3OQSL|@vK%gvpwd!tTF)92ZoEroe@J%v)NC9yl^hb>+Juc>(2!1w?GPpFRu@|ndG z#WT&f2Yf&Fo0OI_?4ZRfbI6~t_4P~0!Noe}&!XnrvmirK+<1QR9c9K=bZ+>3=oi|@ zbw|N6KA^yNLBR!-+|%{XqQ8}ms2j`1x9rs+ck8x}F9W7g)rY#fY<%bGXI^moX{U&+ z#e&YFA|QkaxwO=|G@V*=k)y`(tB`sAgqn10h5h#Z}~jIh5d>IcKLOhfhh)ugY1zWo&=pOy&TJHDK;T`1H_f zK&^o7&uVVx9`1U9>UpvKZXUb|dA)n@stDw=h#jwYg+gLTSK&T=*PAZqzH$)w^?Y(_ z-###V5_5IWOBEI7F3L?+sn`D)p>*cS+rCT2CYyFX`XS3Z6JlQX+#Q*i(Yb>V82)~x zZwS%4H&oprI~tq$Jf9q&R7n4dZWf8CMtP<>$+FO60?dv?KEsC_AmSVOYf1`}9uDe* zMTy14OessvXKM9twqw6H)jBzn=xl9VIVB~|7V-Htd{cg%Dn3ckA;bzY`AHdb!Pco* z5Onm&S!cVm)A-+sXgv7Frv*O74RljJGDQ~Z0Mo9FV-;(%Dmj@7OT@7=ZyWM!-o(c@ zDsa;2ve?XLvx14e`#|ECUd~k+Se^`{utV46EWC2t7(s(rW zStltu86szC4KGb@X5pSs)To7%WSVR&nAR%K;fM2cKw47hQ>BU2ZfJr2<2^^97fg zKPmc9efzZledw;)89}FeS08=iAX~`j@YUaNl4)qNh4p>P`W1s=V`Mzn2AgKwoa{}h zYKU7s$(69Sx@l!vNx>4OyDYvpe};QeLA+WKi&~diLIRic8 z===QAsHbNCHXGLAMMLax_K;{##Dd*JrX^4P%gvBweii+en)g$x-l$uogOwwqZh8b2 z|HZuWl7Lso|GrNm(z{{JtJQT`H!QAY5UBrs-e@bMzCVt+Kq4?|;hA)7)4Wd`-!;AC zje)G6ARNoNDqtHrFCu4%$>%K*(mqBMqfffAVBw=GHjE6w_%Zuu1!^?TLA}Gs7W2vK zKR)If`q$l0`G+ONb3-5|3GRz>PnZ^+g?ktWf5&8$kWnX4ISn18K3S zHKQcAFV{5b<^tW~l518&e>$I6+)nBQVSHR&@Z(gihFiECKCOp|B+ZPVz zo{noZx+A(8fPa&>!R?;dHrXX%1Ahv?L3mNt7TZ{(y%&W)T%bm)3l8I>?rA6ega4`* z3on(w4|h|Lt3$WVo&`-{*|hx~Jl0S)f}`J#E!u8wlG9aLQDIDHV!^_E(tt=Q8X)a< z0eO9?5um51V_paJEU%tdJ(qOc7x1Hh?8kmavNnpwRJt4IWqUOks^UY+Xu#_ub1Ug+~P&zHGM6pI`VAcP3H%+z7BGg2#g z1}$%Lq9%b?c9AQZn%-8Hph@h}bsm*XW~LRAb7V4z6w(o7#=QOP5 zPq@W9e|mNfevIWCX;rjrp%5Zf#>=P8HAu6!x3d_m?~d%W$A?~3=8YL>e@pv}uI%h9-!$>24n68CD*D>`Bo zKPi)JaXE=$%rk68_pK>(GdI;>S8KP%d}dD<1cslFA|;W8a9^EY;&D2`%ug)nu&|u` zWWJNN8wP%{#Hh)kWOXc$tO=zuh8EQDV#(_HxTW0NJl<{Y-|YaqC~b0Q8WzsHs@BdM z7>?&o*>Av|TBt}R3}N%n9jMmSZ-K_4&D5b%oA4A*rR)BB=hEc5@oM7}>RF z`koyNcBuTjcq7wqP6xsL-cN0|ka11xo!^aVKR%SqphQt-NUr_GU8(J$s-1RoR{Z$Q z167E^9^|T5t9(LyHB_x6YghHO4g?KHZjXzf+TB(BmGU48hY}=T$xj(Qthel`nf5gu zlIpnXppC_@Tx)UhKRG%7V3^jpHg@{L&0R3MP8_31RK$ph`xIVIsV@of^fWeB^-c<| zZ>qas$(UT5wCdX$#QzQoaB{h@!GIRaGOxmN_C>CH1#?SmvSD?2OB zMM<)?rp|6OA06b#6^0v{_a3Q<)rp;2z)s3?2@;LO zvN)j~r+5KTQBnTgXQs@hq{R+o=>-#TKh# z^*3L&j@qRiOQmy?;*;h`2^#&)5&$?yPDLO*J3LU?dFrZY^un?irs%CH>b%&j>Wro1 zs)7%u=+1m9mc&$nF1JS@)`Y4v?q3D)x>TvvlX$;j<#ujHaxpjEz^uxc zzi?T5l7ls^1%(%06rHN2Rip{+IOR~~|QA>10K}HGt%e?%$f2m}D3h5XA z&(aiCTB^~i3PdKm6B69XVcvD7HWOOOv8$3wsELU#YE}Zl@;wb?( zUUq9XJv6*#1JhflZw0rXBa5lDxRO(ggwgZ!!XMYHPwk0Ja`b6AT4u;CamrJU6z=Em zUe<)y9Ktv&g?HHNrfMut!xD~J12c}qjq0d2nXI7h@fP8R(tLHtn;{M1h5By& zwKDnuuM;z|PDG8Ff}wVm!l=rYQ|WT$RM-eq3|g6+M`g0jYzCFeaQ}2NL29s;+{C8Z zRT4+*YL?9kSq7%F!7f_#N4Xy&{7N9PH_OR*U{1);7&GLg*guxIHXnx7BJzAcbfAY2 zvE#3YgIV-AeNKXiec@Yl{t33CAX%5C6{Ke;?JT85?g&MO(8zQ<3>$Pi^SyW4o{7z3 zT{+Un+ENJ0iV>^_b08v?_$)Aml43LGq-zBD8OSBVsqNmZ#+e!(vi_YyO={=SE)`bXl~>E*RH2ANB9b^F!h3L?7gAJ({EBn4Qeo8}2l*vj z9w2NZe==xDn$h|aB=n*|Afh{_y6JTHR0n;vAk9Qv7sZNNM?C$cf-r+=r3H$k^C$9G zot}G6L-3BDp}b1m7f+qxmV7VSIhZdo_6;1{{Y_kr`|xT ze%tC>>D^D_C33%Hoc$Nee@CZ1yb)bit3|81)+S%0xsd;BQan%t`J>ys+-4!x2^7JUIe#-Qu~HQQYkp2?W>U}jNVkUtkLG=&i07@r zH5tsFekVPn`BR4DcclN~=>#kqioWzAX1Lt024 zsJ}Kzc!8zEkbF6A>hIHP5&v>6g03|+oVMuMB9F+R6?Th*e@cxdX5P;9`&-Z<}@?nHg zE|>?w7ZM;qX|_!O%5J&%e(w>&G;u6J+{Y08wKr&<#%dXDF~E^xLFHXiE22CELt=af zZD^7nX;#gmjihMI^VcDjorbo%Hr~U8Z;&!yY*DBR;j?$+!T3-F8=m-2?U5G;NYVQ2ErsuSy8$BPzx>a1#s&drUZdxq67)&Yzd0o z(h@X|x)KZmM+p{#QUq24JZPU_i)512HkDe{TG5^;)+QQcc{FQPO~OjY%t*x|R|Ah3 z@|0`RMnt7q1GfSmtqLR;Zo;4-Chx6g>{K&$#xOK_b;{1-r5JM3QwyOkyT#1mWcAP& z#vmsplZesHq@uM`#Tc?QOg5uWwsFEE;Q6ka#=}hv37|O5ZMv6Y34jO^P&Bl3^bCwl zK|wY%iyT(D?{0K;^A#xMRHT^8Bqcbaao-(jYd!(tdnC~TGQ3aH|Cf^_OOYx~m~asY zB1Iu0A*1lc792Djag<7keW-%a;9(3Kam;a_`@(5w?6KE2Xj`%P@s}=BsWPE5oD2qV zCi_XJZhd<7+i1`y!6JMh09KZAfqu2pZ$>fDF@2`XcBd=~?wnf8$7*NQs@I@SlSZ30 z`$daZZKk-V-89op4Vz)6+2)vKi@6T#@!C8KEHvLs<1YA0h5afWu$(*MXC4#p{A6EK z_4(xzoQLWBwvE&@TMC`2UW%rcLtQ1iz_OD&-W zo}@v~VLD7KY#hQA4gdfE0Fhh(05;G70RR9100000000000000000000 z0000QMjP{F9EJ=AU;u<{5fBQ2hg9lb3xpB?0X7081Bf65AO(Xu2Z$LP+v&Xlt}F?GI)} zlXd-j(SrgB{~cRs+WfoIp{cu_f#ZBs&0HdCEvT&O**#>EK;(hs#mSTGSQ01{jsX70 zhv(<^=f3yWtb%@{t&yKU5sU0emPCy(y0M#|h1G~zfcD4Q{Qvs1|9w%x2`V^21=Y}P z=r-Snp4a>vGiWk-vk$rjCFy>{^V{rAz{05uixNdpXvz3|KA-4M7=V?la%){h-!(4s z&WlB**RjKG!K;?eoo|asDsP&G$(nxR3gG}p)Q-8|omy*mLnB11WRuYOCesOt7F^Cm zURF>BHxC20KroT}mhH8uyVQ&|@C9fa(>B*AaG9|J8<1fQ&!7+QgU&XTFs4^X;R_jL zP#7@E39lyI`~AODn~?+O%(a%oR04b;>t&-lDr*_sU;Dd=tm0Iw{YnG)7&(uf3kyex zO=Y?Q07Mzvmq?)hXG<&XKjpSH)`Dt@=lryUK_bbpfI7nHBEstW)voETY0(%oYL8*< z+o$#{jK;w4ZD}OG>6uwVmKUXE)*c{51lewOKtXgt=nF3hFA52RFu(A4c)QJS%^w^l z@WBeK%#x#k0*sRq3AvUgVHgDe)s5TVLbGtw9HbHcv!{M}o>Ag~1R=v_FHz(3(b&Zf z8AE*SlQsYE3#TW@K_#t0#V5JLFJvYgG? zPMvxRfm$j~`#kaA+5%PuPy!4wLduAkXCBIYI}p3IA->m+IO#0ntuN@%gbNx0E6cGS zbL{bPX$ZS?jJX%WZ*Q z5=`_j1p>yjqiOgU5PYPDEJo7B#=uO@xQs|!`uuB1ERp!*3=(71kw%cR6o-=BWG9_4 zu!KRcH@ZA_SEtL)YWJtde)c#F+8nY+uWez_s@3YWSZb;HW}3`mtjC&=`n4BHAPsKf z%DG#Ih{IqLD$}a^DAcbY$;64U#Dx?_Rwm5?86M$PYF9-d#bf~SAt}T^5|Z?E_{gV9 z7B#shABbI~C+P-Laz+A(j<8%fTM!RTR zMiNUcW3UG5qm}yFM*ZyAtiR*h1o)l?`j>vI{h~DzgG1xm`}+j!0N{>F-|Ef$;|s2< z7Yf{{Dl9)oYrLyfd6Ldt&e^o*&-|RW9Lk<-o9}vSR%dDEXJ#g6Y{q0*T2hzlgxv9V z`ico0eUuT07gp#+ij<-6q$GsjYfmCMzND?>?nZpb<+KlKWD<=IO`A&Fh#Q$eoXJ{cUlKV{MFKv+-h&ch2*9euxTKW$ zGz`Ri7tjxRxo1gGQw|1}Cr{mw zCFucc`U5}|q!O_f{2)Z}wNsKslIVf>yMv}P2%_BQ;AFF?R#QNzKIS1KV+v-)7QaW3?a(sOOSB_D=!y? zx}USE1=uPa6_^gF#Nb!5GI?Be1Nie8+q0gP@Vw_Gz3de!Z+VAeu$5E*9bO)l6a~Nr z0JmHooxEHfGO9%R#Q2c_FaiKZz)TQCQG7?u8LC;rY$hr59zzO3b$5%8udU) zONj%k62LLTRW9+5g04cm!3KkmpG$m;jTHfA2XLA?bdbiim>Xfk%GdPTuEBe)8JTkw zu8%5sauA6vr{buIj%+(T8MM5Lnl5hUq|t<7mI0^&A~LpWE*SvG%*S~b$ZGQhVR({I zm3?}omn0VK^{szAZRmA6&=uQ$v3`nB644F-s{<32%>_NdYAKntk4Q|Sg-JC91c-t1 z!T?0wpd7Fp%RCbsD!eQaWB`*)bX0%6tFz8K zm8Y<(xmU_^NqN*zwcPtkNR4hOr_SI?c6mklVkWmU)*URE{p*WR`w|Mn5)qK+%2!HW z0HLwJYw|&FQ?ckcSjj+rpxILfP~TD%kry9+72zAd<13!%NC0V23)`zmvYoNy!v`|~ zQuy5@2IUOXSet;&8!QAK4icG$QG5Ux+J;!+-98c8LS(qbc5c1{!)8Jamr#{He+(ol zofKcFn=`6G*9>`LvsGRV3I{BR=56D8lTU~XK4L}H>tteAGfvvCZ^4Qvz_mRGO-ZfF z7~1H2Gv+pIBWy1fVJ`+f9M}A6a_CN5i$b^v>K67!1Im|!aCAMqUxz^kTtw(p)r&qzGS1}#aj@8qgX!N@Q#+7}D{(M4?XV^T#DDPl--#K^Ta>kk}lsb3xqB)6v31 zWag+v4co_p1&$WyDt_r)LM0P!%_f(t60Vu6%5UX7X9b`WRFn#OuJ95&J0v=4a?BvU z>wECBrcLT8u39tFC}ljb=Jo0XwV4f51Pn{Gc~_I9Sy~;QX-&nm;iaq-6-|_0moxS7 zJ36?LWI#{1`pxU{J8T7;!xt%$PI*x<p&PgDS$~4M>?g6ag72Xu; z1LBF0YKTIN+>JKbPO}Oz7ZM#+iB`#JElojuR1o`5YkFe_a*u`#0I^n?Ar(${Q^jFc zCBh?1`G=7EKN?LDHV@FFShBJb^2#JtsG`)UkyEEZUbAKuT6L(@rAwV2y&SjvsKL+r zT{CFXgQhKd%CdDYGT2J))}=wC24$Kw>C&x7mtL1$*5Hapm))=2J+cIcM+GnN4gkCZ zyP9E%r*G>ep9cg~spd!K-LBlryrmhIx;iPNF{OcT_<8pM1uyUhujIZ|qU2$Zq(-3& zWj^edyKfN{88jh6UQ>zrbz14*A~P?8EtCx_mkqn#X4oWL8zd+7%WhnYbPOuKw9Y64 zW%`xq2y$eu1XG|d5qv?8JDrr1=!Y;jOKtL7v;+Exv@&ulFVH4Ygf_8bAv-&ajAb)o zb$_-eg@Xz%)m@0fpsR$2HbHi=Zz6ND4)^>bva<@v`Qa`!8E*3vO5K;h@AB`{CV)<$ zHayWf{w)O6pga>VLZjLUHM39`RfoFq0=Na=888-3GF(8&->9?62!m97W&c-HVnLD& z@v|Rj1t4 zKmc@IM7yYTQ@0fieF&gKXS0eaJ3n8JDZexGW+cBA+e-PRGq2!u3lKyB)Uet>>H!lb zB&@gMYU)Z8$Kb0A0M)>C-I`?{HLE63yiquUr0?z#3qMpT%XdA&RK;o1H0_{(j>m)A zPb~zl!W7|1_W%-YQuF$hT9O~~S)W!UT&EI7q9*_aYQ|r$2B&qiXhwD1saMLZf-Er4F_dP%`PE&w&s3=irG}ww7Y)eB! z3D%{d#n6ETShB?f8v}g87Wm|CTzL{=LSs9y@SijCzp^hym4)fCt;&z!loowo(*!^ROAwp@zXqj*XtHx6*;hA^N6 zU@tZfY+U8w8ao{X zu9NHJ;Rc19^lou-o7f#9ciFqg)_r^r-pdfJ7;y3m{VUvEVd4tLEd84Tw zs~6Azr|9t`G@L^{^80hocWpnD@Y4x zt8#Wd*l+3}=0B|GlfgqIk!@fLcHjUGHxR->5)ZrC&w&5jHtecBa|WWUJ={?=$pHrR zX%Ad^c;Fut0%3y%9B~t#(lBK#>|#ns$_Ag7nDB&Pwzzp59H&aR0u!=tR$6&XCM=9l zip8l}QAFEL{c%M%d$UtsOugpxMX-r%JM2z-5F8TIb_zJ9zI%RrQYLoz=6c1G$Wy6T zb5iE@?7ZR5rt%3o+v4p^)Y%KPtOXpx(Poda6XX=m<}A>PSjpi6Zu>UZ0=MMo!PYUs zrCX{?0#rqeoP?oMiLlEZzu0M?sq#6;7nn)9GHCKl{--iSQ(!#_x}(A)8K9~KfPno*bnEV2&Rxme#GXQ4!#3%!Ko;pe#5$l9o#LFA>OxYy z@VuXK^i@>G04eg7374^KwB$?AbnS~*YbYm6bpMVZeJ$9;wy&`uL%#bJ|A7Kl&-JR~2Kv7hVXaW@O zLx!gSXo)CX)Fw)4_W3}`gQj|=4FZ8sLh^p!i15s!EkaWMah)awr@>id3N0vV6tn

_ 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

|Bl7*xopsSqT+Z{#j0oC(n?li>laRYe# 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 to+; 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

c=3!Ezj*1#%UE9K;AJIVw&vv^ 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%0D0!fg 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

`}uXAp@I?3-tF7> z_F6hC5&3Js12G;Krhd&>aM3lY{PXJt9h>+c!cOC0UduYw{k)u>F3z*^DWQiEEq_ss zpjf@=S{va-yOpc2sd3e4^cyQS8l@+AQ*TLoVWY~@R@3NcvbDt%JMT2uj208K@r5Rz z00%pibt3)kyPLI!1`42u⁣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

eltDWW#SYV02m3NHRIGJ?ONPtHAKhY-Z!XfGtN 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

3k&?M&gbsWzq-u5Hyt>()6tm(t(b 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�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�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 rqJa_(lxUzt10@{var e="undefined"!=typeof document&&document.currentScript?document.currentScript.src:void 0;return"undefined"!=typeof __filename&&(e=e||__filename),function(t){var n;t=t||{},n||(n=void 0!==t?t:{});var r,a,o,i=Object.assign;n.ready=new Promise((function(e,t){r=e,a=t})),(o=n).Rd=o.Rd||[],o.Rd.push((function(){o.MakeSWCanvasSurface=function(e){var t=e;if("CANVAS"!==t.tagName&&!(t=document.getElementById(e)))throw"Canvas with id "+e+" was not found";return(e=o.MakeSurface(t.width,t.height))&&(e.pe=t),e},o.MakeCanvasSurface||(o.MakeCanvasSurface=o.MakeSWCanvasSurface),o.MakeSurface=function(e,t){var n={width:e,height:t,colorType:o.ColorType.RGBA_8888,alphaType:o.AlphaType.Unpremul,colorSpace:o.ColorSpace.SRGB},r=e*t*4,a=o._malloc(r);return(n=o.Surface._makeRasterDirect(n,a,4*e))&&(n.pe=null,n.Ve=e,n.Se=t,n.Te=r,n.ze=a,n.getCanvas().clear(o.TRANSPARENT)),n},o.MakeRasterDirectSurface=function(e,t,n){return o.Surface._makeRasterDirect(e,t.byteOffset,n)},o.Surface.prototype.flush=function(e){if(o.Od(this.Nd),this._flush(),this.pe){var t=new Uint8ClampedArray(o.HEAPU8.buffer,this.ze,this.Te);t=new ImageData(t,this.Ve,this.Se),e?this.pe.getContext("2d").putImageData(t,0,0,e[0],e[1],e[2]-e[0],e[3]-e[1]):this.pe.getContext("2d").putImageData(t,0,0)}},o.Surface.prototype.dispose=function(){this.ze&&o._free(this.ze),this.delete()},o.Od=o.Od||function(){},o.qe=o.qe||function(){return null}})),function(e){e.Rd=e.Rd||[],e.Rd.push((function(){function t(e,t,n){return e&&e.hasOwnProperty(t)?e[t]:n}function n(e){var t=Ut(Ft);return Ft[t]=e,t}function r(e){return e.naturalHeight||e.videoHeight||e.displayHeight||e.height}function a(e){return e.naturalWidth||e.videoWidth||e.displayWidth||e.width}function o(t,n,r,a){return t.bindTexture(t.TEXTURE_2D,n),a||r.alphaType!==e.AlphaType.Premul||t.pixelStorei(t.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0),n}function i(t,n,r){r||n.alphaType!==e.AlphaType.Premul||t.pixelStorei(t.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),t.bindTexture(t.TEXTURE_2D,null)}e.GetWebGLContext=function(e,n){if(!e)throw"null canvas passed into makeWebGLContext";var r={alpha:t(n,"alpha",1),depth:t(n,"depth",1),stencil:t(n,"stencil",8),antialias:t(n,"antialias",0),premultipliedAlpha:t(n,"premultipliedAlpha",1),preserveDrawingBuffer:t(n,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:t(n,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:t(n,"failIfMajorPerformanceCaveat",0),enableExtensionsByDefault:t(n,"enableExtensionsByDefault",1),explicitSwapControl:t(n,"explicitSwapControl",0),renderViaOffscreenBackBuffer:t(n,"renderViaOffscreenBackBuffer",0)};if(r.majorVersion=n&&n.majorVersion?n.majorVersion:"undefined"!=typeof WebGL2RenderingContext?2:1,r.explicitSwapControl)throw"explicitSwapControl is not supported";return e=function(e,t){e.Le||(e.Le=e.getContext,e.getContext=function(t,n){return"webgl"==t==(n=e.Le(t,n))instanceof WebGLRenderingContext?n:null});var n=1e.version||!t.Je)&&(t.Je=t.getExtension("EXT_disjoint_timer_query")),t.Kf=t.getExtension("WEBGL_multi_draw"),(t.getSupportedExtensions()||[]).forEach((function(e){e.includes("lose_context")||e.includes("debug")||t.getExtension(e)}))}}(r),n}(n,t):0}(e,r),e?(Gt(e),Ht.Zd.getExtension("WEBGL_debug_renderer_info"),e):0},e.deleteContext=function(e){Ht===Rt[e]&&(Ht=null),"object"==typeof JSEvents&&JSEvents.Nf(Rt[e].Zd.canvas),Rt[e]&&Rt[e].Zd.canvas&&(Rt[e].Zd.canvas.Qe=void 0),Rt[e]=null},e._setTextureCleanup({deleteTexture:function(e,t){var n=Ft[t];n&&Rt[e].Zd.deleteTexture(n),Ft[t]=null}}),e.MakeWebGLContext=function(t){if(!this.Od(t))return null;var n=this._MakeGrContext();if(!n)return null;n.Nd=t;var r=n.delete.bind(n);return n.delete=function(){e.Od(this.Nd),r()}.bind(n),Ht.Ce=n},e.MakeGrContext=e.MakeWebGLContext,e.GrDirectContext.prototype.getResourceCacheLimitBytes=function(){e.Od(this.Nd),this._getResourceCacheLimitBytes()},e.GrDirectContext.prototype.getResourceCacheUsageBytes=function(){e.Od(this.Nd),this._getResourceCacheUsageBytes()},e.GrDirectContext.prototype.releaseResourcesAndAbandonContext=function(){e.Od(this.Nd),this._releaseResourcesAndAbandonContext()},e.GrDirectContext.prototype.setResourceCacheLimitBytes=function(t){e.Od(this.Nd),this._setResourceCacheLimitBytes(t)},e.MakeOnScreenGLSurface=function(e,t,n,r,a,o){return this.Od(e.Nd)&&(t=void 0===a||void 0===o?this._MakeOnScreenGLSurface(e,t,n,r):this._MakeOnScreenGLSurface(e,t,n,r,a,o))?(t.Nd=e.Nd,t):null},e.MakeRenderTarget=function(){var e=arguments[0];if(!this.Od(e.Nd))return null;if(3===arguments.length){var t=this._MakeRenderTargetWH(e,arguments[1],arguments[2]);if(!t)return null}else{if(2!==arguments.length)return null;if(!(t=this._MakeRenderTargetII(e,arguments[1])))return null}return t.Nd=e.Nd,t},e.MakeWebGLCanvasSurface=function(t,n,r){n=n||null;var a=t,o="undefined"!=typeof OffscreenCanvas&&a instanceof OffscreenCanvas;if(!("undefined"!=typeof HTMLCanvasElement&&a instanceof HTMLCanvasElement||o||(a=document.getElementById(t),a)))throw"Canvas with id "+t+" was not found";if(!(t=this.GetWebGLContext(a,r))||0>t)throw"failed to create webgl context: err "+t;return t=this.MakeWebGLContext(t),(n=this.MakeOnScreenGLSurface(t,a.width,a.height,n))||(n=a.cloneNode(!0),a.parentNode.replaceChild(n,a),n.classList.add("ck-replaced"),e.MakeSWCanvasSurface(n))},e.MakeCanvasSurface=e.MakeWebGLCanvasSurface,e.Surface.prototype.makeImageFromTexture=function(t,r){return e.Od(this.Nd),t=n(t),(r=this._makeImageFromTexture(this.Nd,t,r))&&(r.je=t),r},e.Surface.prototype.makeImageFromTextureSource=function(t,n,u){n||(n={height:r(t),width:a(t),colorType:e.ColorType.RGBA_8888,alphaType:u?e.AlphaType.Premul:e.AlphaType.Unpremul}),n.colorSpace||(n.colorSpace=e.ColorSpace.SRGB),e.Od(this.Nd);var c=Ht.Zd;return u=o(c,c.createTexture(),n,u),2===Ht.version?c.texImage2D(c.TEXTURE_2D,0,c.RGBA,n.width,n.height,0,c.RGBA,c.UNSIGNED_BYTE,t):c.texImage2D(c.TEXTURE_2D,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,t),i(c,n),this._resetContext(),this.makeImageFromTexture(u,n)},e.Surface.prototype.updateTextureFromSource=function(t,u,c){if(t.je){e.Od(this.Nd);var f=t.getImageInfo(),l=Ht.Zd,s=o(l,Ft[t.je],f,c);2===Ht.version?l.texImage2D(l.TEXTURE_2D,0,l.RGBA,a(u),r(u),0,l.RGBA,l.UNSIGNED_BYTE,u):l.texImage2D(l.TEXTURE_2D,0,l.RGBA,l.RGBA,l.UNSIGNED_BYTE,u),i(l,f,c),this._resetContext(),Ft[t.je]=null,t.je=n(s),f.colorSpace=t.getColorSpace(),u=this._makeImageFromTexture(this.Nd,t.je,f),c=t.Md.Pd,l=t.Md.Ud,t.Md.Pd=u.Md.Pd,t.Md.Ud=u.Md.Ud,u.Md.Pd=c,u.Md.Ud=l,u.delete(),f.colorSpace.delete()}},e.MakeLazyImageFromTextureSource=function(t,u,c){u||(u={height:r(t),width:a(t),colorType:e.ColorType.RGBA_8888,alphaType:c?e.AlphaType.Premul:e.AlphaType.Unpremul}),u.colorSpace||(u.colorSpace=e.ColorSpace.SRGB);var f={makeTexture:function(){var e=Ht,r=e.Zd,a=o(r,r.createTexture(),u,c);return 2===e.version?r.texImage2D(r.TEXTURE_2D,0,r.RGBA,u.width,u.height,0,r.RGBA,r.UNSIGNED_BYTE,t):r.texImage2D(r.TEXTURE_2D,0,r.RGBA,r.RGBA,r.UNSIGNED_BYTE,t),i(r,u,c),n(a)},freeSrc:function(){}};return"VideoFrame"===t.constructor.name&&(f.freeSrc=function(){t.close()}),e.Image._makeFromGenerator(u,f)},e.Od=function(e){return!!e&&Gt(e)},e.qe=function(){return Ht&&Ht.Ce&&!Ht.Ce.isDeleted()?Ht.Ce:null}}))}(n),function(e){function t(e){return(o(255*e[3])<<24|o(255*e[0])<<16|o(255*e[1])<<8|o(255*e[2])<<0)>>>0}function r(e){if(e&&e._ck)return e;if(e instanceof Float32Array){for(var n=Math.floor(e.length/4),r=new Uint32Array(n),a=0;ac;c++)e.HEAPF32[o+a]=t[i][c],a++;t=r}else t=U;n.Wd=t}return n}function f(t){if(!t)return U;var n=y.toTypedArray();if(t.length){if(6===t.length||9===t.length)return u(t,"HEAPF32",T),6===t.length&&e.HEAPF32.set(j,6+T/4),T;if(16===t.length)return n[0]=t[0],n[1]=t[1],n[2]=t[3],n[3]=t[4],n[4]=t[5],n[5]=t[7],n[6]=t[12],n[7]=t[13],n[8]=t[15],T;throw"invalid matrix size"}if(void 0===t.m11)throw"invalid matrix argument";return n[0]=t.m11,n[1]=t.m21,n[2]=t.m41,n[3]=t.m12,n[4]=t.m22,n[5]=t.m42,n[6]=t.m14,n[7]=t.m24,n[8]=t.m44,T}function l(e,t){return u(e,"HEAPF32",t||E)}function s(e,t,n,r){var a=v.toTypedArray();return a[0]=e,a[1]=t,a[2]=n,a[3]=r,E}function d(t){for(var n=new Float32Array(4),r=0;4>r;r++)n[r]=e.HEAPF32[t/4+r];return n}function h(e,t){return u(e,"HEAPF32",t||M)}function p(e,t){return u(e,"HEAPF32",t||D)}e.Color=function(t,n,r,a){return void 0===a&&(a=1),e.Color4f(o(t)/255,o(n)/255,o(r)/255,a)},e.ColorAsInt=function(e,t,n,r){return void 0===r&&(r=255),(o(r)<<24|o(e)<<16|o(t)<<8|o(n)<<0&268435455)>>>0},e.Color4f=function(e,t,n,r){return void 0===r&&(r=1),Float32Array.of(e,t,n,r)},Object.defineProperty(e,"TRANSPARENT",{get:function(){return e.Color4f(0,0,0,0)}}),Object.defineProperty(e,"BLACK",{get:function(){return e.Color4f(0,0,0,1)}}),Object.defineProperty(e,"WHITE",{get:function(){return e.Color4f(1,1,1,1)}}),Object.defineProperty(e,"RED",{get:function(){return e.Color4f(1,0,0,1)}}),Object.defineProperty(e,"GREEN",{get:function(){return e.Color4f(0,1,0,1)}}),Object.defineProperty(e,"BLUE",{get:function(){return e.Color4f(0,0,1,1)}}),Object.defineProperty(e,"YELLOW",{get:function(){return e.Color4f(1,1,0,1)}}),Object.defineProperty(e,"CYAN",{get:function(){return e.Color4f(0,1,1,1)}}),Object.defineProperty(e,"MAGENTA",{get:function(){return e.Color4f(1,0,1,1)}}),e.getColorComponents=function(e){return[Math.floor(255*e[0]),Math.floor(255*e[1]),Math.floor(255*e[2]),e[3]]},e.parseColorString=function(t,n){if((t=t.toLowerCase()).startsWith("#")){switch(n=255,t.length){case 9:n=parseInt(t.slice(7,9),16);case 7:var r=parseInt(t.slice(1,3),16),o=parseInt(t.slice(3,5),16),i=parseInt(t.slice(5,7),16);break;case 5:n=17*parseInt(t.slice(4,5),16);case 4:r=17*parseInt(t.slice(1,2),16),o=17*parseInt(t.slice(2,3),16),i=17*parseInt(t.slice(3,4),16)}return e.Color(r,o,i,n/255)}return t.startsWith("rgba")?(t=(t=t.slice(5,-1)).split(","),e.Color(+t[0],+t[1],+t[2],a(t[3]))):t.startsWith("rgb")?(t=(t=t.slice(4,-1)).split(","),e.Color(+t[0],+t[1],+t[2],a(t[3]))):t.startsWith("gray(")||t.startsWith("hsl")||!n||void 0===(t=n[t])?e.BLACK:t},e.multiplyByAlpha=function(e,t){return(e=e.slice())[3]=Math.max(0,Math.min(e[3]*t,1)),e},e.Malloc=function(t,n){var r=e._malloc(n*t.BYTES_PER_ELEMENT);return{_ck:!0,length:n,byteOffset:r,ce:null,subarray:function(e,t){return(e=this.toTypedArray().subarray(e,t))._ck=!0,e},toTypedArray:function(){return this.ce&&this.ce.length||(this.ce=new t(e.HEAPU8.buffer,r,n),this.ce._ck=!0),this.ce}}},e.Free=function(t){e._free(t.byteOffset),t.byteOffset=U,t.toTypedArray=null,t.ce=null};var y,m,v,g,_,b,P,A,w,C,T=U,S=U,E=U,M=U,F=U,R=U,B=U,O=U,D=U,L=U,j=Float32Array.of(0,0,1),U=0;e.onRuntimeInitialized=function(){function t(t,n,r,a,o,i,u){i||(i=4*a.width,a.colorType===e.ColorType.RGBA_F16?i*=2:a.colorType===e.ColorType.RGBA_F32&&(i*=4));var c=i*a.height,f=o?o.byteOffset:e._malloc(c);if(u?!t._readPixels(a,f,i,n,r,u):!t._readPixels(a,f,i,n,r))return o||e._free(f),null;if(o)return o.toTypedArray();switch(a.colorType){case e.ColorType.RGBA_8888:case e.ColorType.RGBA_F16:t=new Uint8Array(e.HEAPU8.buffer,f,c).slice();break;case e.ColorType.RGBA_F32:t=new Float32Array(e.HEAPU8.buffer,f,c).slice();break;default:return null}return e._free(f),t}v=e.Malloc(Float32Array,4),E=v.byteOffset,m=e.Malloc(Float32Array,16),S=m.byteOffset,y=e.Malloc(Float32Array,9),T=y.byteOffset,w=e.Malloc(Float32Array,12),D=w.byteOffset,C=e.Malloc(Float32Array,12),L=C.byteOffset,g=e.Malloc(Float32Array,4),M=g.byteOffset,_=e.Malloc(Float32Array,4),F=_.byteOffset,b=e.Malloc(Float32Array,3),R=b.byteOffset,P=e.Malloc(Float32Array,3),B=P.byteOffset,A=e.Malloc(Int32Array,4),O=A.byteOffset,e.ColorSpace.SRGB=e.ColorSpace._MakeSRGB(),e.ColorSpace.DISPLAY_P3=e.ColorSpace._MakeDisplayP3(),e.ColorSpace.ADOBE_RGB=e.ColorSpace._MakeAdobeRGB(),e.GlyphRunFlags={IsWhiteSpace:e._GlyphRunFlags_isWhiteSpace},e.Path.MakeFromCmds=function(t){var n=u(t,"HEAPF32"),r=e.Path._MakeFromCmds(n,t.length);return i(n,t),r},e.Path.MakeFromVerbsPointsWeights=function(t,n,r){var a=u(t,"HEAPU8"),o=u(n,"HEAPF32"),c=u(r,"HEAPF32"),f=e.Path._MakeFromVerbsPointsWeights(a,t.length,o,n.length,c,r&&r.length||0);return i(a,t),i(o,n),i(c,r),f},e.Path.prototype.addArc=function(e,t,n){return e=h(e),this._addArc(e,t,n),this},e.Path.prototype.addCircle=function(e,t,n,r){return this._addCircle(e,t,n,!!r),this},e.Path.prototype.addOval=function(e,t,n){return void 0===n&&(n=1),e=h(e),this._addOval(e,!!t,n),this},e.Path.prototype.addPath=function(){var e=Array.prototype.slice.call(arguments),t=e[0],n=!1;if("boolean"==typeof e[e.length-1]&&(n=e.pop()),1===e.length)this._addPath(t,1,0,0,0,1,0,0,0,1,n);else if(2===e.length)e=e[1],this._addPath(t,e[0],e[1],e[2],e[3],e[4],e[5],e[6]||0,e[7]||0,e[8]||1,n);else{if(7!==e.length&&10!==e.length)return null;this._addPath(t,e[1],e[2],e[3],e[4],e[5],e[6],e[7]||0,e[8]||0,e[9]||1,n)}return this},e.Path.prototype.addPoly=function(e,t){var n=u(e,"HEAPF32");return this._addPoly(n,e.length/2,t),i(n,e),this},e.Path.prototype.addRect=function(e,t){return e=h(e),this._addRect(e,!!t),this},e.Path.prototype.addRRect=function(e,t){return e=p(e),this._addRRect(e,!!t),this},e.Path.prototype.addVerbsPointsWeights=function(e,t,n){var r=u(e,"HEAPU8"),a=u(t,"HEAPF32"),o=u(n,"HEAPF32");this._addVerbsPointsWeights(r,e.length,a,t.length,o,n&&n.length||0),i(r,e),i(a,t),i(o,n)},e.Path.prototype.arc=function(t,n,r,a,o,i){return t=e.LTRBRect(t-r,n-r,t+r,n+r),o=(o-a)/Math.PI*180-360*!!i,(i=new e.Path).addArc(t,a/Math.PI*180,o),this.addPath(i,!0),i.delete(),this},e.Path.prototype.arcToOval=function(e,t,n,r){return e=h(e),this._arcToOval(e,t,n,r),this},e.Path.prototype.arcToRotated=function(e,t,n,r,a,o,i){return this._arcToRotated(e,t,n,!!r,!!a,o,i),this},e.Path.prototype.arcToTangent=function(e,t,n,r,a){return this._arcToTangent(e,t,n,r,a),this},e.Path.prototype.close=function(){return this._close(),this},e.Path.prototype.conicTo=function(e,t,n,r,a){return this._conicTo(e,t,n,r,a),this},e.Path.prototype.computeTightBounds=function(e){this._computeTightBounds(M);var t=g.toTypedArray();return e?(e.set(t),e):t.slice()},e.Path.prototype.cubicTo=function(e,t,n,r,a,o){return this._cubicTo(e,t,n,r,a,o),this},e.Path.prototype.dash=function(e,t,n){return this._dash(e,t,n)?this:null},e.Path.prototype.getBounds=function(e){this._getBounds(M);var t=g.toTypedArray();return e?(e.set(t),e):t.slice()},e.Path.prototype.lineTo=function(e,t){return this._lineTo(e,t),this},e.Path.prototype.moveTo=function(e,t){return this._moveTo(e,t),this},e.Path.prototype.offset=function(e,t){return this._transform(1,0,e,0,1,t,0,0,1),this},e.Path.prototype.quadTo=function(e,t,n,r){return this._quadTo(e,t,n,r),this},e.Path.prototype.rArcTo=function(e,t,n,r,a,o,i){return this._rArcTo(e,t,n,r,a,o,i),this},e.Path.prototype.rConicTo=function(e,t,n,r,a){return this._rConicTo(e,t,n,r,a),this},e.Path.prototype.rCubicTo=function(e,t,n,r,a,o){return this._rCubicTo(e,t,n,r,a,o),this},e.Path.prototype.rLineTo=function(e,t){return this._rLineTo(e,t),this},e.Path.prototype.rMoveTo=function(e,t){return this._rMoveTo(e,t),this},e.Path.prototype.rQuadTo=function(e,t,n,r){return this._rQuadTo(e,t,n,r),this},e.Path.prototype.stroke=function(t){return(t=t||{}).width=t.width||1,t.miter_limit=t.miter_limit||4,t.cap=t.cap||e.StrokeCap.Butt,t.join=t.join||e.StrokeJoin.Miter,t.precision=t.precision||1,this._stroke(t)?this:null},e.Path.prototype.transform=function(){if(1===arguments.length){var e=arguments[0];this._transform(e[0],e[1],e[2],e[3],e[4],e[5],e[6]||0,e[7]||0,e[8]||1)}else{if(6!==arguments.length&&9!==arguments.length)throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;e=arguments,this._transform(e[0],e[1],e[2],e[3],e[4],e[5],e[6]||0,e[7]||0,e[8]||1)}return this},e.Path.prototype.trim=function(e,t,n){return this._trim(e,t,!!n)?this:null},e.Image.prototype.encodeToBytes=function(t,n){var r=e.qe();return t=t||e.ImageFormat.PNG,n=n||100,r?this._encodeToBytes(t,n,r):this._encodeToBytes(t,n)},e.Image.prototype.makeShaderCubic=function(e,t,n,r,a){return a=f(a),this._makeShaderCubic(e,t,n,r,a)},e.Image.prototype.makeShaderOptions=function(e,t,n,r,a){return a=f(a),this._makeShaderOptions(e,t,n,r,a)},e.Image.prototype.readPixels=function(n,r,a,o,i){return t(this,n,r,a,o,i,e.qe())},e.Canvas.prototype.clear=function(t){e.Od(this.Nd),t=l(t),this._clear(t)},e.Canvas.prototype.clipRRect=function(t,n,r){e.Od(this.Nd),t=p(t),this._clipRRect(t,n,r)},e.Canvas.prototype.clipRect=function(t,n,r){e.Od(this.Nd),t=h(t),this._clipRect(t,n,r)},e.Canvas.prototype.concat=function(t){e.Od(this.Nd),t=function(e){if(!e)return U;var t=m.toTypedArray();if(e.length){if(16!==e.length&&6!==e.length&&9!==e.length)throw"invalid matrix size";return 16===e.length?u(e,"HEAPF32",S):(t.fill(0),t[0]=e[0],t[1]=e[1],t[3]=e[2],t[4]=e[3],t[5]=e[4],t[7]=e[5],t[10]=1,t[12]=e[6],t[13]=e[7],t[15]=e[8],6===e.length&&(t[12]=0,t[13]=0,t[15]=1),S)}if(void 0===e.m11)throw"invalid matrix argument";return t[0]=e.m11,t[1]=e.m21,t[2]=e.m31,t[3]=e.m41,t[4]=e.m12,t[5]=e.m22,t[6]=e.m32,t[7]=e.m42,t[8]=e.m13,t[9]=e.m23,t[10]=e.m33,t[11]=e.m43,t[12]=e.m14,t[13]=e.m24,t[14]=e.m34,t[15]=e.m44,S}(t),this._concat(t)},e.Canvas.prototype.drawArc=function(t,n,r,a,o){e.Od(this.Nd),t=h(t),this._drawArc(t,n,r,a,o)},e.Canvas.prototype.drawAtlas=function(t,n,a,o,c,f,l){if(t&&o&&n&&a&&n.length===a.length){e.Od(this.Nd),c||(c=e.BlendMode.SrcOver);var s=u(n,"HEAPF32"),d=u(a,"HEAPF32"),h=a.length/4,p=u(r(f),"HEAPU32");if(l&&"B"in l&&"C"in l)this._drawAtlasCubic(t,d,s,p,h,c,l.B,l.C,o);else{let n=e.FilterMode.Linear,r=e.MipmapMode.None;l&&(n=l.filter,"mipmap"in l&&(r=l.mipmap)),this._drawAtlasOptions(t,d,s,p,h,c,n,r,o)}i(s,n),i(d,a),i(p,f)}},e.Canvas.prototype.drawCircle=function(t,n,r,a){e.Od(this.Nd),this._drawCircle(t,n,r,a)},e.Canvas.prototype.drawColor=function(t,n){e.Od(this.Nd),t=l(t),void 0!==n?this._drawColor(t,n):this._drawColor(t)},e.Canvas.prototype.drawColorInt=function(t,n){e.Od(this.Nd),this._drawColorInt(t,n||e.BlendMode.SrcOver)},e.Canvas.prototype.drawColorComponents=function(t,n,r,a,o){e.Od(this.Nd),t=s(t,n,r,a),void 0!==o?this._drawColor(t,o):this._drawColor(t)},e.Canvas.prototype.drawDRRect=function(t,n,r){e.Od(this.Nd),t=p(t,D),n=p(n,L),this._drawDRRect(t,n,r)},e.Canvas.prototype.drawImage=function(t,n,r,a){e.Od(this.Nd),this._drawImage(t,n,r,a||null)},e.Canvas.prototype.drawImageCubic=function(t,n,r,a,o,i){e.Od(this.Nd),this._drawImageCubic(t,n,r,a,o,i||null)},e.Canvas.prototype.drawImageOptions=function(t,n,r,a,o,i){e.Od(this.Nd),this._drawImageOptions(t,n,r,a,o,i||null)},e.Canvas.prototype.drawImageNine=function(t,n,r,a,o){e.Od(this.Nd),n=u(n,"HEAP32",O),r=h(r),this._drawImageNine(t,n,r,a,o||null)},e.Canvas.prototype.drawImageRect=function(t,n,r,a,o){e.Od(this.Nd),h(n,M),h(r,F),this._drawImageRect(t,M,F,a,!!o)},e.Canvas.prototype.drawImageRectCubic=function(t,n,r,a,o,i){e.Od(this.Nd),h(n,M),h(r,F),this._drawImageRectCubic(t,M,F,a,o,i||null)},e.Canvas.prototype.drawImageRectOptions=function(t,n,r,a,o,i){e.Od(this.Nd),h(n,M),h(r,F),this._drawImageRectOptions(t,M,F,a,o,i||null)},e.Canvas.prototype.drawLine=function(t,n,r,a,o){e.Od(this.Nd),this._drawLine(t,n,r,a,o)},e.Canvas.prototype.drawOval=function(t,n){e.Od(this.Nd),t=h(t),this._drawOval(t,n)},e.Canvas.prototype.drawPaint=function(t){e.Od(this.Nd),this._drawPaint(t)},e.Canvas.prototype.drawParagraph=function(t,n,r){e.Od(this.Nd),this._drawParagraph(t,n,r)},e.Canvas.prototype.drawPatch=function(t,n,a,o,c){if(24>t.length)throw"Need 12 cubic points";if(n&&4>n.length)throw"Need 4 colors";if(a&&8>a.length)throw"Need 4 shader coordinates";e.Od(this.Nd);const f=u(t,"HEAPF32"),l=n?u(r(n),"HEAPU32"):U,s=a?u(a,"HEAPF32"):U;o||(o=e.BlendMode.Modulate),this._drawPatch(f,l,s,o,c),i(s,a),i(l,n),i(f,t)},e.Canvas.prototype.drawPath=function(t,n){e.Od(this.Nd),this._drawPath(t,n)},e.Canvas.prototype.drawPicture=function(t){e.Od(this.Nd),this._drawPicture(t)},e.Canvas.prototype.drawPoints=function(t,n,r){e.Od(this.Nd);var a=u(n,"HEAPF32");this._drawPoints(t,a,n.length/2,r),i(a,n)},e.Canvas.prototype.drawRRect=function(t,n){e.Od(this.Nd),t=p(t),this._drawRRect(t,n)},e.Canvas.prototype.drawRect=function(t,n){e.Od(this.Nd),t=h(t),this._drawRect(t,n)},e.Canvas.prototype.drawRect4f=function(t,n,r,a,o){e.Od(this.Nd),this._drawRect4f(t,n,r,a,o)},e.Canvas.prototype.drawShadow=function(t,n,r,a,o,c,f){e.Od(this.Nd);var l=u(o,"HEAPF32"),s=u(c,"HEAPF32");n=u(n,"HEAPF32",R),r=u(r,"HEAPF32",B),this._drawShadow(t,n,r,a,l,s,f),i(l,o),i(s,c)},e.getShadowLocalBounds=function(e,t,n,r,a,o,i){return e=f(e),n=u(n,"HEAPF32",R),r=u(r,"HEAPF32",B),this._getShadowLocalBounds(e,t,n,r,a,o,M)?(t=g.toTypedArray(),i?(i.set(t),i):t.slice()):null},e.Canvas.prototype.drawTextBlob=function(t,n,r,a){e.Od(this.Nd),this._drawTextBlob(t,n,r,a)},e.Canvas.prototype.drawVertices=function(t,n,r){e.Od(this.Nd),this._drawVertices(t,n,r)},e.Canvas.prototype.getDeviceClipBounds=function(e){this._getDeviceClipBounds(O);var t=A.toTypedArray();return e?e.set(t):e=t.slice(),e},e.Canvas.prototype.getLocalToDevice=function(){this._getLocalToDevice(S);for(var t=S,n=Array(16),r=0;16>r;r++)n[r]=e.HEAPF32[t/4+r];return n},e.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(T);for(var t=Array(9),n=0;9>n;n++)t[n]=e.HEAPF32[T/4+n];return t},e.Canvas.prototype.makeSurface=function(e){return(e=this._makeSurface(e)).Nd=this.Nd,e},e.Canvas.prototype.readPixels=function(n,r,a,o,i){return e.Od(this.Nd),t(this,n,r,a,o,i)},e.Canvas.prototype.saveLayer=function(e,t,n,r){return t=h(t),this._saveLayer(e||null,t,n||null,r||0)},e.Canvas.prototype.writePixels=function(t,n,r,a,o,c,f,l){if(t.byteLength%(n*r))throw"pixels length must be a multiple of the srcWidth * srcHeight";e.Od(this.Nd);var s=t.byteLength/(n*r);c=c||e.AlphaType.Unpremul,f=f||e.ColorType.RGBA_8888,l=l||e.ColorSpace.SRGB;var d=s*n;return s=u(t,"HEAPU8"),n=this._writePixels({width:n,height:r,colorType:f,alphaType:c,colorSpace:l},s,d,a,o),i(s,t),n},e.ColorFilter.MakeBlend=function(t,n,r){return t=l(t),r=r||e.ColorSpace.SRGB,e.ColorFilter._MakeBlend(t,n,r)},e.ColorFilter.MakeMatrix=function(t){if(!t||20!==t.length)throw"invalid color matrix";var n=u(t,"HEAPF32"),r=e.ColorFilter._makeMatrix(n);return i(n,t),r},e.ContourMeasure.prototype.getPosTan=function(e,t){return this._getPosTan(e,M),e=g.toTypedArray(),t?(t.set(e),t):e.slice()},e.ImageFilter.MakeDropShadow=function(t,n,r,a,o,i){return o=l(o,E),e.ImageFilter._MakeDropShadow(t,n,r,a,o,i)},e.ImageFilter.MakeDropShadowOnly=function(t,n,r,a,o,i){return o=l(o,E),e.ImageFilter._MakeDropShadowOnly(t,n,r,a,o,i)},e.ImageFilter.MakeImage=function(t,n,r,a){if(r=h(r,M),a=h(a,F),"B"in n&&"C"in n)return e.ImageFilter._MakeImageCubic(t,n.B,n.C,r,a);const o=n.filter;let i=e.MipmapMode.None;return"mipmap"in n&&(i=n.mipmap),e.ImageFilter._MakeImageOptions(t,o,i,r,a)},e.ImageFilter.MakeMatrixTransform=function(t,n,r){if(t=f(t),"B"in n&&"C"in n)return e.ImageFilter._MakeMatrixTransformCubic(t,n.B,n.C,r);const a=n.filter;let o=e.MipmapMode.None;return"mipmap"in n&&(o=n.mipmap),e.ImageFilter._MakeMatrixTransformOptions(t,a,o,r)},e.Paint.prototype.getColor=function(){return this._getColor(E),d(E)},e.Paint.prototype.setColor=function(e,t){t=t||null,e=l(e),this._setColor(e,t)},e.Paint.prototype.setColorComponents=function(e,t,n,r,a){a=a||null,e=s(e,t,n,r),this._setColor(e,a)},e.Path.prototype.getPoint=function(e,t){return this._getPoint(e,M),e=g.toTypedArray(),t?(t[0]=e[0],t[1]=e[1],t):e.slice(0,2)},e.Picture.prototype.makeShader=function(e,t,n,r,a){return r=f(r),a=h(a),this._makeShader(e,t,n,r,a)},e.PictureRecorder.prototype.beginRecording=function(e){return e=h(e),this._beginRecording(e)},e.Surface.prototype.getCanvas=function(){var e=this._getCanvas();return e.Nd=this.Nd,e},e.Surface.prototype.makeImageSnapshot=function(t){return e.Od(this.Nd),t=u(t,"HEAP32",O),this._makeImageSnapshot(t)},e.Surface.prototype.makeSurface=function(t){return e.Od(this.Nd),(t=this._makeSurface(t)).Nd=this.Nd,t},e.Surface.prototype.Ue=function(t,n){return this.ie||(this.ie=this.getCanvas()),requestAnimationFrame(function(){e.Od(this.Nd),t(this.ie),this.flush(n)}.bind(this))},e.Surface.prototype.requestAnimationFrame||(e.Surface.prototype.requestAnimationFrame=e.Surface.prototype.Ue),e.Surface.prototype.Re=function(t,n){this.ie||(this.ie=this.getCanvas()),requestAnimationFrame(function(){e.Od(this.Nd),t(this.ie),this.flush(n),this.dispose()}.bind(this))},e.Surface.prototype.drawOnce||(e.Surface.prototype.drawOnce=e.Surface.prototype.Re),e.PathEffect.MakeDash=function(t,n){if(n||(n=0),!t.length||1==t.length%2)throw"Intervals array must have even length";var r=u(t,"HEAPF32");return n=e.PathEffect._MakeDash(r,t.length,n),i(r,t),n},e.PathEffect.MakeLine2D=function(t,n){return n=f(n),e.PathEffect._MakeLine2D(t,n)},e.PathEffect.MakePath2D=function(t,n){return t=f(t),e.PathEffect._MakePath2D(t,n)},e.Shader.MakeColor=function(t,n){return n=n||null,t=l(t),e.Shader._MakeColor(t,n)},e.Shader.Blend=e.Shader.MakeBlend,e.Shader.Color=e.Shader.MakeColor,e.Shader.MakeLinearGradient=function(t,n,r,a,o,l,s,d){d=d||null;var h=c(r),p=u(a,"HEAPF32");s=s||0,l=f(l);var y=g.toTypedArray();return y.set(t),y.set(n,2),t=e.Shader._MakeLinearGradient(M,h.Wd,h.ke,p,h.count,o,s,l,d),i(h.Wd,r),a&&i(p,a),t},e.Shader.MakeRadialGradient=function(t,n,r,a,o,l,s,d){d=d||null;var h=c(r),p=u(a,"HEAPF32");return s=s||0,l=f(l),t=e.Shader._MakeRadialGradient(t[0],t[1],n,h.Wd,h.ke,p,h.count,o,s,l,d),i(h.Wd,r),a&&i(p,a),t},e.Shader.MakeSweepGradient=function(t,n,r,a,o,l,s,d,h,p){p=p||null;var y=c(r),m=u(a,"HEAPF32");return s=s||0,d=d||0,h=h||360,l=f(l),t=e.Shader._MakeSweepGradient(t,n,y.Wd,y.ke,m,y.count,o,d,h,s,l,p),i(y.Wd,r),a&&i(m,a),t},e.Shader.MakeTwoPointConicalGradient=function(t,n,r,a,o,l,s,d,h,p){p=p||null;var y=c(o),m=u(l,"HEAPF32");h=h||0,d=f(d);var v=g.toTypedArray();return v.set(t),v.set(r,2),t=e.Shader._MakeTwoPointConicalGradient(M,n,a,y.Wd,y.ke,m,y.count,s,h,d,p),i(y.Wd,o),l&&i(m,l),t},e.Vertices.prototype.bounds=function(e){this._bounds(M);var t=g.toTypedArray();return e?(e.set(t),e):t.slice()},e.Rd&&e.Rd.forEach((function(e){e()}))},e.computeTonalColors=function(e){var t=u(e.ambient,"HEAPF32"),n=u(e.spot,"HEAPF32");this._computeTonalColors(t,n);var r={ambient:d(t),spot:d(n)};return i(t,e.ambient),i(n,e.spot),r},e.LTRBRect=function(e,t,n,r){return Float32Array.of(e,t,n,r)},e.XYWHRect=function(e,t,n,r){return Float32Array.of(e,t,e+n,t+r)},e.LTRBiRect=function(e,t,n,r){return Int32Array.of(e,t,n,r)},e.XYWHiRect=function(e,t,n,r){return Int32Array.of(e,t,e+n,t+r)},e.RRectXY=function(e,t,n){return Float32Array.of(e[0],e[1],e[2],e[3],t,n,t,n,t,n,t,n)},e.MakeAnimatedImageFromEncoded=function(t){t=new Uint8Array(t);var n=e._malloc(t.byteLength);return e.HEAPU8.set(t,n),(t=e._decodeAnimatedImage(n,t.byteLength))?t:null},e.MakeImageFromEncoded=function(t){t=new Uint8Array(t);var n=e._malloc(t.byteLength);return e.HEAPU8.set(t,n),(t=e._decodeImage(n,t.byteLength))?t:null};var G,H=null;e.MakeImageFromCanvasImageSource=function(t){var n=t.width,r=t.height;H||(H=document.createElement("canvas")),H.width=n,H.height=r;var a=H.getContext("2d",{Pf:!0});return a.drawImage(t,0,0),t=a.getImageData(0,0,n,r),e.MakeImage({width:n,height:r,alphaType:e.AlphaType.Unpremul,colorType:e.ColorType.RGBA_8888,colorSpace:e.ColorSpace.SRGB},t.data,4*n)},e.MakeImage=function(t,n,r){var a=e._malloc(n.length);return e.HEAPU8.set(n,a),e._MakeImage(t,a,n.length,r)},e.MakeVertices=function(t,n,a,o,i,c){var f=i&&i.length||0,l=0;return a&&a.length&&(l|=1),o&&o.length&&(l|=2),void 0===c||c||(l|=4),u(n,"HEAPF32",(t=new e._VerticesBuilder(t,n.length/2,f,l)).positions()),t.texCoords()&&u(a,"HEAPF32",t.texCoords()),t.colors()&&u(r(o),"HEAPU32",t.colors()),t.indices()&&u(i,"HEAPU16",t.indices()),t.detach()},(G=n).Rd=G.Rd||[],G.Rd.push((function(){function e(e){if(!e||!e.length)return[];for(var t=[],n=0;nn?(e._free(t),null):(o=new Uint16Array(e.HEAPU8.buffer,t,n),r?(r.set(o),e._free(t),r):(r=Uint16Array.from(o),e._free(t),r))},e.Font.prototype.getGlyphIntercepts=function(e,t,n,r){var a=u(e,"HEAPU16"),o=u(t,"HEAPF32");return this._getGlyphIntercepts(a,e.length,!(e&&e._ck),o,t.length,!(t&&t._ck),n,r)},e.Font.prototype.getGlyphWidths=function(t,n,r){var a=u(t,"HEAPU16"),o=e._malloc(4*t.length);return this._getGlyphWidthBounds(a,t.length,o,U,n||null),n=new Float32Array(e.HEAPU8.buffer,o,t.length),i(a,t),r?(r.set(n),e._free(o),r):(t=Float32Array.from(n),e._free(o),t)},e.FontMgr.FromData=function(){if(!arguments.length)return null;var t=arguments;if(1===t.length&&Array.isArray(t[0])&&(t=arguments[0]),!t.length)return null;for(var n=[],r=[],a=0;an?(e._free(t),null):(o=new Uint16Array(e.HEAPU8.buffer,t,n),r?(r.set(o),e._free(t),r):(r=Uint16Array.from(o),e._free(t),r))},e.TextBlob.MakeOnPath=function(t,n,r,a){if(t&&t.length&&n&&n.countPoints()){if(1===n.countPoints())return this.MakeFromText(t,r);a||(a=0);var o=r.getGlyphIDs(t);o=r.getGlyphWidths(o);for(var i=[],u=(n=new e.ContourMeasureIter(n,!1,1)).next(),c=new Float32Array(4),f=0;fu.length()){if(u.delete(),!(u=n.next())){t=t.substring(0,f);break}a=l/2}u.getPosTan(a,c);var s=c[2],d=c[3];i.push(s,d,c[0]-l/2*s,c[1]-l/2*d),a+=l/2}return t=this.MakeFromRSXform(t,i,r),u&&u.delete(),n.delete(),t}},e.TextBlob.MakeFromRSXform=function(t,n,r){var a=k(t)+1,o=e._malloc(a);return x(t,I,o,a),t=u(n,"HEAPF32"),r=e.TextBlob._MakeFromRSXform(o,a-1,t,r),e._free(o),r||null},e.TextBlob.MakeFromRSXformGlyphs=function(t,n,r){var a=u(t,"HEAPU16");return n=u(n,"HEAPF32"),r=e.TextBlob._MakeFromRSXformGlyphs(a,2*t.length,n,r),i(a,t),r||null},e.TextBlob.MakeFromGlyphs=function(t,n){var r=u(t,"HEAPU16");return n=e.TextBlob._MakeFromGlyphs(r,2*t.length,n),i(r,t),n||null},e.TextBlob.MakeFromText=function(t,n){var r=k(t)+1,a=e._malloc(r);return x(t,I,a,r),t=e.TextBlob._MakeFromText(a,r-1,n),e._free(a),t||null},e.MallocGlyphIDs=function(t){return e.Malloc(Uint16Array,t)}})),e.Rd=e.Rd||[],e.Rd.push((function(){e.MakePicture=function(t){t=new Uint8Array(t);var n=e._malloc(t.byteLength);return e.HEAPU8.set(t,n),(t=e._MakePicture(n,t.byteLength))?t:null}})),e.Rd=e.Rd||[],e.Rd.push((function(){e.RuntimeEffect.Make=function(t,n){return e.RuntimeEffect._Make(t,{onError:n||function(e){console.log("RuntimeEffect error",e)}})},e.RuntimeEffect.prototype.makeShader=function(e,t){var n=!e._ck,r=u(e,"HEAPF32");return t=f(t),this._makeShader(r,4*e.length,n,t)},e.RuntimeEffect.prototype.makeShaderWithChildren=function(e,t,n){var r=!e._ck,a=u(e,"HEAPF32");n=f(n);for(var o=[],i=0;i{throw t},m="object"==typeof window,v="function"==typeof importScripts,g="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,_="";g?(_=v?require("path").dirname(_)+"/":__dirname+"/",d=()=>{s||(l=require("fs"),s=require("path"))},u=function(e,t){return d(),e=s.normalize(e),l.readFileSync(e,t?null:"utf8")},f=e=>((e=u(e,!0)).buffer||(e=new Uint8Array(e)),e),c=(e,t,n)=>{d(),e=s.normalize(e),l.readFile(e,(function(e,r){e?n(e):t(r.buffer)}))},1{if(C||0{var t=new XMLHttpRequest;return t.open("GET",e,!1),t.send(null),t.responseText},v&&(f=e=>{var t=new XMLHttpRequest;return t.open("GET",e,!1),t.responseType="arraybuffer",t.send(null),new Uint8Array(t.response)}),c=(e,t,n)=>{var r=new XMLHttpRequest;r.open("GET",e,!0),r.responseType="arraybuffer",r.onload=()=>{200==r.status||0==r.status&&r.response?t(r.response):n()},r.onerror=n,r.send(null)});var b=n.print||console.log.bind(console),P=n.printErr||console.warn.bind(console);i(n,h),h=null,n.thisProgram&&(p=n.thisProgram),n.quit&&(y=n.quit);var A,w=0;n.wasmBinary&&(A=n.wasmBinary);var C=n.noExitRuntime||!0;"object"!=typeof WebAssembly&&oe("no native wasm support detected");var T,S=!1,E="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0;function M(e,t,n){var r=t+n;for(n=t;e[n]&&!(n>=r);)++n;if(16(a=224==(240&a)?(15&a)<<12|o<<6|i:(7&a)<<18|o<<12|i<<6|63&e[t++])?r+=String.fromCharCode(a):(a-=65536,r+=String.fromCharCode(55296|a>>10,56320|1023&a))}}else r+=String.fromCharCode(a)}return r}function F(e,t){return e?M(I,e,t):""}function x(e,t,n,r){if(!(0=i&&(i=65536+((1023&i)<<10)|1023&e.charCodeAt(++o)),127>=i){if(n>=r)break;t[n++]=i}else{if(2047>=i){if(n+1>=r)break;t[n++]=192|i>>6}else{if(65535>=i){if(n+2>=r)break;t[n++]=224|i>>12}else{if(n+3>=r)break;t[n++]=240|i>>18,t[n++]=128|i>>12&63}t[n++]=128|i>>6&63}t[n++]=128|63&i}}return t[n]=0,n-a}function k(e){for(var t=0,n=0;n=r&&(r=65536+((1023&r)<<10)|1023&e.charCodeAt(++n)),127>=r?++t:t=2047>=r?t+2:65535>=r?t+3:t+4}return t}var R,B,I,O,D,L,j,U,G,H="undefined"!=typeof TextDecoder?new TextDecoder("utf-16le"):void 0;function W(e,t){for(var n=e>>1,r=n+t/2;!(n>=r)&&D[n];)++n;if(32<(n<<=1)-e&&H)return H.decode(I.subarray(e,n));for(n="",r=0;!(r>=t/2);++r){var a=O[e+2*r>>1];if(0==a)break;n+=String.fromCharCode(a)}return n}function N(e,t,n){if(void 0===n&&(n=2147483647),2>n)return 0;var r=t;n=(n-=2)<2*e.length?n/2:e.length;for(var a=0;a>1]=e.charCodeAt(a),t+=2;return O[t>>1]=0,t-r}function V(e){return 2*e.length}function $(e,t){for(var n=0,r="";!(n>=t/4);){var a=L[e+4*n>>2];if(0==a)break;++n,65536<=a?(a-=65536,r+=String.fromCharCode(55296|a>>10,56320|1023&a)):r+=String.fromCharCode(a)}return r}function Y(e,t,n){if(void 0===n&&(n=2147483647),4>n)return 0;var r=t;n=r+n-4;for(var a=0;a=o&&(o=65536+((1023&o)<<10)|1023&e.charCodeAt(++a)),L[t>>2]=o,(t+=4)+4>n)break}return L[t>>2]=0,t-r}function X(e){for(var t=0,n=0;n=r&&++n,t+=4}return t}function Q(){var e=T.buffer;R=e,n.HEAP8=B=new Int8Array(e),n.HEAP16=O=new Int16Array(e),n.HEAP32=L=new Int32Array(e),n.HEAPU8=I=new Uint8Array(e),n.HEAPU16=D=new Uint16Array(e),n.HEAPU32=j=new Uint32Array(e),n.HEAPF32=U=new Float32Array(e),n.HEAPF64=G=new Float64Array(e)}var z,q=[],K=[],Z=[],J=0;function ee(){var e=n.preRun.shift();q.unshift(e)}var te,ne=0,re=null,ae=null;function oe(e){throw n.onAbort&&n.onAbort(e),P(e="Aborted("+e+")"),S=!0,e=new WebAssembly.RuntimeError(e+". Build with -s ASSERTIONS=1 for more info."),a(e),e}function ie(){return te.startsWith("data:application/octet-stream;base64,")}if(n.preloadedImages={},n.preloadedAudios={},te="canvaskit.wasm",!ie()){var ue=te;te=n.locateFile?n.locateFile(ue,_):_+ue}function ce(){var e=te;try{if(e==te&&A)return new Uint8Array(A);if(f)return f(e);throw"both async and sync fetching of the wasm failed"}catch(e){oe(e)}}function fe(e){for(;0>2]=e},this.wf=function(e){L[this.Pd+8>>2]=e},this.xf=function(){L[this.Pd>>2]=0},this.vf=function(){B[this.Pd+12>>0]=0},this.yf=function(){B[this.Pd+13>>0]=0},this.mf=function(e,t){this.zf(e),this.wf(t),this.xf(),this.vf(),this.yf()}}var de={},he=[null,[],[]],pe={},ye={};function me(e){for(;e.length;){var t=e.pop();e.pop()(t)}}function ve(e){return this.fromWireType(j[e>>2])}var ge={},_e={},be={};function Pe(e){if(void 0===e)return"_unknown";var t=(e=e.replace(/[^a-zA-Z0-9_]/g,"$")).charCodeAt(0);return 48<=t&&57>=t?"_"+e:e}function Ae(e,t){return e=Pe(e),function(){return t.apply(this,arguments)}}function we(e){var t=Error,n=Ae(e,(function(t){this.name=e,this.message=t,void 0!==(t=Error(t).stack)&&(this.stack=this.toString()+"\n"+t.replace(/^Error(:[^\n]*)?\n/,""))}));return n.prototype=Object.create(t.prototype),n.prototype.constructor=n,n.prototype.toString=function(){return void 0===this.message?this.name:this.name+": "+this.message},n}var Ce=void 0;function Te(e){throw new Ce(e)}function Se(e,t,n){function r(t){(t=n(t)).length!==e.length&&Te("Mismatched type converter count");for(var r=0;re,e):(Ie=new FinalizationGroup((function(e){for(var t=e.next();!t.done;t=e.next())(t=t.value).Pd?De(t):console.warn("object already deleted: "+t.Pd)})),Oe=e=>{Ie.unregister(e.Md)},(Le=e=>(Ie.register(e,e.Md,e.Md),e))(e))}var je=void 0,Ue=[];function Ge(){for(;Ue.length;){var e=Ue.pop();e.Md.fe=!1,e.delete()}}function He(){}var We={};function Ne(e,t,n){if(void 0===e[t].Td){var r=e[t];e[t]=function(){return e[t].Td.hasOwnProperty(arguments.length)||ke("Function '"+n+"' called with an invalid number of arguments ("+arguments.length+") - expects one of ("+e[t].Td+")!"),e[t].Td[arguments.length].apply(this,arguments)},e[t].Td=[],e[t].Td[r.de]=r}}function Ve(e,t,r){n.hasOwnProperty(e)?((void 0===r||void 0!==n[e].Td&&void 0!==n[e].Td[r])&&ke("Cannot register public name '"+e+"' twice"),Ne(n,e,e),n.hasOwnProperty(r)&&ke("Cannot register multiple overloads of a function with the same number of arguments ("+r+")!"),n[e].Td[r]=t):(n[e]=t,void 0!==r&&(n[e].Lf=r))}function $e(e,t,n,r,a,o,i,u){this.name=e,this.constructor=t,this.ge=n,this.ae=r,this.$d=a,this.df=o,this.oe=i,this.af=u,this.tf=[]}function Ye(e,t,n){for(;t!==n;)t.oe||ke("Expected null or instance of "+n.name+", got an instance of "+t.name),e=t.oe(e),t=t.$d;return e}function Xe(e,t){return null===t?(this.De&&ke("null is not a valid "+this.name),0):(t.Md||ke('Cannot pass "'+pt(t)+'" as a '+this.name),t.Md.Pd||ke("Cannot pass deleted object as a pointer of type "+this.name),Ye(t.Md.Pd,t.Md.Sd.Qd,this.Qd))}function Qe(e,t){if(null===t){if(this.De&&ke("null is not a valid "+this.name),this.se){var n=this.Ee();return null!==e&&e.push(this.ae,n),n}return 0}if(t.Md||ke('Cannot pass "'+pt(t)+'" as a '+this.name),t.Md.Pd||ke("Cannot pass deleted object as a pointer of type "+this.name),!this.re&&t.Md.Sd.re&&ke("Cannot convert argument of type "+(t.Md.Yd?t.Md.Yd.name:t.Md.Sd.name)+" to parameter type "+this.name),n=Ye(t.Md.Pd,t.Md.Sd.Qd,this.Qd),this.se)switch(void 0===t.Md.Ud&&ke("Passing raw pointer to smart pointer is illegal"),this.Df){case 0:t.Md.Yd===this?n=t.Md.Ud:ke("Cannot convert argument of type "+(t.Md.Yd?t.Md.Yd.name:t.Md.Sd.name)+" to parameter type "+this.name);break;case 1:n=t.Md.Ud;break;case 2:if(t.Md.Yd===this)n=t.Md.Ud;else{var r=t.clone();n=this.uf(n,st((function(){r.delete()}))),null!==e&&e.push(this.ae,n)}break;default:ke("Unsupporting sharing policy")}return n}function ze(e,t){return null===t?(this.De&&ke("null is not a valid "+this.name),0):(t.Md||ke('Cannot pass "'+pt(t)+'" as a '+this.name),t.Md.Pd||ke("Cannot pass deleted object as a pointer of type "+this.name),t.Md.Sd.re&&ke("Cannot convert argument of type "+t.Md.Sd.name+" to parameter type "+this.name),Ye(t.Md.Pd,t.Md.Sd.Qd,this.Qd))}function qe(e,t,n){return t===n?e:void 0===n.$d||null===(e=qe(e,t,n.$d))?null:n.af(e)}var Ke={};function Ze(e,t){return t.Sd&&t.Pd||Te("makeClassHandle requires ptr and ptrType"),!!t.Yd!=!!t.Ud&&Te("Both smartPtrType and smartPtr must be specified"),t.count={value:1},Le(Object.create(e,{Md:{value:t}}))}function Je(e,t,n,r,a,o,i,u,c,f,l){this.name=e,this.Qd=t,this.De=n,this.re=r,this.se=a,this.sf=o,this.Df=i,this.Ne=u,this.Ee=c,this.uf=f,this.ae=l,a||void 0!==t.$d?this.toWireType=Qe:(this.toWireType=r?Xe:ze,this.Xd=null)}function et(e,t,r){n.hasOwnProperty(e)||Te("Replacing nonexistant public symbol"),void 0!==n[e].Td&&void 0!==r?n[e].Td[r]=t:(n[e]=t,n[e].de=r)}function tt(e,t){var r=(e=Fe(e)).includes("j")?function(e,t){var r=[];return function(){r.length=arguments.length;for(var a=0;ao&&ke("argTypes array size mismatch! Must at least get return value and 'this' types!");var i=null!==t[1]&&null!==n,u=!1;for(n=1;n>2)+r]);return n}var ut=[],ct=[{},{value:void 0},{value:null},{value:!0},{value:!1}];function ft(e){4>2])};case 3:return function(e){return this.fromWireType(G[e>>3])};default:throw new TypeError("Unknown float type: "+e)}}function mt(e,t,n){switch(t){case 0:return n?function(e){return B[e]}:function(e){return I[e]};case 1:return n?function(e){return O[e>>1]}:function(e){return D[e>>1]};case 2:return n?function(e){return L[e>>2]}:function(e){return j[e>>2]};default:throw new TypeError("Unknown integer type: "+e)}}var vt={};function gt(e){var t=vt[e];return void 0===t?Fe(e):t}var _t=[];function bt(){function e(e){e.$$$embind_global$$$=e;var t="object"==typeof $$$embind_global$$$&&e.$$$embind_global$$$===e;return t||delete e.$$$embind_global$$$,t}if("object"==typeof globalThis)return globalThis;if("object"==typeof $$$embind_global$$$)return $$$embind_global$$$;if("object"==typeof global&&e(global)?$$$embind_global$$$=global:"object"==typeof self&&e(self)&&($$$embind_global$$$=self),"object"==typeof $$$embind_global$$$)return $$$embind_global$$$;throw Error("unable to get global object.")}var Pt,At=[],wt={};Pt=g?()=>{var e=process.hrtime();return 1e3*e[0]+e[1]/1e6}:()=>performance.now();var Ct=1,Tt=[],St=[],Et=[],Mt=[],Ft=[],xt=[],kt=[],Rt=[],Bt=[],It=[],Ot={},Dt={},Lt=4;function jt(e){Wt||(Wt=e)}function Ut(e){for(var t=Ct++,n=e.length;n>2]=i}}function $t(e,t,n){if(t){var r=void 0;switch(e){case 36346:r=1;break;case 36344:return void(0!=n&&1!=n&&jt(1280));case 34814:case 36345:r=0;break;case 34466:var a=ln.getParameter(34467);r=a?a.length:0;break;case 33309:if(2>Ht.version)return void jt(1282);r=2*(ln.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>Ht.version)return void jt(1280);r=33307==e?3:0}if(void 0===r)switch(a=ln.getParameter(e),typeof a){case"number":r=a;break;case"boolean":r=a?1:0;break;case"string":return void jt(1280);case"object":if(null===a)switch(e){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:r=0;break;default:return void jt(1280)}else{if(a instanceof Float32Array||a instanceof Uint32Array||a instanceof Int32Array||a instanceof Array){for(e=0;e>2]=a[e];break;case 2:U[t+4*e>>2]=a[e];break;case 4:B[t+e>>0]=a[e]?1:0}return}try{r=0|a.name}catch(t){return jt(1280),void P("GL_INVALID_ENUM in glGet"+n+"v: Unknown object returned from WebGL getParameter("+e+")! (error: "+t+")")}}break;default:return jt(1280),void P("GL_INVALID_ENUM in glGet"+n+"v: Native code calling glGet"+n+"v("+e+") and it returns "+a+" of type "+typeof a+"!")}switch(n){case 1:n=r,j[t>>2]=n,j[t+4>>2]=(n-j[t>>2])/4294967296;break;case 0:L[t>>2]=r;break;case 2:U[t>>2]=r;break;case 4:B[t>>0]=r?1:0}}else jt(1281)}function Yt(e){var t=k(e)+1,n=vn(t);return x(e,I,n,t),n}function Xt(e){return"]"==e.slice(-1)&&e.lastIndexOf("[")}function Qt(e){return 0==(e-=5120)?B:1==e?I:2==e?O:4==e?L:6==e?U:5==e||28922==e||28520==e||30779==e||30782==e?j:D}function zt(e,t,n,r,a){e=Qt(e);var o=31-Math.clz32(e.BYTES_PER_ELEMENT),i=Lt;return e.subarray(a>>o,a+r*(n*({5:3,6:4,8:2,29502:3,29504:4,26917:2,26918:2,29846:3,29847:4}[t-6402]||1)*(1<>o)}function qt(e){var t=ln.Ye;if(t){var n=t.ne[e];return"number"==typeof n&&(t.ne[e]=n=ln.getUniformLocation(t,t.Oe[e]+(0fn;++fn)cn[fn]=String.fromCharCode(fn);Me=cn,xe=n.BindingError=we("BindingError"),He.prototype.isAliasOf=function(e){if(!(this instanceof He&&e instanceof He))return!1;var t=this.Md.Sd.Qd,n=this.Md.Pd,r=e.Md.Sd.Qd;for(e=e.Md.Pd;t.$d;)n=t.oe(n),t=t.$d;for(;r.$d;)e=r.oe(e),r=r.$d;return t===r&&n===e},He.prototype.clone=function(){if(this.Md.Pd||Be(this),this.Md.le)return this.Md.count.value+=1,this;var e=Le,t=Object,n=t.create,r=Object.getPrototypeOf(this),a=this.Md;return(e=e(n.call(t,r,{Md:{value:{count:a.count,fe:a.fe,le:a.le,Pd:a.Pd,Sd:a.Sd,Ud:a.Ud,Yd:a.Yd}}}))).Md.count.value+=1,e.Md.fe=!1,e},He.prototype.delete=function(){this.Md.Pd||Be(this),this.Md.fe&&!this.Md.le&&ke("Object already scheduled for deletion"),Oe(this),De(this.Md),this.Md.le||(this.Md.Ud=void 0,this.Md.Pd=void 0)},He.prototype.isDeleted=function(){return!this.Md.Pd},He.prototype.deleteLater=function(){return this.Md.Pd||Be(this),this.Md.fe&&!this.Md.le&&ke("Object already scheduled for deletion"),Ue.push(this),1===Ue.length&&je&&je(Ge),this.Md.fe=!0,this},Je.prototype.ef=function(e){return this.Ne&&(e=this.Ne(e)),e},Je.prototype.He=function(e){this.ae&&this.ae(e)},Je.prototype.argPackAdvance=8,Je.prototype.readValueFromPointer=ve,Je.prototype.deleteObject=function(e){null!==e&&e.delete()},Je.prototype.fromWireType=function(e){function t(){return this.se?Ze(this.Qd.ge,{Sd:this.sf,Pd:n,Yd:this,Ud:e}):Ze(this.Qd.ge,{Sd:this,Pd:e})}var n=this.ef(e);if(!n)return this.He(e),null;var r=function(e,t){for(void 0===t&&ke("ptr should not be undefined");e.$d;)t=e.oe(t),e=e.$d;return Ke[t]}(this.Qd,n);if(void 0!==r)return 0===r.Md.count.value?(r.Md.Pd=n,r.Md.Ud=e,r.clone()):(r=r.clone(),this.He(e),r);if(r=this.Qd.df(n),!(r=We[r]))return t.call(this);r=this.re?r.Xe:r.pointerType;var a=qe(n,this.Qd,r.Qd);return null===a?t.call(this):this.se?Ze(r.Qd.ge,{Sd:r,Pd:a,Yd:this,Ud:e}):Ze(r.Qd.ge,{Sd:r,Pd:a})},n.getInheritedInstanceCount=function(){return Object.keys(Ke).length},n.getLiveInheritedInstances=function(){var e,t=[];for(e in Ke)Ke.hasOwnProperty(e)&&t.push(Ke[e]);return t},n.flushPendingDeletes=Ge,n.setDelayFunction=function(e){je=e,Ue.length&&je&&je(Ge)},nt=n.UnboundTypeError=we("UnboundTypeError"),n.count_emval_handles=function(){for(var e=0,t=5;tsn;++sn)Nt.push(Array(sn));var dn=new Float32Array(288);for(sn=0;288>sn;++sn)Zt[sn]=dn.subarray(0,sn+1);var hn=new Int32Array(288);for(sn=0;288>sn;++sn)Jt[sn]=hn.subarray(0,sn+1);var pn={K:function(e){return vn(e+16)+16},J:function(e,t,n){throw new se(e).mf(t,n),e},X:function(){return 0},vb:function(){},tb:function(){},xb:function(){return 0},sb:function(){},pb:function(e,t,n,r,a,o){if(o<<=12,0!=(16&r)&&0!=e%65536)t=-28;else if(0!=(32&r)){e=65536*Math.ceil(t/65536);var i=bn(65536,e);i?(I.fill(0,i,i+e),e=i):e=0,e?(de[e]={rf:e,qf:t,We:!0,fd:a,Mf:n,flags:r,offset:o},t=e):t=-48}else t=-52;return t},ob:function(e,t){var n=de[e];return 0!==t&&n?(t===n.qf&&(de[e]=null,n.We&&mn(n.rf)),e=0):e=-28,e},Y:function(){},ub:function(){},C:function(e){var t=ye[e];delete ye[e];var n=t.Ee,r=t.ae,a=t.Ke;Se([e],a.map((function(e){return e.jf})).concat(a.map((function(e){return e.Bf}))),(function(e){var o={};return a.forEach((function(t,n){var r=e[n],i=t.gf,u=t.hf,c=e[n+a.length],f=t.Af,l=t.Cf;o[t.cf]={read:function(e){return r.fromWireType(i(u,e))},write:function(e,t){var n=[];f(l,e,c.toWireType(n,t)),me(n)}}})),[{name:t.name,fromWireType:function(e){var t,n={};for(t in o)n[t]=o[t].read(e);return r(e),n},toWireType:function(e,t){for(var a in o)if(!(a in t))throw new TypeError('Missing field: "'+a+'"');var i=n();for(a in o)o[a].write(i,t[a]);return null!==e&&e.push(r,i),i},argPackAdvance:8,readValueFromPointer:ve,Xd:r}]}))},jb:function(){},zb:function(e,t,n,r,a){var o=Ee(n);Re(e,{name:t=Fe(t),fromWireType:function(e){return!!e},toWireType:function(e,t){return t?r:a},argPackAdvance:8,readValueFromPointer:function(e){if(1===n)var r=B;else if(2===n)r=O;else{if(4!==n)throw new TypeError("Unknown boolean type size: "+t);r=L}return this.fromWireType(r[e>>o])},Xd:null})},n:function(e,t,n,r,a,o,i,u,c,f,l,s,d){l=Fe(l),o=tt(a,o),u&&(u=tt(i,u)),f&&(f=tt(c,f)),d=tt(s,d);var h=Pe(l);Ve(h,(function(){at("Cannot construct "+l+" due to unbound types",[r])})),Se([e,t,n],r?[r]:[],(function(t){if(t=t[0],r)var n=t.Qd,a=n.ge;else a=He.prototype;t=Ae(h,(function(){if(Object.getPrototypeOf(this)!==i)throw new xe("Use 'new' to construct "+l);if(void 0===c.be)throw new xe(l+" has no accessible constructor");var e=c.be[arguments.length];if(void 0===e)throw new xe("Tried to invoke ctor of "+l+" with invalid number of parameters ("+arguments.length+") - expected ("+Object.keys(c.be).toString()+") parameters instead!");return e.apply(this,arguments)}));var i=Object.create(a,{constructor:{value:t}});t.prototype=i;var c=new $e(l,t,i,d,n,o,u,f);n=new Je(l,c,!0,!1,!1),a=new Je(l+"*",c,!1,!1,!1);var s=new Je(l+" const*",c,!1,!0,!1);return We[e]={pointerType:a,Xe:s},et(h,t),[n,a,s]}))},g:function(e,t,n,r,a,o,i){var u=it(n,r);t=Fe(t),o=tt(a,o),Se([],[e],(function(e){function r(){at("Cannot call "+a+" due to unbound types",u)}var a=(e=e[0]).name+"."+t;t.startsWith("@@")&&(t=Symbol[t.substring(2)]);var c=e.Qd.constructor;return void 0===c[t]?(r.de=n-1,c[t]=r):(Ne(c,t,a),c[t].Td[n-1]=r),Se([],u,(function(e){return e=[e[0],null].concat(e.slice(1)),e=ot(a,e,null,o,i),void 0===c[t].Td?(e.de=n-1,c[t]=e):c[t].Td[n-1]=e,[]})),[]}))},A:function(e,t,n,r,a,o){0{at("Cannot construct "+e.name+" due to unbound types",i)},Se([],i,(function(r){return r.splice(1,0,null),e.Qd.be[t-1]=ot(n,r,null,a,o),[]})),[]}))},a:function(e,t,n,r,a,o,i,u){var c=it(n,r);t=Fe(t),o=tt(a,o),Se([],[e],(function(e){function r(){at("Cannot call "+a+" due to unbound types",c)}var a=(e=e[0]).name+"."+t;t.startsWith("@@")&&(t=Symbol[t.substring(2)]),u&&e.Qd.tf.push(t);var f=e.Qd.ge,l=f[t];return void 0===l||void 0===l.Td&&l.className!==e.name&&l.de===n-2?(r.de=n-2,r.className=e.name,f[t]=r):(Ne(f,t,a),f[t].Td[n-2]=r),Se([],c,(function(r){return r=ot(a,r,e,o,i),void 0===f[t].Td?(r.de=n-2,f[t]=r):f[t].Td[n-2]=r,[]})),[]}))},s:function(e,t,r){e=Fe(e),Se([],[t],(function(t){return t=t[0],n[e]=t.fromWireType(r),[]}))},yb:function(e,t){Re(e,{name:t=Fe(t),fromWireType:function(e){var t=lt(e);return ft(e),t},toWireType:function(e,t){return st(t)},argPackAdvance:8,readValueFromPointer:ve,Xd:null})},l:function(e,t,n,r){function a(){}n=Ee(n),t=Fe(t),a.values={},Re(e,{name:t,constructor:a,fromWireType:function(e){return this.constructor.values[e]},toWireType:function(e,t){return t.value},argPackAdvance:8,readValueFromPointer:dt(t,n,r),Xd:null}),Ve(t,a)},d:function(e,t,n){var r=ht(e,"enum");t=Fe(t),e=r.constructor,r=Object.create(r.constructor.prototype,{value:{value:n},constructor:{value:Ae(r.name+"_"+t,(function(){}))}}),e.values[n]=r,e[t]=r},_:function(e,t,n){n=Ee(n),Re(e,{name:t=Fe(t),fromWireType:function(e){return e},toWireType:function(e,t){return t},argPackAdvance:8,readValueFromPointer:yt(t,n),Xd:null})},v:function(e,t,n,r,a,o){var i=it(t,n);e=Fe(e),a=tt(r,a),Ve(e,(function(){at("Cannot call "+e+" due to unbound types",i)}),t-1),Se([],i,(function(n){return n=[n[0],null].concat(n.slice(1)),et(e,ot(e,n,null,a,o),t-1),[]}))},E:function(e,t,n,r,a){t=Fe(t),-1===a&&(a=4294967295),a=Ee(n);var o=e=>e;if(0===r){var i=32-8*n;o=e=>e<>>i}n=t.includes("unsigned")?function(e,t){return t>>>0}:function(e,t){return t},Re(e,{name:t,fromWireType:o,toWireType:n,argPackAdvance:8,readValueFromPointer:mt(t,a,0!==r),Xd:null})},u:function(e,t,n){function r(e){var t=j;return new a(R,t[1+(e>>=2)],t[e])}var a=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][t];Re(e,{name:n=Fe(n),fromWireType:r,argPackAdvance:8,readValueFromPointer:r},{lf:!0})},r:function(e,t,n,r,a,o,i,u,c,f,l,s){n=Fe(n),o=tt(a,o),u=tt(i,u),f=tt(c,f),s=tt(l,s),Se([e],[t],(function(e){return e=e[0],[new Je(n,e.Qd,!1,!1,!0,e,r,o,u,f,s)]}))},Z:function(e,t){var n="std::string"===(t=Fe(t));Re(e,{name:t,fromWireType:function(e){var t=j[e>>2];if(n)for(var r=e+4,a=0;a<=t;++a){var o=e+4+a;if(a==t||0==I[o]){if(r=F(r,o-r),void 0===i)var i=r;else i+=String.fromCharCode(0),i+=r;r=o+1}}else{for(i=Array(t),a=0;ak(t):()=>t.length)(),o=vn(4+a+1);if(j[o>>2]=a,n&&r)x(t,I,o+4,a+1);else if(r)for(r=0;rD,u=1;else 4===t&&(r=$,a=Y,o=X,i=()=>j,u=2);Re(e,{name:n,fromWireType:function(e){for(var n,a=j[e>>2],o=i(),c=e+4,f=0;f<=a;++f){var l=e+4+f*t;f!=a&&0!=o[l>>u]||(c=r(c,l-c),void 0===n?n=c:(n+=String.fromCharCode(0),n+=c),c=l+t)}return mn(e),n},toWireType:function(e,r){"string"!=typeof r&&ke("Cannot pass non-string to C++ string type "+n);var i=o(r),c=vn(4+i+t);return j[c>>2]=i>>u,a(r,c+4,i+t),null!==e&&e.push(mn,c),c},argPackAdvance:8,readValueFromPointer:ve,Xd:function(e){mn(e)}})},D:function(e,t,n,r,a,o){ye[e]={name:Fe(t),Ee:tt(n,r),ae:tt(a,o),Ke:[]}},f:function(e,t,n,r,a,o,i,u,c,f){ye[e].Ke.push({cf:Fe(t),jf:n,gf:tt(r,a),hf:o,Bf:i,Af:tt(u,c),Cf:f})},Ab:function(e,t){Re(e,{pf:!0,name:t=Fe(t),argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},mb:function(){throw"longjmp"},I:function(e,t,n){e=lt(e),t=ht(t,"emval::as");var r=[],a=st(r);return L[n>>2]=a,t.toWireType(r,e)},L:function(e,t,n,r,a){e=_t[e],t=lt(t),n=gt(n);var o=[];return L[r>>2]=st(o),e(t,n,o,a)},B:function(e,t,n,r){(e=_t[e])(t=lt(t),n=gt(n),null,r)},e:ft,N:function(e){return 0===e?st(bt()):(e=gt(e),st(bt()[e]))},w:function(e,t){var n=function(e,t){for(var n=Array(e),r=0;r>2)+r],"parameter "+r);return n}(e,t),r=n[0];t=r.name+"_$"+n.slice(1).map((function(e){return e.name})).join("_")+"$";var a=At[t];if(void 0!==a)return a;var o=Array(e-1);return a=function(e){var t=_t.length;return _t.push(e),t}(((t,a,i,u)=>{for(var c=0,f=0;f>2)+o],"parameter "+o);t[o+1]=i.readValueFromPointer(a),a+=i.argPackAdvance}return st(n=new(n.bind.apply(n,t)))}}(t),wt[t]=a),a(e,n,r)},P:function(){return st([])},h:function(e){return st(gt(e))},G:function(){return st({})},fb:function(e){return!(e=lt(e))},F:function(e){me(lt(e)),ft(e)},k:function(e,t,n){e=lt(e),t=lt(t),n=lt(n),e[t]=n},i:function(e,t){return st(e=(e=ht(e,"_emval_take_value")).readValueFromPointer(t))},j:function(){oe("")},lb:function(e,t){if(0===e)e=Date.now();else{if(1!==e&&4!==e)return L[yn()>>2]=28,-1;e=Pt()}return L[t>>2]=e/1e3|0,L[t+4>>2]=e%1e3*1e6|0,0},Tc:function(e){ln.activeTexture(e)},Uc:function(e,t){ln.attachShader(St[e],xt[t])},Vc:function(e,t,n){ln.bindAttribLocation(St[e],t,F(n))},Wc:function(e,t){35051==e?ln.Be=t:35052==e&&(ln.ee=t),ln.bindBuffer(e,Tt[t])},da:function(e,t){ln.bindFramebuffer(e,Et[t])},Xb:function(e,t){ln.bindRenderbuffer(e,Mt[t])},Hb:function(e,t){ln.bindSampler(e,Bt[t])},Xc:function(e,t){ln.bindTexture(e,Ft[t])},pc:function(e){ln.bindVertexArray(kt[e])},sc:function(e){ln.bindVertexArray(kt[e])},Yc:function(e,t,n,r){ln.blendColor(e,t,n,r)},Zc:function(e){ln.blendEquation(e)},_c:function(e,t){ln.blendFunc(e,t)},Rb:function(e,t,n,r,a,o,i,u,c,f){ln.blitFramebuffer(e,t,n,r,a,o,i,u,c,f)},$c:function(e,t,n,r){2<=Ht.version?n?ln.bufferData(e,I,r,n,t):ln.bufferData(e,t,r):ln.bufferData(e,n?I.subarray(n,n+t):t,r)},ad:function(e,t,n,r){2<=Ht.version?ln.bufferSubData(e,t,I,r,n):ln.bufferSubData(e,t,I.subarray(r,r+n))},Yb:function(e){return ln.checkFramebufferStatus(e)},U:function(e){ln.clear(e)},ca:function(e,t,n,r){ln.clearColor(e,t,n,r)},W:function(e){ln.clearStencil(e)},db:function(e,t,n,r){return ln.clientWaitSync(It[e],t,(n>>>0)+4294967296*r)},bd:function(e,t,n,r){ln.colorMask(!!e,!!t,!!n,!!r)},ea:function(e){ln.compileShader(xt[e])},fa:function(e,t,n,r,a,o,i,u){2<=Ht.version?ln.ee?ln.compressedTexImage2D(e,t,n,r,a,o,i,u):ln.compressedTexImage2D(e,t,n,r,a,o,I,u,i):ln.compressedTexImage2D(e,t,n,r,a,o,u?I.subarray(u,u+i):null)},ga:function(e,t,n,r,a,o,i,u,c){2<=Ht.version?ln.ee?ln.compressedTexSubImage2D(e,t,n,r,a,o,i,u,c):ln.compressedTexSubImage2D(e,t,n,r,a,o,i,I,c,u):ln.compressedTexSubImage2D(e,t,n,r,a,o,i,c?I.subarray(c,c+u):null)},Pb:function(e,t,n,r,a){ln.copyBufferSubData(e,t,n,r,a)},ha:function(e,t,n,r,a,o,i,u){ln.copyTexSubImage2D(e,t,n,r,a,o,i,u)},ia:function(){var e=Ut(St),t=ln.createProgram();return t.name=e,t.ve=t.te=t.ue=0,t.Ge=1,St[e]=t,e},ja:function(e){var t=Ut(xt);return xt[t]=ln.createShader(e),t},ka:function(e){ln.cullFace(e)},la:function(e,t){for(var n=0;n>2],a=Tt[r];a&&(ln.deleteBuffer(a),a.name=0,Tt[r]=null,r==ln.Be&&(ln.Be=0),r==ln.ee&&(ln.ee=0))}},Zb:function(e,t){for(var n=0;n>2],a=Et[r];a&&(ln.deleteFramebuffer(a),a.name=0,Et[r]=null)}},ma:function(e){if(e){var t=St[e];t?(ln.deleteProgram(t),t.name=0,St[e]=null):jt(1281)}},_b:function(e,t){for(var n=0;n>2],a=Mt[r];a&&(ln.deleteRenderbuffer(a),a.name=0,Mt[r]=null)}},Ib:function(e,t){for(var n=0;n>2],a=Bt[r];a&&(ln.deleteSampler(a),a.name=0,Bt[r]=null)}},na:function(e){if(e){var t=xt[e];t?(ln.deleteShader(t),xt[e]=null):jt(1281)}},Qb:function(e){if(e){var t=It[e];t?(ln.deleteSync(t),t.name=0,It[e]=null):jt(1281)}},oa:function(e,t){for(var n=0;n>2],a=Ft[r];a&&(ln.deleteTexture(a),a.name=0,Ft[r]=null)}},qc:function(e,t){for(var n=0;n>2];ln.deleteVertexArray(kt[r]),kt[r]=null}},tc:function(e,t){for(var n=0;n>2];ln.deleteVertexArray(kt[r]),kt[r]=null}},pa:function(e){ln.depthMask(!!e)},qa:function(e){ln.disable(e)},ra:function(e){ln.disableVertexAttribArray(e)},sa:function(e,t,n){ln.drawArrays(e,t,n)},nc:function(e,t,n,r){ln.drawArraysInstanced(e,t,n,r)},lc:function(e,t,n,r,a){ln.Ie.drawArraysInstancedBaseInstanceWEBGL(e,t,n,r,a)},jc:function(e,t){for(var n=Nt[e],r=0;r>2];ln.drawBuffers(n)},ta:function(e,t,n,r){ln.drawElements(e,t,n,r)},oc:function(e,t,n,r,a){ln.drawElementsInstanced(e,t,n,r,a)},mc:function(e,t,n,r,a,o,i){ln.Ie.drawElementsInstancedBaseVertexBaseInstanceWEBGL(e,t,n,r,a,o,i)},dc:function(e,t,n,r,a,o){ln.drawElements(e,r,a,o)},ua:function(e){ln.enable(e)},va:function(e){ln.enableVertexAttribArray(e)},Nb:function(e,t){return(e=ln.fenceSync(e,t))?(t=Ut(It),e.name=t,It[t]=e,t):0},wa:function(){ln.finish()},xa:function(){ln.flush()},$b:function(e,t,n,r){ln.framebufferRenderbuffer(e,t,n,Mt[r])},ac:function(e,t,n,r,a){ln.framebufferTexture2D(e,t,n,Ft[r],a)},ya:function(e){ln.frontFace(e)},za:function(e,t){Vt(e,t,"createBuffer",Tt)},bc:function(e,t){Vt(e,t,"createFramebuffer",Et)},cc:function(e,t){Vt(e,t,"createRenderbuffer",Mt)},Jb:function(e,t){Vt(e,t,"createSampler",Bt)},Aa:function(e,t){Vt(e,t,"createTexture",Ft)},rc:function(e,t){Vt(e,t,"createVertexArray",kt)},uc:function(e,t){Vt(e,t,"createVertexArray",kt)},Tb:function(e){ln.generateMipmap(e)},Ba:function(e,t,n){n?L[n>>2]=ln.getBufferParameter(e,t):jt(1281)},Ca:function(){var e=ln.getError()||Wt;return Wt=0,e},Da:function(e,t){$t(e,t,2)},Ub:function(e,t,n,r){((e=ln.getFramebufferAttachmentParameter(e,t,n))instanceof WebGLRenderbuffer||e instanceof WebGLTexture)&&(e=0|e.name),L[r>>2]=e},O:function(e,t){$t(e,t,0)},Ea:function(e,t,n,r){null===(e=ln.getProgramInfoLog(St[e]))&&(e="(unknown error)"),t=0>2]=t)},Fa:function(e,t,n){if(n)if(e>=Ct)jt(1281);else if(e=St[e],35716==t)null===(e=ln.getProgramInfoLog(e))&&(e="(unknown error)"),L[n>>2]=e.length+1;else if(35719==t){if(!e.ve)for(t=0;t>2]=e.ve}else if(35722==t){if(!e.te)for(t=0;t>2]=e.te}else if(35381==t){if(!e.ue)for(t=0;t>2]=e.ue}else L[n>>2]=ln.getProgramParameter(e,t);else jt(1281)},Vb:function(e,t,n){n?L[n>>2]=ln.getRenderbufferParameter(e,t):jt(1281)},Ga:function(e,t,n,r){null===(e=ln.getShaderInfoLog(xt[e]))&&(e="(unknown error)"),t=0>2]=t)},Eb:function(e,t,n,r){e=ln.getShaderPrecisionFormat(e,t),L[n>>2]=e.rangeMin,L[n+4>>2]=e.rangeMax,L[r>>2]=e.precision},Ha:function(e,t,n){n?35716==t?(null===(e=ln.getShaderInfoLog(xt[e]))&&(e="(unknown error)"),L[n>>2]=e?e.length+1:0):35720==t?(e=ln.getShaderSource(xt[e]),L[n>>2]=e?e.length+1:0):L[n>>2]=ln.getShaderParameter(xt[e],t):jt(1281)},T:function(e){var t=Ot[e];if(!t){switch(e){case 7939:t=Yt((t=(t=ln.getSupportedExtensions()||[]).concat(t.map((function(e){return"GL_"+e})))).join(" "));break;case 7936:case 7937:case 37445:case 37446:(t=ln.getParameter(e))||jt(1280),t=t&&Yt(t);break;case 7938:t=ln.getParameter(7938),t=Yt(t=2<=Ht.version?"OpenGL ES 3.0 ("+t+")":"OpenGL ES 2.0 ("+t+")");break;case 35724:var n=(t=ln.getParameter(35724)).match(/^WebGL GLSL ES ([0-9]\.[0-9][0-9]?)(?:$| .*)/);null!==n&&(3==n[1].length&&(n[1]+="0"),t="OpenGL ES GLSL ES "+n[1]+" ("+t+")"),t=Yt(t);break;default:jt(1280)}Ot[e]=t}return t},cb:function(e,t){if(2>Ht.version)return jt(1282),0;var n=Dt[e];return n?0>t||t>=n.length?(jt(1281),0):n[t]:7939===e?(n=(n=(n=ln.getSupportedExtensions()||[]).concat(n.map((function(e){return"GL_"+e})))).map((function(e){return Yt(e)})),n=Dt[e]=n,0>t||t>=n.length?(jt(1281),0):n[t]):(jt(1280),0)},Ia:function(e,t){if(t=F(t),e=St[e]){var n,r=e,a=r.ne,o=r.Pe;if(!a)for(r.ne=a={},r.Oe={},n=0;n>>0,o=t.slice(0,n)),(o=e.Pe[o])&&a>2];ln.invalidateFramebuffer(e,r)},Gb:function(e,t,n,r,a,o,i){for(var u=Nt[t],c=0;c>2];ln.invalidateSubFramebuffer(e,u,r,a,o,i)},Ob:function(e){return ln.isSync(It[e])},Ja:function(e){return(e=Ft[e])?ln.isTexture(e):0},Ka:function(e){ln.lineWidth(e)},La:function(e){e=St[e],ln.linkProgram(e),e.ne=0,e.Pe={}},hc:function(e,t,n,r,a,o){ln.Me.multiDrawArraysInstancedBaseInstanceWEBGL(e,L,t>>2,L,n>>2,L,r>>2,j,a>>2,o)},ic:function(e,t,n,r,a,o,i,u){ln.Me.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(e,L,t>>2,n,L,r>>2,L,a>>2,L,o>>2,j,i>>2,u)},Ma:function(e,t){3317==e&&(Lt=t),ln.pixelStorei(e,t)},kc:function(e){ln.readBuffer(e)},Na:function(e,t,n,r,a,o,i){if(2<=Ht.version)if(ln.Be)ln.readPixels(e,t,n,r,a,o,i);else{var u=Qt(o);ln.readPixels(e,t,n,r,a,o,u,i>>31-Math.clz32(u.BYTES_PER_ELEMENT))}else(i=zt(o,a,n,r,i))?ln.readPixels(e,t,n,r,a,o,i):jt(1280)},Wb:function(e,t,n,r){ln.renderbufferStorage(e,t,n,r)},Sb:function(e,t,n,r,a){ln.renderbufferStorageMultisample(e,t,n,r,a)},Kb:function(e,t,n){ln.samplerParameterf(Bt[e],t,n)},Lb:function(e,t,n){ln.samplerParameteri(Bt[e],t,n)},Mb:function(e,t,n){ln.samplerParameteri(Bt[e],t,L[n>>2])},Oa:function(e,t,n,r){ln.scissor(e,t,n,r)},Pa:function(e,t,n,r){for(var a="",o=0;o>2]:-1;a+=F(L[n+4*o>>2],0>i?void 0:i)}ln.shaderSource(xt[e],a)},Qa:function(e,t,n){ln.stencilFunc(e,t,n)},Ra:function(e,t,n,r){ln.stencilFuncSeparate(e,t,n,r)},Sa:function(e){ln.stencilMask(e)},Ta:function(e,t){ln.stencilMaskSeparate(e,t)},Ua:function(e,t,n){ln.stencilOp(e,t,n)},Va:function(e,t,n,r){ln.stencilOpSeparate(e,t,n,r)},Wa:function(e,t,n,r,a,o,i,u,c){if(2<=Ht.version)if(ln.ee)ln.texImage2D(e,t,n,r,a,o,i,u,c);else if(c){var f=Qt(u);ln.texImage2D(e,t,n,r,a,o,i,u,f,c>>31-Math.clz32(f.BYTES_PER_ELEMENT))}else ln.texImage2D(e,t,n,r,a,o,i,u,null);else ln.texImage2D(e,t,n,r,a,o,i,u,c?zt(u,i,r,a,c):null)},Xa:function(e,t,n){ln.texParameterf(e,t,n)},Ya:function(e,t,n){ln.texParameterf(e,t,U[n>>2])},Za:function(e,t,n){ln.texParameteri(e,t,n)},_a:function(e,t,n){ln.texParameteri(e,t,L[n>>2])},ec:function(e,t,n,r,a){ln.texStorage2D(e,t,n,r,a)},$a:function(e,t,n,r,a,o,i,u,c){if(2<=Ht.version)if(ln.ee)ln.texSubImage2D(e,t,n,r,a,o,i,u,c);else if(c){var f=Qt(u);ln.texSubImage2D(e,t,n,r,a,o,i,u,f,c>>31-Math.clz32(f.BYTES_PER_ELEMENT))}else ln.texSubImage2D(e,t,n,r,a,o,i,u,null);else f=null,c&&(f=zt(u,i,a,o,c)),ln.texSubImage2D(e,t,n,r,a,o,i,u,f)},ab:function(e,t){ln.uniform1f(qt(e),t)},bb:function(e,t,n){if(2<=Ht.version)ln.uniform1fv(qt(e),U,n>>2,t);else{if(288>=t)for(var r=Zt[t-1],a=0;a>2];else r=U.subarray(n>>2,n+4*t>>2);ln.uniform1fv(qt(e),r)}},Pc:function(e,t){ln.uniform1i(qt(e),t)},Qc:function(e,t,n){if(2<=Ht.version)ln.uniform1iv(qt(e),L,n>>2,t);else{if(288>=t)for(var r=Jt[t-1],a=0;a>2];else r=L.subarray(n>>2,n+4*t>>2);ln.uniform1iv(qt(e),r)}},Rc:function(e,t,n){ln.uniform2f(qt(e),t,n)},Sc:function(e,t,n){if(2<=Ht.version)ln.uniform2fv(qt(e),U,n>>2,2*t);else{if(144>=t)for(var r=Zt[2*t-1],a=0;a<2*t;a+=2)r[a]=U[n+4*a>>2],r[a+1]=U[n+(4*a+4)>>2];else r=U.subarray(n>>2,n+8*t>>2);ln.uniform2fv(qt(e),r)}},Oc:function(e,t,n){ln.uniform2i(qt(e),t,n)},Nc:function(e,t,n){if(2<=Ht.version)ln.uniform2iv(qt(e),L,n>>2,2*t);else{if(144>=t)for(var r=Jt[2*t-1],a=0;a<2*t;a+=2)r[a]=L[n+4*a>>2],r[a+1]=L[n+(4*a+4)>>2];else r=L.subarray(n>>2,n+8*t>>2);ln.uniform2iv(qt(e),r)}},Mc:function(e,t,n,r){ln.uniform3f(qt(e),t,n,r)},Lc:function(e,t,n){if(2<=Ht.version)ln.uniform3fv(qt(e),U,n>>2,3*t);else{if(96>=t)for(var r=Zt[3*t-1],a=0;a<3*t;a+=3)r[a]=U[n+4*a>>2],r[a+1]=U[n+(4*a+4)>>2],r[a+2]=U[n+(4*a+8)>>2];else r=U.subarray(n>>2,n+12*t>>2);ln.uniform3fv(qt(e),r)}},Kc:function(e,t,n,r){ln.uniform3i(qt(e),t,n,r)},Jc:function(e,t,n){if(2<=Ht.version)ln.uniform3iv(qt(e),L,n>>2,3*t);else{if(96>=t)for(var r=Jt[3*t-1],a=0;a<3*t;a+=3)r[a]=L[n+4*a>>2],r[a+1]=L[n+(4*a+4)>>2],r[a+2]=L[n+(4*a+8)>>2];else r=L.subarray(n>>2,n+12*t>>2);ln.uniform3iv(qt(e),r)}},Ic:function(e,t,n,r,a){ln.uniform4f(qt(e),t,n,r,a)},Hc:function(e,t,n){if(2<=Ht.version)ln.uniform4fv(qt(e),U,n>>2,4*t);else{if(72>=t){var r=Zt[4*t-1],a=U;n>>=2;for(var o=0;o<4*t;o+=4){var i=n+o;r[o]=a[i],r[o+1]=a[i+1],r[o+2]=a[i+2],r[o+3]=a[i+3]}}else r=U.subarray(n>>2,n+16*t>>2);ln.uniform4fv(qt(e),r)}},vc:function(e,t,n,r,a){ln.uniform4i(qt(e),t,n,r,a)},wc:function(e,t,n){if(2<=Ht.version)ln.uniform4iv(qt(e),L,n>>2,4*t);else{if(72>=t)for(var r=Jt[4*t-1],a=0;a<4*t;a+=4)r[a]=L[n+4*a>>2],r[a+1]=L[n+(4*a+4)>>2],r[a+2]=L[n+(4*a+8)>>2],r[a+3]=L[n+(4*a+12)>>2];else r=L.subarray(n>>2,n+16*t>>2);ln.uniform4iv(qt(e),r)}},xc:function(e,t,n,r){if(2<=Ht.version)ln.uniformMatrix2fv(qt(e),!!n,U,r>>2,4*t);else{if(72>=t)for(var a=Zt[4*t-1],o=0;o<4*t;o+=4)a[o]=U[r+4*o>>2],a[o+1]=U[r+(4*o+4)>>2],a[o+2]=U[r+(4*o+8)>>2],a[o+3]=U[r+(4*o+12)>>2];else a=U.subarray(r>>2,r+16*t>>2);ln.uniformMatrix2fv(qt(e),!!n,a)}},yc:function(e,t,n,r){if(2<=Ht.version)ln.uniformMatrix3fv(qt(e),!!n,U,r>>2,9*t);else{if(32>=t)for(var a=Zt[9*t-1],o=0;o<9*t;o+=9)a[o]=U[r+4*o>>2],a[o+1]=U[r+(4*o+4)>>2],a[o+2]=U[r+(4*o+8)>>2],a[o+3]=U[r+(4*o+12)>>2],a[o+4]=U[r+(4*o+16)>>2],a[o+5]=U[r+(4*o+20)>>2],a[o+6]=U[r+(4*o+24)>>2],a[o+7]=U[r+(4*o+28)>>2],a[o+8]=U[r+(4*o+32)>>2];else a=U.subarray(r>>2,r+36*t>>2);ln.uniformMatrix3fv(qt(e),!!n,a)}},zc:function(e,t,n,r){if(2<=Ht.version)ln.uniformMatrix4fv(qt(e),!!n,U,r>>2,16*t);else{if(18>=t){var a=Zt[16*t-1],o=U;r>>=2;for(var i=0;i<16*t;i+=16){var u=r+i;a[i]=o[u],a[i+1]=o[u+1],a[i+2]=o[u+2],a[i+3]=o[u+3],a[i+4]=o[u+4],a[i+5]=o[u+5],a[i+6]=o[u+6],a[i+7]=o[u+7],a[i+8]=o[u+8],a[i+9]=o[u+9],a[i+10]=o[u+10],a[i+11]=o[u+11],a[i+12]=o[u+12],a[i+13]=o[u+13],a[i+14]=o[u+14],a[i+15]=o[u+15]}}else a=U.subarray(r>>2,r+64*t>>2);ln.uniformMatrix4fv(qt(e),!!n,a)}},Ac:function(e){e=St[e],ln.useProgram(e),ln.Ye=e},Bc:function(e,t){ln.vertexAttrib1f(e,t)},Cc:function(e,t){ln.vertexAttrib2f(e,U[t>>2],U[t+4>>2])},Dc:function(e,t){ln.vertexAttrib3f(e,U[t>>2],U[t+4>>2],U[t+8>>2])},Ec:function(e,t){ln.vertexAttrib4f(e,U[t>>2],U[t+4>>2],U[t+8>>2],U[t+12>>2])},fc:function(e,t){ln.vertexAttribDivisor(e,t)},gc:function(e,t,n,r,a){ln.vertexAttribIPointer(e,t,n,r,a)},Fc:function(e,t,n,r,a,o){ln.vertexAttribPointer(e,t,n,!!r,a,o)},Gc:function(e,t,n,r){ln.viewport(e,t,n,r)},eb:function(e,t,n,r){ln.waitSync(It[e],t,(n>>>0)+4294967296*r)},nb:function(e){var t=I.length;if(2147483648<(e>>>=0))return!1;for(var n=1;4>=n;n*=2){var r=t*(1+.2/n);r=Math.min(r,e+100663296),0<(r=Math.max(e,r))%65536&&(r+=65536-r%65536);e:{try{T.grow(Math.min(2147483648,r)-R.byteLength+65535>>>16),Q();var a=1;break e}catch(e){}a=void 0}if(a)return!0}return!1},gb:function(){return Ht?Ht.kf:0},qb:function(e,t){var n=0;return tn().forEach((function(r,a){var o=t+n;for(a=L[e+4*a>>2]=o,o=0;o>0]=r.charCodeAt(o);B[a>>0]=0,n+=r.length+1})),0},rb:function(e,t){var n=tn();L[e>>2]=n.length;var r=0;return n.forEach((function(e){r+=e.length+1})),L[t>>2]=r,0},Bb:function(e){C||0>2]=t,0},wb:function(e,t,n,r){return e=pe.ff(e),t=pe.$e(e,t,n),L[r>>2]=t,0},ib:function(){},V:function(e,t,n,r){for(var a=0,o=0;o>2],u=L[t+4>>2];t+=8;for(var c=0;c>2]=a,0},b:function(){return w},q:function(e,t){var n=An();try{return le(e)(t)}catch(e){if(wn(n),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},o:function(e,t,n){var r=An();try{return le(e)(t,n)}catch(e){if(wn(r),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},m:function(e,t,n,r){var a=An();try{return le(e)(t,n,r)}catch(e){if(wn(a),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},S:function(e,t,n,r,a){var o=An();try{return le(e)(t,n,r,a)}catch(e){if(wn(o),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},aa:function(e,t,n,r,a,o,i){var u=An();try{return le(e)(t,n,r,a,o,i)}catch(e){if(wn(u),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},$:function(e,t,n,r,a,o,i,u,c,f){var l=An();try{return le(e)(t,n,r,a,o,i,u,c,f)}catch(e){if(wn(l),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},z:function(e,t){var n=An();try{le(e)(t)}catch(e){if(wn(n),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},y:function(e,t,n){var r=An();try{le(e)(t,n)}catch(e){if(wn(r),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},t:function(e,t,n,r){var a=An();try{le(e)(t,n,r)}catch(e){if(wn(a),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},x:function(e,t,n,r,a){var o=An();try{le(e)(t,n,r,a)}catch(e){if(wn(o),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},ba:function(e,t,n,r,a,o){var i=An();try{le(e)(t,n,r,a,o)}catch(e){if(wn(i),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},Cb:function(e,t,n,r,a,o,i){var u=An();try{le(e)(t,n,r,a,o,i)}catch(e){if(wn(u),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},Db:function(e,t,n,r,a,o,i,u,c,f){var l=An();try{le(e)(t,n,r,a,o,i,u,c,f)}catch(e){if(wn(l),e!==e+0&&"longjmp"!==e)throw e;Pn(1,0)}},c:function(e){w=e},kb:function(e,t,n,r){return function(e,t,n,r){function a(e,t,n){for(e="number"==typeof e?e.toString():e||"";e.lengthe?-1:0=i(n,e)?0>=i(t,e)?e.getFullYear()+1:e.getFullYear():e.getFullYear()-1}var f=L[r+40>>2];for(var l in r={Gf:L[r>>2],Ff:L[r+4>>2],we:L[r+8>>2],me:L[r+12>>2],he:L[r+16>>2],Vd:L[r+20>>2],xe:L[r+24>>2],ye:L[r+28>>2],Of:L[r+32>>2],Ef:L[r+36>>2],Hf:f?F(f):""},n=F(n),f={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"})n=n.replace(new RegExp(l,"g"),f[l]);var s="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),d="January February March April May June July August September October November December".split(" ");for(l in f={"%a":function(e){return s[e.xe].substring(0,3)},"%A":function(e){return s[e.xe]},"%b":function(e){return d[e.he].substring(0,3)},"%B":function(e){return d[e.he]},"%C":function(e){return o((e.Vd+1900)/100|0,2)},"%d":function(e){return o(e.me,2)},"%e":function(e){return a(e.me,2," ")},"%g":function(e){return c(e).toString().substring(2)},"%G":function(e){return c(e)},"%H":function(e){return o(e.we,2)},"%I":function(e){return 0==(e=e.we)?e=12:12e.we?"AM":"PM"},"%S":function(e){return o(e.Gf,2)},"%t":function(){return"\t"},"%u":function(e){return e.xe||7},"%U":function(e){var t=new Date(e.Vd+1900,0,1),n=0===t.getDay()?t:un(t,7-t.getDay());return 0>i(n,e=new Date(e.Vd+1900,e.he,e.me))?o(Math.ceil((31-n.getDate()+(rn(nn(e.getFullYear())?an:on,e.getMonth()-1)-31)+e.getDate())/7),2):0===i(n,t)?"01":"00"},"%V":function(e){var t=new Date(e.Vd+1901,0,4),n=u(new Date(e.Vd+1900,0,4));t=u(t);var r=un(new Date(e.Vd+1900,0,1),e.ye);return 0>i(r,n)?"53":0>=i(t,r)?"01":o(Math.ceil((n.getFullYear()i(n,e=new Date(e.Vd+1900,e.he,e.me))?o(Math.ceil((31-n.getDate()+(rn(nn(e.getFullYear())?an:on,e.getMonth()-1)-31)+e.getDate())/7),2):0===i(n,t)?"01":"00"},"%y":function(e){return(e.Vd+1900).toString().substring(2)},"%Y":function(e){return e.Vd+1900},"%z":function(e){var t=0<=(e=e.Ef);return e=Math.abs(e)/60,(t?"+":"-")+String("0000"+(e/60*100+e%60)).slice(-4)},"%Z":function(e){return e.Hf},"%%":function(){return"%"}})n.includes(l)&&(n=n.replace(new RegExp(l,"g"),f[l](r)));return l=function(e){var t=Array(k(e)+1);return x(e,t,0,t.length),t}(n),l.length>t?0:(B.set(l,e),l.length-1)}(e,t,n,r)}};!function(){function e(e){n.asm=e.exports,T=n.asm.cd,Q(),z=n.asm.ed,K.unshift(n.asm.dd),ne--,n.monitorRunDependencies&&n.monitorRunDependencies(ne),0==ne&&(null!==re&&(clearInterval(re),re=null),ae&&(e=ae,ae=null,e()))}function t(t){e(t.instance)}function r(e){return function(){if(!A&&(m||v)){if("function"==typeof fetch&&!te.startsWith("file://"))return fetch(te,{credentials:"same-origin"}).then((function(e){if(!e.ok)throw"failed to load wasm binary file at '"+te+"'";return e.arrayBuffer()})).catch((function(){return ce()}));if(c)return new Promise((function(e,t){c(te,(function(t){e(new Uint8Array(t))}),t)}))}return Promise.resolve().then((function(){return ce()}))}().then((function(e){return WebAssembly.instantiate(e,o)})).then((function(e){return e})).then(e,(function(e){P("failed to asynchronously prepare wasm: "+e),oe(e)}))}var o={a:pn};if(ne++,n.monitorRunDependencies&&n.monitorRunDependencies(ne),n.instantiateWasm)try{return n.instantiateWasm(o,e)}catch(e){return P("Module.instantiateWasm callback failed with error: "+e),!1}(A||"function"!=typeof WebAssembly.instantiateStreaming||ie()||te.startsWith("file://")||"function"!=typeof fetch?r(t):fetch(te,{credentials:"same-origin"}).then((function(e){return WebAssembly.instantiateStreaming(e,o).then(t,(function(e){return P("wasm streaming compile failed: "+e),P("falling back to ArrayBuffer instantiation"),r(t)}))}))).catch(a)}(),n.___wasm_call_ctors=function(){return(n.___wasm_call_ctors=n.asm.dd).apply(null,arguments)};var yn=n.___errno_location=function(){return(yn=n.___errno_location=n.asm.fd).apply(null,arguments)},mn=n._free=function(){return(mn=n._free=n.asm.gd).apply(null,arguments)},vn=n._malloc=function(){return(vn=n._malloc=n.asm.hd).apply(null,arguments)},gn=n.___getTypeName=function(){return(gn=n.___getTypeName=n.asm.id).apply(null,arguments)};n.___embind_register_native_and_builtin_types=function(){return(n.___embind_register_native_and_builtin_types=n.asm.jd).apply(null,arguments)};var _n,bn=n._memalign=function(){return(bn=n._memalign=n.asm.kd).apply(null,arguments)},Pn=n._setThrew=function(){return(Pn=n._setThrew=n.asm.ld).apply(null,arguments)},An=n.stackSave=function(){return(An=n.stackSave=n.asm.md).apply(null,arguments)},wn=n.stackRestore=function(){return(wn=n.stackRestore=n.asm.nd).apply(null,arguments)};function Cn(e){this.name="ExitStatus",this.message="Program terminated with exit("+e+")",this.status=e}function Tn(){function e(){if(!_n&&(_n=!0,n.calledRun=!0,!S)){if(fe(K),r(n),n.onRuntimeInitialized&&n.onRuntimeInitialized(),n.postRun)for("function"==typeof n.postRun&&(n.postRun=[n.postRun]);n.postRun.length;){var e=n.postRun.shift();Z.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

U$tuH+#K@sduB*E7_R3 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

Ap4!*)6Qwu6>EazuqFS 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
X9@`V0SJoH^*@~!P`Mu_EpTqMm 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