@zaber/motion 7.3.0 → 7.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.
Files changed (50) hide show
  1. package/LICENSE +963 -1209
  2. package/dist/binding/wasm/zaber-motion-core.wasm +0 -0
  3. package/dist/lib/ascii/all_axes.d.ts +16 -0
  4. package/dist/lib/ascii/all_axes.d.ts.map +1 -1
  5. package/dist/lib/ascii/all_axes.js +34 -0
  6. package/dist/lib/ascii/all_axes.js.map +1 -1
  7. package/dist/lib/ascii/axis.d.ts +17 -2
  8. package/dist/lib/ascii/axis.d.ts.map +1 -1
  9. package/dist/lib/ascii/axis.js +26 -4
  10. package/dist/lib/ascii/axis.js.map +1 -1
  11. package/dist/lib/ascii/device.d.ts +10 -0
  12. package/dist/lib/ascii/device.d.ts.map +1 -1
  13. package/dist/lib/ascii/device.js +21 -0
  14. package/dist/lib/ascii/device.js.map +1 -1
  15. package/dist/lib/finalizer.js.map +1 -1
  16. package/dist/lib/gateway/bindings.exec.js +2 -1
  17. package/dist/lib/gateway/bindings.exec.js.map +1 -1
  18. package/dist/lib/gateway/bindings.js.map +1 -1
  19. package/dist/lib/gateway/bindings.node.js +1 -1
  20. package/dist/lib/gateway/bindings.node.js.map +1 -1
  21. package/dist/lib/gateway/bindings.wasm.d.ts +1 -1
  22. package/dist/lib/gateway/bindings.wasm.d.ts.map +1 -1
  23. package/dist/lib/gateway/bindings.wasm.js +4 -4
  24. package/dist/lib/gateway/bindings.wasm.js.map +1 -1
  25. package/dist/lib/gateway/call.d.ts +1 -1
  26. package/dist/lib/gateway/call.d.ts.map +1 -1
  27. package/dist/lib/gateway/call.js.map +1 -1
  28. package/dist/lib/gateway/events.d.ts.map +1 -1
  29. package/dist/lib/gateway/events.js.map +1 -1
  30. package/dist/lib/gateway/sanitizer.js +3 -3
  31. package/dist/lib/gateway/sanitizer.js.map +1 -1
  32. package/dist/lib/gateway/serialization.d.ts +1 -1
  33. package/dist/lib/gateway/serialization.d.ts.map +1 -1
  34. package/dist/lib/gateway/serialization.js.map +1 -1
  35. package/dist/lib/library.js +1 -1
  36. package/dist/lib/library.js.map +1 -1
  37. package/dist/lib/requests/device_restore_request.d.ts +13 -0
  38. package/dist/lib/requests/device_restore_request.d.ts.map +1 -0
  39. package/dist/lib/requests/device_restore_request.js +31 -0
  40. package/dist/lib/requests/device_restore_request.js.map +1 -0
  41. package/dist/lib/requests/driver_enable_request.d.ts +13 -0
  42. package/dist/lib/requests/driver_enable_request.d.ts.map +1 -0
  43. package/dist/lib/requests/driver_enable_request.js +31 -0
  44. package/dist/lib/requests/driver_enable_request.js.map +1 -0
  45. package/dist/lib/requests/empty_request.js.map +1 -1
  46. package/dist/lib/requests/index.d.ts +2 -0
  47. package/dist/lib/requests/index.d.ts.map +1 -1
  48. package/dist/lib/requests/index.js +2 -0
  49. package/dist/lib/requests/index.js.map +1 -1
  50. package/package.json +5 -8
package/LICENSE CHANGED
@@ -13,60 +13,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
13
13
  The following lines contain the licenses of all libraries and tools that have been used to build the binary which we distribute.
14
14
 
15
15
  ------------------
16
- github.com/BurntSushi/toml v0.3.1
16
+ github.com/Microsoft/go-winio v0.6.2
17
17
  ------------------
18
18
  The MIT License (MIT)
19
19
 
20
- Copyright (c) 2013 TOML authors
21
-
22
- Permission is hereby granted, free of charge, to any person obtaining a copy
23
- of this software and associated documentation files (the "Software"), to deal
24
- in the Software without restriction, including without limitation the rights
25
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26
- copies of the Software, and to permit persons to whom the Software is
27
- furnished to do so, subject to the following conditions:
28
-
29
- The above copyright notice and this permission notice shall be included in
30
- all copies or substantial portions of the Software.
31
-
32
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
38
- THE SOFTWARE.
39
-
40
- ------------------
41
- github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6
42
- ------------------
43
- The MIT License (MIT)
44
-
45
- Copyright (c) 2013 Stack Exchange
46
-
47
- Permission is hereby granted, free of charge, to any person obtaining a copy of
48
- this software and associated documentation files (the "Software"), to deal in
49
- the Software without restriction, including without limitation the rights to
50
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
51
- the Software, and to permit persons to whom the Software is furnished to do so,
52
- subject to the following conditions:
53
-
54
- The above copyright notice and this permission notice shall be included in all
55
- copies or substantial portions of the Software.
56
-
57
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
58
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
59
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
60
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
61
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
62
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
63
-
64
- ------------------
65
- github.com/chavacava/garif v0.0.0-20210405164556-e8a0a408d6af
66
- ------------------
67
- MIT License
68
-
69
- Copyright (c) 2021 Salvador Cavadini
20
+ Copyright (c) 2015 Microsoft
70
21
 
71
22
  Permission is hereby granted, free of charge, to any person obtaining a copy
72
23
  of this software and associated documentation files (the "Software"), to deal
@@ -86,6 +37,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
86
37
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
87
38
  SOFTWARE.
88
39
 
40
+
89
41
  ------------------
90
42
  github.com/creack/goselect v0.1.2
91
43
  ------------------
@@ -113,13 +65,13 @@ SOFTWARE.
113
65
 
114
66
 
115
67
  ------------------
116
- github.com/davecgh/go-spew v1.1.1
68
+ github.com/davecgh/go-spew v1.1.0
117
69
  ------------------
118
70
  ISC License
119
71
 
120
72
  Copyright (c) 2012-2016 Dave Collins <dave@davec.name>
121
73
 
122
- Permission to use, copy, modify, and/or distribute this software for any
74
+ Permission to use, copy, modify, and distribute this software for any
123
75
  purpose with or without fee is hereby granted, provided that the above
124
76
  copyright notice and this permission notice appear in all copies.
125
77
 
@@ -181,92 +133,29 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
181
133
 
182
134
 
183
135
  ------------------
184
- github.com/fatih/color v1.12.0
136
+ github.com/elliotchance/pie/v2 v2.5.1
185
137
  ------------------
186
- The MIT License (MIT)
138
+ MIT License
187
139
 
188
- Copyright (c) 2013 Fatih Arslan
140
+ Copyright (c) 2019 Elliot Chance
189
141
 
190
- Permission is hereby granted, free of charge, to any person obtaining a copy of
191
- this software and associated documentation files (the "Software"), to deal in
192
- the Software without restriction, including without limitation the rights to
193
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
194
- the Software, and to permit persons to whom the Software is furnished to do so,
195
- subject to the following conditions:
142
+ Permission is hereby granted, free of charge, to any person obtaining a copy
143
+ of this software and associated documentation files (the "Software"), to deal
144
+ in the Software without restriction, including without limitation the rights
145
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
146
+ copies of the Software, and to permit persons to whom the Software is
147
+ furnished to do so, subject to the following conditions:
196
148
 
197
149
  The above copyright notice and this permission notice shall be included in all
198
150
  copies or substantial portions of the Software.
199
151
 
200
152
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
201
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
202
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
203
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
204
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
205
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
206
-
207
- ------------------
208
- github.com/fatih/structtag v1.2.0
209
- ------------------
210
- Copyright (c) 2017, Fatih Arslan
211
- All rights reserved.
212
-
213
- Redistribution and use in source and binary forms, with or without
214
- modification, are permitted provided that the following conditions are met:
215
-
216
- * Redistributions of source code must retain the above copyright notice, this
217
- list of conditions and the following disclaimer.
218
-
219
- * Redistributions in binary form must reproduce the above copyright notice,
220
- this list of conditions and the following disclaimer in the documentation
221
- and/or other materials provided with the distribution.
222
-
223
- * Neither the name of structtag nor the names of its
224
- contributors may be used to endorse or promote products derived from
225
- this software without specific prior written permission.
226
-
227
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
228
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
229
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
230
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
231
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
232
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
233
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
234
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
235
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
236
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
237
-
238
- This software includes some portions from Go. Go is used under the terms of the
239
- BSD like license.
240
-
241
- Copyright (c) 2012 The Go Authors. All rights reserved.
242
-
243
- Redistribution and use in source and binary forms, with or without
244
- modification, are permitted provided that the following conditions are
245
- met:
246
-
247
- * Redistributions of source code must retain the above copyright
248
- notice, this list of conditions and the following disclaimer.
249
- * Redistributions in binary form must reproduce the above
250
- copyright notice, this list of conditions and the following disclaimer
251
- in the documentation and/or other materials provided with the
252
- distribution.
253
- * Neither the name of Google Inc. nor the names of its
254
- contributors may be used to endorse or promote products derived from
255
- this software without specific prior written permission.
256
-
257
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
258
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
259
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
260
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
261
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
262
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
263
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
264
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
265
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
267
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
268
-
269
- The Go gopher was designed by Renee French. http://reneefrench.blogspot.com/ The design is licensed under the Creative Commons 3.0 Attributions license. Read this article for more details: https://blog.golang.org/gopher
153
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
154
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
155
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
156
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
157
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
158
+ SOFTWARE.
270
159
 
271
160
  ------------------
272
161
  github.com/go-gl/mathgl v1.0.0
@@ -294,31 +183,6 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
294
183
  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
295
184
  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
296
185
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
297
- ------------------
298
- github.com/go-ole/go-ole v1.2.1
299
- ------------------
300
- The MIT License (MIT)
301
-
302
- Copyright © 2013-2017 Yasuhiro Matsumoto, <mattn.jp@gmail.com>
303
-
304
- Permission is hereby granted, free of charge, to any person obtaining a copy of
305
- this software and associated documentation files (the “Software”), to deal in
306
- the Software without restriction, including without limitation the rights to
307
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
308
- of the Software, and to permit persons to whom the Software is furnished to do
309
- so, subject to the following conditions:
310
-
311
- The above copyright notice and this permission notice shall be included in all
312
- copies or substantial portions of the Software.
313
-
314
- THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
315
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
316
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
317
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
318
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
319
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
320
- SOFTWARE.
321
-
322
186
  ------------------
323
187
  github.com/go-stack/stack v1.8.0
324
188
  ------------------
@@ -344,38 +208,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
344
208
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
345
209
  SOFTWARE.
346
210
 
347
- ------------------
348
- github.com/golang/protobuf v1.5.2
349
- ------------------
350
- Copyright 2010 The Go Authors. All rights reserved.
351
-
352
- Redistribution and use in source and binary forms, with or without
353
- modification, are permitted provided that the following conditions are
354
- met:
355
-
356
- * Redistributions of source code must retain the above copyright
357
- notice, this list of conditions and the following disclaimer.
358
- * Redistributions in binary form must reproduce the above
359
- copyright notice, this list of conditions and the following disclaimer
360
- in the documentation and/or other materials provided with the
361
- distribution.
362
- * Neither the name of Google Inc. nor the names of its
363
- contributors may be used to endorse or promote products derived from
364
- this software without specific prior written permission.
365
-
366
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
367
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
368
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
369
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
370
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
371
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
372
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
373
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
374
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
375
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
376
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
377
-
378
-
379
211
  ------------------
380
212
  github.com/google/go-cmp v0.5.6
381
213
  ------------------
@@ -434,21 +266,22 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
434
266
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
435
267
 
436
268
  ------------------
437
- github.com/mattn/go-colorable v0.1.8
269
+ github.com/iancoleman/strcase v0.3.0
438
270
  ------------------
439
271
  The MIT License (MIT)
440
272
 
441
- Copyright (c) 2016 Yasuhiro Matsumoto
273
+ Copyright (c) 2015 Ian Coleman
274
+ Copyright (c) 2018 Ma_124, <github.com/Ma124>
442
275
 
443
276
  Permission is hereby granted, free of charge, to any person obtaining a copy
444
277
  of this software and associated documentation files (the "Software"), to deal
445
278
  in the Software without restriction, including without limitation the rights
446
279
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
447
280
  copies of the Software, and to permit persons to whom the Software is
448
- furnished to do so, subject to the following conditions:
281
+ furnished to do so, Subject to the following conditions:
449
282
 
450
283
  The above copyright notice and this permission notice shall be included in all
451
- copies or substantial portions of the Software.
284
+ copies or Substantial portions of the Software.
452
285
 
453
286
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
454
287
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
@@ -459,24 +292,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
459
292
  SOFTWARE.
460
293
 
461
294
  ------------------
462
- github.com/mattn/go-isatty v0.0.12
463
- ------------------
464
- Copyright (c) Yasuhiro MATSUMOTO <mattn.jp@gmail.com>
465
-
466
- MIT License (Expat)
467
-
468
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
469
-
470
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
471
-
472
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
473
-
474
- ------------------
475
- github.com/mattn/go-runewidth v0.0.9
295
+ github.com/mattn/go-sqlite3 v1.11.0
476
296
  ------------------
477
297
  The MIT License (MIT)
478
298
 
479
- Copyright (c) 2016 Yasuhiro Matsumoto
299
+ Copyright (c) 2014 Yasuhiro Matsumoto
480
300
 
481
301
  Permission is hereby granted, free of charge, to any person obtaining a copy
482
302
  of this software and associated documentation files (the "Software"), to deal
@@ -497,18 +317,16 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
497
317
  SOFTWARE.
498
318
 
499
319
  ------------------
500
- github.com/mattn/go-sqlite3 v1.11.0
320
+ github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
501
321
  ------------------
502
- The MIT License (MIT)
503
-
504
- Copyright (c) 2014 Yasuhiro Matsumoto
322
+ Copyright (C) 2011 by Krzysztof Kowalik <chris@nu7hat.ch>
505
323
 
