zsh: update to 5.7.1 & native build
[unleashed-userland.git] / components / runtime / node / node.license
blob5d37e1cf94f78f740bc280bb47437ca9293bfea2
1 Node's license follows:
3 ====
5 Copyright Joyent, Inc. and other Node contributors. All rights reserved.
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to
8 deal in the Software without restriction, including without limitation the
9 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 sell copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 IN THE SOFTWARE.
24 ====
26 This license applies to all parts of Node that are not externally
27 maintained libraries. The externally maintained libraries used by Node are:
29 - V8, located at deps/v8. V8's license follows:
30   """
31     This license applies to all parts of V8 that are not externally
32     maintained libraries.  The externally maintained libraries used by V8
33     are:
35       - PCRE test suite, located in
36         test/mjsunit/third_party/regexp-pcre.js.  This is based on the
37         test suite from PCRE-7.3, which is copyrighted by the University
38         of Cambridge and Google, Inc.  The copyright notice and license
39         are embedded in regexp-pcre.js.
41       - Layout tests, located in test/mjsunit/third_party.  These are
42         based on layout tests from webkit.org which are copyrighted by
43         Apple Computer, Inc. and released under a 3-clause BSD license.
45       - Strongtalk assembler, the basis of the files assembler-arm-inl.h,
46         assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
47         assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
48         assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h,
49         assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h.
50         This code is copyrighted by Sun Microsystems Inc. and released
51         under a 3-clause BSD license.
53       - Valgrind client API header, located at third_party/valgrind/valgrind.h
54         This is release under the BSD license.
56     These libraries have their own licenses; we recommend you read them,
57     as their terms may differ from the terms below.
59     Copyright 2006-2012, the V8 project authors. All rights reserved.
60     Redistribution and use in source and binary forms, with or without
61     modification, are permitted provided that the following conditions are
62     met:
64         * Redistributions of source code must retain the above copyright
65           notice, this list of conditions and the following disclaimer.
66         * Redistributions in binary form must reproduce the above
67           copyright notice, this list of conditions and the following
68           disclaimer in the documentation and/or other materials provided
69           with the distribution.
70         * Neither the name of Google Inc. nor the names of its
71           contributors may be used to endorse or promote products derived
72           from this software without specific prior written permission.
74     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
75     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
76     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
77     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
78     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
79     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
80     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
81     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
82     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
83     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
84     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
85   """
87 - C-Ares, an asynchronous DNS client, located at deps/cares. C-Ares license
88   follows:
89   """
90     /* Copyright 1998 by the Massachusetts Institute of Technology.
91      *
92      * Permission to use, copy, modify, and distribute this
93      * software and its documentation for any purpose and without
94      * fee is hereby granted, provided that the above copyright
95      * notice appear in all copies and that both that copyright
96      * notice and this permission notice appear in supporting
97      * documentation, and that the name of M.I.T. not be used in
98      * advertising or publicity pertaining to distribution of the
99      * software without specific, written prior permission.
100      * M.I.T. makes no representations about the suitability of
101      * this software for any purpose.  It is provided "as is"
102      * without express or implied warranty.
103   """
105 - OpenSSL located at deps/openssl. OpenSSL is cryptographic software written
106   by Eric Young (eay@cryptsoft.com) to provide SSL/TLS encryption. OpenSSL's
107   license follows:
108   """
109     /* ====================================================================
110      * Copyright (c) 1998-2011 The OpenSSL Project.  All rights reserved.
111      *
112      * Redistribution and use in source and binary forms, with or without
113      * modification, are permitted provided that the following conditions
114      * are met:
115      *
116      * 1. Redistributions of source code must retain the above copyright
117      *    notice, this list of conditions and the following disclaimer.
118      *
119      * 2. Redistributions in binary form must reproduce the above copyright
120      *    notice, this list of conditions and the following disclaimer in
121      *    the documentation and/or other materials provided with the
122      *    distribution.
123      *
124      * 3. All advertising materials mentioning features or use of this
125      *    software must display the following acknowledgment:
126      *    "This product includes software developed by the OpenSSL Project
127      *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
128      *
129      * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
130      *    endorse or promote products derived from this software without
131      *    prior written permission. For written permission, please contact
132      *    openssl-core@openssl.org.
133      *
134      * 5. Products derived from this software may not be called "OpenSSL"
135      *    nor may "OpenSSL" appear in their names without prior written
136      *    permission of the OpenSSL Project.
137      *
138      * 6. Redistributions of any form whatsoever must retain the following
139      *    acknowledgment:
140      *    "This product includes software developed by the OpenSSL Project
141      *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
142      *
143      * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
144      * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
145      * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
146      * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
147      * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
148      * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
149      * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
150      * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
151      * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
152      * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
153      * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
154      * OF THE POSSIBILITY OF SUCH DAMAGE.
155      * ====================================================================
156      *
157      * This product includes cryptographic software written by Eric Young
158      * (eay@cryptsoft.com).  This product includes software written by Tim
159      * Hudson (tjh@cryptsoft.com).
160      *
161      */
162   """
164 - HTTP Parser, located at deps/http_parser. HTTP Parser's license follows:
165   """
166     http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright
167     Igor Sysoev.
169     Additional changes are licensed under the same terms as NGINX and
170     copyright Joyent, Inc. and other Node contributors. All rights reserved.
172     Permission is hereby granted, free of charge, to any person obtaining a copy
173     of this software and associated documentation files (the "Software"), to
174     deal in the Software without restriction, including without limitation the
175     rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
176     sell copies of the Software, and to permit persons to whom the Software is
177     furnished to do so, subject to the following conditions:
179     The above copyright notice and this permission notice shall be included in
180     all copies or substantial portions of the Software.
182     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
183     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
184     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
185     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
186     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
187     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
188     IN THE SOFTWARE.
189   """
191 - Closure Linter is located at tools/closure_linter. Closure's license
192   follows:
193   """
194     # Copyright (c) 2007, Google Inc.
195     # All rights reserved.
196     #
197     # Redistribution and use in source and binary forms, with or without
198     # modification, are permitted provided that the following conditions are
199     # met:
200     #
201     #     * Redistributions of source code must retain the above copyright
202     # notice, this list of conditions and the following disclaimer.
203     #     * Redistributions in binary form must reproduce the above
204     # copyright notice, this list of conditions and the following disclaimer
205     # in the documentation and/or other materials provided with the
206     # distribution.
207     #     * Neither the name of Google Inc. nor the names of its
208     # contributors may be used to endorse or promote products derived from
209     # this software without specific prior written permission.
210     #
211     # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
212     # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
213     # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
214     # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215     # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216     # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
217     # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
218     # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
219     # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
220     # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
221     # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
222   """
224 - tools/cpplint.py is a C++ linter. Its license follows:
225   """
226     # Copyright (c) 2009 Google Inc. All rights reserved.
227     #
228     # Redistribution and use in source and binary forms, with or without
229     # modification, are permitted provided that the following conditions are
230     # met:
231     #
232     #    * Redistributions of source code must retain the above copyright
233     # notice, this list of conditions and the following disclaimer.
234     #    * Redistributions in binary form must reproduce the above
235     # copyright notice, this list of conditions and the following disclaimer
236     # in the documentation and/or other materials provided with the
237     # distribution.
238     #    * Neither the name of Google Inc. nor the names of its
239     # contributors may be used to endorse or promote products derived from
240     # this software without specific prior written permission.
241     #
242     # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
243     # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
244     # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
245     # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
246     # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
247     # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
248     # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
249     # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
250     # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
251     # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
252     # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
253   """
255 - lib/punycode.js is copyright 2011 Mathias Bynens <http://mathiasbynens.be/>
256   and released under the MIT license.
257   """
258     * Punycode.js <http://mths.be/punycode>
259     * Copyright 2011 Mathias Bynens <http://mathiasbynens.be/>
260     * Available under MIT license <http://mths.be/mit>
261   """
263 - tools/gyp. GYP is a meta-build system. GYP's license follows:
264   """
265     Copyright (c) 2009 Google Inc. All rights reserved.
267     Redistribution and use in source and binary forms, with or without
268     modification, are permitted provided that the following conditions are
269     met:
271        * Redistributions of source code must retain the above copyright
272     notice, this list of conditions and the following disclaimer.
273        * Redistributions in binary form must reproduce the above
274     copyright notice, this list of conditions and the following disclaimer
275     in the documentation and/or other materials provided with the
276     distribution.
277        * Neither the name of Google Inc. nor the names of its
278     contributors may be used to endorse or promote products derived from
279     this software without specific prior written permission.
281     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
282     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
283     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
284     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
285     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
286     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
287     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
288     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
289     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
290     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
291     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
292   """
294 - Zlib at deps/zlib. zlib's license follows:
295   """
296     /* zlib.h -- interface of the 'zlib' general purpose compression library
297       version 1.2.8, April 28th, 2013
299       Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
301       This software is provided 'as-is', without any express or implied
302       warranty.  In no event will the authors be held liable for any damages
303       arising from the use of this software.
305       Permission is granted to anyone to use this software for any purpose,
306       including commercial applications, and to alter it and redistribute it
307       freely, subject to the following restrictions:
309       1. The origin of this software must not be misrepresented; you must not
310          claim that you wrote the original software. If you use this software
311          in a product, an acknowledgment in the product documentation would be
312          appreciated but is not required.
313       2. Altered source versions must be plainly marked as such, and must not be
314          misrepresented as being the original software.
315       3. This notice may not be removed or altered from any source distribution.
317       Jean-loup Gailly        Mark Adler
318       jloup@gzip.org          madler@alumni.caltech.edu
319     */
320   """
322 - npm is a package manager program located at deps/npm.
323   npm's license follows:
324   """
325     Copyright (c) Isaac Z. Schlueter
326     All rights reserved.
328     npm is released under the Artistic 2.0 License.
329     The text of the License follows:
332     --------
335     The Artistic License 2.0
337     Copyright (c) 2000-2006, The Perl Foundation.
339     Everyone is permitted to copy and distribute verbatim copies
340     of this license document, but changing it is not allowed.
342     Preamble
344     This license establishes the terms under which a given free software
345     Package may be copied, modified, distributed, and/or redistributed.
346     The intent is that the Copyright Holder maintains some artistic
347     control over the development of that Package while still keeping the
348     Package available as open source and free software.
350     You are always permitted to make arrangements wholly outside of this
351     license directly with the Copyright Holder of a given Package.  If the
352     terms of this license do not permit the full use that you propose to
353     make of the Package, you should contact the Copyright Holder and seek
354     a different licensing arrangement.
356     Definitions
358         "Copyright Holder" means the individual(s) or organization(s)
359         named in the copyright notice for the entire Package.
361         "Contributor" means any party that has contributed code or other
362         material to the Package, in accordance with the Copyright Holder's
363         procedures.
365         "You" and "your" means any person who would like to copy,
366         distribute, or modify the Package.
368         "Package" means the collection of files distributed by the
369         Copyright Holder, and derivatives of that collection and/or of
370         those files. A given Package may consist of either the Standard
371         Version, or a Modified Version.
373         "Distribute" means providing a copy of the Package or making it
374         accessible to anyone else, or in the case of a company or
375         organization, to others outside of your company or organization.
377         "Distributor Fee" means any fee that you charge for Distributing
378         this Package or providing support for this Package to another
379         party.  It does not mean licensing fees.
381         "Standard Version" refers to the Package if it has not been
382         modified, or has been modified only in ways explicitly requested
383         by the Copyright Holder.
385         "Modified Version" means the Package, if it has been changed, and
386         such changes were not explicitly requested by the Copyright
387         Holder.
389         "Original License" means this Artistic License as Distributed with
390         the Standard Version of the Package, in its current version or as
391         it may be modified by The Perl Foundation in the future.
393         "Source" form means the source code, documentation source, and
394         configuration files for the Package.
396         "Compiled" form means the compiled bytecode, object code, binary,
397         or any other form resulting from mechanical transformation or
398         translation of the Source form.
401     Permission for Use and Modification Without Distribution
403     (1)  You are permitted to use the Standard Version and create and use
404     Modified Versions for any purpose without restriction, provided that
405     you do not Distribute the Modified Version.
408     Permissions for Redistribution of the Standard Version
410     (2)  You may Distribute verbatim copies of the Source form of the
411     Standard Version of this Package in any medium without restriction,
412     either gratis or for a Distributor Fee, provided that you duplicate
413     all of the original copyright notices and associated disclaimers.  At
414     your discretion, such verbatim copies may or may not include a
415     Compiled form of the Package.
417     (3)  You may apply any bug fixes, portability changes, and other
418     modifications made available from the Copyright Holder.  The resulting
419     Package will still be considered the Standard Version, and as such
420     will be subject to the Original License.
423     Distribution of Modified Versions of the Package as Source
425     (4)  You may Distribute your Modified Version as Source (either gratis
426     or for a Distributor Fee, and with or without a Compiled form of the
427     Modified Version) provided that you clearly document how it differs
428     from the Standard Version, including, but not limited to, documenting
429     any non-standard features, executables, or modules, and provided that
430     you do at least ONE of the following:
432         (a)  make the Modified Version available to the Copyright Holder
433         of the Standard Version, under the Original License, so that the
434         Copyright Holder may include your modifications in the Standard
435         Version.
437         (b)  ensure that installation of your Modified Version does not
438         prevent the user installing or running the Standard Version. In
439         addition, the Modified Version must bear a name that is different
440         from the name of the Standard Version.
442         (c)  allow anyone who receives a copy of the Modified Version to
443         make the Source form of the Modified Version available to others
444         under
446             (i)  the Original License or
448             (ii)  a license that permits the licensee to freely copy,
449             modify and redistribute the Modified Version using the same
450             licensing terms that apply to the copy that the licensee
451             received, and requires that the Source form of the Modified
452             Version, and of any works derived from it, be made freely
453             available in that license fees are prohibited but Distributor
454             Fees are allowed.
457     Distribution of Compiled Forms of the Standard Version
458     or Modified Versions without the Source
460     (5)  You may Distribute Compiled forms of the Standard Version without
461     the Source, provided that you include complete instructions on how to
462     get the Source of the Standard Version.  Such instructions must be
463     valid at the time of your distribution.  If these instructions, at any
464     time while you are carrying out such distribution, become invalid, you
465     must provide new instructions on demand or cease further distribution.
466     If you provide valid instructions or cease distribution within thirty
467     days after you become aware that the instructions are invalid, then
468     you do not forfeit any of your rights under this license.
470     (6)  You may Distribute a Modified Version in Compiled form without
471     the Source, provided that you comply with Section 4 with respect to
472     the Source of the Modified Version.
475     Aggregating or Linking the Package
477     (7)  You may aggregate the Package (either the Standard Version or
478     Modified Version) with other packages and Distribute the resulting
479     aggregation provided that you do not charge a licensing fee for the
480     Package.  Distributor Fees are permitted, and licensing fees for other
481     components in the aggregation are permitted. The terms of this license
482     apply to the use and Distribution of the Standard or Modified Versions
483     as included in the aggregation.
485     (8) You are permitted to link Modified and Standard Versions with
486     other works, to embed the Package in a larger work of your own, or to
487     build stand-alone binary or bytecode versions of applications that
488     include the Package, and Distribute the result without restriction,
489     provided the result does not expose a direct interface to the Package.
492     Items That are Not Considered Part of a Modified Version
494     (9) Works (including, but not limited to, modules and scripts) that
495     merely extend or make use of the Package, do not, by themselves, cause
496     the Package to be a Modified Version.  In addition, such works are not
497     considered parts of the Package itself, and are not subject to the
498     terms of this license.
501     General Provisions
503     (10)  Any use, modification, and distribution of the Standard or
504     Modified Versions is governed by this Artistic License. By using,
505     modifying or distributing the Package, you accept this license. Do not
506     use, modify, or distribute the Package, if you do not accept this
507     license.
509     (11)  If your Modified Version has been derived from a Modified
510     Version made by someone other than you, you are nevertheless required
511     to ensure that your Modified Version complies with the requirements of
512     this license.
514     (12)  This license does not grant you the right to use any trademark,
515     service mark, tradename, or logo of the Copyright Holder.
517     (13)  This license includes the non-exclusive, worldwide,
518     free-of-charge patent license to make, have made, use, offer to sell,
519     sell, import and otherwise transfer the Package with respect to any
520     patent claims licensable by the Copyright Holder that are necessarily
521     infringed by the Package. If you institute patent litigation
522     (including a cross-claim or counterclaim) against any party alleging
523     that the Package constitutes direct or contributory patent
524     infringement, then this Artistic License to you shall terminate on the
525     date that such litigation is filed.
527     (14)  Disclaimer of Warranty:
528     THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
529     IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
530     WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
531     NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
532     LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL
533     BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
534     DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF
535     ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
538     --------
541     "Node.js" and "node" trademark Joyent, Inc. npm is not officially
542     part of the Node.js project, and is neither owned by nor
543     officially affiliated with Joyent, Inc.
545     Packages published in the npm registry (other than the Software and
546     its included dependencies) are not part of npm itself, are the sole
547     property of their respective maintainers, and are not covered by
548     this license.
550     "npm Logo" created by Mathias Pettersson and Brian Hammond,
551     used with permission.
553     "Gubblebum Blocky" font
554     Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com
555     included for use in the npm website and documentation,
556     used with permission.
558     This program uses several Node modules contained in the node_modules/
559     subdirectory, according to the terms of their respective licenses.
560   """
562 - tools/doc/node_modules/marked. Marked is a Markdown parser. Marked's
563   license follows:
564   """
565     Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/)
567     Permission is hereby granted, free of charge, to any person obtaining a copy
568     of this software and associated documentation files (the "Software"), to deal
569     in the Software without restriction, including without limitation the rights
570     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
571     copies of the Software, and to permit persons to whom the Software is
572     furnished to do so, subject to the following conditions:
574     The above copyright notice and this permission notice shall be included in
575     all copies or substantial portions of the Software.
577     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
578     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
579     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
580     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
581     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
582     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
583     THE SOFTWARE.
584   """
586 - test/gc/node_modules/weak. Node-weak is a node.js addon that provides garbage
587   collector notifications. Node-weak's license follows:
588   """
589     Copyright (c) 2011, Ben Noordhuis <info@bnoordhuis.nl>
591     Permission to use, copy, modify, and/or distribute this software for any
592     purpose with or without fee is hereby granted, provided that the above
593     copyright notice and this permission notice appear in all copies.
595     THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
596     WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
597     MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
598     ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
599     WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
600     ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
601     OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
602   """
604 - wrk is located at tools/wrk. wrk's license follows:
605   """
607                                      Apache License
608                                Version 2.0, January 2004
609                             http://www.apache.org/licenses/
611        TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
613        1. Definitions.
615           "License" shall mean the terms and conditions for use, reproduction,
616           and distribution as defined by Sections 1 through 9 of this document.
618           "Licensor" shall mean the copyright owner or entity authorized by
619           the copyright owner that is granting the License.
621           "Legal Entity" shall mean the union of the acting entity and all
622           other entities that control, are controlled by, or are under common
623           control with that entity. For the purposes of this definition,
624           "control" means (i) the power, direct or indirect, to cause the
625           direction or management of such entity, whether by contract or
626           otherwise, or (ii) ownership of fifty percent (50%) or more of the
627           outstanding shares, or (iii) beneficial ownership of such entity.
629           "You" (or "Your") shall mean an individual or Legal Entity
630           exercising permissions granted by this License.
632           "Source" form shall mean the preferred form for making modifications,
633           including but not limited to software source code, documentation
634           source, and configuration files.
636           "Object" form shall mean any form resulting from mechanical
637           transformation or translation of a Source form, including but
638           not limited to compiled object code, generated documentation,
639           and conversions to other media types.
641           "Work" shall mean the work of authorship, whether in Source or
642           Object form, made available under the License, as indicated by a
643           copyright notice that is included in or attached to the work
644           (an example is provided in the Appendix below).
646           "Derivative Works" shall mean any work, whether in Source or Object
647           form, that is based on (or derived from) the Work and for which the
648           editorial revisions, annotations, elaborations, or other modifications
649           represent, as a whole, an original work of authorship. For the purposes
650           of this License, Derivative Works shall not include works that remain
651           separable from, or merely link (or bind by name) to the interfaces of,
652           the Work and Derivative Works thereof.
654           "Contribution" shall mean any work of authorship, including
655           the original version of the Work and any modifications or additions
656           to that Work or Derivative Works thereof, that is intentionally
657           submitted to Licensor for inclusion in the Work by the copyright owner
658           or by an individual or Legal Entity authorized to submit on behalf of
659           the copyright owner. For the purposes of this definition, "submitted"
660           means any form of electronic, verbal, or written communication sent
661           to the Licensor or its representatives, including but not limited to
662           communication on electronic mailing lists, source code control systems,
663           and issue tracking systems that are managed by, or on behalf of, the
664           Licensor for the purpose of discussing and improving the Work, but
665           excluding communication that is conspicuously marked or otherwise
666           designated in writing by the copyright owner as "Not a Contribution."
668           "Contributor" shall mean Licensor and any individual or Legal Entity
669           on behalf of whom a Contribution has been received by Licensor and
670           subsequently incorporated within the Work.
672        2. Grant of Copyright License. Subject to the terms and conditions of
673           this License, each Contributor hereby grants to You a perpetual,
674           worldwide, non-exclusive, no-charge, royalty-free, irrevocable
675           copyright license to reproduce, prepare Derivative Works of,
676           publicly display, publicly perform, sublicense, and distribute the
677           Work and such Derivative Works in Source or Object form.
679        3. Grant of Patent License. Subject to the terms and conditions of
680           this License, each Contributor hereby grants to You a perpetual,
681           worldwide, non-exclusive, no-charge, royalty-free, irrevocable
682           (except as stated in this section) patent license to make, have made,
683           use, offer to sell, sell, import, and otherwise transfer the Work,
684           where such license applies only to those patent claims licensable
685           by such Contributor that are necessarily infringed by their
686           Contribution(s) alone or by combination of their Contribution(s)
687           with the Work to which such Contribution(s) was submitted. If You
688           institute patent litigation against any entity (including a
689           cross-claim or counterclaim in a lawsuit) alleging that the Work
690           or a Contribution incorporated within the Work constitutes direct
691           or contributory patent infringement, then any patent licenses
692           granted to You under this License for that Work shall terminate
693           as of the date such litigation is filed.
695        4. Redistribution. You may reproduce and distribute copies of the
696           Work or Derivative Works thereof in any medium, with or without
697           modifications, and in Source or Object form, provided that You
698           meet the following conditions:
700           (a) You must give any other recipients of the Work or
701               Derivative Works a copy of this License; and
703           (b) You must cause any modified files to carry prominent notices
704               stating that You changed the files; and
706           (c) You must retain, in the Source form of any Derivative Works
707               that You distribute, all copyright, patent, trademark, and
708               attribution notices from the Source form of the Work,
709               excluding those notices that do not pertain to any part of
710               the Derivative Works; and
712           (d) If the Work includes a "NOTICE" text file as part of its
713               distribution, then any Derivative Works that You distribute must
714               include a readable copy of the attribution notices contained
715               within such NOTICE file, excluding those notices that do not
716               pertain to any part of the Derivative Works, in at least one
717               of the following places: within a NOTICE text file distributed
718               as part of the Derivative Works; within the Source form or
719               documentation, if provided along with the Derivative Works; or,
720               within a display generated by the Derivative Works, if and
721               wherever such third-party notices normally appear. The contents
722               of the NOTICE file are for informational purposes only and
723               do not modify the License. You may add Your own attribution
724               notices within Derivative Works that You distribute, alongside
725               or as an addendum to the NOTICE text from the Work, provided
726               that such additional attribution notices cannot be construed
727               as modifying the License.
729           You may add Your own copyright statement to Your modifications and
730           may provide additional or different license terms and conditions
731           for use, reproduction, or distribution of Your modifications, or
732           for any such Derivative Works as a whole, provided Your use,
733           reproduction, and distribution of the Work otherwise complies with
734           the conditions stated in this License.
736        5. Submission of Contributions. Unless You explicitly state otherwise,
737           any Contribution intentionally submitted for inclusion in the Work
738           by You to the Licensor shall be under the terms and conditions of
739           this License, without any additional terms or conditions.
740           Notwithstanding the above, nothing herein shall supersede or modify
741           the terms of any separate license agreement you may have executed
742           with Licensor regarding such Contributions.
744        6. Trademarks. This License does not grant permission to use the trade
745           names, trademarks, service marks, or product names of the Licensor,
746           except as required for reasonable and customary use in describing the
747           origin of the Work and reproducing the content of the NOTICE file.
749        7. Disclaimer of Warranty. Unless required by applicable law or
750           agreed to in writing, Licensor provides the Work (and each
751           Contributor provides its Contributions) on an "AS IS" BASIS,
752           WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
753           implied, including, without limitation, any warranties or conditions
754           of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
755           PARTICULAR PURPOSE. You are solely responsible for determining the
756           appropriateness of using or redistributing the Work and assume any
757           risks associated with Your exercise of permissions under this License.
759        8. Limitation of Liability. In no event and under no legal theory,
760           whether in tort (including negligence), contract, or otherwise,
761           unless required by applicable law (such as deliberate and grossly
762           negligent acts) or agreed to in writing, shall any Contributor be
763           liable to You for damages, including any direct, indirect, special,
764           incidental, or consequential damages of any character arising as a
765           result of this License or out of the use or inability to use the
766           Work (including but not limited to damages for loss of goodwill,
767           work stoppage, computer failure or malfunction, or any and all
768           other commercial damages or losses), even if such Contributor
769           has been advised of the possibility of such damages.
771        9. Accepting Warranty or Additional Liability. While redistributing
772           the Work or Derivative Works thereof, You may choose to offer,
773           and charge a fee for, acceptance of support, warranty, indemnity,
774           or other liability obligations and/or rights consistent with this
775           License. However, in accepting such obligations, You may act only
776           on Your own behalf and on Your sole responsibility, not on behalf
777           of any other Contributor, and only if You agree to indemnify,
778           defend, and hold each Contributor harmless for any liability
779           incurred by, or claims asserted against, such Contributor by reason
780           of your accepting any such warranty or additional liability.
782        END OF TERMS AND CONDITIONS
783   """
785 - ICU's license follows:
786   From http://source.icu-project.org/repos/icu/icu/trunk/license.html
787   """
788   ICU License - ICU 1.8.1 and later
790     COPYRIGHT AND PERMISSION NOTICE
792     Copyright (c) 1995-2014 International Business Machines Corporation and others
794     All rights reserved.
796     Permission is hereby granted, free of charge, to any person
797     obtaining a copy of this software and associated documentation
798     files (the "Software"), to deal in the Software without
799     restriction, including without limitation the rights to use, copy,
800     modify, merge, publish, distribute, and/or sell copies of the
801     Software, and to permit persons to whom the Software is furnished
802     to do so, provided that the above copyright notice(s) and this
803     permission notice appear in all copies of the Software and that
804     both the above copyright notice(s) and this permission notice
805     appear in supporting documentation.
807     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
808     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
809     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
810     NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE
811     COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR
812     ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR
813     ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
814     PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
815     TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
816     PERFORMANCE OF THIS SOFTWARE.
818     Except as contained in this notice, the name of a copyright holder
819     shall not be used in advertising or otherwise to promote the sale,
820     use or other dealings in this Software without prior written
821     authorization of the copyright holder.
823     All trademarks and registered trademarks mentioned herein are the
824     property of their respective owners.
826   Third-Party Software Licenses
828     This section contains third-party software notices and/or
829     additional terms for licensed third-party software components
830     included within ICU libraries.
832   1. Unicode Data Files and Software
833     COPYRIGHT AND PERMISSION NOTICE
835     Copyright Â© 1991-2014 Unicode, Inc. All rights reserved.
836     Distributed under the Terms of Use in
837     http://www.unicode.org/copyright.html.
839     Permission is hereby granted, free of charge, to any person obtaining
840     a copy of the Unicode data files and any associated documentation
841     (the "Data Files") or Unicode software and any associated documentation
842     (the "Software") to deal in the Data Files or Software
843     without restriction, including without limitation the rights to use,
844     copy, modify, merge, publish, distribute, and/or sell copies of
845     the Data Files or Software, and to permit persons to whom the Data Files
846     or Software are furnished to do so, provided that
847     (a) this copyright and permission notice appear with all copies
848     of the Data Files or Software,
849     (b) this copyright and permission notice appear in associated
850     documentation, and
851     (c) there is clear notice in each modified Data File or in the Software
852     as well as in the documentation associated with the Data File(s) or
853     Software that the data or software has been modified.
855     THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
856     ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
857     WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
858     NONINFRINGEMENT OF THIRD PARTY RIGHTS.
859     IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
860     NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
861     DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
862     DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
863     TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
864     PERFORMANCE OF THE DATA FILES OR SOFTWARE.
866     Except as contained in this notice, the name of a copyright holder
867     shall not be used in advertising or otherwise to promote the sale,
868     use or other dealings in these Data Files or Software without prior
869     written authorization of the copyright holder.
871   2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
872      #    The Google Chrome software developed by Google is licensed
873      #  under the BSD license. Other software included in this distribution
874      #  is provided under other licenses, as set forth below.
875      #
876      #  The BSD License
877      #  http://opensource.org/licenses/bsd-license.php
878      #  Copyright (C) 2006-2008, Google Inc.
879      #
880      #  All rights reserved.
881      #
882      #  Redistribution and use in source and binary forms, with or
883      #  without modification, are permitted provided that the following
884      #  conditions are met:
885      #
886      #  Redistributions of source code must retain the above copyright
887   notice, this list of conditions and the following disclaimer.
888      #  Redistributions in binary form must reproduce the above
889      #  copyright notice, this list of conditions and the following
890      #  disclaimer in the documentation and/or other materials provided with
891      #  the distribution.
892      #  Neither the name of  Google Inc. nor the names of its
893      #  contributors may be used to endorse or promote products derived from
894      #  this software without specific prior written permission.
895      #
896      #
897      #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
898   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
899   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
900   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
901   DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
902   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
903   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
904   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
905   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
906   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
907   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
908   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
909      #
910      #
911      #  The word list in cjdict.txt are generated by combining three
912   word lists listed
913      #  below with further processing for compound word breaking. The
914   frequency is generated
915      #  with an iterative training against Google web corpora.
916      #
917      #  * Libtabe (Chinese)
918      #    - https://sourceforge.net/project/?group_id=1519
919      #    - Its license terms and conditions are shown below.
920      #
921      #  * IPADIC (Japanese)
922      #    - http://chasen.aist-nara.ac.jp/chasen/distribution.html
923      #    - Its license terms and conditions are shown below.
924      #
925      #  ---------COPYING.libtabe ---- BEGIN--------------------
926      #
927      #  /*
928      #   * Copyrighy (c) 1999 TaBE Project.
929      #   * Copyright (c) 1999 Pai-Hsiang Hsiao.
930      #   * All rights reserved.
931      #   *
932      #   * Redistribution and use in source and binary forms, with or without
933      #   * modification, are permitted provided that the following conditions
934      #   * are met:
935      #   *
936      #   * . Redistributions of source code must retain the above copyright
937      #   *   notice, this list of conditions and the following disclaimer.
938      #   * . Redistributions in binary form must reproduce the above copyright
939      #   *   notice, this list of conditions and the following disclaimer in
940      #   *   the documentation and/or other materials provided with the
941      #   *   distribution.
942      #   * . Neither the name of the TaBE Project nor the names of its
943      #   *   contributors may be used to endorse or promote products derived
944      #   *   from this software without specific prior written permission.
945      #   *
946      #   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
947      #   * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
948      #   * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
949      #   * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
950      #   * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
951      #   * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
952      #   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
953      #   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
954      #   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
955      #   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
956      #   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
957      #   * OF THE POSSIBILITY OF SUCH DAMAGE.
958      #   */
959      #
960      #  /*
961      #   * Copyright (c) 1999 Computer Systems and Communication Lab,
962      #   *                    Institute of Information Science, Academia Sinica.
963      #   * All rights reserved.
964      #   *
965      #   * Redistribution and use in source and binary forms, with or without
966      #   * modification, are permitted provided that the following conditions
967      #   * are met:
968      #   *
969      #   * . Redistributions of source code must retain the above copyright
970      #   *   notice, this list of conditions and the following disclaimer.
971      #   * . Redistributions in binary form must reproduce the above copyright
972      #   *   notice, this list of conditions and the following disclaimer in
973      #   *   the documentation and/or other materials provided with the
974      #   *   distribution.
975      #   * . Neither the name of the Computer Systems and Communication Lab
976      #   *   nor the names of its contributors may be used to endorse or
977      #   *   promote products derived from this software without specific
978      #   *   prior written permission.
979      #   *
980      #   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
981      #   * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
982      #   * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
983      #   * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
984      #   * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
985      #   * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
986      #   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
987      #   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
988      #   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
989      #   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
990      #   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
991      #   * OF THE POSSIBILITY OF SUCH DAMAGE.
992      #   */
993      #
994      #  Copyright 1996 Chih-Hao Tsai @ Beckman Institute, University of Illinois
995      #  c-tsai4@uiuc.edu  http://casper.beckman.uiuc.edu/~c-tsai4
996      #
997      #  ---------------COPYING.libtabe-----END------------------------------------
998      #
999      #
1000      #  ---------------COPYING.ipadic-----BEGIN------------------------------------
1001      #
1002      #  Copyright 2000, 2001, 2002, 2003 Nara Institute of Science
1003      #  and Technology.  All Rights Reserved.
1004      #
1005      #  Use, reproduction, and distribution of this software is permitted.
1006      #  Any copy of this software, whether in its original form or modified,
1007      #  must include both the above copyright notice and the following
1008      #  paragraphs.
1009      #
1010      #  Nara Institute of Science and Technology (NAIST),
1011      #  the copyright holders, disclaims all warranties with regard to this
1012      #  software, including all implied warranties of merchantability and
1013      #  fitness, in no event shall NAIST be liable for
1014      #  any special, indirect or consequential damages or any damages
1015      #  whatsoever resulting from loss of use, data or profits, whether in an
1016      #  action of contract, negligence or other tortuous action, arising out
1017      #  of or in connection with the use or performance of this software.
1018      #
1019      #  A large portion of the dictionary entries
1020      #  originate from ICOT Free Software.  The following conditions for ICOT
1021      #  Free Software applies to the current dictionary as well.
1022      #
1023      #  Each User may also freely distribute the Program, whether in its
1024      #  original form or modified, to any third party or parties, PROVIDED
1025      #  that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
1026      #  on, or be attached to, the Program, which is distributed substantially
1027      #  in the same form as set out herein and that such intended
1028      #  distribution, if actually made, will neither violate or otherwise
1029      #  contravene any of the laws and regulations of the countries having
1030      #  jurisdiction over the User or the intended distribution itself.
1031      #
1032      #  NO WARRANTY
1033      #
1034      #  The program was produced on an experimental basis in the course of the
1035      #  research and development conducted during the project and is provided
1036      #  to users as so produced on an experimental basis.  Accordingly, the
1037      #  program is provided without any warranty whatsoever, whether express,
1038      #  implied, statutory or otherwise.  The term "warranty" used herein
1039      #  includes, but is not limited to, any warranty of the quality,
1040      #  performance, merchantability and fitness for a particular purpose of
1041      #  the program and the nonexistence of any infringement or violation of
1042      #  any right of any third party.
1043      #
1044      #  Each user of the program will agree and understand, and be deemed to
1045      #  have agreed and understood, that there is no warranty whatsoever for
1046      #  the program and, accordingly, the entire risk arising from or
1047      #  otherwise connected with the program is assumed by the user.
1048      #
1049      #  Therefore, neither ICOT, the copyright holder, or any other
1050      #  organization that participated in or was otherwise related to the
1051      #  development of the program and their respective officials, directors,
1052      #  officers and other employees shall be held liable for any and all
1053      #  damages, including, without limitation, general, special, incidental
1054      #  and consequential damages, arising out of or otherwise in connection
1055      #  with the use or inability to use the program or any product, material
1056      #  or result produced or otherwise obtained by using the program,
1057      #  regardless of whether they have been advised of, or otherwise had
1058      #  knowledge of, the possibility of such damages at any time during the
1059      #  project or thereafter.  Each user will be deemed to have agreed to the
1060      #  foregoing by his or her commencement of use of the program.  The term
1061      #  "use" as used herein includes, but is not limited to, the use,
1062      #  modification, copying and distribution of the program and the
1063      #  production of secondary products from the program.
1064      #
1065      #  In the case where the program, whether in its original form or
1066      #  modified, was distributed or delivered to or received by a user from
1067      #  any person, organization or entity other than ICOT, unless it makes or
1068      #  grants independently of ICOT any specific warranty to the user in
1069      #  writing, such person, organization or entity, will also be exempted
1070      #  from and not be held liable to the user for any such damages as noted
1071      #  above as far as the program is concerned.
1072      #
1073      #  ---------------COPYING.ipadic-----END------------------------------------
1075 3. Lao Word Break Dictionary Data (laodict.txt)
1076      #  Copyright (c) 2013 International Business Machines Corporation
1077      #  and others. All Rights Reserved.
1078      #
1079      #  Project:    http://code.google.com/p/lao-dictionary/
1080      #  Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt
1081      #  License:    http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt
1082      #              (copied below)
1083      #
1084      #  This file is derived from the above dictionary, with slight modifications.
1085      #  --------------------------------------------------------------------------------
1086      #  Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.
1087      #  All rights reserved.
1088      #
1089      #  Redistribution and use in source and binary forms, with or without modification,
1090      #  are permitted provided that the following conditions are met:
1091      #
1092      #          Redistributions of source code must retain the above copyright notice, this
1093      #          list of conditions and the following disclaimer. Redistributions in binary
1094      #          form must reproduce the above copyright notice, this list of conditions and
1095      #          the following disclaimer in the documentation and/or other materials
1096      #          provided with the distribution.
1097      #
1098      #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1099      #  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1100      #  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1101      #  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
1102      #  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1103      #  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1104      #  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
1105      #  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1106      #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1107      #  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1108      #  --------------------------------------------------------------------------------
1110   4. Burmese Word Break Dictionary Data (burmesedict.txt)
1111      #  Copyright (c) 2014 International Business Machines Corporation
1112      #  and others. All Rights Reserved.
1113      #
1114      #  This list is part of a project hosted at:
1115      #    github.com/kanyawtech/myanmar-karen-word-lists
1116      #
1117      #  --------------------------------------------------------------------------------
1118      #  Copyright (c) 2013, LeRoy Benjamin Sharon
1119      #  All rights reserved.
1120      #
1121      #  Redistribution and use in source and binary forms, with or without modification,
1122      #  are permitted provided that the following conditions are met:
1123      #
1124      #    Redistributions of source code must retain the above copyright notice, this
1125      #    list of conditions and the following disclaimer.
1126      #
1127      #    Redistributions in binary form must reproduce the above copyright notice, this
1128      #    list of conditions and the following disclaimer in the documentation and/or
1129      #    other materials provided with the distribution.
1130      #
1131      #    Neither the name Myanmar Karen Word Lists, nor the names of its
1132      #    contributors may be used to endorse or promote products derived from
1133      #    this software without specific prior written permission.
1134      #
1135      #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1136      #  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1137      #  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1138      #  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
1139      #  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1140      #  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1141      #  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
1142      #  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1143      #  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1144      #  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1145      #  --------------------------------------------------------------------------------
1147     5. Time Zone Database
1148     ICU uses the public domain data and code derived from Time Zone
1149     Database for its time zone support. The ownership of the TZ
1150     database is explained in BCP 175: Procedure for Maintaining the
1151     Time Zone Database section 7.
1153         7.  Database Ownership
1155        The TZ database itself is not an IETF Contribution or an IETF
1156        document.  Rather it is a pre-existing and regularly updated work
1157        that is in the public domain, and is intended to remain in the public
1158        domain.  Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do not apply
1159        to the TZ Database or contributions that individuals make to it.
1160        Should any claims be made and substantiated against the TZ Database,
1161        the organization that is providing the IANA Considerations defined in
1162        this RFC, under the memorandum of understanding with the IETF,
1163        currently ICANN, may act in accordance with all competent court
1164        orders.  No ownership claims will be made by ICANN or the IETF Trust
1165        on the database or the code.  Any person making a contribution to the
1166        database or code waives all rights to future claims in that
1167        contribution or in the TZ Database.
1168   """