@azure/ai-vision-face-ui 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/FaceLivenessDetector.js +57 -0
- package/LICENSE.md +136 -0
- package/README.md +161 -0
- package/REDIST.txt +11 -0
- package/ThirdPartyNotices.txt +1195 -0
- package/package.json +11 -0
- package/types/FaceLivenessDetector.d.ts +194 -0
- package/types/index.d.ts +1 -0
|
@@ -0,0 +1,1195 @@
|
|
|
1
|
+
NOTICES AND INFORMATION
|
|
2
|
+
Do Not Translate or Localize
|
|
3
|
+
|
|
4
|
+
This software incorporates material from third parties.
|
|
5
|
+
Microsoft makes certain open source code available at https://3rdpartysource.microsoft.com,
|
|
6
|
+
or you may send a check or money order for US $5.00, including the product name,
|
|
7
|
+
the open source component name, platform, and version number, to:
|
|
8
|
+
|
|
9
|
+
Source Code Compliance Team
|
|
10
|
+
Microsoft Corporation
|
|
11
|
+
One Microsoft Way
|
|
12
|
+
Redmond, WA 98052
|
|
13
|
+
USA
|
|
14
|
+
|
|
15
|
+
Notwithstanding any other terms, you may reverse engineer this software to the extent
|
|
16
|
+
required to debug changes to any libraries licensed under the GNU Lesser General Public License.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
---------------------------------------------------------
|
|
20
|
+
|
|
21
|
+
The Android Open Source Project
|
|
22
|
+
|
|
23
|
+
Copyright (C) 2017 The Android Open Source Project
|
|
24
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
25
|
+
you may not use this file except in compliance with the License.
|
|
26
|
+
You may obtain a copy of the License at
|
|
27
|
+
|
|
28
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
29
|
+
|
|
30
|
+
Unless required by applicable law or agreed to in writing, software
|
|
31
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
32
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
33
|
+
See the License for the specific language governing permissions and
|
|
34
|
+
limitations under the License.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
---------------------------------------------------------
|
|
38
|
+
|
|
39
|
+
The LLVM Compiler Infrastructure
|
|
40
|
+
|
|
41
|
+
==============================================================================
|
|
42
|
+
LLVM Release License
|
|
43
|
+
==============================================================================
|
|
44
|
+
University of Illinois/NCSA
|
|
45
|
+
Open Source License
|
|
46
|
+
|
|
47
|
+
Copyright (c) 2003-2017 University of Illinois at Urbana-Champaign.
|
|
48
|
+
All rights reserved.
|
|
49
|
+
|
|
50
|
+
Developed by:
|
|
51
|
+
|
|
52
|
+
LLVM Team
|
|
53
|
+
|
|
54
|
+
University of Illinois at Urbana-Champaign
|
|
55
|
+
|
|
56
|
+
http://llvm.org
|
|
57
|
+
|
|
58
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
59
|
+
this software and associated documentation files (the "Software"), to deal with
|
|
60
|
+
the Software without restriction, including without limitation the rights to
|
|
61
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
62
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
63
|
+
so, subject to the following conditions:
|
|
64
|
+
|
|
65
|
+
* Redistributions of source code must retain the above copyright notice,
|
|
66
|
+
this list of conditions and the following disclaimers.
|
|
67
|
+
|
|
68
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
69
|
+
this list of conditions and the following disclaimers in the
|
|
70
|
+
documentation and/or other materials provided with the distribution.
|
|
71
|
+
|
|
72
|
+
* Neither the names of the LLVM Team, University of Illinois at
|
|
73
|
+
Urbana-Champaign, nor the names of its contributors may be used to
|
|
74
|
+
endorse or promote products derived from this Software without specific
|
|
75
|
+
prior written permission.
|
|
76
|
+
|
|
77
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
78
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
79
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
80
|
+
CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
81
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
82
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
|
|
83
|
+
SOFTWARE.
|
|
84
|
+
|
|
85
|
+
==============================================================================
|
|
86
|
+
Copyrights and Licenses for Third Party Software Distributed with LLVM:
|
|
87
|
+
==============================================================================
|
|
88
|
+
The LLVM software contains code written by third parties. Such software will
|
|
89
|
+
have its own individual LICENSE.TXT file in the directory in which it appears.
|
|
90
|
+
This file will describe the copyrights, license, and restrictions which apply
|
|
91
|
+
to that code.
|
|
92
|
+
|
|
93
|
+
The disclaimer of warranty in the University of Illinois Open Source License
|
|
94
|
+
applies to all code in the LLVM Distribution, and nothing in any of the
|
|
95
|
+
other licenses gives permission to use the names of the LLVM Team or the
|
|
96
|
+
University of Illinois to endorse or promote products derived from this
|
|
97
|
+
Software.
|
|
98
|
+
|
|
99
|
+
The following pieces of software have additional or alternate copyrights,
|
|
100
|
+
licenses, and/or restrictions:
|
|
101
|
+
|
|
102
|
+
Program Directory
|
|
103
|
+
------- ---------
|
|
104
|
+
Google Test llvm/utils/unittest/googletest
|
|
105
|
+
OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex}
|
|
106
|
+
pyyaml tests llvm/test/YAMLParser/{*.data, LICENSE.TXT}
|
|
107
|
+
ARM contributions llvm/lib/Target/ARM/LICENSE.TXT
|
|
108
|
+
md5 contributions llvm/lib/Support/MD5.cpp llvm/include/llvm/Support/MD5.h
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
---------------------------------------------------------
|
|
113
|
+
|
|
114
|
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
115
|
+
defined by the Mozilla Public License, v. 2.0.
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
---------------------------------------------------------
|
|
120
|
+
Source: azure-core-cpp
|
|
121
|
+
Version: 1.12.0
|
|
122
|
+
Homepage: https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/core/azure-core
|
|
123
|
+
|
|
124
|
+
MIT License
|
|
125
|
+
|
|
126
|
+
Copyright (c) Microsoft Corporation.
|
|
127
|
+
|
|
128
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
129
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
130
|
+
in the Software without restriction, including without limitation the rights
|
|
131
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
132
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
133
|
+
furnished to do so, subject to the following conditions:
|
|
134
|
+
|
|
135
|
+
The above copyright notice and this permission notice shall be included in all
|
|
136
|
+
copies or substantial portions of the Software.
|
|
137
|
+
|
|
138
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
139
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
140
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
141
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
142
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
143
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
144
|
+
SOFTWARE
|
|
145
|
+
|
|
146
|
+
---------------------------------------------------------
|
|
147
|
+
curl 8.8.0
|
|
148
|
+
|
|
149
|
+
COPYRIGHT AND PERMISSION NOTICE
|
|
150
|
+
|
|
151
|
+
Copyright (c) 1996 - 2024, Daniel Stenberg, <daniel@haxx.se>, and many
|
|
152
|
+
contributors, see the THANKS file.
|
|
153
|
+
|
|
154
|
+
All rights reserved.
|
|
155
|
+
|
|
156
|
+
Permission to use, copy, modify, and distribute this software for any purpose
|
|
157
|
+
with or without fee is hereby granted, provided that the above copyright
|
|
158
|
+
notice and this permission notice appear in all copies.
|
|
159
|
+
|
|
160
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
161
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
162
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN
|
|
163
|
+
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
164
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
165
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
166
|
+
OR OTHER DEALINGS IN THE SOFTWARE.
|
|
167
|
+
|
|
168
|
+
Except as contained in this notice, the name of a copyright holder shall not
|
|
169
|
+
be used in advertising or otherwise to promote the sale, use or other dealings
|
|
170
|
+
in this Software without prior written authorization of the copyright holder.
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
krb5.c Notice:
|
|
174
|
+
|
|
175
|
+
/* GSSAPI/krb5 support for FTP - loosely based on old krb4.c
|
|
176
|
+
*
|
|
177
|
+
* Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Högskolan
|
|
178
|
+
* (Royal Institute of Technology, Stockholm, Sweden).
|
|
179
|
+
* Copyright (C) Daniel Stenberg
|
|
180
|
+
* All rights reserved.
|
|
181
|
+
*
|
|
182
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
183
|
+
*
|
|
184
|
+
* Redistribution and use in source and binary forms, with or without
|
|
185
|
+
* modification, are permitted provided that the following conditions
|
|
186
|
+
* are met:
|
|
187
|
+
*
|
|
188
|
+
* 1. Redistributions of source code must retain the above copyright
|
|
189
|
+
* notice, this list of conditions and the following disclaimer.
|
|
190
|
+
*
|
|
191
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
|
192
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
193
|
+
* documentation and/or other materials provided with the distribution.
|
|
194
|
+
*
|
|
195
|
+
* 3. Neither the name of the Institute nor the names of its contributors
|
|
196
|
+
* may be used to endorse or promote products derived from this software
|
|
197
|
+
* without specific prior written permission.
|
|
198
|
+
*
|
|
199
|
+
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
200
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
201
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
202
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
203
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
204
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
205
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
206
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
207
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
208
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
209
|
+
* SUCH DAMAGE. */
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
inet_ntop.c and inet_pton.c Notice:
|
|
214
|
+
|
|
215
|
+
/*
|
|
216
|
+
* Copyright (C) 1996-2022 Internet Software Consortium.
|
|
217
|
+
*
|
|
218
|
+
* Permission to use, copy, modify, and distribute this software for any
|
|
219
|
+
* purpose with or without fee is hereby granted, provided that the above
|
|
220
|
+
* copyright notice and this permission notice appear in all copies.
|
|
221
|
+
*
|
|
222
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
223
|
+
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
224
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
225
|
+
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
226
|
+
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
227
|
+
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
228
|
+
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
229
|
+
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
230
|
+
*
|
|
231
|
+
* SPDX-License-Identifier: ISC
|
|
232
|
+
*/
|
|
233
|
+
/*
|
|
234
|
+
* Original code by Paul Vixie. "curlified" by Gisle Vanem.
|
|
235
|
+
*/
|
|
236
|
+
|
|
237
|
+
---------------------------------------------------------
|
|
238
|
+
Source: emscripten
|
|
239
|
+
Version: 3.1.41
|
|
240
|
+
Homepage: https://github.com/emscripten-core/emscripten
|
|
241
|
+
|
|
242
|
+
Emscripten is available under 2 licenses, the MIT license and the
|
|
243
|
+
University of Illinois/NCSA Open Source License.
|
|
244
|
+
|
|
245
|
+
Both are permissive open source licenses, with little if any
|
|
246
|
+
practical difference between them.
|
|
247
|
+
|
|
248
|
+
The reason for offering both is that (1) the MIT license is
|
|
249
|
+
well-known, while (2) the University of Illinois/NCSA Open Source
|
|
250
|
+
License allows Emscripten's code to be integrated upstream into
|
|
251
|
+
LLVM, which uses that license, should the opportunity arise.
|
|
252
|
+
|
|
253
|
+
The full text of both licenses follows.
|
|
254
|
+
|
|
255
|
+
==============================================================================
|
|
256
|
+
|
|
257
|
+
Copyright (c) 2010-2014 Emscripten authors, see AUTHORS file.
|
|
258
|
+
|
|
259
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
260
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
261
|
+
in the Software without restriction, including without limitation the rights
|
|
262
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
263
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
264
|
+
furnished to do so, subject to the following conditions:
|
|
265
|
+
|
|
266
|
+
The above copyright notice and this permission notice shall be included in
|
|
267
|
+
all copies or substantial portions of the Software.
|
|
268
|
+
|
|
269
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
270
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
271
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
272
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
273
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
274
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
275
|
+
THE SOFTWARE.
|
|
276
|
+
|
|
277
|
+
==============================================================================
|
|
278
|
+
|
|
279
|
+
Copyright (c) 2010-2014 Emscripten authors, see AUTHORS file.
|
|
280
|
+
All rights reserved.
|
|
281
|
+
|
|
282
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
283
|
+
copy of this software and associated documentation files (the
|
|
284
|
+
"Software"), to deal with the Software without restriction, including
|
|
285
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
286
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
287
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
288
|
+
the following conditions:
|
|
289
|
+
|
|
290
|
+
Redistributions of source code must retain the above copyright
|
|
291
|
+
notice, this list of conditions and the following disclaimers.
|
|
292
|
+
|
|
293
|
+
Redistributions in binary form must reproduce the above
|
|
294
|
+
copyright notice, this list of conditions and the following disclaimers
|
|
295
|
+
in the documentation and/or other materials provided with the
|
|
296
|
+
distribution.
|
|
297
|
+
|
|
298
|
+
Neither the names of Mozilla,
|
|
299
|
+
nor the names of its contributors may be used to endorse
|
|
300
|
+
or promote products derived from this Software without specific prior
|
|
301
|
+
written permission.
|
|
302
|
+
|
|
303
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
304
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
305
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
306
|
+
IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
307
|
+
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
308
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
309
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE.
|
|
310
|
+
|
|
311
|
+
==============================================================================
|
|
312
|
+
|
|
313
|
+
This program uses portions of Node.js source code located in src/library_path.js,
|
|
314
|
+
in accordance with the terms of the MIT license. Node's license follows:
|
|
315
|
+
|
|
316
|
+
"""
|
|
317
|
+
Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
318
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
319
|
+
of this software and associated documentation files (the "Software"), to
|
|
320
|
+
deal in the Software without restriction, including without limitation the
|
|
321
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
322
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
|
323
|
+
furnished to do so, subject to the following conditions:
|
|
324
|
+
|
|
325
|
+
The above copyright notice and this permission notice shall be included in
|
|
326
|
+
all copies or substantial portions of the Software.
|
|
327
|
+
|
|
328
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
329
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
330
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
331
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
332
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
333
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
334
|
+
IN THE SOFTWARE.
|
|
335
|
+
"""
|
|
336
|
+
|
|
337
|
+
The musl libc project is bundled in this repo, and it has the MIT license, see
|
|
338
|
+
system/lib/libc/musl/COPYRIGHT
|
|
339
|
+
|
|
340
|
+
The third_party/ subdirectory contains code with other licenses. None of it is
|
|
341
|
+
used by default, but certain options use it (e.g., the optional closure compiler
|
|
342
|
+
flag will run closure compiler from third_party/).
|
|
343
|
+
|
|
344
|
+
---------------------------------------------------------
|
|
345
|
+
|
|
346
|
+
emsdk
|
|
347
|
+
|
|
348
|
+
MIT/Expat license
|
|
349
|
+
|
|
350
|
+
https://github.com/emscripten-core/emsdk
|
|
351
|
+
|
|
352
|
+
Copyright (c) 2018 Emscripten authors (see AUTHORS in Emscripten)
|
|
353
|
+
|
|
354
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
355
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
356
|
+
in the Software without restriction, including without limitation the rights
|
|
357
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
358
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
359
|
+
furnished to do so, subject to the following conditions:
|
|
360
|
+
|
|
361
|
+
The above copyright notice and this permission notice shall be included in all
|
|
362
|
+
copies or substantial portions of the Software.
|
|
363
|
+
|
|
364
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
365
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
366
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
367
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
368
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
369
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
370
|
+
SOFTWARE.
|
|
371
|
+
|
|
372
|
+
----------------------------------------------------------------------------
|
|
373
|
+
|
|
374
|
+
This is the MIT/Expat Licence. For more information see:
|
|
375
|
+
|
|
376
|
+
1. http://www.opensource.org/licenses/mit-license.php
|
|
377
|
+
|
|
378
|
+
2. http://en.wikipedia.org/wiki/MIT_License
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
---------------------------------------------------------
|
|
382
|
+
|
|
383
|
+
---------------------------------------------------------
|
|
384
|
+
Source: fmt
|
|
385
|
+
Version: 10.2.1
|
|
386
|
+
Homepage: https://github.com/fmtlib/fmt
|
|
387
|
+
|
|
388
|
+
Copyright (c) 2012 - present, Victor Zverovich and {fmt} contributors
|
|
389
|
+
|
|
390
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
391
|
+
a copy of this software and associated documentation files (the
|
|
392
|
+
"Software"), to deal in the Software without restriction, including
|
|
393
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
394
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
395
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
396
|
+
the following conditions:
|
|
397
|
+
|
|
398
|
+
The above copyright notice and this permission notice shall be
|
|
399
|
+
included in all copies or substantial portions of the Software.
|
|
400
|
+
|
|
401
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
402
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
403
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
404
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
405
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
406
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
407
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
408
|
+
|
|
409
|
+
--- Optional exception to the license ---
|
|
410
|
+
|
|
411
|
+
As an exception, if, as a result of your compiling your source code, portions
|
|
412
|
+
of this Software are embedded into a machine-executable object form of such
|
|
413
|
+
source code, you may redistribute such embedded portions in such object form
|
|
414
|
+
without including the above copyright and permission notices.
|
|
415
|
+
|
|
416
|
+
---------------------------------------------------------
|
|
417
|
+
libjpeg-turbo 3.0.3
|
|
418
|
+
|
|
419
|
+
libjpeg-turbo is covered by two compatible BSD-style open source licenses:
|
|
420
|
+
|
|
421
|
+
- The IJG (Independent JPEG Group) License, which is listed in
|
|
422
|
+
[README.ijg](README.ijg)
|
|
423
|
+
|
|
424
|
+
This license applies to the libjpeg API library and associated programs,
|
|
425
|
+
including any code inherited from libjpeg and any modifications to that
|
|
426
|
+
code. Note that the libjpeg-turbo SIMD source code bears the
|
|
427
|
+
[zlib License](https://opensource.org/licenses/Zlib), but in the context of
|
|
428
|
+
the overall libjpeg API library, the terms of the zlib License are subsumed
|
|
429
|
+
by the terms of the IJG License.
|
|
430
|
+
|
|
431
|
+
- The Modified (3-clause) BSD License, which is listed below
|
|
432
|
+
|
|
433
|
+
This license applies to the TurboJPEG API library and associated programs, as
|
|
434
|
+
well as the build system. Note that the TurboJPEG API library wraps the
|
|
435
|
+
libjpeg API library, so in the context of the overall TurboJPEG API library,
|
|
436
|
+
both the terms of the IJG License and the terms of the Modified (3-clause)
|
|
437
|
+
BSD License apply.
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
Complying with the libjpeg-turbo Licenses
|
|
441
|
+
=========================================
|
|
442
|
+
|
|
443
|
+
This section provides a roll-up of the libjpeg-turbo licensing terms, to the
|
|
444
|
+
best of our understanding. This is not a license in and of itself. It is
|
|
445
|
+
intended solely for clarification.
|
|
446
|
+
|
|
447
|
+
1. If you are distributing a modified version of the libjpeg-turbo source,
|
|
448
|
+
then:
|
|
449
|
+
|
|
450
|
+
1. You cannot alter or remove any existing copyright or license notices
|
|
451
|
+
from the source.
|
|
452
|
+
|
|
453
|
+
**Origin**
|
|
454
|
+
- Clause 1 of the IJG License
|
|
455
|
+
- Clause 1 of the Modified BSD License
|
|
456
|
+
- Clauses 1 and 3 of the zlib License
|
|
457
|
+
|
|
458
|
+
2. You must add your own copyright notice to the header of each source
|
|
459
|
+
file you modified, so others can tell that you modified that file. (If
|
|
460
|
+
there is not an existing copyright header in that file, then you can
|
|
461
|
+
simply add a notice stating that you modified the file.)
|
|
462
|
+
|
|
463
|
+
**Origin**
|
|
464
|
+
- Clause 1 of the IJG License
|
|
465
|
+
- Clause 2 of the zlib License
|
|
466
|
+
|
|
467
|
+
3. You must include the IJG README file, and you must not alter any of the
|
|
468
|
+
copyright or license text in that file.
|
|
469
|
+
|
|
470
|
+
**Origin**
|
|
471
|
+
- Clause 1 of the IJG License
|
|
472
|
+
|
|
473
|
+
2. If you are distributing only libjpeg-turbo binaries without the source, or
|
|
474
|
+
if you are distributing an application that statically links with
|
|
475
|
+
libjpeg-turbo, then:
|
|
476
|
+
|
|
477
|
+
1. Your product documentation must include a message stating:
|
|
478
|
+
|
|
479
|
+
This software is based in part on the work of the Independent JPEG
|
|
480
|
+
Group.
|
|
481
|
+
|
|
482
|
+
**Origin**
|
|
483
|
+
- Clause 2 of the IJG license
|
|
484
|
+
|
|
485
|
+
2. If your binary distribution includes or uses the TurboJPEG API, then
|
|
486
|
+
your product documentation must include the text of the Modified BSD
|
|
487
|
+
License (see below.)
|
|
488
|
+
|
|
489
|
+
**Origin**
|
|
490
|
+
- Clause 2 of the Modified BSD License
|
|
491
|
+
|
|
492
|
+
3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
|
|
493
|
+
contributors thereof in advertising, publicity, etc.
|
|
494
|
+
|
|
495
|
+
**Origin**
|
|
496
|
+
- IJG License
|
|
497
|
+
- Clause 3 of the Modified BSD License
|
|
498
|
+
|
|
499
|
+
4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be
|
|
500
|
+
free of defects, nor do we accept any liability for undesirable
|
|
501
|
+
consequences resulting from your use of the software.
|
|
502
|
+
|
|
503
|
+
**Origin**
|
|
504
|
+
- IJG License
|
|
505
|
+
- Modified BSD License
|
|
506
|
+
- zlib License
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
The Modified (3-clause) BSD License
|
|
510
|
+
===================================
|
|
511
|
+
|
|
512
|
+
Copyright (C)2009-2023 D. R. Commander. All Rights Reserved.<br>
|
|
513
|
+
Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
|
|
514
|
+
|
|
515
|
+
Redistribution and use in source and binary forms, with or without
|
|
516
|
+
modification, are permitted provided that the following conditions are met:
|
|
517
|
+
|
|
518
|
+
- Redistributions of source code must retain the above copyright notice,
|
|
519
|
+
this list of conditions and the following disclaimer.
|
|
520
|
+
- Redistributions in binary form must reproduce the above copyright notice,
|
|
521
|
+
this list of conditions and the following disclaimer in the documentation
|
|
522
|
+
and/or other materials provided with the distribution.
|
|
523
|
+
- Neither the name of the libjpeg-turbo Project nor the names of its
|
|
524
|
+
contributors may be used to endorse or promote products derived from this
|
|
525
|
+
software without specific prior written permission.
|
|
526
|
+
|
|
527
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
|
|
528
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
529
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
530
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
|
|
531
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
532
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
533
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
534
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
535
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
536
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
537
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
Why Two Licenses?
|
|
541
|
+
=================
|
|
542
|
+
|
|
543
|
+
The zlib License could have been used instead of the Modified (3-clause) BSD
|
|
544
|
+
License, and since the IJG License effectively subsumes the distribution
|
|
545
|
+
conditions of the zlib License, this would have effectively placed
|
|
546
|
+
libjpeg-turbo binary distributions under the IJG License. However, the IJG
|
|
547
|
+
License specifically refers to the Independent JPEG Group and does not extend
|
|
548
|
+
attribution and endorsement protections to other entities. Thus, it was
|
|
549
|
+
desirable to choose a license that granted us the same protections for new code
|
|
550
|
+
that were granted to the IJG for code derived from their software.
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
---------------------------------------------------------
|
|
554
|
+
Source: libpng
|
|
555
|
+
Version: 1.6.43
|
|
556
|
+
Homepage: https://github.com/glennrp/libpng
|
|
557
|
+
|
|
558
|
+
COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
|
|
559
|
+
=========================================
|
|
560
|
+
|
|
561
|
+
PNG Reference Library License version 2
|
|
562
|
+
---------------------------------------
|
|
563
|
+
|
|
564
|
+
* Copyright (c) 1995-2024 The PNG Reference Library Authors.
|
|
565
|
+
* Copyright (c) 2018-2024 Cosmin Truta.
|
|
566
|
+
* Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
|
|
567
|
+
* Copyright (c) 1996-1997 Andreas Dilger.
|
|
568
|
+
* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
|
|
569
|
+
|
|
570
|
+
The software is supplied "as is", without warranty of any kind,
|
|
571
|
+
express or implied, including, without limitation, the warranties
|
|
572
|
+
of merchantability, fitness for a particular purpose, title, and
|
|
573
|
+
non-infringement. In no event shall the Copyright owners, or
|
|
574
|
+
anyone distributing the software, be liable for any damages or
|
|
575
|
+
other liability, whether in contract, tort or otherwise, arising
|
|
576
|
+
from, out of, or in connection with the software, or the use or
|
|
577
|
+
other dealings in the software, even if advised of the possibility
|
|
578
|
+
of such damage.
|
|
579
|
+
|
|
580
|
+
Permission is hereby granted to use, copy, modify, and distribute
|
|
581
|
+
this software, or portions hereof, for any purpose, without fee,
|
|
582
|
+
subject to the following restrictions:
|
|
583
|
+
|
|
584
|
+
1. The origin of this software must not be misrepresented; you
|
|
585
|
+
must not claim that you wrote the original software. If you
|
|
586
|
+
use this software in a product, an acknowledgment in the product
|
|
587
|
+
documentation would be appreciated, but is not required.
|
|
588
|
+
|
|
589
|
+
2. Altered source versions must be plainly marked as such, and must
|
|
590
|
+
not be misrepresented as being the original software.
|
|
591
|
+
|
|
592
|
+
3. This Copyright notice may not be removed or altered from any
|
|
593
|
+
source or altered source distribution.
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35)
|
|
597
|
+
-----------------------------------------------------------------------
|
|
598
|
+
|
|
599
|
+
libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are
|
|
600
|
+
Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are
|
|
601
|
+
derived from libpng-1.0.6, and are distributed according to the same
|
|
602
|
+
disclaimer and license as libpng-1.0.6 with the following individuals
|
|
603
|
+
added to the list of Contributing Authors:
|
|
604
|
+
|
|
605
|
+
Simon-Pierre Cadieux
|
|
606
|
+
Eric S. Raymond
|
|
607
|
+
Mans Rullgard
|
|
608
|
+
Cosmin Truta
|
|
609
|
+
Gilles Vollant
|
|
610
|
+
James Yu
|
|
611
|
+
Mandar Sahastrabuddhe
|
|
612
|
+
Google Inc.
|
|
613
|
+
Vadim Barkov
|
|
614
|
+
|
|
615
|
+
and with the following additions to the disclaimer:
|
|
616
|
+
|
|
617
|
+
There is no warranty against interference with your enjoyment of
|
|
618
|
+
the library or against infringement. There is no warranty that our
|
|
619
|
+
efforts or the library will fulfill any of your particular purposes
|
|
620
|
+
or needs. This library is provided with all faults, and the entire
|
|
621
|
+
risk of satisfactory quality, performance, accuracy, and effort is
|
|
622
|
+
with the user.
|
|
623
|
+
|
|
624
|
+
Some files in the "contrib" directory and some configure-generated
|
|
625
|
+
files that are distributed with libpng have other copyright owners, and
|
|
626
|
+
are released under other open source licenses.
|
|
627
|
+
|
|
628
|
+
libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
|
|
629
|
+
Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
|
|
630
|
+
libpng-0.96, and are distributed according to the same disclaimer and
|
|
631
|
+
license as libpng-0.96, with the following individuals added to the
|
|
632
|
+
list of Contributing Authors:
|
|
633
|
+
|
|
634
|
+
Tom Lane
|
|
635
|
+
Glenn Randers-Pehrson
|
|
636
|
+
Willem van Schaik
|
|
637
|
+
|
|
638
|
+
libpng versions 0.89, June 1996, through 0.96, May 1997, are
|
|
639
|
+
Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
|
|
640
|
+
and are distributed according to the same disclaimer and license as
|
|
641
|
+
libpng-0.88, with the following individuals added to the list of
|
|
642
|
+
Contributing Authors:
|
|
643
|
+
|
|
644
|
+
John Bowler
|
|
645
|
+
Kevin Bracey
|
|
646
|
+
Sam Bushell
|
|
647
|
+
Magnus Holmgren
|
|
648
|
+
Greg Roelofs
|
|
649
|
+
Tom Tanner
|
|
650
|
+
|
|
651
|
+
Some files in the "scripts" directory have other copyright owners,
|
|
652
|
+
but are released under this license.
|
|
653
|
+
|
|
654
|
+
libpng versions 0.5, May 1995, through 0.88, January 1996, are
|
|
655
|
+
Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
|
|
656
|
+
|
|
657
|
+
For the purposes of this copyright and license, "Contributing Authors"
|
|
658
|
+
is defined as the following set of individuals:
|
|
659
|
+
|
|
660
|
+
Andreas Dilger
|
|
661
|
+
Dave Martindale
|
|
662
|
+
Guy Eric Schalnat
|
|
663
|
+
Paul Schmidt
|
|
664
|
+
Tim Wegner
|
|
665
|
+
|
|
666
|
+
The PNG Reference Library is supplied "AS IS". The Contributing
|
|
667
|
+
Authors and Group 42, Inc. disclaim all warranties, expressed or
|
|
668
|
+
implied, including, without limitation, the warranties of
|
|
669
|
+
merchantability and of fitness for any purpose. The Contributing
|
|
670
|
+
Authors and Group 42, Inc. assume no liability for direct, indirect,
|
|
671
|
+
incidental, special, exemplary, or consequential damages, which may
|
|
672
|
+
result from the use of the PNG Reference Library, even if advised of
|
|
673
|
+
the possibility of such damage.
|
|
674
|
+
|
|
675
|
+
Permission is hereby granted to use, copy, modify, and distribute this
|
|
676
|
+
source code, or portions hereof, for any purpose, without fee, subject
|
|
677
|
+
to the following restrictions:
|
|
678
|
+
|
|
679
|
+
1. The origin of this source code must not be misrepresented.
|
|
680
|
+
|
|
681
|
+
2. Altered versions must be plainly marked as such and must not
|
|
682
|
+
be misrepresented as being the original source.
|
|
683
|
+
|
|
684
|
+
3. This Copyright notice may not be removed or altered from any
|
|
685
|
+
source or altered source distribution.
|
|
686
|
+
|
|
687
|
+
The Contributing Authors and Group 42, Inc. specifically permit,
|
|
688
|
+
without fee, and encourage the use of this source code as a component
|
|
689
|
+
to supporting the PNG file format in commercial products. If you use
|
|
690
|
+
this source code in a product, acknowledgment is not required but would
|
|
691
|
+
be appreciated.
|
|
692
|
+
|
|
693
|
+
---------------------------------------------------------
|
|
694
|
+
libwebp 1.4.0
|
|
695
|
+
|
|
696
|
+
Copyright (c) 2010, Google Inc. All rights reserved.
|
|
697
|
+
|
|
698
|
+
Redistribution and use in source and binary forms, with or without
|
|
699
|
+
modification, are permitted provided that the following conditions are
|
|
700
|
+
met:
|
|
701
|
+
|
|
702
|
+
* Redistributions of source code must retain the above copyright
|
|
703
|
+
notice, this list of conditions and the following disclaimer.
|
|
704
|
+
|
|
705
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
706
|
+
notice, this list of conditions and the following disclaimer in
|
|
707
|
+
the documentation and/or other materials provided with the
|
|
708
|
+
distribution.
|
|
709
|
+
|
|
710
|
+
* Neither the name of Google nor the names of its contributors may
|
|
711
|
+
be used to endorse or promote products derived from this software
|
|
712
|
+
without specific prior written permission.
|
|
713
|
+
|
|
714
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
715
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
716
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
717
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
718
|
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
719
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
720
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
721
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
722
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
723
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
724
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
725
|
+
|
|
726
|
+
---------------------------------------------------------
|
|
727
|
+
Source: ms-gsl
|
|
728
|
+
Version: 4.0.0
|
|
729
|
+
Homepage: https://github.com/Microsoft/GSL
|
|
730
|
+
|
|
731
|
+
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
732
|
+
|
|
733
|
+
This code is licensed under the MIT License (MIT).
|
|
734
|
+
|
|
735
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
736
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
737
|
+
in the Software without restriction, including without limitation the rights
|
|
738
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
739
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
740
|
+
so, subject to the following conditions:
|
|
741
|
+
|
|
742
|
+
The above copyright notice and this permission notice shall be included in all
|
|
743
|
+
copies or substantial portions of the Software.
|
|
744
|
+
|
|
745
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
746
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
747
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
748
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
749
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
750
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
751
|
+
THE SOFTWARE.
|
|
752
|
+
|
|
753
|
+
---------------------------------------------------------
|
|
754
|
+
Source: mstelemetry
|
|
755
|
+
Version: 3.4.999
|
|
756
|
+
Homepage: https://github.com/microsoft/cpp_client_telemetry
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
Apache License
|
|
761
|
+
Version 2.0, January 2004
|
|
762
|
+
http://www.apache.org/licenses/
|
|
763
|
+
|
|
764
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
765
|
+
|
|
766
|
+
1. Definitions.
|
|
767
|
+
|
|
768
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
769
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
770
|
+
|
|
771
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
772
|
+
the copyright owner that is granting the License.
|
|
773
|
+
|
|
774
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
775
|
+
other entities that control, are controlled by, or are under common
|
|
776
|
+
control with that entity. For the purposes of this definition,
|
|
777
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
778
|
+
direction or management of such entity, whether by contract or
|
|
779
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
780
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
781
|
+
|
|
782
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
783
|
+
exercising permissions granted by this License.
|
|
784
|
+
|
|
785
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
786
|
+
including but not limited to software source code, documentation
|
|
787
|
+
source, and configuration files.
|
|
788
|
+
|
|
789
|
+
"Object" form shall mean any form resulting from mechanical
|
|
790
|
+
transformation or translation of a Source form, including but
|
|
791
|
+
not limited to compiled object code, generated documentation,
|
|
792
|
+
and conversions to other media types.
|
|
793
|
+
|
|
794
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
795
|
+
Object form, made available under the License, as indicated by a
|
|
796
|
+
copyright notice that is included in or attached to the work
|
|
797
|
+
(an example is provided in the Appendix below).
|
|
798
|
+
|
|
799
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
800
|
+
form, that is based on (or derived from) the Work and for which the
|
|
801
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
802
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
803
|
+
of this License, Derivative Works shall not include works that remain
|
|
804
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
805
|
+
the Work and Derivative Works thereof.
|
|
806
|
+
|
|
807
|
+
"Contribution" shall mean any work of authorship, including
|
|
808
|
+
the original version of the Work and any modifications or additions
|
|
809
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
810
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
811
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
812
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
813
|
+
means any form of electronic, verbal, or written communication sent
|
|
814
|
+
to the Licensor or its representatives, including but not limited to
|
|
815
|
+
communication on electronic mailing lists, source code control systems,
|
|
816
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
817
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
818
|
+
excluding communication that is conspicuously marked or otherwise
|
|
819
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
820
|
+
|
|
821
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
822
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
823
|
+
subsequently incorporated within the Work.
|
|
824
|
+
|
|
825
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
826
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
827
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
828
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
829
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
830
|
+
Work and such Derivative Works in Source or Object form.
|
|
831
|
+
|
|
832
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
833
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
834
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
835
|
+
(except as stated in this section) patent license to make, have made,
|
|
836
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
837
|
+
where such license applies only to those patent claims licensable
|
|
838
|
+
by such Contributor that are necessarily infringed by their
|
|
839
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
840
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
841
|
+
institute patent litigation against any entity (including a
|
|
842
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
843
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
844
|
+
or contributory patent infringement, then any patent licenses
|
|
845
|
+
granted to You under this License for that Work shall terminate
|
|
846
|
+
as of the date such litigation is filed.
|
|
847
|
+
|
|
848
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
849
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
850
|
+
modifications, and in Source or Object form, provided that You
|
|
851
|
+
meet the following conditions:
|
|
852
|
+
|
|
853
|
+
(a) You must give any other recipients of the Work or
|
|
854
|
+
Derivative Works a copy of this License; and
|
|
855
|
+
|
|
856
|
+
(b) You must cause any modified files to carry prominent notices
|
|
857
|
+
stating that You changed the files; and
|
|
858
|
+
|
|
859
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
860
|
+
that You distribute, all copyright, patent, trademark, and
|
|
861
|
+
attribution notices from the Source form of the Work,
|
|
862
|
+
excluding those notices that do not pertain to any part of
|
|
863
|
+
the Derivative Works; and
|
|
864
|
+
|
|
865
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
866
|
+
distribution, then any Derivative Works that You distribute must
|
|
867
|
+
include a readable copy of the attribution notices contained
|
|
868
|
+
within such NOTICE file, excluding those notices that do not
|
|
869
|
+
pertain to any part of the Derivative Works, in at least one
|
|
870
|
+
of the following places: within a NOTICE text file distributed
|
|
871
|
+
as part of the Derivative Works; within the Source form or
|
|
872
|
+
documentation, if provided along with the Derivative Works; or,
|
|
873
|
+
within a display generated by the Derivative Works, if and
|
|
874
|
+
wherever such third-party notices normally appear. The contents
|
|
875
|
+
of the NOTICE file are for informational purposes only and
|
|
876
|
+
do not modify the License. You may add Your own attribution
|
|
877
|
+
notices within Derivative Works that You distribute, alongside
|
|
878
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
879
|
+
that such additional attribution notices cannot be construed
|
|
880
|
+
as modifying the License.
|
|
881
|
+
|
|
882
|
+
You may add Your own copyright statement to Your modifications and
|
|
883
|
+
may provide additional or different license terms and conditions
|
|
884
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
885
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
886
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
887
|
+
the conditions stated in this License.
|
|
888
|
+
|
|
889
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
890
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
891
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
892
|
+
this License, without any additional terms or conditions.
|
|
893
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
894
|
+
the terms of any separate license agreement you may have executed
|
|
895
|
+
with Licensor regarding such Contributions.
|
|
896
|
+
|
|
897
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
898
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
899
|
+
except as required for reasonable and customary use in describing the
|
|
900
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
901
|
+
|
|
902
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
903
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
904
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
905
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
906
|
+
implied, including, without limitation, any warranties or conditions
|
|
907
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
908
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
909
|
+
appropriateness of using or redistributing the Work and assume any
|
|
910
|
+
risks associated with Your exercise of permissions under this License.
|
|
911
|
+
|
|
912
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
913
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
914
|
+
unless required by applicable law (such as deliberate and grossly
|
|
915
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
916
|
+
liable to You for damages, including any direct, indirect, special,
|
|
917
|
+
incidental, or consequential damages of any character arising as a
|
|
918
|
+
result of this License or out of the use or inability to use the
|
|
919
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
920
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
921
|
+
other commercial damages or losses), even if such Contributor
|
|
922
|
+
has been advised of the possibility of such damages.
|
|
923
|
+
|
|
924
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
925
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
926
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
927
|
+
or other liability obligations and/or rights consistent with this
|
|
928
|
+
License. However, in accepting such obligations, You may act only
|
|
929
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
930
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
931
|
+
defend, and hold each Contributor harmless for any liability
|
|
932
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
933
|
+
of your accepting any such warranty or additional liability.
|
|
934
|
+
|
|
935
|
+
END OF TERMS AND CONDITIONS
|
|
936
|
+
|
|
937
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
938
|
+
|
|
939
|
+
To apply the Apache License to your work, attach the following
|
|
940
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
941
|
+
replaced with your own identifying information. (Don't include
|
|
942
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
943
|
+
comment syntax for the file format. We also recommend that a
|
|
944
|
+
file or class name and description of purpose be included on the
|
|
945
|
+
same "printed page" as the copyright notice for easier
|
|
946
|
+
identification within third-party archives.
|
|
947
|
+
|
|
948
|
+
Copyright [yyyy] [name of copyright owner]
|
|
949
|
+
|
|
950
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
951
|
+
you may not use this file except in compliance with the License.
|
|
952
|
+
You may obtain a copy of the License at
|
|
953
|
+
|
|
954
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
955
|
+
|
|
956
|
+
Unless required by applicable law or agreed to in writing, software
|
|
957
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
958
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
959
|
+
See the License for the specific language governing permissions and
|
|
960
|
+
limitations under the License.
|
|
961
|
+
|
|
962
|
+
---------------------------------------------------------
|
|
963
|
+
Source: nlohmann-json
|
|
964
|
+
Version: 3.11.3
|
|
965
|
+
Homepage: https://github.com/nlohmann/json
|
|
966
|
+
|
|
967
|
+
MIT License
|
|
968
|
+
|
|
969
|
+
Copyright (c) 2013-2022 Niels Lohmann
|
|
970
|
+
|
|
971
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
972
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
973
|
+
in the Software without restriction, including without limitation the rights
|
|
974
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
975
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
976
|
+
furnished to do so, subject to the following conditions:
|
|
977
|
+
|
|
978
|
+
The above copyright notice and this permission notice shall be included in all
|
|
979
|
+
copies or substantial portions of the Software.
|
|
980
|
+
|
|
981
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
982
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
983
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
984
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
985
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
986
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
987
|
+
SOFTWARE.
|
|
988
|
+
|
|
989
|
+
---------------------------------------------------------
|
|
990
|
+
openssl 3.3.1
|
|
991
|
+
|
|
992
|
+
Apache License
|
|
993
|
+
Version 2.0, January 2004
|
|
994
|
+
https://www.apache.org/licenses/
|
|
995
|
+
|
|
996
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
997
|
+
|
|
998
|
+
1. Definitions.
|
|
999
|
+
|
|
1000
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
1001
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
1002
|
+
|
|
1003
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
1004
|
+
the copyright owner that is granting the License.
|
|
1005
|
+
|
|
1006
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
1007
|
+
other entities that control, are controlled by, or are under common
|
|
1008
|
+
control with that entity. For the purposes of this definition,
|
|
1009
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
1010
|
+
direction or management of such entity, whether by contract or
|
|
1011
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
1012
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
1013
|
+
|
|
1014
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
1015
|
+
exercising permissions granted by this License.
|
|
1016
|
+
|
|
1017
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
1018
|
+
including but not limited to software source code, documentation
|
|
1019
|
+
source, and configuration files.
|
|
1020
|
+
|
|
1021
|
+
"Object" form shall mean any form resulting from mechanical
|
|
1022
|
+
transformation or translation of a Source form, including but
|
|
1023
|
+
not limited to compiled object code, generated documentation,
|
|
1024
|
+
and conversions to other media types.
|
|
1025
|
+
|
|
1026
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
1027
|
+
Object form, made available under the License, as indicated by a
|
|
1028
|
+
copyright notice that is included in or attached to the work
|
|
1029
|
+
(an example is provided in the Appendix below).
|
|
1030
|
+
|
|
1031
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
1032
|
+
form, that is based on (or derived from) the Work and for which the
|
|
1033
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
1034
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
1035
|
+
of this License, Derivative Works shall not include works that remain
|
|
1036
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
1037
|
+
the Work and Derivative Works thereof.
|
|
1038
|
+
|
|
1039
|
+
"Contribution" shall mean any work of authorship, including
|
|
1040
|
+
the original version of the Work and any modifications or additions
|
|
1041
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
1042
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
1043
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
1044
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
1045
|
+
means any form of electronic, verbal, or written communication sent
|
|
1046
|
+
to the Licensor or its representatives, including but not limited to
|
|
1047
|
+
communication on electronic mailing lists, source code control systems,
|
|
1048
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
1049
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
1050
|
+
excluding communication that is conspicuously marked or otherwise
|
|
1051
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
1052
|
+
|
|
1053
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
1054
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
1055
|
+
subsequently incorporated within the Work.
|
|
1056
|
+
|
|
1057
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
1058
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1059
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1060
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
1061
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
1062
|
+
Work and such Derivative Works in Source or Object form.
|
|
1063
|
+
|
|
1064
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
1065
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1066
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1067
|
+
(except as stated in this section) patent license to make, have made,
|
|
1068
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
1069
|
+
where such license applies only to those patent claims licensable
|
|
1070
|
+
by such Contributor that are necessarily infringed by their
|
|
1071
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
1072
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
1073
|
+
institute patent litigation against any entity (including a
|
|
1074
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
1075
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
1076
|
+
or contributory patent infringement, then any patent licenses
|
|
1077
|
+
granted to You under this License for that Work shall terminate
|
|
1078
|
+
as of the date such litigation is filed.
|
|
1079
|
+
|
|
1080
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
1081
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
1082
|
+
modifications, and in Source or Object form, provided that You
|
|
1083
|
+
meet the following conditions:
|
|
1084
|
+
|
|
1085
|
+
(a) You must give any other recipients of the Work or
|
|
1086
|
+
Derivative Works a copy of this License; and
|
|
1087
|
+
|
|
1088
|
+
(b) You must cause any modified files to carry prominent notices
|
|
1089
|
+
stating that You changed the files; and
|
|
1090
|
+
|
|
1091
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
1092
|
+
that You distribute, all copyright, patent, trademark, and
|
|
1093
|
+
attribution notices from the Source form of the Work,
|
|
1094
|
+
excluding those notices that do not pertain to any part of
|
|
1095
|
+
the Derivative Works; and
|
|
1096
|
+
|
|
1097
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
1098
|
+
distribution, then any Derivative Works that You distribute must
|
|
1099
|
+
include a readable copy of the attribution notices contained
|
|
1100
|
+
within such NOTICE file, excluding those notices that do not
|
|
1101
|
+
pertain to any part of the Derivative Works, in at least one
|
|
1102
|
+
of the following places: within a NOTICE text file distributed
|
|
1103
|
+
as part of the Derivative Works; within the Source form or
|
|
1104
|
+
documentation, if provided along with the Derivative Works; or,
|
|
1105
|
+
within a display generated by the Derivative Works, if and
|
|
1106
|
+
wherever such third-party notices normally appear. The contents
|
|
1107
|
+
of the NOTICE file are for informational purposes only and
|
|
1108
|
+
do not modify the License. You may add Your own attribution
|
|
1109
|
+
notices within Derivative Works that You distribute, alongside
|
|
1110
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
1111
|
+
that such additional attribution notices cannot be construed
|
|
1112
|
+
as modifying the License.
|
|
1113
|
+
|
|
1114
|
+
You may add Your own copyright statement to Your modifications and
|
|
1115
|
+
may provide additional or different license terms and conditions
|
|
1116
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
1117
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
1118
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
1119
|
+
the conditions stated in this License.
|
|
1120
|
+
|
|
1121
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
1122
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
1123
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
1124
|
+
this License, without any additional terms or conditions.
|
|
1125
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
1126
|
+
the terms of any separate license agreement you may have executed
|
|
1127
|
+
with Licensor regarding such Contributions.
|
|
1128
|
+
|
|
1129
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
1130
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
1131
|
+
except as required for reasonable and customary use in describing the
|
|
1132
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
1133
|
+
|
|
1134
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
1135
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
1136
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
1137
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
1138
|
+
implied, including, without limitation, any warranties or conditions
|
|
1139
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
1140
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
1141
|
+
appropriateness of using or redistributing the Work and assume any
|
|
1142
|
+
risks associated with Your exercise of permissions under this License.
|
|
1143
|
+
|
|
1144
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
1145
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
1146
|
+
unless required by applicable law (such as deliberate and grossly
|
|
1147
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
1148
|
+
liable to You for damages, including any direct, indirect, special,
|
|
1149
|
+
incidental, or consequential damages of any character arising as a
|
|
1150
|
+
result of this License or out of the use or inability to use the
|
|
1151
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
1152
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
1153
|
+
other commercial damages or losses), even if such Contributor
|
|
1154
|
+
has been advised of the possibility of such damages.
|
|
1155
|
+
|
|
1156
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
1157
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
1158
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
1159
|
+
or other liability obligations and/or rights consistent with this
|
|
1160
|
+
License. However, in accepting such obligations, You may act only
|
|
1161
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
1162
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
1163
|
+
defend, and hold each Contributor harmless for any liability
|
|
1164
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
1165
|
+
of your accepting any such warranty or additional liability.
|
|
1166
|
+
|
|
1167
|
+
END OF TERMS AND CONDITIONS
|
|
1168
|
+
|
|
1169
|
+
---------------------------------------------------------
|
|
1170
|
+
Source: zlib
|
|
1171
|
+
Version: 1.3.1
|
|
1172
|
+
Homepage: https://www.zlib.net/
|
|
1173
|
+
|
|
1174
|
+
Copyright notice:
|
|
1175
|
+
|
|
1176
|
+
(C) 1995-2022 Jean-loup Gailly and Mark Adler
|
|
1177
|
+
|
|
1178
|
+
This software is provided 'as-is', without any express or implied
|
|
1179
|
+
warranty. In no event will the authors be held liable for any damages
|
|
1180
|
+
arising from the use of this software.
|
|
1181
|
+
|
|
1182
|
+
Permission is granted to anyone to use this software for any purpose,
|
|
1183
|
+
including commercial applications, and to alter it and redistribute it
|
|
1184
|
+
freely, subject to the following restrictions:
|
|
1185
|
+
|
|
1186
|
+
1. The origin of this software must not be misrepresented; you must not
|
|
1187
|
+
claim that you wrote the original software. If you use this software
|
|
1188
|
+
in a product, an acknowledgment in the product documentation would be
|
|
1189
|
+
appreciated but is not required.
|
|
1190
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
|
1191
|
+
misrepresented as being the original software.
|
|
1192
|
+
3. This notice may not be removed or altered from any source distribution.
|
|
1193
|
+
|
|
1194
|
+
Jean-loup Gailly Mark Adler
|
|
1195
|
+
jloup@gzip.org madler@alumni.caltech.edu
|