506
- Permission is hereby granted, free of charge, to any person obtaining a copy
507
- of this software and associated documentation files (the "Software"), to deal
508
- in the Software without restriction, including without limitation the rights
509
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
510
- copies of the Software, and to permit persons to whom the Software is
511
- furnished to do so, subject to the following conditions:
324
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
325
+ this software and associated documentation files (the "Software"), to deal in
326
+ the Software without restriction, including without limitation the rights to
327
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
328
+ of the Software, and to permit persons to whom the Software is furnished to do
329
+ so, subject to the following conditions:
512
330
 
513
331
  The above copyright notice and this permission notice shall be included in all
514
332
  copies or substantial portions of the Software.
@@ -520,13 +338,70 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
520
338
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
521
339
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
522
340
  SOFTWARE.
341
+ ------------------
342
+ github.com/pkg/errors v0.9.1
343
+ ------------------
344
+ Copyright (c) 2015, Dave Cheney <dave@cheney.net>
345
+ All rights reserved.
346
+
347
+ Redistribution and use in source and binary forms, with or without
348
+ modification, are permitted provided that the following conditions are met:
349
+
350
+ * Redistributions of source code must retain the above copyright notice, this
351
+ list of conditions and the following disclaimer.
352
+
353
+ * Redistributions in binary form must reproduce the above copyright notice,
354
+ this list of conditions and the following disclaimer in the documentation
355
+ and/or other materials provided with the distribution.
356
+
357
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
358
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
359
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
360
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
361
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
362
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
363
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
364
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
365
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
366
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
523
367
 
524
368
  ------------------
525
- github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
369
+ github.com/pmezard/go-difflib v1.0.0
526
370
  ------------------
527
- MIT License
371
+ Copyright (c) 2013, Patrick Mezard
372
+ All rights reserved.
373
+
374
+ Redistribution and use in source and binary forms, with or without
375
+ modification, are permitted provided that the following conditions are
376
+ met:
377
+
378
+ Redistributions of source code must retain the above copyright
379
+ notice, this list of conditions and the following disclaimer.
380
+ Redistributions in binary form must reproduce the above copyright
381
+ notice, this list of conditions and the following disclaimer in the
382
+ documentation and/or other materials provided with the distribution.
383
+ The names of its contributors may not be used to endorse or promote
384
+ products derived from this software without specific prior written
385
+ permission.
386
+
387
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
388
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
389
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
390
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
391
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
392
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
393
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
394
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
395
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
396
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
397
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
398
+
399
+ ------------------
400
+ github.com/sirupsen/logrus v1.9.3
401
+ ------------------
402
+ The MIT License (MIT)
528
403
 
529
- Copyright (c) 2018 Minko Gechev
404
+ Copyright (c) 2014 Simon Eskildsen
530
405
 
531
406
  Permission is hereby granted, free of charge, to any person obtaining a copy
532
407
  of this software and associated documentation files (the "Software"), to deal
@@ -535,23 +410,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
535
410
  copies of the Software, and to permit persons to whom the Software is
536
411
  furnished to do so, subject to the following conditions:
537
412
 
538
- The above copyright notice and this permission notice shall be included in all
539
- copies or substantial portions of the Software.
413
+ The above copyright notice and this permission notice shall be included in
414
+ all copies or substantial portions of the Software.
540
415
 
541
416
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
542
417
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
543
418
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
544
419
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
545
420
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
546
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
547
- SOFTWARE.
421
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
422
+ THE SOFTWARE.
548
423
 
549
424
  ------------------
550
- github.com/mgechev/revive v1.0.7
425
+ github.com/stretchr/objx v0.1.0
551
426
  ------------------
552
- MIT License
427
+ The MIT License
553
428
 
554
- Copyright (c) 2018 Minko Gechev
429
+ Copyright (c) 2014 Stretchr, Inc.
430
+ Copyright (c) 2017-2018 objx contributors
555
431
 
556
432
  Permission is hereby granted, free of charge, to any person obtaining a copy
557
433
  of this software and associated documentation files (the "Software"), to deal
@@ -572,11 +448,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
572
448
  SOFTWARE.
573
449
 
574
450
  ------------------
575
- github.com/mitchellh/go-homedir v1.1.0
451
+ github.com/stretchr/testify v1.7.0
576
452
  ------------------
577
- The MIT License (MIT)
453
+ MIT License
578
454
 
579
- Copyright (c) 2013 Mitchell Hashimoto
455
+ Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
580
456
 
581
457
  Permission is hereby granted, free of charge, to any person obtaining a copy
582
458
  of this software and associated documentation files (the "Software"), to deal
@@ -585,29 +461,6 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
585
461
  copies of the Software, and to permit persons to whom the Software is
586
462
  furnished to do so, subject to the following conditions:
587
463
 
588
- The above copyright notice and this permission notice shall be included in
589
- all copies or substantial portions of the Software.
590
-
591
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
592
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
593
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
594
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
595
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
596
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
597
- THE SOFTWARE.
598
-
599
- ------------------
600
- github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
601
- ------------------
602
- Copyright (C) 2011 by Krzysztof Kowalik <chris@nu7hat.ch>
603
-
604
- Permission is hereby granted, free of charge, to any person obtaining a copy of
605
- this software and associated documentation files (the "Software"), to deal in
606
- the Software without restriction, including without limitation the rights to
607
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
608
- of the Software, and to permit persons to whom the Software is furnished to do
609
- so, subject to the following conditions:
610
-
611
464
  The above copyright notice and this permission notice shall be included in all
612
465
  copies or substantial portions of the Software.
613
466
 
@@ -618,1132 +471,1044 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
618
471
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
619
472
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
620
473
  SOFTWARE.
621
- ------------------
622
- github.com/olekukonko/tablewriter v0.0.5
623
- ------------------
624
- Copyright (C) 2014 by Oleku Konko
625
-
626
- Permission is hereby granted, free of charge, to any person obtaining a copy
627
- of this software and associated documentation files (the "Software"), to deal
628
- in the Software without restriction, including without limitation the rights
629
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
630
- copies of the Software, and to permit persons to whom the Software is
631
- furnished to do so, subject to the following conditions:
632
-
633
- The above copyright notice and this permission notice shall be included in
634
- all copies or substantial portions of the Software.
635
-
636
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
637
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
638
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
639
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
640
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
641
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
642
- THE SOFTWARE.
643
474
 
644
475
  ------------------
645
- github.com/pkg/errors v0.9.1
476
+ github.com/zabertech/go-ethereum v1.10.4-rpc-1 (fork github.com/ethereum/go-ethereum)
646
477
  ------------------
647
- Copyright (c) 2015, Dave Cheney <dave@cheney.net>
648
- All rights reserved.
649
-
650
- Redistribution and use in source and binary forms, with or without
651
- modification, are permitted provided that the following conditions are met:
652
-
653
- * Redistributions of source code must retain the above copyright notice, this
654
- list of conditions and the following disclaimer.
478
+ GNU GENERAL PUBLIC LICENSE
479
+ Version 3, 29 June 2007
655
480
 
656
- * Redistributions in binary form must reproduce the above copyright notice,
657
- this list of conditions and the following disclaimer in the documentation
658
- and/or other materials provided with the distribution.
481
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
482
+ Everyone is permitted to copy and distribute verbatim copies
483
+ of this license document, but changing it is not allowed.
659
484
 
660
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
661
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
662
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
663
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
664
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
665
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
666
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
667
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
668
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
669
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
485
+ Preamble
670
486
 
671
- ------------------
672
- github.com/pmezard/go-difflib v1.0.0
673
- ------------------
674
- Copyright (c) 2013, Patrick Mezard
675
- All rights reserved.
487
+ The GNU General Public License is a free, copyleft license for
488
+ software and other kinds of works.
676
489
 
677
- Redistribution and use in source and binary forms, with or without
678
- modification, are permitted provided that the following conditions are
679
- met:
490
+ The licenses for most software and other practical works are designed
491
+ to take away your freedom to share and change the works. By contrast,
492
+ the GNU General Public License is intended to guarantee your freedom to
493
+ share and change all versions of a program--to make sure it remains free
494
+ software for all its users. We, the Free Software Foundation, use the
495
+ GNU General Public License for most of our software; it applies also to
496
+ any other work released this way by its authors. You can apply it to
497
+ your programs, too.
680
498
 
681
- Redistributions of source code must retain the above copyright
682
- notice, this list of conditions and the following disclaimer.
683
- Redistributions in binary form must reproduce the above copyright
684
- notice, this list of conditions and the following disclaimer in the
685
- documentation and/or other materials provided with the distribution.
686
- The names of its contributors may not be used to endorse or promote
687
- products derived from this software without specific prior written
688
- permission.
499
+ When we speak of free software, we are referring to freedom, not
500
+ price. Our General Public Licenses are designed to make sure that you
501
+ have the freedom to distribute copies of free software (and charge for
502
+ them if you wish), that you receive source code or can get it if you
503
+ want it, that you can change the software or use pieces of it in new
504
+ free programs, and that you know you can do these things.
689
505
 
690
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
691
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
692
- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
693
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
694
- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
695
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
696
- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
697
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
698
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
699
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
700
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
506
+ To protect your rights, we need to prevent others from denying you
507
+ these rights or asking you to surrender the rights. Therefore, you have
508
+ certain responsibilities if you distribute copies of the software, or if
509
+ you modify it: responsibilities to respect the freedom of others.
701
510
 
702
- ------------------
703
- github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible
704
- ------------------
705
- gopsutil is distributed under BSD license reproduced below.
511
+ For example, if you distribute copies of such a program, whether
512
+ gratis or for a fee, you must pass on to the recipients the same
513
+ freedoms that you received. You must make sure that they, too, receive
514
+ or can get the source code. And you must show them these terms so they
515
+ know their rights.
706
516
 
707
- Copyright (c) 2014, WAKAYAMA Shirou
708
- All rights reserved.
517
+ Developers that use the GNU GPL protect your rights with two steps:
518
+ (1) assert copyright on the software, and (2) offer you this License
519
+ giving you legal permission to copy, distribute and/or modify it.
709
520
 
710
- Redistribution and use in source and binary forms, with or without modification,
711
- are permitted provided that the following conditions are met:
521
+ For the developers' and authors' protection, the GPL clearly explains
522
+ that there is no warranty for this free software. For both users' and
523
+ authors' sake, the GPL requires that modified versions be marked as
524
+ changed, so that their problems will not be attributed erroneously to
525
+ authors of previous versions.
712
526
 
713
- * Redistributions of source code must retain the above copyright notice, this
714
- list of conditions and the following disclaimer.
715
- * Redistributions in binary form must reproduce the above copyright notice,
716
- this list of conditions and the following disclaimer in the documentation
717
- and/or other materials provided with the distribution.
718
- * Neither the name of the gopsutil authors nor the names of its contributors
719
- may be used to endorse or promote products derived from this software without
720
- specific prior written permission.
527
+ Some devices are designed to deny users access to install or run
528
+ modified versions of the software inside them, although the manufacturer
529
+ can do so. This is fundamentally incompatible with the aim of
530
+ protecting users' freedom to change the software. The systematic
531
+ pattern of such abuse occurs in the area of products for individuals to
532
+ use, which is precisely where it is most unacceptable. Therefore, we
533
+ have designed this version of the GPL to prohibit the practice for those
534
+ products. If such problems arise substantially in other domains, we
535
+ stand ready to extend this provision to those domains in future versions
536
+ of the GPL, as needed to protect the freedom of users.
721
537
 
722
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
723
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
724
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
725
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
726
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
727
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
728
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
729
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
730
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
731
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
538
+ Finally, every program is threatened constantly by software patents.
539
+ States should not allow patents to restrict development and use of
540
+ software on general-purpose computers, but in those that do, we wish to
541
+ avoid the special danger that patents applied to a free program could
542
+ make it effectively proprietary. To prevent this, the GPL assures that
543
+ patents cannot be used to render the program non-free.
732
544
 
545
+ The precise terms and conditions for copying, distribution and
546
+ modification follow.
733
547
 
734
- -------
735
- internal/common/binary.go in the gopsutil is copied and modifid from golang/encoding/binary.go.
548
+ TERMS AND CONDITIONS
736
549
 
550
+ 0. Definitions.
737
551
 
552
+ "This License" refers to version 3 of the GNU General Public License.
738
553
 
739
- Copyright (c) 2009 The Go Authors. All rights reserved.
554
+ "Copyright" also means copyright-like laws that apply to other kinds of
555
+ works, such as semiconductor masks.
740
556
 
741
- Redistribution and use in source and binary forms, with or without
742
- modification, are permitted provided that the following conditions are
743
- met:
557
+ "The Program" refers to any copyrightable work licensed under this
558
+ License. Each licensee is addressed as "you". "Licensees" and
559
+ "recipients" may be individuals or organizations.
744
560
 
745
- * Redistributions of source code must retain the above copyright
746
- notice, this list of conditions and the following disclaimer.
747
- * Redistributions in binary form must reproduce the above
748
- copyright notice, this list of conditions and the following disclaimer
749
- in the documentation and/or other materials provided with the
750
- distribution.
751
- * Neither the name of Google Inc. nor the names of its
752
- contributors may be used to endorse or promote products derived from
753
- this software without specific prior written permission.
561
+ To "modify" a work means to copy from or adapt all or part of the work
562
+ in a fashion requiring copyright permission, other than the making of an
563
+ exact copy. The resulting work is called a "modified version" of the
564
+ earlier work or a work "based on" the earlier work.
754
565
 
755
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
756
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
757
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
758
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
759
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
760
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
761
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
762
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
763
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
764
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
765
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
766
- ------------------
767
- github.com/stretchr/testify v1.7.0
768
- ------------------
769
- MIT License
566
+ A "covered work" means either the unmodified Program or a work based
567
+ on the Program.
770
568
 
771
- Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
569
+ To "propagate" a work means to do anything with it that, without
570
+ permission, would make you directly or secondarily liable for
571
+ infringement under applicable copyright law, except executing it on a
572
+ computer or modifying a private copy. Propagation includes copying,
573
+ distribution (with or without modification), making available to the
574
+ public, and in some countries other activities as well.
772
575
 
773
- Permission is hereby granted, free of charge, to any person obtaining a copy
774
- of this software and associated documentation files (the "Software"), to deal
775
- in the Software without restriction, including without limitation the rights
776
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
777
- copies of the Software, and to permit persons to whom the Software is
778
- furnished to do so, subject to the following conditions:
576
+ To "convey" a work means any kind of propagation that enables other
577
+ parties to make or receive copies. Mere interaction with a user through
578
+ a computer network, with no transfer of a copy, is not conveying.
779
579
 
780
- The above copyright notice and this permission notice shall be included in all
781
- copies or substantial portions of the Software.
580
+ An interactive user interface displays "Appropriate Legal Notices"
581
+ to the extent that it includes a convenient and prominently visible
582
+ feature that (1) displays an appropriate copyright notice, and (2)
583
+ tells the user that there is no warranty for the work (except to the
584
+ extent that warranties are provided), that licensees may convey the
585
+ work under this License, and how to view a copy of this License. If
586
+ the interface presents a list of user commands or options, such as a
587
+ menu, a prominent item in the list meets this criterion.
782
588
 
783
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
784
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
785
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
786
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
787
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
788
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
789
- SOFTWARE.
589
+ 1. Source Code.
790
590
 
791
- ------------------
792
- github.com/tklauser/go-sysconf v0.3.5
793
- ------------------
794
- BSD 3-Clause License
591
+ The "source code" for a work means the preferred form of the work
592
+ for making modifications to it. "Object code" means any non-source
593
+ form of a work.
795
594
 
796
- Copyright (c) 2018-2021, Tobias Klauser
797
- All rights reserved.
595
+ A "Standard Interface" means an interface that either is an official
596
+ standard defined by a recognized standards body, or, in the case of
597
+ interfaces specified for a particular programming language, one that
598
+ is widely used among developers working in that language.
798
599
 
799
- Redistribution and use in source and binary forms, with or without
800
- modification, are permitted provided that the following conditions are met:
801
-
802
- * Redistributions of source code must retain the above copyright notice, this
803
- list of conditions and the following disclaimer.
804
-
805
- * Redistributions in binary form must reproduce the above copyright notice,
806
- this list of conditions and the following disclaimer in the documentation
807
- and/or other materials provided with the distribution.
808
-
809
- * Neither the name of the copyright holder nor the names of its
810
- contributors may be used to endorse or promote products derived from
811
- this software without specific prior written permission.
812
-
813
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
814
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
815
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
816
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
817
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
818
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
819
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
820
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
821
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
822
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
823
-
824
- ------------------
825
- github.com/tklauser/numcpus v0.2.2
826
- ------------------
827
- Apache License
828
- Version 2.0, January 2004
829
- http://www.apache.org/licenses/
830
-
831
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
832
-
833
- 1. Definitions.
834
-
835
- "License" shall mean the terms and conditions for use, reproduction,
836
- and distribution as defined by Sections 1 through 9 of this document.
837
-
838
- "Licensor" shall mean the copyright owner or entity authorized by
839
- the copyright owner that is granting the License.
600
+ The "System Libraries" of an executable work include anything, other
601
+ than the work as a whole, that (a) is included in the normal form of
602
+ packaging a Major Component, but which is not part of that Major
603
+ Component, and (b) serves only to enable use of the work with that
604
+ Major Component, or to implement a Standard Interface for which an
605
+ implementation is available to the public in source code form. A
606
+ "Major Component", in this context, means a major essential component
607
+ (kernel, window system, and so on) of the specific operating system
608
+ (if any) on which the executable work runs, or a compiler used to
609
+ produce the work, or an object code interpreter used to run it.
840
610
 
841
- "Legal Entity" shall mean the union of the acting entity and all
842
- other entities that control, are controlled by, or are under common
843
- control with that entity. For the purposes of this definition,
844
- "control" means (i) the power, direct or indirect, to cause the
845
- direction or management of such entity, whether by contract or
846
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
847
- outstanding shares, or (iii) beneficial ownership of such entity.
611
+ The "Corresponding Source" for a work in object code form means all
612
+ the source code needed to generate, install, and (for an executable
613
+ work) run the object code and to modify the work, including scripts to
614
+ control those activities. However, it does not include the work's
615
+ System Libraries, or general-purpose tools or generally available free
616
+ programs which are used unmodified in performing those activities but
617
+ which are not part of the work. For example, Corresponding Source
618
+ includes interface definition files associated with source files for
619
+ the work, and the source code for shared libraries and dynamically
620
+ linked subprograms that the work is specifically designed to require,
621
+ such as by intimate data communication or control flow between those
622
+ subprograms and other parts of the work.
848
623
 
849
- "You" (or "Your") shall mean an individual or Legal Entity
850
- exercising permissions granted by this License.
624
+ The Corresponding Source need not include anything that users
625
+ can regenerate automatically from other parts of the Corresponding
626
+ Source.
851
627
 
852
- "Source" form shall mean the preferred form for making modifications,
853
- including but not limited to software source code, documentation
854
- source, and configuration files.
628
+ The Corresponding Source for a work in source code form is that
629
+ same work.
855
630
 
856
- "Object" form shall mean any form resulting from mechanical
857
- transformation or translation of a Source form, including but
858
- not limited to compiled object code, generated documentation,
859
- and conversions to other media types.
631
+ 2. Basic Permissions.
860
632
 
861
- "Work" shall mean the work of authorship, whether in Source or
862
- Object form, made available under the License, as indicated by a
863
- copyright notice that is included in or attached to the work
864
- (an example is provided in the Appendix below).
633
+ All rights granted under this License are granted for the term of
634
+ copyright on the Program, and are irrevocable provided the stated
635
+ conditions are met. This License explicitly affirms your unlimited
636
+ permission to run the unmodified Program. The output from running a
637
+ covered work is covered by this License only if the output, given its
638
+ content, constitutes a covered work. This License acknowledges your
639
+ rights of fair use or other equivalent, as provided by copyright law.
865
640
 
866
- "Derivative Works" shall mean any work, whether in Source or Object
867
- form, that is based on (or derived from) the Work and for which the
868
- editorial revisions, annotations, elaborations, or other modifications
869
- represent, as a whole, an original work of authorship. For the purposes
870
- of this License, Derivative Works shall not include works that remain
871
- separable from, or merely link (or bind by name) to the interfaces of,
872
- the Work and Derivative Works thereof.
641
+ You may make, run and propagate covered works that you do not
642
+ convey, without conditions so long as your license otherwise remains
643
+ in force. You may convey covered works to others for the sole purpose
644
+ of having them make modifications exclusively for you, or provide you
645
+ with facilities for running those works, provided that you comply with
646
+ the terms of this License in conveying all material for which you do
647
+ not control copyright. Those thus making or running the covered works
648
+ for you must do so exclusively on your behalf, under your direction
649
+ and control, on terms that prohibit them from making any copies of
650
+ your copyrighted material outside their relationship with you.
873
651
 
874
- "Contribution" shall mean any work of authorship, including
875
- the original version of the Work and any modifications or additions
876
- to that Work or Derivative Works thereof, that is intentionally
877
- submitted to Licensor for inclusion in the Work by the copyright owner
878
- or by an individual or Legal Entity authorized to submit on behalf of
879
- the copyright owner. For the purposes of this definition, "submitted"
880
- means any form of electronic, verbal, or written communication sent
881
- to the Licensor or its representatives, including but not limited to
882
- communication on electronic mailing lists, source code control systems,
883
- and issue tracking systems that are managed by, or on behalf of, the
884
- Licensor for the purpose of discussing and improving the Work, but
885
- excluding communication that is conspicuously marked or otherwise
886
- designated in writing by the copyright owner as "Not a Contribution."
652
+ Conveying under any other circumstances is permitted solely under
653
+ the conditions stated below. Sublicensing is not allowed; section 10
654
+ makes it unnecessary.
887
655
 
888
- "Contributor" shall mean Licensor and any individual or Legal Entity
889
- on behalf of whom a Contribution has been received by Licensor and
890
- subsequently incorporated within the Work.
656
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
891
657
 
892
- 2. Grant of Copyright License. Subject to the terms and conditions of
893
- this License, each Contributor hereby grants to You a perpetual,
894
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
895
- copyright license to reproduce, prepare Derivative Works of,
896
- publicly display, publicly perform, sublicense, and distribute the
897
- Work and such Derivative Works in Source or Object form.
658
+ No covered work shall be deemed part of an effective technological
659
+ measure under any applicable law fulfilling obligations under article
660
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
661
+ similar laws prohibiting or restricting circumvention of such
662
+ measures.
898
663
 
899
- 3. Grant of Patent License. Subject to the terms and conditions of
900
- this License, each Contributor hereby grants to You a perpetual,
901
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
902
- (except as stated in this section) patent license to make, have made,
903
- use, offer to sell, sell, import, and otherwise transfer the Work,
904
- where such license applies only to those patent claims licensable
905
- by such Contributor that are necessarily infringed by their
906
- Contribution(s) alone or by combination of their Contribution(s)
907
- with the Work to which such Contribution(s) was submitted. If You
908
- institute patent litigation against any entity (including a
909
- cross-claim or counterclaim in a lawsuit) alleging that the Work
910
- or a Contribution incorporated within the Work constitutes direct
911
- or contributory patent infringement, then any patent licenses
912
- granted to You under this License for that Work shall terminate
913
- as of the date such litigation is filed.
664
+ When you convey a covered work, you waive any legal power to forbid
665
+ circumvention of technological measures to the extent such circumvention
666
+ is effected by exercising rights under this License with respect to
667
+ the covered work, and you disclaim any intention to limit operation or
668
+ modification of the work as a means of enforcing, against the work's
669
+ users, your or third parties' legal rights to forbid circumvention of
670
+ technological measures.
914
671
 
915
- 4. Redistribution. You may reproduce and distribute copies of the
916
- Work or Derivative Works thereof in any medium, with or without
917
- modifications, and in Source or Object form, provided that You
918
- meet the following conditions:
672
+ 4. Conveying Verbatim Copies.
919
673
 
920
- (a) You must give any other recipients of the Work or
921
- Derivative Works a copy of this License; and
674
+ You may convey verbatim copies of the Program's source code as you
675
+ receive it, in any medium, provided that you conspicuously and
676
+ appropriately publish on each copy an appropriate copyright notice;
677
+ keep intact all notices stating that this License and any
678
+ non-permissive terms added in accord with section 7 apply to the code;
679
+ keep intact all notices of the absence of any warranty; and give all
680
+ recipients a copy of this License along with the Program.
922
681
 
923
- (b) You must cause any modified files to carry prominent notices
924
- stating that You changed the files; and
682
+ You may charge any price or no price for each copy that you convey,
683
+ and you may offer support or warranty protection for a fee.
925
684
 
926
- (c) You must retain, in the Source form of any Derivative Works
927
- that You distribute, all copyright, patent, trademark, and
928
- attribution notices from the Source form of the Work,
929
- excluding those notices that do not pertain to any part of
930
- the Derivative Works; and
685
+ 5. Conveying Modified Source Versions.
931
686
 
932
- (d) If the Work includes a "NOTICE" text file as part of its
933
- distribution, then any Derivative Works that You distribute must
934
- include a readable copy of the attribution notices contained
935
- within such NOTICE file, excluding those notices that do not
936
- pertain to any part of the Derivative Works, in at least one
937
- of the following places: within a NOTICE text file distributed
938
- as part of the Derivative Works; within the Source form or
939
- documentation, if provided along with the Derivative Works; or,
940
- within a display generated by the Derivative Works, if and
941
- wherever such third-party notices normally appear. The contents
942
- of the NOTICE file are for informational purposes only and
943
- do not modify the License. You may add Your own attribution
944
- notices within Derivative Works that You distribute, alongside
945
- or as an addendum to the NOTICE text from the Work, provided
946
- that such additional attribution notices cannot be construed
947
- as modifying the License.
687
+ You may convey a work based on the Program, or the modifications to
688
+ produce it from the Program, in the form of source code under the
689
+ terms of section 4, provided that you also meet all of these conditions:
948
690
 
949
- You may add Your own copyright statement to Your modifications and
950
- may provide additional or different license terms and conditions
951
- for use, reproduction, or distribution of Your modifications, or
952
- for any such Derivative Works as a whole, provided Your use,
953
- reproduction, and distribution of the Work otherwise complies with
954
- the conditions stated in this License.
691
+ a) The work must carry prominent notices stating that you modified
692
+ it, and giving a relevant date.
955
693
 
956
- 5. Submission of Contributions. Unless You explicitly state otherwise,
957
- any Contribution intentionally submitted for inclusion in the Work
958
- by You to the Licensor shall be under the terms and conditions of
959
- this License, without any additional terms or conditions.
960
- Notwithstanding the above, nothing herein shall supersede or modify
961
- the terms of any separate license agreement you may have executed
962
- with Licensor regarding such Contributions.
694
+ b) The work must carry prominent notices stating that it is
695
+ released under this License and any conditions added under section
696
+ 7. This requirement modifies the requirement in section 4 to
697
+ "keep intact all notices".
963
698
 
964
- 6. Trademarks. This License does not grant permission to use the trade
965
- names, trademarks, service marks, or product names of the Licensor,
966
- except as required for reasonable and customary use in describing the
967
- origin of the Work and reproducing the content of the NOTICE file.
699
+ c) You must license the entire work, as a whole, under this
700
+ License to anyone who comes into possession of a copy. This
701
+ License will therefore apply, along with any applicable section 7
702
+ additional terms, to the whole of the work, and all its parts,
703
+ regardless of how they are packaged. This License gives no
704
+ permission to license the work in any other way, but it does not
705
+ invalidate such permission if you have separately received it.
968
706
 
969
- 7. Disclaimer of Warranty. Unless required by applicable law or
970
- agreed to in writing, Licensor provides the Work (and each
971
- Contributor provides its Contributions) on an "AS IS" BASIS,
972
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
973
- implied, including, without limitation, any warranties or conditions
974
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
975
- PARTICULAR PURPOSE. You are solely responsible for determining the
976
- appropriateness of using or redistributing the Work and assume any
977
- risks associated with Your exercise of permissions under this License.
707
+ d) If the work has interactive user interfaces, each must display
708
+ Appropriate Legal Notices; however, if the Program has interactive
709
+ interfaces that do not display Appropriate Legal Notices, your
710
+ work need not make them do so.
978
711
 
979
- 8. Limitation of Liability. In no event and under no legal theory,
980
- whether in tort (including negligence), contract, or otherwise,
981
- unless required by applicable law (such as deliberate and grossly
982
- negligent acts) or agreed to in writing, shall any Contributor be
983
- liable to You for damages, including any direct, indirect, special,
984
- incidental, or consequential damages of any character arising as a
985
- result of this License or out of the use or inability to use the
986
- Work (including but not limited to damages for loss of goodwill,
987
- work stoppage, computer failure or malfunction, or any and all
988
- other commercial damages or losses), even if such Contributor
989
- has been advised of the possibility of such damages.
712
+ A compilation of a covered work with other separate and independent
713
+ works, which are not by their nature extensions of the covered work,
714
+ and which are not combined with it such as to form a larger program,
715
+ in or on a volume of a storage or distribution medium, is called an
716
+ "aggregate" if the compilation and its resulting copyright are not
717
+ used to limit the access or legal rights of the compilation's users
718
+ beyond what the individual works permit. Inclusion of a covered work
719
+ in an aggregate does not cause this License to apply to the other
720
+ parts of the aggregate.
990
721
 
991
- 9. Accepting Warranty or Additional Liability. While redistributing
992
- the Work or Derivative Works thereof, You may choose to offer,
993
- and charge a fee for, acceptance of support, warranty, indemnity,
994
- or other liability obligations and/or rights consistent with this
995
- License. However, in accepting such obligations, You may act only
996
- on Your own behalf and on Your sole responsibility, not on behalf
997
- of any other Contributor, and only if You agree to indemnify,
998
- defend, and hold each Contributor harmless for any liability
999
- incurred by, or claims asserted against, such Contributor by reason
1000
- of your accepting any such warranty or additional liability.
722
+ 6. Conveying Non-Source Forms.
1001
723
 
1002
- END OF TERMS AND CONDITIONS
724
+ You may convey a covered work in object code form under the terms
725
+ of sections 4 and 5, provided that you also convey the
726
+ machine-readable Corresponding Source under the terms of this License,
727
+ in one of these ways:
1003
728
 
1004
- APPENDIX: How to apply the Apache License to your work.
729
+ a) Convey the object code in, or embodied in, a physical product
730
+ (including a physical distribution medium), accompanied by the
731
+ Corresponding Source fixed on a durable physical medium
732
+ customarily used for software interchange.
1005
733
 
1006
- To apply the Apache License to your work, attach the following
1007
- boilerplate notice, with the fields enclosed by brackets "{}"
1008
- replaced with your own identifying information. (Don't include
1009
- the brackets!) The text should be enclosed in the appropriate
1010
- comment syntax for the file format. We also recommend that a
1011
- file or class name and description of purpose be included on the
1012
- same "printed page" as the copyright notice for easier
1013
- identification within third-party archives.
734
+ b) Convey the object code in, or embodied in, a physical product
735
+ (including a physical distribution medium), accompanied by a
736
+ written offer, valid for at least three years and valid for as
737
+ long as you offer spare parts or customer support for that product
738
+ model, to give anyone who possesses the object code either (1) a
739
+ copy of the Corresponding Source for all the software in the
740
+ product that is covered by this License, on a durable physical
741
+ medium customarily used for software interchange, for a price no
742
+ more than your reasonable cost of physically performing this
743
+ conveying of source, or (2) access to copy the
744
+ Corresponding Source from a network server at no charge.
1014
745
 
1015
- Copyright {yyyy} Authors of Cilium
746
+ c) Convey individual copies of the object code with a copy of the
747
+ written offer to provide the Corresponding Source. This
748
+ alternative is allowed only occasionally and noncommercially, and
749
+ only if you received the object code with such an offer, in accord
750
+ with subsection 6b.
1016
751
 
1017
- Licensed under the Apache License, Version 2.0 (the "License");
1018
- you may not use this file except in compliance with the License.
1019
- You may obtain a copy of the License at
752
+ d) Convey the object code by offering access from a designated
753
+ place (gratis or for a charge), and offer equivalent access to the
754
+ Corresponding Source in the same way through the same place at no
755
+ further charge. You need not require recipients to copy the
756
+ Corresponding Source along with the object code. If the place to
757
+ copy the object code is a network server, the Corresponding Source
758
+ may be on a different server (operated by you or a third party)
759
+ that supports equivalent copying facilities, provided you maintain
760
+ clear directions next to the object code saying where to find the
761
+ Corresponding Source. Regardless of what server hosts the
762
+ Corresponding Source, you remain obligated to ensure that it is
763
+ available for as long as needed to satisfy these requirements.
1020
764
 
1021
- http://www.apache.org/licenses/LICENSE-2.0
765
+ e) Convey the object code using peer-to-peer transmission, provided
766
+ you inform other peers where the object code and Corresponding
767
+ Source of the work are being offered to the general public at no
768
+ charge under subsection 6d.
1022
769
 
1023
- Unless required by applicable law or agreed to in writing, software
1024
- distributed under the License is distributed on an "AS IS" BASIS,
1025
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1026
- See the License for the specific language governing permissions and
1027
- limitations under the License.
770
+ A separable portion of the object code, whose source code is excluded
771
+ from the Corresponding Source as a System Library, need not be
772
+ included in conveying the object code work.
1028
773
 
774
+ A "User Product" is either (1) a "consumer product", which means any
775
+ tangible personal property which is normally used for personal, family,
776
+ or household purposes, or (2) anything designed or sold for incorporation
777
+ into a dwelling. In determining whether a product is a consumer product,
778
+ doubtful cases shall be resolved in favor of coverage. For a particular
779
+ product received by a particular user, "normally used" refers to a
780
+ typical or common use of that class of product, regardless of the status
781
+ of the particular user or of the way in which the particular user
782
+ actually uses, or expects or is expected to use, the product. A product
783
+ is a consumer product regardless of whether the product has substantial
784
+ commercial, industrial or non-consumer uses, unless such uses represent
785
+ the only significant mode of use of the product.
1029
786
 
1030
- ------------------
1031
- github.com/zabertech/go-ethereum v1.10.4-modified-2 (fork github.com/ethereum/go-ethereum)
1032
- ------------------
1033
- GNU GENERAL PUBLIC LICENSE
1034
- Version 3, 29 June 2007
787
+ "Installation Information" for a User Product means any methods,
788
+ procedures, authorization keys, or other information required to install
789
+ and execute modified versions of a covered work in that User Product from
790
+ a modified version of its Corresponding Source. The information must
791
+ suffice to ensure that the continued functioning of the modified object
792
+ code is in no case prevented or interfered with solely because
793
+ modification has been made.
1035
794
 
1036
- Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
1037
- Everyone is permitted to copy and distribute verbatim copies
1038
- of this license document, but changing it is not allowed.
795
+ If you convey an object code work under this section in, or with, or
796
+ specifically for use in, a User Product, and the conveying occurs as
797
+ part of a transaction in which the right of possession and use of the
798
+ User Product is transferred to the recipient in perpetuity or for a
799
+ fixed term (regardless of how the transaction is characterized), the
800
+ Corresponding Source conveyed under this section must be accompanied
801
+ by the Installation Information. But this requirement does not apply
802
+ if neither you nor any third party retains the ability to install
803
+ modified object code on the User Product (for example, the work has
804
+ been installed in ROM).
1039
805
 
1040
- Preamble
806
+ The requirement to provide Installation Information does not include a
807
+ requirement to continue to provide support service, warranty, or updates
808
+ for a work that has been modified or installed by the recipient, or for
809
+ the User Product in which it has been modified or installed. Access to a
810
+ network may be denied when the modification itself materially and
811
+ adversely affects the operation of the network or violates the rules and
812
+ protocols for communication across the network.
1041
813
 
1042
- The GNU General Public License is a free, copyleft license for
1043
- software and other kinds of works.
814
+ Corresponding Source conveyed, and Installation Information provided,
815
+ in accord with this section must be in a format that is publicly
816
+ documented (and with an implementation available to the public in
817
+ source code form), and must require no special password or key for
818
+ unpacking, reading or copying.
1044
819
 
1045
- The licenses for most software and other practical works are designed
1046
- to take away your freedom to share and change the works. By contrast,
1047
- the GNU General Public License is intended to guarantee your freedom to
1048
- share and change all versions of a program--to make sure it remains free
1049
- software for all its users. We, the Free Software Foundation, use the
1050
- GNU General Public License for most of our software; it applies also to
1051
- any other work released this way by its authors. You can apply it to
1052
- your programs, too.
820
+ 7. Additional Terms.
1053
821
 
1054
- When we speak of free software, we are referring to freedom, not
1055
- price. Our General Public Licenses are designed to make sure that you
1056
- have the freedom to distribute copies of free software (and charge for
1057
- them if you wish), that you receive source code or can get it if you
1058
- want it, that you can change the software or use pieces of it in new
1059
- free programs, and that you know you can do these things.
822
+ "Additional permissions" are terms that supplement the terms of this
823
+ License by making exceptions from one or more of its conditions.
824
+ Additional permissions that are applicable to the entire Program shall
825
+ be treated as though they were included in this License, to the extent
826
+ that they are valid under applicable law. If additional permissions
827
+ apply only to part of the Program, that part may be used separately
828
+ under those permissions, but the entire Program remains governed by
829
+ this License without regard to the additional permissions.
1060
830
 
1061
- To protect your rights, we need to prevent others from denying you
1062
- these rights or asking you to surrender the rights. Therefore, you have
1063
- certain responsibilities if you distribute copies of the software, or if
1064
- you modify it: responsibilities to respect the freedom of others.
831
+ When you convey a copy of a covered work, you may at your option
832
+ remove any additional permissions from that copy, or from any part of
833
+ it. (Additional permissions may be written to require their own
834
+ removal in certain cases when you modify the work.) You may place
835
+ additional permissions on material, added by you to a covered work,
836
+ for which you have or can give appropriate copyright permission.
1065
837
 
1066
- For example, if you distribute copies of such a program, whether
1067
- gratis or for a fee, you must pass on to the recipients the same
1068
- freedoms that you received. You must make sure that they, too, receive
1069
- or can get the source code. And you must show them these terms so they
1070
- know their rights.
838
+ Notwithstanding any other provision of this License, for material you
839
+ add to a covered work, you may (if authorized by the copyright holders of
840
+ that material) supplement the terms of this License with terms:
1071
841
 
1072
- Developers that use the GNU GPL protect your rights with two steps:
1073
- (1) assert copyright on the software, and (2) offer you this License
1074
- giving you legal permission to copy, distribute and/or modify it.
842
+ a) Disclaiming warranty or limiting liability differently from the
843
+ terms of sections 15 and 16 of this License; or
1075
844
 
1076
- For the developers' and authors' protection, the GPL clearly explains
1077
- that there is no warranty for this free software. For both users' and
1078
- authors' sake, the GPL requires that modified versions be marked as
1079
- changed, so that their problems will not be attributed erroneously to
1080
- authors of previous versions.
845
+ b) Requiring preservation of specified reasonable legal notices or
846
+ author attributions in that material or in the Appropriate Legal
847
+ Notices displayed by works containing it; or
1081
848
 
1082
- Some devices are designed to deny users access to install or run
1083
- modified versions of the software inside them, although the manufacturer
1084
- can do so. This is fundamentally incompatible with the aim of
1085
- protecting users' freedom to change the software. The systematic
1086
- pattern of such abuse occurs in the area of products for individuals to
1087
- use, which is precisely where it is most unacceptable. Therefore, we
1088
- have designed this version of the GPL to prohibit the practice for those
1089
- products. If such problems arise substantially in other domains, we
1090
- stand ready to extend this provision to those domains in future versions
1091
- of the GPL, as needed to protect the freedom of users.
849
+ c) Prohibiting misrepresentation of the origin of that material, or
850
+ requiring that modified versions of such material be marked in
851
+ reasonable ways as different from the original version; or
1092
852
 
1093
- Finally, every program is threatened constantly by software patents.
1094
- States should not allow patents to restrict development and use of
1095
- software on general-purpose computers, but in those that do, we wish to
1096
- avoid the special danger that patents applied to a free program could
1097
- make it effectively proprietary. To prevent this, the GPL assures that
1098
- patents cannot be used to render the program non-free.
853
+ d) Limiting the use for publicity purposes of names of licensors or
854
+ authors of the material; or
1099
855
 
1100
- The precise terms and conditions for copying, distribution and
1101
- modification follow.
856
+ e) Declining to grant rights under trademark law for use of some
857
+ trade names, trademarks, or service marks; or
1102
858
 
1103
- TERMS AND CONDITIONS
859
+ f) Requiring indemnification of licensors and authors of that
860
+ material by anyone who conveys the material (or modified versions of
861
+ it) with contractual assumptions of liability to the recipient, for
862
+ any liability that these contractual assumptions directly impose on
863
+ those licensors and authors.
1104
864
 
1105
- 0. Definitions.
865
+ All other non-permissive additional terms are considered "further
866
+ restrictions" within the meaning of section 10. If the Program as you
867
+ received it, or any part of it, contains a notice stating that it is
868
+ governed by this License along with a term that is a further
869
+ restriction, you may remove that term. If a license document contains
870
+ a further restriction but permits relicensing or conveying under this
871
+ License, you may add to a covered work material governed by the terms
872
+ of that license document, provided that the further restriction does
873
+ not survive such relicensing or conveying.
1106
874
 
1107
- "This License" refers to version 3 of the GNU General Public License.
875
+ If you add terms to a covered work in accord with this section, you
876
+ must place, in the relevant source files, a statement of the
877
+ additional terms that apply to those files, or a notice indicating
878
+ where to find the applicable terms.
1108
879
 
1109
- "Copyright" also means copyright-like laws that apply to other kinds of
1110
- works, such as semiconductor masks.
880
+ Additional terms, permissive or non-permissive, may be stated in the
881
+ form of a separately written license, or stated as exceptions;
882
+ the above requirements apply either way.
1111
883
 
1112
- "The Program" refers to any copyrightable work licensed under this
1113
- License. Each licensee is addressed as "you". "Licensees" and
1114
- "recipients" may be individuals or organizations.
884
+ 8. Termination.
1115
885
 
1116
- To "modify" a work means to copy from or adapt all or part of the work
1117
- in a fashion requiring copyright permission, other than the making of an
1118
- exact copy. The resulting work is called a "modified version" of the
1119
- earlier work or a work "based on" the earlier work.
886
+ You may not propagate or modify a covered work except as expressly
887
+ provided under this License. Any attempt otherwise to propagate or
888
+ modify it is void, and will automatically terminate your rights under
889
+ this License (including any patent licenses granted under the third
890
+ paragraph of section 11).
1120
891
 
1121
- A "covered work" means either the unmodified Program or a work based
1122
- on the Program.
892
+ However, if you cease all violation of this License, then your
893
+ license from a particular copyright holder is reinstated (a)
894
+ provisionally, unless and until the copyright holder explicitly and
895
+ finally terminates your license, and (b) permanently, if the copyright
896
+ holder fails to notify you of the violation by some reasonable means
897
+ prior to 60 days after the cessation.
1123
898
 
1124
- To "propagate" a work means to do anything with it that, without
1125
- permission, would make you directly or secondarily liable for
1126
- infringement under applicable copyright law, except executing it on a
1127
- computer or modifying a private copy. Propagation includes copying,
1128
- distribution (with or without modification), making available to the
1129
- public, and in some countries other activities as well.
899
+ Moreover, your license from a particular copyright holder is
900
+ reinstated permanently if the copyright holder notifies you of the
901
+ violation by some reasonable means, this is the first time you have
902
+ received notice of violation of this License (for any work) from that
903
+ copyright holder, and you cure the violation prior to 30 days after
904
+ your receipt of the notice.
1130
905
 
1131
- To "convey" a work means any kind of propagation that enables other
1132
- parties to make or receive copies. Mere interaction with a user through
1133
- a computer network, with no transfer of a copy, is not conveying.
906
+ Termination of your rights under this section does not terminate the
907
+ licenses of parties who have received copies or rights from you under
908
+ this License. If your rights have been terminated and not permanently
909
+ reinstated, you do not qualify to receive new licenses for the same
910
+ material under section 10.
1134
911
 
1135
- An interactive user interface displays "Appropriate Legal Notices"
1136
- to the extent that it includes a convenient and prominently visible
1137
- feature that (1) displays an appropriate copyright notice, and (2)
1138
- tells the user that there is no warranty for the work (except to the
1139
- extent that warranties are provided), that licensees may convey the
1140
- work under this License, and how to view a copy of this License. If
1141
- the interface presents a list of user commands or options, such as a
1142
- menu, a prominent item in the list meets this criterion.
912
+ 9. Acceptance Not Required for Having Copies.
1143
913
 
1144
- 1. Source Code.
914
+ You are not required to accept this License in order to receive or
915
+ run a copy of the Program. Ancillary propagation of a covered work
916
+ occurring solely as a consequence of using peer-to-peer transmission
917
+ to receive a copy likewise does not require acceptance. However,
918
+ nothing other than this License grants you permission to propagate or
919
+ modify any covered work. These actions infringe copyright if you do
920
+ not accept this License. Therefore, by modifying or propagating a
921
+ covered work, you indicate your acceptance of this License to do so.
1145
922
 
1146
- The "source code" for a work means the preferred form of the work
1147
- for making modifications to it. "Object code" means any non-source
1148
- form of a work.
923
+ 10. Automatic Licensing of Downstream Recipients.
1149
924
 
1150
- A "Standard Interface" means an interface that either is an official
1151
- standard defined by a recognized standards body, or, in the case of
1152
- interfaces specified for a particular programming language, one that
1153
- is widely used among developers working in that language.
925
+ Each time you convey a covered work, the recipient automatically
926
+ receives a license from the original licensors, to run, modify and
927
+ propagate that work, subject to this License. You are not responsible
928
+ for enforcing compliance by third parties with this License.
1154
929
 
1155
- The "System Libraries" of an executable work include anything, other
1156
- than the work as a whole, that (a) is included in the normal form of
1157
- packaging a Major Component, but which is not part of that Major
1158
- Component, and (b) serves only to enable use of the work with that
1159
- Major Component, or to implement a Standard Interface for which an
1160
- implementation is available to the public in source code form. A
1161
- "Major Component", in this context, means a major essential component
1162
- (kernel, window system, and so on) of the specific operating system
1163
- (if any) on which the executable work runs, or a compiler used to
1164
- produce the work, or an object code interpreter used to run it.
930
+ An "entity transaction" is a transaction transferring control of an
931
+ organization, or substantially all assets of one, or subdividing an
932
+ organization, or merging organizations. If propagation of a covered
933
+ work results from an entity transaction, each party to that
934
+ transaction who receives a copy of the work also receives whatever
935
+ licenses to the work the party's predecessor in interest had or could
936
+ give under the previous paragraph, plus a right to possession of the
937
+ Corresponding Source of the work from the predecessor in interest, if
938
+ the predecessor has it or can get it with reasonable efforts.
1165
939
 
1166
- The "Corresponding Source" for a work in object code form means all
1167
- the source code needed to generate, install, and (for an executable
1168
- work) run the object code and to modify the work, including scripts to
1169
- control those activities. However, it does not include the work's
1170
- System Libraries, or general-purpose tools or generally available free
1171
- programs which are used unmodified in performing those activities but
1172
- which are not part of the work. For example, Corresponding Source
1173
- includes interface definition files associated with source files for
1174
- the work, and the source code for shared libraries and dynamically
1175
- linked subprograms that the work is specifically designed to require,
1176
- such as by intimate data communication or control flow between those
1177
- subprograms and other parts of the work.
940
+ You may not impose any further restrictions on the exercise of the
941
+ rights granted or affirmed under this License. For example, you may
942
+ not impose a license fee, royalty, or other charge for exercise of
943
+ rights granted under this License, and you may not initiate litigation
944
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
945
+ any patent claim is infringed by making, using, selling, offering for
946
+ sale, or importing the Program or any portion of it.
1178
947
 
1179
- The Corresponding Source need not include anything that users
1180
- can regenerate automatically from other parts of the Corresponding
1181
- Source.
948
+ 11. Patents.
1182
949
 
1183
- The Corresponding Source for a work in source code form is that
1184
- same work.
950
+ A "contributor" is a copyright holder who authorizes use under this
951
+ License of the Program or a work on which the Program is based. The
952
+ work thus licensed is called the contributor's "contributor version".
1185
953
 
1186
- 2. Basic Permissions.
954
+ A contributor's "essential patent claims" are all patent claims
955
+ owned or controlled by the contributor, whether already acquired or
956
+ hereafter acquired, that would be infringed by some manner, permitted
957
+ by this License, of making, using, or selling its contributor version,
958
+ but do not include claims that would be infringed only as a
959
+ consequence of further modification of the contributor version. For
960
+ purposes of this definition, "control" includes the right to grant
961
+ patent sublicenses in a manner consistent with the requirements of
962
+ this License.
1187
963
 
1188
- All rights granted under this License are granted for the term of
1189
- copyright on the Program, and are irrevocable provided the stated
1190
- conditions are met. This License explicitly affirms your unlimited
1191
- permission to run the unmodified Program. The output from running a
1192
- covered work is covered by this License only if the output, given its
1193
- content, constitutes a covered work. This License acknowledges your
1194
- rights of fair use or other equivalent, as provided by copyright law.
964
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
965
+ patent license under the contributor's essential patent claims, to
966
+ make, use, sell, offer for sale, import and otherwise run, modify and
967
+ propagate the contents of its contributor version.
1195
968
 
1196
- You may make, run and propagate covered works that you do not
1197
- convey, without conditions so long as your license otherwise remains
1198
- in force. You may convey covered works to others for the sole purpose
1199
- of having them make modifications exclusively for you, or provide you
1200
- with facilities for running those works, provided that you comply with
1201
- the terms of this License in conveying all material for which you do
1202
- not control copyright. Those thus making or running the covered works
1203
- for you must do so exclusively on your behalf, under your direction
1204
- and control, on terms that prohibit them from making any copies of
1205
- your copyrighted material outside their relationship with you.
969
+ In the following three paragraphs, a "patent license" is any express
970
+ agreement or commitment, however denominated, not to enforce a patent
971
+ (such as an express permission to practice a patent or covenant not to
972
+ sue for patent infringement). To "grant" such a patent license to a
973
+ party means to make such an agreement or commitment not to enforce a
974
+ patent against the party.
1206
975
 
1207
- Conveying under any other circumstances is permitted solely under
1208
- the conditions stated below. Sublicensing is not allowed; section 10
1209
- makes it unnecessary.
976
+ If you convey a covered work, knowingly relying on a patent license,
977
+ and the Corresponding Source of the work is not available for anyone
978
+ to copy, free of charge and under the terms of this License, through a
979
+ publicly available network server or other readily accessible means,
980
+ then you must either (1) cause the Corresponding Source to be so
981
+ available, or (2) arrange to deprive yourself of the benefit of the
982
+ patent license for this particular work, or (3) arrange, in a manner
983
+ consistent with the requirements of this License, to extend the patent
984
+ license to downstream recipients. "Knowingly relying" means you have
985
+ actual knowledge that, but for the patent license, your conveying the
986
+ covered work in a country, or your recipient's use of the covered work
987
+ in a country, would infringe one or more identifiable patents in that
988
+ country that you have reason to believe are valid.
1210
989
 
1211
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
990
+ If, pursuant to or in connection with a single transaction or
991
+ arrangement, you convey, or propagate by procuring conveyance of, a
992
+ covered work, and grant a patent license to some of the parties
993
+ receiving the covered work authorizing them to use, propagate, modify
994
+ or convey a specific copy of the covered work, then the patent license
995
+ you grant is automatically extended to all recipients of the covered
996
+ work and works based on it.
1212
997
 
1213
- No covered work shall be deemed part of an effective technological
1214
- measure under any applicable law fulfilling obligations under article
1215
- 11 of the WIPO copyright treaty adopted on 20 December 1996, or
1216
- similar laws prohibiting or restricting circumvention of such
1217
- measures.
998
+ A patent license is "discriminatory" if it does not include within
999
+ the scope of its coverage, prohibits the exercise of, or is
1000
+ conditioned on the non-exercise of one or more of the rights that are
1001
+ specifically granted under this License. You may not convey a covered
1002
+ work if you are a party to an arrangement with a third party that is
1003
+ in the business of distributing software, under which you make payment
1004
+ to the third party based on the extent of your activity of conveying
1005
+ the work, and under which the third party grants, to any of the
1006
+ parties who would receive the covered work from you, a discriminatory
1007
+ patent license (a) in connection with copies of the covered work
1008
+ conveyed by you (or copies made from those copies), or (b) primarily
1009
+ for and in connection with specific products or compilations that
1010
+ contain the covered work, unless you entered into that arrangement,
1011
+ or that patent license was granted, prior to 28 March 2007.
1218
1012
 
1219
- When you convey a covered work, you waive any legal power to forbid
1220
- circumvention of technological measures to the extent such circumvention
1221
- is effected by exercising rights under this License with respect to
1222
- the covered work, and you disclaim any intention to limit operation or
1223
- modification of the work as a means of enforcing, against the work's
1224
- users, your or third parties' legal rights to forbid circumvention of
1225
- technological measures.
1013
+ Nothing in this License shall be construed as excluding or limiting
1014
+ any implied license or other defenses to infringement that may
1015
+ otherwise be available to you under applicable patent law.
1226
1016
 
1227
- 4. Conveying Verbatim Copies.
1017
+ 12. No Surrender of Others' Freedom.
1228
1018
 
1229
- You may convey verbatim copies of the Program's source code as you
1230
- receive it, in any medium, provided that you conspicuously and
1231
- appropriately publish on each copy an appropriate copyright notice;
1232
- keep intact all notices stating that this License and any
1233
- non-permissive terms added in accord with section 7 apply to the code;
1234
- keep intact all notices of the absence of any warranty; and give all
1235
- recipients a copy of this License along with the Program.
1019
+ If conditions are imposed on you (whether by court order, agreement or
1020
+ otherwise) that contradict the conditions of this License, they do not
1021
+ excuse you from the conditions of this License. If you cannot convey a
1022
+ covered work so as to satisfy simultaneously your obligations under this
1023
+ License and any other pertinent obligations, then as a consequence you may
1024
+ not convey it at all. For example, if you agree to terms that obligate you
1025
+ to collect a royalty for further conveying from those to whom you convey
1026
+ the Program, the only way you could satisfy both those terms and this
1027
+ License would be to refrain entirely from conveying the Program.
1236
1028
 
1237
- You may charge any price or no price for each copy that you convey,
1238
- and you may offer support or warranty protection for a fee.
1029
+ 13. Use with the GNU Affero General Public License.
1239
1030
 
1240
- 5. Conveying Modified Source Versions.
1031
+ Notwithstanding any other provision of this License, you have
1032
+ permission to link or combine any covered work with a work licensed
1033
+ under version 3 of the GNU Affero General Public License into a single
1034
+ combined work, and to convey the resulting work. The terms of this
1035
+ License will continue to apply to the part which is the covered work,
1036
+ but the special requirements of the GNU Affero General Public License,
1037
+ section 13, concerning interaction through a network will apply to the
1038
+ combination as such.
1241
1039
 
1242
- You may convey a work based on the Program, or the modifications to
1243
- produce it from the Program, in the form of source code under the
1244
- terms of section 4, provided that you also meet all of these conditions:
1040
+ 14. Revised Versions of this License.
1245
1041
 
1246
- a) The work must carry prominent notices stating that you modified
1247
- it, and giving a relevant date.
1042
+ The Free Software Foundation may publish revised and/or new versions of
1043
+ the GNU General Public License from time to time. Such new versions will
1044
+ be similar in spirit to the present version, but may differ in detail to
1045
+ address new problems or concerns.
1248
1046
 
1249
- b) The work must carry prominent notices stating that it is
1250
- released under this License and any conditions added under section
1251
- 7. This requirement modifies the requirement in section 4 to
1252
- "keep intact all notices".
1047
+ Each version is given a distinguishing version number. If the
1048
+ Program specifies that a certain numbered version of the GNU General
1049
+ Public License "or any later version" applies to it, you have the
1050
+ option of following the terms and conditions either of that numbered
1051
+ version or of any later version published by the Free Software
1052
+ Foundation. If the Program does not specify a version number of the
1053
+ GNU General Public License, you may choose any version ever published
1054
+ by the Free Software Foundation.
1253
1055
 
1254
- c) You must license the entire work, as a whole, under this
1255
- License to anyone who comes into possession of a copy. This
1256
- License will therefore apply, along with any applicable section 7
1257
- additional terms, to the whole of the work, and all its parts,
1258
- regardless of how they are packaged. This License gives no
1259
- permission to license the work in any other way, but it does not
1260
- invalidate such permission if you have separately received it.
1056
+ If the Program specifies that a proxy can decide which future
1057
+ versions of the GNU General Public License can be used, that proxy's
1058
+ public statement of acceptance of a version permanently authorizes you
1059
+ to choose that version for the Program.
1261
1060
 
1262
- d) If the work has interactive user interfaces, each must display
1263
- Appropriate Legal Notices; however, if the Program has interactive
1264
- interfaces that do not display Appropriate Legal Notices, your
1265
- work need not make them do so.
1061
+ Later license versions may give you additional or different
1062
+ permissions. However, no additional obligations are imposed on any
1063
+ author or copyright holder as a result of your choosing to follow a
1064
+ later version.
1266
1065
 
1267
- A compilation of a covered work with other separate and independent
1268
- works, which are not by their nature extensions of the covered work,
1269
- and which are not combined with it such as to form a larger program,
1270
- in or on a volume of a storage or distribution medium, is called an
1271
- "aggregate" if the compilation and its resulting copyright are not
1272
- used to limit the access or legal rights of the compilation's users
1273
- beyond what the individual works permit. Inclusion of a covered work
1274
- in an aggregate does not cause this License to apply to the other
1275
- parts of the aggregate.
1066
+ 15. Disclaimer of Warranty.
1276
1067
 
1277
- 6. Conveying Non-Source Forms.
1068
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
1069
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
1070
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
1071
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
1072
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1073
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
1074
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
1075
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
1278
1076
 
1279
- You may convey a covered work in object code form under the terms
1280
- of sections 4 and 5, provided that you also convey the
1281
- machine-readable Corresponding Source under the terms of this License,
1282
- in one of these ways:
1077
+ 16. Limitation of Liability.
1283
1078
 
1284
- a) Convey the object code in, or embodied in, a physical product
1285
- (including a physical distribution medium), accompanied by the
1286
- Corresponding Source fixed on a durable physical medium
1287
- customarily used for software interchange.
1079
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
1080
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
1081
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
1082
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
1083
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
1084
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
1085
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
1086
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
1087
+ SUCH DAMAGES.
1288
1088
 
1289
- b) Convey the object code in, or embodied in, a physical product
1290
- (including a physical distribution medium), accompanied by a
1291
- written offer, valid for at least three years and valid for as
1292
- long as you offer spare parts or customer support for that product
1293
- model, to give anyone who possesses the object code either (1) a
1294
- copy of the Corresponding Source for all the software in the
1295
- product that is covered by this License, on a durable physical
1296
- medium customarily used for software interchange, for a price no
1297
- more than your reasonable cost of physically performing this
1298
- conveying of source, or (2) access to copy the
1299
- Corresponding Source from a network server at no charge.
1089
+ 17. Interpretation of Sections 15 and 16.
1300
1090
 
1301
- c) Convey individual copies of the object code with a copy of the
1302
- written offer to provide the Corresponding Source. This
1303
- alternative is allowed only occasionally and noncommercially, and
1304
- only if you received the object code with such an offer, in accord
1305
- with subsection 6b.
1091
+ If the disclaimer of warranty and limitation of liability provided
1092
+ above cannot be given local legal effect according to their terms,
1093
+ reviewing courts shall apply local law that most closely approximates
1094
+ an absolute waiver of all civil liability in connection with the
1095
+ Program, unless a warranty or assumption of liability accompanies a
1096
+ copy of the Program in return for a fee.
1306
1097
 
1307
- d) Convey the object code by offering access from a designated
1308
- place (gratis or for a charge), and offer equivalent access to the
1309
- Corresponding Source in the same way through the same place at no
1310
- further charge. You need not require recipients to copy the
1311
- Corresponding Source along with the object code. If the place to
1312
- copy the object code is a network server, the Corresponding Source
1313
- may be on a different server (operated by you or a third party)
1314
- that supports equivalent copying facilities, provided you maintain
1315
- clear directions next to the object code saying where to find the
1316
- Corresponding Source. Regardless of what server hosts the
1317
- Corresponding Source, you remain obligated to ensure that it is
1318
- available for as long as needed to satisfy these requirements.
1098
+ END OF TERMS AND CONDITIONS
1319
1099
 
1320
- e) Convey the object code using peer-to-peer transmission, provided
1321
- you inform other peers where the object code and Corresponding
1322
- Source of the work are being offered to the general public at no
1323
- charge under subsection 6d.
1100
+ How to Apply These Terms to Your New Programs
1324
1101
 
1325
- A separable portion of the object code, whose source code is excluded
1326
- from the Corresponding Source as a System Library, need not be
1327
- included in conveying the object code work.
1102
+ If you develop a new program, and you want it to be of the greatest
1103
+ possible use to the public, the best way to achieve this is to make it
1104
+ free software which everyone can redistribute and change under these terms.
1328
1105
 
1329
- A "User Product" is either (1) a "consumer product", which means any
1330
- tangible personal property which is normally used for personal, family,
1331
- or household purposes, or (2) anything designed or sold for incorporation
1332
- into a dwelling. In determining whether a product is a consumer product,
1333
- doubtful cases shall be resolved in favor of coverage. For a particular
1334
- product received by a particular user, "normally used" refers to a
1335
- typical or common use of that class of product, regardless of the status
1336
- of the particular user or of the way in which the particular user
1337
- actually uses, or expects or is expected to use, the product. A product
1338
- is a consumer product regardless of whether the product has substantial
1339
- commercial, industrial or non-consumer uses, unless such uses represent
1340
- the only significant mode of use of the product.
1106
+ To do so, attach the following notices to the program. It is safest
1107
+ to attach them to the start of each source file to most effectively
1108
+ state the exclusion of warranty; and each file should have at least
1109
+ the "copyright" line and a pointer to where the full notice is found.
1341
1110
 
1342
- "Installation Information" for a User Product means any methods,
1343
- procedures, authorization keys, or other information required to install
1344
- and execute modified versions of a covered work in that User Product from
1345
- a modified version of its Corresponding Source. The information must
1346
- suffice to ensure that the continued functioning of the modified object
1347
- code is in no case prevented or interfered with solely because
1348
- modification has been made.
1111
+ <one line to give the program's name and a brief idea of what it does.>
1112
+ Copyright (C) <year> <name of author>
1349
1113
 
1350
- If you convey an object code work under this section in, or with, or
1351
- specifically for use in, a User Product, and the conveying occurs as
1352
- part of a transaction in which the right of possession and use of the
1353
- User Product is transferred to the recipient in perpetuity or for a
1354
- fixed term (regardless of how the transaction is characterized), the
1355
- Corresponding Source conveyed under this section must be accompanied
1356
- by the Installation Information. But this requirement does not apply
1357
- if neither you nor any third party retains the ability to install
1358
- modified object code on the User Product (for example, the work has
1359
- been installed in ROM).
1114
+ This program is free software: you can redistribute it and/or modify
1115
+ it under the terms of the GNU General Public License as published by
1116
+ the Free Software Foundation, either version 3 of the License, or
1117
+ (at your option) any later version.
1360
1118
 
1361
- The requirement to provide Installation Information does not include a
1362
- requirement to continue to provide support service, warranty, or updates
1363
- for a work that has been modified or installed by the recipient, or for
1364
- the User Product in which it has been modified or installed. Access to a
1365
- network may be denied when the modification itself materially and
1366
- adversely affects the operation of the network or violates the rules and
1367
- protocols for communication across the network.
1119
+ This program is distributed in the hope that it will be useful,
1120
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1121
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1122
+ GNU General Public License for more details.
1368
1123
 
1369
- Corresponding Source conveyed, and Installation Information provided,
1370
- in accord with this section must be in a format that is publicly
1371
- documented (and with an implementation available to the public in
1372
- source code form), and must require no special password or key for
1373
- unpacking, reading or copying.
1124
+ You should have received a copy of the GNU General Public License
1125
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
1374
1126
 
1375
- 7. Additional Terms.
1127
+ Also add information on how to contact you by electronic and paper mail.
1376
1128
 
1377
- "Additional permissions" are terms that supplement the terms of this
1378
- License by making exceptions from one or more of its conditions.
1379
- Additional permissions that are applicable to the entire Program shall
1380
- be treated as though they were included in this License, to the extent
1381
- that they are valid under applicable law. If additional permissions
1382
- apply only to part of the Program, that part may be used separately
1383
- under those permissions, but the entire Program remains governed by
1384
- this License without regard to the additional permissions.
1129
+ If the program does terminal interaction, make it output a short
1130
+ notice like this when it starts in an interactive mode:
1385
1131
 
1386
- When you convey a copy of a covered work, you may at your option
1387
- remove any additional permissions from that copy, or from any part of
1388
- it. (Additional permissions may be written to require their own
1389
- removal in certain cases when you modify the work.) You may place
1390
- additional permissions on material, added by you to a covered work,
1391
- for which you have or can give appropriate copyright permission.
1132
+ <program> Copyright (C) <year> <name of author>
1133
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
1134
+ This is free software, and you are welcome to redistribute it
1135
+ under certain conditions; type `show c' for details.
1392
1136
 
1393
- Notwithstanding any other provision of this License, for material you
1394
- add to a covered work, you may (if authorized by the copyright holders of
1395
- that material) supplement the terms of this License with terms:
1137
+ The hypothetical commands `show w' and `show c' should show the appropriate
1138
+ parts of the General Public License. Of course, your program's commands
1139
+ might be different; for a GUI interface, you would use an "about box".
1396
1140
 
1397
- a) Disclaiming warranty or limiting liability differently from the
1398
- terms of sections 15 and 16 of this License; or
1141
+ You should also get your employer (if you work as a programmer) or school,
1142
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
1143
+ For more information on this, and how to apply and follow the GNU GPL, see
1144
+ <https://www.gnu.org/licenses/>.
1399
1145
 
1400
- b) Requiring preservation of specified reasonable legal notices or
1401
- author attributions in that material or in the Appropriate Legal
1402
- Notices displayed by works containing it; or
1146
+ The GNU General Public License does not permit incorporating your program
1147
+ into proprietary programs. If your program is a subroutine library, you
1148
+ may consider it more useful to permit linking proprietary applications with
1149
+ the library. If this is what you want to do, use the GNU Lesser General
1150
+ Public License instead of this License. But first, please read
1151
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
1403
1152
 
1404
- c) Prohibiting misrepresentation of the origin of that material, or
1405
- requiring that modified versions of such material be marked in
1406
- reasonable ways as different from the original version; or
1153
+ ------------------
1154
+ github.com/zabertech/go-serial v0.0.0-20210201195853-2428148c5139 (fork github.com/bugst/go-serial)
1155
+ ------------------
1407
1156
 
1408
- d) Limiting the use for publicity purposes of names of licensors or
1409
- authors of the material; or
1157
+ Copyright (c) 2014-2016, Cristian Maglie.
1158
+ All rights reserved.
1410
1159
 
1411
- e) Declining to grant rights under trademark law for use of some
1412
- trade names, trademarks, or service marks; or
1160
+ Redistribution and use in source and binary forms, with or without
1161
+ modification, are permitted provided that the following conditions
1162
+ are met:
1413
1163
 
1414
- f) Requiring indemnification of licensors and authors of that
1415
- material by anyone who conveys the material (or modified versions of
1416
- it) with contractual assumptions of liability to the recipient, for
1417
- any liability that these contractual assumptions directly impose on
1418
- those licensors and authors.
1164
+ 1. Redistributions of source code must retain the above copyright
1165
+ notice, this list of conditions and the following disclaimer.
1419
1166
 
1420
- All other non-permissive additional terms are considered "further
1421
- restrictions" within the meaning of section 10. If the Program as you
1422
- received it, or any part of it, contains a notice stating that it is
1423
- governed by this License along with a term that is a further
1424
- restriction, you may remove that term. If a license document contains
1425
- a further restriction but permits relicensing or conveying under this
1426
- License, you may add to a covered work material governed by the terms
1427
- of that license document, provided that the further restriction does
1428
- not survive such relicensing or conveying.
1167
+ 2. Redistributions in binary form must reproduce the above copyright
1168
+ notice, this list of conditions and the following disclaimer in
1169
+ the documentation and/or other materials provided with the
1170
+ distribution.
1429
1171
 
1430
- If you add terms to a covered work in accord with this section, you
1431
- must place, in the relevant source files, a statement of the
1432
- additional terms that apply to those files, or a notice indicating
1433
- where to find the applicable terms.
1172
+ 3. Neither the name of the copyright holder nor the names of its
1173
+ contributors may be used to endorse or promote products derived
1174
+ from this software without specific prior written permission.
1434
1175
 
1435
- Additional terms, permissive or non-permissive, may be stated in the
1436
- form of a separately written license, or stated as exceptions;
1437
- the above requirements apply either way.
1176
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1177
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1178
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
1179
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
1180
+ COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
1181
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
1182
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1183
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1184
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1185
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
1186
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1187
+ POSSIBILITY OF SUCH DAMAGE.
1438
1188
 
1439
- 8. Termination.
1440
1189
 
1441
- You may not propagate or modify a covered work except as expressly
1442
- provided under this License. Any attempt otherwise to propagate or
1443
- modify it is void, and will automatically terminate your rights under
1444
- this License (including any patent licenses granted under the third
1445
- paragraph of section 11).
1190
+ ------------------
1191
+ gitlab.com/ZaberTech/zaber-device-db-service v0.0.0-20240228235225-fa0861270201
1192
+ ------------------
1193
+ Copyright 2022 Zaber Technologies Inc.
1194
+
1195
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1446
1196
 
1447
- However, if you cease all violation of this License, then your
1448
- license from a particular copyright holder is reinstated (a)
1449
- provisionally, unless and until the copyright holder explicitly and
1450
- finally terminates your license, and (b) permanently, if the copyright
1451
- holder fails to notify you of the violation by some reasonable means
1452
- prior to 60 days after the cessation.
1197
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1453
1198
 
1454
- Moreover, your license from a particular copyright holder is
1455
- reinstated permanently if the copyright holder notifies you of the
1456
- violation by some reasonable means, this is the first time you have
1457
- received notice of violation of this License (for any work) from that
1458
- copyright holder, and you cure the violation prior to 30 days after
1459
- your receipt of the notice.
1199
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1460
1200
 
1461
- Termination of your rights under this section does not terminate the
1462
- licenses of parties who have received copies or rights from you under
1463
- this License. If your rights have been terminated and not permanently
1464
- reinstated, you do not qualify to receive new licenses for the same
1465
- material under section 10.
1201
+ ------------------
1202
+ gitlab.com/ZaberTech/zaber-go-lib v0.0.0-20240328212536-999ed1bc7b42
1203
+ ------------------
1204
+ Copyright 2022 Zaber Technologies Inc.
1466
1205
 
1467
- 9. Acceptance Not Required for Having Copies.
1206
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1468
1207
 
1469
- You are not required to accept this License in order to receive or
1470
- run a copy of the Program. Ancillary propagation of a covered work
1471
- occurring solely as a consequence of using peer-to-peer transmission
1472
- to receive a copy likewise does not require acceptance. However,
1473
- nothing other than this License grants you permission to propagate or
1474
- modify any covered work. These actions infringe copyright if you do
1475
- not accept this License. Therefore, by modifying or propagating a
1476
- covered work, you indicate your acceptance of this License to do so.
1208
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1477
1209
 
1478
- 10. Automatic Licensing of Downstream Recipients.
1210
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1479
1211
 
1480
- Each time you convey a covered work, the recipient automatically
1481
- receives a license from the original licensors, to run, modify and
1482
- propagate that work, subject to this License. You are not responsible
1483
- for enforcing compliance by third parties with this License.
1212
+ ------------------
1213
+ go.mongodb.org/mongo-driver v1.14.0
1214
+ ------------------
1215
+ Apache License
1216
+ Version 2.0, January 2004
1217
+ http://www.apache.org/licenses/
1484
1218
 
1485
- An "entity transaction" is a transaction transferring control of an
1486
- organization, or substantially all assets of one, or subdividing an
1487
- organization, or merging organizations. If propagation of a covered
1488
- work results from an entity transaction, each party to that
1489
- transaction who receives a copy of the work also receives whatever
1490
- licenses to the work the party's predecessor in interest had or could
1491
- give under the previous paragraph, plus a right to possession of the
1492
- Corresponding Source of the work from the predecessor in interest, if
1493
- the predecessor has it or can get it with reasonable efforts.
1219
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1494
1220
 
1495
- You may not impose any further restrictions on the exercise of the
1496
- rights granted or affirmed under this License. For example, you may
1497
- not impose a license fee, royalty, or other charge for exercise of
1498
- rights granted under this License, and you may not initiate litigation
1499
- (including a cross-claim or counterclaim in a lawsuit) alleging that
1500
- any patent claim is infringed by making, using, selling, offering for
1501
- sale, or importing the Program or any portion of it.
1221
+ 1. Definitions.
1502
1222
 
1503
- 11. Patents.
1223
+ "License" shall mean the terms and conditions for use, reproduction,
1224
+ and distribution as defined by Sections 1 through 9 of this document.
1504
1225
 
1505
- A "contributor" is a copyright holder who authorizes use under this
1506
- License of the Program or a work on which the Program is based. The
1507
- work thus licensed is called the contributor's "contributor version".
1226
+ "Licensor" shall mean the copyright owner or entity authorized by
1227
+ the copyright owner that is granting the License.
1508
1228
 
1509
- A contributor's "essential patent claims" are all patent claims
1510
- owned or controlled by the contributor, whether already acquired or
1511
- hereafter acquired, that would be infringed by some manner, permitted
1512
- by this License, of making, using, or selling its contributor version,
1513
- but do not include claims that would be infringed only as a
1514
- consequence of further modification of the contributor version. For
1515
- purposes of this definition, "control" includes the right to grant
1516
- patent sublicenses in a manner consistent with the requirements of
1517
- this License.
1229
+ "Legal Entity" shall mean the union of the acting entity and all
1230
+ other entities that control, are controlled by, or are under common
1231
+ control with that entity. For the purposes of this definition,
1232
+ "control" means (i) the power, direct or indirect, to cause the
1233
+ direction or management of such entity, whether by contract or
1234
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1235
+ outstanding shares, or (iii) beneficial ownership of such entity.
1518
1236
 
1519
- Each contributor grants you a non-exclusive, worldwide, royalty-free
1520
- patent license under the contributor's essential patent claims, to
1521
- make, use, sell, offer for sale, import and otherwise run, modify and
1522
- propagate the contents of its contributor version.
1237
+ "You" (or "Your") shall mean an individual or Legal Entity
1238
+ exercising permissions granted by this License.
1523
1239
 
1524
- In the following three paragraphs, a "patent license" is any express
1525
- agreement or commitment, however denominated, not to enforce a patent
1526
- (such as an express permission to practice a patent or covenant not to
1527
- sue for patent infringement). To "grant" such a patent license to a
1528
- party means to make such an agreement or commitment not to enforce a
1529
- patent against the party.
1240
+ "Source" form shall mean the preferred form for making modifications,
1241
+ including but not limited to software source code, documentation
1242
+ source, and configuration files.
1530
1243
 
1531
- If you convey a covered work, knowingly relying on a patent license,
1532
- and the Corresponding Source of the work is not available for anyone
1533
- to copy, free of charge and under the terms of this License, through a
1534
- publicly available network server or other readily accessible means,
1535
- then you must either (1) cause the Corresponding Source to be so
1536
- available, or (2) arrange to deprive yourself of the benefit of the
1537
- patent license for this particular work, or (3) arrange, in a manner
1538
- consistent with the requirements of this License, to extend the patent
1539
- license to downstream recipients. "Knowingly relying" means you have
1540
- actual knowledge that, but for the patent license, your conveying the
1541
- covered work in a country, or your recipient's use of the covered work
1542
- in a country, would infringe one or more identifiable patents in that
1543
- country that you have reason to believe are valid.
1244
+ "Object" form shall mean any form resulting from mechanical
1245
+ transformation or translation of a Source form, including but
1246
+ not limited to compiled object code, generated documentation,
1247
+ and conversions to other media types.
1544
1248
 
1545
- If, pursuant to or in connection with a single transaction or
1546
- arrangement, you convey, or propagate by procuring conveyance of, a
1547
- covered work, and grant a patent license to some of the parties
1548
- receiving the covered work authorizing them to use, propagate, modify
1549
- or convey a specific copy of the covered work, then the patent license
1550
- you grant is automatically extended to all recipients of the covered
1551
- work and works based on it.
1249
+ "Work" shall mean the work of authorship, whether in Source or
1250
+ Object form, made available under the License, as indicated by a
1251
+ copyright notice that is included in or attached to the work
1252
+ (an example is provided in the Appendix below).
1552
1253
 
1553
- A patent license is "discriminatory" if it does not include within
1554
- the scope of its coverage, prohibits the exercise of, or is
1555
- conditioned on the non-exercise of one or more of the rights that are
1556
- specifically granted under this License. You may not convey a covered
1557
- work if you are a party to an arrangement with a third party that is
1558
- in the business of distributing software, under which you make payment
1559
- to the third party based on the extent of your activity of conveying
1560
- the work, and under which the third party grants, to any of the
1561
- parties who would receive the covered work from you, a discriminatory
1562
- patent license (a) in connection with copies of the covered work
1563
- conveyed by you (or copies made from those copies), or (b) primarily
1564
- for and in connection with specific products or compilations that
1565
- contain the covered work, unless you entered into that arrangement,
1566
- or that patent license was granted, prior to 28 March 2007.
1254
+ "Derivative Works" shall mean any work, whether in Source or Object
1255
+ form, that is based on (or derived from) the Work and for which the
1256
+ editorial revisions, annotations, elaborations, or other modifications
1257
+ represent, as a whole, an original work of authorship. For the purposes
1258
+ of this License, Derivative Works shall not include works that remain
1259
+ separable from, or merely link (or bind by name) to the interfaces of,
1260
+ the Work and Derivative Works thereof.
1567
1261
 
1568
- Nothing in this License shall be construed as excluding or limiting
1569
- any implied license or other defenses to infringement that may
1570
- otherwise be available to you under applicable patent law.
1262
+ "Contribution" shall mean any work of authorship, including
1263
+ the original version of the Work and any modifications or additions
1264
+ to that Work or Derivative Works thereof, that is intentionally
1265
+ submitted to Licensor for inclusion in the Work by the copyright owner
1266
+ or by an individual or Legal Entity authorized to submit on behalf of
1267
+ the copyright owner. For the purposes of this definition, "submitted"
1268
+ means any form of electronic, verbal, or written communication sent
1269
+ to the Licensor or its representatives, including but not limited to
1270
+ communication on electronic mailing lists, source code control systems,
1271
+ and issue tracking systems that are managed by, or on behalf of, the
1272
+ Licensor for the purpose of discussing and improving the Work, but
1273
+ excluding communication that is conspicuously marked or otherwise
1274
+ designated in writing by the copyright owner as "Not a Contribution."
1571
1275
 
1572
- 12. No Surrender of Others' Freedom.
1276
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1277
+ on behalf of whom a Contribution has been received by Licensor and
1278
+ subsequently incorporated within the Work.
1573
1279
 
1574
- If conditions are imposed on you (whether by court order, agreement or
1575
- otherwise) that contradict the conditions of this License, they do not
1576
- excuse you from the conditions of this License. If you cannot convey a
1577
- covered work so as to satisfy simultaneously your obligations under this
1578
- License and any other pertinent obligations, then as a consequence you may
1579
- not convey it at all. For example, if you agree to terms that obligate you
1580
- to collect a royalty for further conveying from those to whom you convey
1581
- the Program, the only way you could satisfy both those terms and this
1582
- License would be to refrain entirely from conveying the Program.
1280
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1281
+ this License, each Contributor hereby grants to You a perpetual,
1282
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1283
+ copyright license to reproduce, prepare Derivative Works of,
1284
+ publicly display, publicly perform, sublicense, and distribute the
1285
+ Work and such Derivative Works in Source or Object form.
1583
1286
 
1584
- 13. Use with the GNU Affero General Public License.
1287
+ 3. Grant of Patent License. Subject to the terms and conditions of
1288
+ this License, each Contributor hereby grants to You a perpetual,
1289
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1290
+ (except as stated in this section) patent license to make, have made,
1291
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1292
+ where such license applies only to those patent claims licensable
1293
+ by such Contributor that are necessarily infringed by their
1294
+ Contribution(s) alone or by combination of their Contribution(s)
1295
+ with the Work to which such Contribution(s) was submitted. If You
1296
+ institute patent litigation against any entity (including a
1297
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1298
+ or a Contribution incorporated within the Work constitutes direct
1299
+ or contributory patent infringement, then any patent licenses
1300
+ granted to You under this License for that Work shall terminate
1301
+ as of the date such litigation is filed.
1585
1302
 
1586
- Notwithstanding any other provision of this License, you have
1587
- permission to link or combine any covered work with a work licensed
1588
- under version 3 of the GNU Affero General Public License into a single
1589
- combined work, and to convey the resulting work. The terms of this
1590
- License will continue to apply to the part which is the covered work,
1591
- but the special requirements of the GNU Affero General Public License,
1592
- section 13, concerning interaction through a network will apply to the
1593
- combination as such.
1303
+ 4. Redistribution. You may reproduce and distribute copies of the
1304
+ Work or Derivative Works thereof in any medium, with or without
1305
+ modifications, and in Source or Object form, provided that You
1306
+ meet the following conditions:
1594
1307
 
1595
- 14. Revised Versions of this License.
1308
+ (a) You must give any other recipients of the Work or
1309
+ Derivative Works a copy of this License; and
1596
1310
 
1597
- The Free Software Foundation may publish revised and/or new versions of
1598
- the GNU General Public License from time to time. Such new versions will
1599
- be similar in spirit to the present version, but may differ in detail to
1600
- address new problems or concerns.
1311
+ (b) You must cause any modified files to carry prominent notices
1312
+ stating that You changed the files; and
1601
1313
 
1602
- Each version is given a distinguishing version number. If the
1603
- Program specifies that a certain numbered version of the GNU General
1604
- Public License "or any later version" applies to it, you have the
1605
- option of following the terms and conditions either of that numbered
1606
- version or of any later version published by the Free Software
1607
- Foundation. If the Program does not specify a version number of the
1608
- GNU General Public License, you may choose any version ever published
1609
- by the Free Software Foundation.
1314
+ (c) You must retain, in the Source form of any Derivative Works
1315
+ that You distribute, all copyright, patent, trademark, and
1316
+ attribution notices from the Source form of the Work,
1317
+ excluding those notices that do not pertain to any part of
1318
+ the Derivative Works; and
1610
1319
 
1611
- If the Program specifies that a proxy can decide which future
1612
- versions of the GNU General Public License can be used, that proxy's
1613
- public statement of acceptance of a version permanently authorizes you
1614
- to choose that version for the Program.
1320
+ (d) If the Work includes a "NOTICE" text file as part of its
1321
+ distribution, then any Derivative Works that You distribute must
1322
+ include a readable copy of the attribution notices contained
1323
+ within such NOTICE file, excluding those notices that do not
1324
+ pertain to any part of the Derivative Works, in at least one
1325
+ of the following places: within a NOTICE text file distributed
1326
+ as part of the Derivative Works; within the Source form or
1327
+ documentation, if provided along with the Derivative Works; or,
1328
+ within a display generated by the Derivative Works, if and
1329
+ wherever such third-party notices normally appear. The contents
1330
+ of the NOTICE file are for informational purposes only and
1331
+ do not modify the License. You may add Your own attribution
1332
+ notices within Derivative Works that You distribute, alongside
1333
+ or as an addendum to the NOTICE text from the Work, provided
1334
+ that such additional attribution notices cannot be construed
1335
+ as modifying the License.
1615
1336
 
1616
- Later license versions may give you additional or different
1617
- permissions. However, no additional obligations are imposed on any
1618
- author or copyright holder as a result of your choosing to follow a
1619
- later version.
1337
+ You may add Your own copyright statement to Your modifications and
1338
+ may provide additional or different license terms and conditions
1339
+ for use, reproduction, or distribution of Your modifications, or
1340
+ for any such Derivative Works as a whole, provided Your use,
1341
+ reproduction, and distribution of the Work otherwise complies with
1342
+ the conditions stated in this License.
1620
1343
 
1621
- 15. Disclaimer of Warranty.
1344
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1345
+ any Contribution intentionally submitted for inclusion in the Work
1346
+ by You to the Licensor shall be under the terms and conditions of
1347
+ this License, without any additional terms or conditions.
1348
+ Notwithstanding the above, nothing herein shall supersede or modify
1349
+ the terms of any separate license agreement you may have executed
1350
+ with Licensor regarding such Contributions.
1622
1351
 
1623
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
1624
- APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
1625
- HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
1626
- OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
1627
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1628
- PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
1629
- IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
1630
- ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
1352
+ 6. Trademarks. This License does not grant permission to use the trade
1353
+ names, trademarks, service marks, or product names of the Licensor,
1354
+ except as required for reasonable and customary use in describing the
1355
+ origin of the Work and reproducing the content of the NOTICE file.
1631
1356
 
1632
- 16. Limitation of Liability.
1357
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1358
+ agreed to in writing, Licensor provides the Work (and each
1359
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1360
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1361
+ implied, including, without limitation, any warranties or conditions
1362
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1363
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1364
+ appropriateness of using or redistributing the Work and assume any
1365
+ risks associated with Your exercise of permissions under this License.
1633
1366
 
1634
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
1635
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
1636
- THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
1637
- GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
1638
- USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
1639
- DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
1640
- PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
1641
- EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
1642
- SUCH DAMAGES.
1367
+ 8. Limitation of Liability. In no event and under no legal theory,
1368
+ whether in tort (including negligence), contract, or otherwise,
1369
+ unless required by applicable law (such as deliberate and grossly
1370
+ negligent acts) or agreed to in writing, shall any Contributor be
1371
+ liable to You for damages, including any direct, indirect, special,
1372
+ incidental, or consequential damages of any character arising as a
1373
+ result of this License or out of the use or inability to use the
1374
+ Work (including but not limited to damages for loss of goodwill,
1375
+ work stoppage, computer failure or malfunction, or any and all
1376
+ other commercial damages or losses), even if such Contributor
1377
+ has been advised of the possibility of such damages.
1643
1378
 
1644
- 17. Interpretation of Sections 15 and 16.
1379
+ 9. Accepting Warranty or Additional Liability. While redistributing
1380
+ the Work or Derivative Works thereof, You may choose to offer,
1381
+ and charge a fee for, acceptance of support, warranty, indemnity,
1382
+ or other liability obligations and/or rights consistent with this
1383
+ License. However, in accepting such obligations, You may act only
1384
+ on Your own behalf and on Your sole responsibility, not on behalf
1385
+ of any other Contributor, and only if You agree to indemnify,
1386
+ defend, and hold each Contributor harmless for any liability
1387
+ incurred by, or claims asserted against, such Contributor by reason
1388
+ of your accepting any such warranty or additional liability.
1645
1389
 
1646
- If the disclaimer of warranty and limitation of liability provided
1647
- above cannot be given local legal effect according to their terms,
1648
- reviewing courts shall apply local law that most closely approximates
1649
- an absolute waiver of all civil liability in connection with the
1650
- Program, unless a warranty or assumption of liability accompanies a
1651
- copy of the Program in return for a fee.
1390
+ END OF TERMS AND CONDITIONS
1652
1391
 
1653
- END OF TERMS AND CONDITIONS
1392
+ APPENDIX: How to apply the Apache License to your work.
1654
1393
 
1655
- How to Apply These Terms to Your New Programs
1394
+ To apply the Apache License to your work, attach the following
1395
+ boilerplate notice, with the fields enclosed by brackets "[]"
1396
+ replaced with your own identifying information. (Don't include
1397
+ the brackets!) The text should be enclosed in the appropriate
1398
+ comment syntax for the file format. We also recommend that a
1399
+ file or class name and description of purpose be included on the
1400
+ same "printed page" as the copyright notice for easier
1401
+ identification within third-party archives.
1656
1402
 
1657
- If you develop a new program, and you want it to be of the greatest
1658
- possible use to the public, the best way to achieve this is to make it
1659
- free software which everyone can redistribute and change under these terms.
1403
+ Copyright [yyyy] [name of copyright owner]
1660
1404
 
1661
- To do so, attach the following notices to the program. It is safest
1662
- to attach them to the start of each source file to most effectively
1663
- state the exclusion of warranty; and each file should have at least
1664
- the "copyright" line and a pointer to where the full notice is found.
1405
+ Licensed under the Apache License, Version 2.0 (the "License");
1406
+ you may not use this file except in compliance with the License.
1407
+ You may obtain a copy of the License at
1665
1408
 
1666
- <one line to give the program's name and a brief idea of what it does.>
1667
- Copyright (C) <year> <name of author>
1409
+ http://www.apache.org/licenses/LICENSE-2.0
1668
1410
 
1669
- This program is free software: you can redistribute it and/or modify
1670
- it under the terms of the GNU General Public License as published by
1671
- the Free Software Foundation, either version 3 of the License, or
1672
- (at your option) any later version.
1411
+ Unless required by applicable law or agreed to in writing, software
1412
+ distributed under the License is distributed on an "AS IS" BASIS,
1413
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
+ See the License for the specific language governing permissions and
1415
+ limitations under the License.
1673
1416
 
1674
- This program is distributed in the hope that it will be useful,
1675
- but WITHOUT ANY WARRANTY; without even the implied warranty of
1676
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1677
- GNU General Public License for more details.
1417
+ ------------------
1418
+ golang.org/x/crypto v0.11.0
1419
+ ------------------
1420
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1678
1421
 
1679
- You should have received a copy of the GNU General Public License
1680
- along with this program. If not, see <https://www.gnu.org/licenses/>.
1422
+ Redistribution and use in source and binary forms, with or without
1423
+ modification, are permitted provided that the following conditions are
1424
+ met:
1681
1425
 
1682
- Also add information on how to contact you by electronic and paper mail.
1426
+ * Redistributions of source code must retain the above copyright
1427
+ notice, this list of conditions and the following disclaimer.
1428
+ * Redistributions in binary form must reproduce the above
1429
+ copyright notice, this list of conditions and the following disclaimer
1430
+ in the documentation and/or other materials provided with the
1431
+ distribution.
1432
+ * Neither the name of Google Inc. nor the names of its
1433
+ contributors may be used to endorse or promote products derived from
1434
+ this software without specific prior written permission.
1683
1435
 
1684
- If the program does terminal interaction, make it output a short
1685
- notice like this when it starts in an interactive mode:
1436
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1437
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1438
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1439
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1440
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1441
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1442
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1443
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1444
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1445
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1446
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1686
1447
 
1687
- <program> Copyright (C) <year> <name of author>
1688
- This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
1689
- This is free software, and you are welcome to redistribute it
1690
- under certain conditions; type `show c' for details.
1448
+ ------------------
1449
+ golang.org/x/exp v0.0.0-20220321173239-a90fa8a75705
1450
+ ------------------
1451
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1691
1452
 
1692
- The hypothetical commands `show w' and `show c' should show the appropriate
1693
- parts of the General Public License. Of course, your program's commands
1694
- might be different; for a GUI interface, you would use an "about box".
1453
+ Redistribution and use in source and binary forms, with or without
1454
+ modification, are permitted provided that the following conditions are
1455
+ met:
1695
1456
 
1696
- You should also get your employer (if you work as a programmer) or school,
1697
- if any, to sign a "copyright disclaimer" for the program, if necessary.
1698
- For more information on this, and how to apply and follow the GNU GPL, see
1699
- <https://www.gnu.org/licenses/>.
1457
+ * Redistributions of source code must retain the above copyright
1458
+ notice, this list of conditions and the following disclaimer.
1459
+ * Redistributions in binary form must reproduce the above
1460
+ copyright notice, this list of conditions and the following disclaimer
1461
+ in the documentation and/or other materials provided with the
1462
+ distribution.
1463
+ * Neither the name of Google Inc. nor the names of its
1464
+ contributors may be used to endorse or promote products derived from
1465
+ this software without specific prior written permission.
1700
1466
 
1701
- The GNU General Public License does not permit incorporating your program
1702
- into proprietary programs. If your program is a subroutine library, you
1703
- may consider it more useful to permit linking proprietary applications with
1704
- the library. If this is what you want to do, use the GNU Lesser General
1705
- Public License instead of this License. But first, please read
1706
- <https://www.gnu.org/licenses/why-not-lgpl.html>.
1467
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1468
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1469
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1470
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1471
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1472
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1473
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1474
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1475
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1476
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1477
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1707
1478
 
1708
1479
  ------------------
1709
- github.com/zabertech/go-serial v0.0.0-20210201195853-2428148c5139 (fork github.com/bugst/go-serial)
1480
+ golang.org/x/image v0.0.0-20190802002840-cff245a6509b
1710
1481
  ------------------
1711
-
1712
- Copyright (c) 2014-2016, Cristian Maglie.
1713
- All rights reserved.
1482
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1714
1483
 
1715
1484
  Redistribution and use in source and binary forms, with or without
1716
- modification, are permitted provided that the following conditions
1717
- are met:
1718
-
1719
- 1. Redistributions of source code must retain the above copyright
1720
- notice, this list of conditions and the following disclaimer.
1721
-
1722
- 2. Redistributions in binary form must reproduce the above copyright
1723
- notice, this list of conditions and the following disclaimer in
1724
- the documentation and/or other materials provided with the
1725
- distribution.
1485
+ modification, are permitted provided that the following conditions are
1486
+ met:
1726
1487
 
1727
- 3. Neither the name of the copyright holder nor the names of its
1728
- contributors may be used to endorse or promote products derived
1729
- from this software without specific prior written permission.
1488
+ * Redistributions of source code must retain the above copyright
1489
+ notice, this list of conditions and the following disclaimer.
1490
+ * Redistributions in binary form must reproduce the above
1491
+ copyright notice, this list of conditions and the following disclaimer
1492
+ in the documentation and/or other materials provided with the
1493
+ distribution.
1494
+ * Neither the name of Google Inc. nor the names of its
1495
+ contributors may be used to endorse or promote products derived from
1496
+ this software without specific prior written permission.
1730
1497
 
1731
1498
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1732
1499
  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1733
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
1734
- FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
1735
- COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
1736
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
1737
- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1738
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1739
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1740
- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
1741
- ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1742
- POSSIBILITY OF SUCH DAMAGE.
1743
-
1500
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1501
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1502
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1503
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1504
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1505
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1506
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1507
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1508
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1744
1509
 
1745
1510
  ------------------
1746
- golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
1511
+ golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4
1747
1512
  ------------------
1748
1513
  Copyright (c) 2009 The Go Authors. All rights reserved.
1749
1514
 
@@ -1774,7 +1539,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1774
1539
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1775
1540
 
1776
1541
  ------------------
1777
- golang.org/x/image v0.0.0-20190802002840-cff245a6509b
1542
+ golang.org/x/net v0.0.0-20190620200207-3b0461eec859
1778
1543
  ------------------
1779
1544
  Copyright (c) 2009 The Go Authors. All rights reserved.
1780
1545
 
@@ -1805,7 +1570,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1805
1570
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1806
1571
 
1807
1572
  ------------------
1808
- golang.org/x/mod v0.4.2
1573
+ golang.org/x/sync v0.0.0-20190423024810-112230192c58
1809
1574
  ------------------
1810
1575
  Copyright (c) 2009 The Go Authors. All rights reserved.
1811
1576
 
@@ -1836,7 +1601,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1836
1601
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1837
1602
 
1838
1603
  ------------------
1839
- golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
1604
+ golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f
1840
1605
  ------------------
1841
1606
  Copyright (c) 2009 The Go Authors. All rights reserved.
1842
1607
 
@@ -1867,7 +1632,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1867
1632
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1868
1633
 
1869
1634
  ------------------
1870
- golang.org/x/sys v0.0.0-20210510120138-977fb7262007
1635
+ golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
1871
1636
  ------------------
1872
1637
  Copyright (c) 2009 The Go Authors. All rights reserved.
1873
1638
 
@@ -1898,7 +1663,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1898
1663
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1899
1664
 
1900
1665
  ------------------
1901
- golang.org/x/tools v0.1.2
1666
+ golang.org/x/text v0.3.0
1902
1667
  ------------------
1903
1668
  Copyright (c) 2009 The Go Authors. All rights reserved.
1904
1669
 
@@ -1929,9 +1694,9 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1929
1694
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1930
1695
 
1931
1696
  ------------------
1932
- golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
1697
+ golang.org/x/tools v0.1.12
1933
1698
  ------------------
1934
- Copyright (c) 2019 The Go Authors. All rights reserved.
1699
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1935
1700
 
1936
1701
  Redistribution and use in source and binary forms, with or without
1937
1702
  modification, are permitted provided that the following conditions are
@@ -1960,9 +1725,9 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1960
1725
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1961
1726
 
1962
1727
  ------------------
1963
- google.golang.org/protobuf v1.28.0
1728
+ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
1964
1729
  ------------------
1965
- Copyright (c) 2018 The Go Authors. All rights reserved.
1730
+ Copyright (c) 2019 The Go Authors. All rights reserved.
1966
1731
 
1967
1732
  Redistribution and use in source and binary forms, with or without
1968
1733
  modification, are permitted provided that the following conditions are
@@ -1991,7 +1756,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1991
1756
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1992
1757
 
1993
1758
  ------------------
1994
- gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
1759
+ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
1995
1760
  ------------------
1996
1761
  Gocheck - A rich testing framework for Go
1997
1762
 
@@ -2019,17 +1784,6 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2019
1784
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2020
1785
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2021
1786
 
2022
- ------------------
2023
- gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
2024
- ------------------
2025
- The MIT License (MIT)
2026
- Copyright (c) 2013 npipe authors
2027
-
2028
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2029
-
2030
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2031
-
2032
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2033
1787
  ------------------
2034
1788
  gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
2035
1789
  ------------------