-
Notifications
You must be signed in to change notification settings - Fork 2
/
legal.html
2962 lines (2420 loc) · 160 KB
/
legal.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html lang="en">
<head>
<title>Third Party Licenses and Information</title>
<style type="text/css">
body {
font-family: arial,helvetica;
color:#000000;
}
.componentColumn {
width: 30%;
}
.licenseColumn {
width: 70%;
}
td {
font-family: arial, helvetica;
text-align: center;
}
p {
line-height:1.5em;
margin-top:0.5em;
margin-bottom:1.0em;
}
h2 {
MARGIN-TOP: 1em;
MARGIN-BOTTOM: 0.5em;
FONT: bold 125% arial,helvetica;
}
</style>
</head>
<body>
<main>
<h1>Third Party Licenses and Information</h1>
<p>This page contains information regarding any third party code included with your SAS software,
including applicable third party software notices and/or additional terms and conditions.</p>
<h2>
grafana-esp-plugin
</h2>
<p>
<table border="1" cellpadding="2" cellspacing="0" width="100%">
<tr>
<th class="componentColumn"><b>Component</b></td>
<th class="licenseColumn"><b>Applicable License(s)</b></td>
</tr>
<tr><th>add-dom-event-listener 1.1.0</th><td>MIT License</td></tr>
<tr><th>add-px-to-style 1.0.0</th><td>MIT License</td></tr>
<tr><th>ansicolor 1.1.100</th><td>The Unlicense</td></tr>
<tr><th>ansi-regex 5.0.1</th><td>MIT License</td></tr>
<tr><th>ansi-styles 3.2.1</th><td>MIT License</td></tr>
<tr><th>ansi-styles 5.2.0</th><td>MIT License</td></tr>
<tr><th>ansi-styles v4.3.0</th><td>MIT License</td></tr>
<tr><th>Apache Arrow 20211112-snapshot-bc219186</th><td>Apache License 2.0</td></tr>
<tr><th>aria-query 5.0.2</th><td>Apache License 2.0</td></tr>
<tr><th>array-tree-filter 2.1.0</th><td>MIT License</td></tr>
<tr><th>attr-accept v2.2.2</th><td>MIT License</td></tr>
<tr><th>@babel/code-frame 7.18.6</th><td>MIT License</td></tr>
<tr><th>@babel/helper-module-imports 7.18.6</th><td>MIT License</td></tr>
<tr><th>@babel/helper-plugin-utils 7.19.0</th><td>MIT License</td></tr>
<tr><th>@babel/helper-string-parser 7.19.4</th><td>MIT License</td></tr>
<tr><th>@babel/helper-validator-identifier 7.19.1</th><td>MIT License</td></tr>
<tr><th>@babel/highlight 7.18.6</th><td>MIT License</td></tr>
<tr><th>babel-plugin-macros 3.1.0</th><td>MIT License</td></tr>
<tr><th>@babel/plugin-syntax-jsx 7.18.6</th><td>MIT License</td></tr>
<tr><th>@babel/runtime 7.19.4</th><td>MIT License</td></tr>
<tr><th>@babel/runtime 7.22.5</th><td>MIT License</td></tr>
<tr><th>babel-runtime 6.26.0</th><td>MIT License</td></tr>
<tr><th>@babel/types 7.19.4</th><td>MIT License</td></tr>
<tr><th>beorn7-perks v1.0.1</th><td>MIT License</td></tr>
<tr><th>blackfriday v2.1.0</th><td>BSD 2-clause "Simplified" License</td></tr>
<tr><th>@braintree/sanitize-url 6.0.2</th><td>MIT License</td></tr>
<tr><th>browserify/resolve 1.22.1</th><td>MIT License</td></tr>
<tr><th>BurntSushi/toml 1.2.1</th><td>(MIT License AND BSD 2-clause "Simplified" License AND
Creative Commons Attribution 3.0 AND BSD 3-clause "New" or "Revised" License)</td></tr>
<tr><th>calculate-size 1.1.1</th><td>MIT License</td></tr>
<tr><th>callsites 3.1.0</th><td>MIT License</td></tr>
<tr><th>cenkalti/backoff v4.2.0</th><td>MIT License</td></tr>
<tr><th>cespare/xxhash v2.2.0</th><td>MIT License</td></tr>
<tr><th>Chalk 2.4.2</th><td>MIT License</td></tr>
<tr><th>Chalk 4.1.2</th><td>MIT License</td></tr>
<tr><th>chrisdickinson/raf 3.4.1</th><td>MIT License</td></tr>
<tr><th>chromedp/cdproto 20230524-snapshot-8501c74e</th><td>MIT License</td></tr>
<tr><th>classes 1.2.6</th><td>MIT License</td></tr>
<tr><th>classnames 2.3.2</th><td>MIT License</td></tr>
<tr><th>client_golang 1.14.0</th><td>Apache License 2.0</td></tr>
<tr><th>clsx 1.2.1</th><td>MIT License</td></tr>
<tr><th>color-name 1.1.3</th><td>MIT License</td></tr>
<tr><th>color-name 1.1.4</th><td>MIT License</td></tr>
<tr><th>Commander.js 7.2.0</th><td>MIT License</td></tr>
<tr><th>Commander.js v2.20.3</th><td>MIT License</td></tr>
<tr><th>convert-source-map 1.9.0</th><td>MIT License</td></tr>
<tr><th>copy-to-clipboard 3.3.2</th><td>MIT License</td></tr>
<tr><th>core-js 3.28.0</th><td>MIT License</td></tr>
<tr><th>core-js v2.6.12</th><td>MIT License</td></tr>
<tr><th>cosmiconfig 7.0.1</th><td>MIT License</td></tr>
<tr><th>cpuguy83-go-md2man 2.0.2</th><td>MIT License</td></tr>
<tr><th>css-animation 1.6.1</th><td>MIT License</td></tr>
<tr><th>css-box-model 1.2.1</th><td>MIT License</td></tr>
<tr><th>csscolorparser 1.0.3</th><td>MIT License</td></tr>
<tr><th>cssfilter 0.0.10</th><td>MIT License</td></tr>
<tr><th>css-in-js-utils 2.0.1</th><td>MIT License</td></tr>
<tr><th>css-tree 1.1.3</th><td>MIT License</td></tr>
<tr><th>csstype 3.1.1</th><td>MIT License</td></tr>
<tr><th>d3-array 3.2.4</th><td>ISC License</td></tr>
<tr><th>d3-axis 3.0.0</th><td>ISC License</td></tr>
<tr><th>d3-brush 3.0.0</th><td>ISC License</td></tr>
<tr><th>d3-chord 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-color 3.1.0</th><td>ISC License</td></tr>
<tr><th>d3-contour 4.0.2</th><td>ISC License</td></tr>
<tr><th>d3-delaunay 6.0.4</th><td>ISC License</td></tr>
<tr><th>d3-dispatch 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-drag 3.0.0</th><td>ISC License</td></tr>
<tr><th>d3-dsv 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-ease 3.0.1</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>d3-fetch 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-force 3.0.0</th><td>ISC License</td></tr>
<tr><th>d3-format 3.1.0</th><td>ISC License</td></tr>
<tr><th>d3-geo 3.1.0</th><td>ISC License</td></tr>
<tr><th>d3-hierarchy 3.1.2</th><td>ISC License</td></tr>
<tr><th>d3-interpolate 3.0.1</th><td>ISC License</td></tr>
<tr><th>D3.js 7.8.2</th><td>ISC License</td></tr>
<tr><th>d3-path 3.1.0</th><td>ISC License</td></tr>
<tr><th>d3-polygon 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-quadtree 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-random 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-scale 4.0.2</th><td>ISC License</td></tr>
<tr><th>d3-scale-chromatic 3.0.0</th><td>ISC License</td></tr>
<tr><th>d3-selection 3.0.0</th><td>ISC License</td></tr>
<tr><th>d3-shape 3.2.0</th><td>ISC License</td></tr>
<tr><th>d3-time 3.1.0</th><td>ISC License</td></tr>
<tr><th>d3-time-format 4.1.0</th><td>ISC License</td></tr>
<tr><th>d3-timer 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-transition 3.0.1</th><td>ISC License</td></tr>
<tr><th>d3-zoom 3.0.0</th><td>ISC License</td></tr>
<tr><th>debug-js/debug 3.2.7</th><td>MIT License</td></tr>
<tr><th>delaunator 5.0.0</th><td>ISC License</td></tr>
<tr><th>direction 0.1.5</th><td>MIT License</td></tr>
<tr><th>dom-accessibility-api 0.5.14</th><td>MIT License</td></tr>
<tr><th>dom-align 1.12.3</th><td>MIT License</td></tr>
<tr><th>dom-css 2.1.0</th><td>MIT License</td></tr>
<tr><th>dom-helpers v5.2.1</th><td>MIT License</td></tr>
<tr><th>DOMPurify 2.4.5</th><td>(Apache License 2.0 OR Mozilla Public License 2.0)</td></tr>
<tr><th>earcut 2.2.4</th><td>ISC License</td></tr>
<tr><th>@emotion/babel-plugin 11.10.2</th><td>MIT License</td></tr>
<tr><th>@emotion/babel-plugin 11.11.0</th><td>MIT License</td></tr>
<tr><th>@emotion/cache 11.10.3</th><td>MIT License</td></tr>
<tr><th>@emotion/cache 11.11.0</th><td>MIT License</td></tr>
<tr><th>@emotion/css 11.10.6</th><td>MIT License</td></tr>
<tr><th>@emotion/css 11.11.0</th><td>MIT License</td></tr>
<tr><th>@emotion/hash 0.9.0</th><td>MIT License</td></tr>
<tr><th>@emotion/hash 0.9.1</th><td>MIT License</td></tr>
<tr><th>@emotion/memoize 0.8.0</th><td>MIT License</td></tr>
<tr><th>@emotion/memoize 0.8.1</th><td>MIT License</td></tr>
<tr><th>@emotion/react 11.10.4</th><td>MIT License</td></tr>
<tr><th>@emotion/react 11.10.6</th><td>MIT License</td></tr>
<tr><th>@emotion/serialize 1.1.0</th><td>MIT License</td></tr>
<tr><th>@emotion/serialize 1.1.2</th><td>MIT License</td></tr>
<tr><th>@emotion/sheet 1.2.0</th><td>MIT License</td></tr>
<tr><th>@emotion/sheet 1.2.2</th><td>MIT License</td></tr>
<tr><th>@emotion/unitless 0.8.0</th><td>MIT License</td></tr>
<tr><th>@emotion/unitless 0.8.1</th><td>MIT License</td></tr>
<tr><th>@emotion/use-insertion-effect-with-fallbacks 1.0.0</th><td>MIT License</td></tr>
<tr><th>@emotion/utils 1.2.0</th><td>MIT License</td></tr>
<tr><th>@emotion/utils 1.2.1</th><td>MIT License</td></tr>
<tr><th>@emotion/weak-memoize 0.3.0</th><td>MIT License</td></tr>
<tr><th>@emotion/weak-memoize 0.3.1</th><td>MIT License</td></tr>
<tr><th>error-stack-parser 2.1.4</th><td>MIT License</td></tr>
<tr><th>escape-string-regexp 1.0.5</th><td>MIT License</td></tr>
<tr><th>escape-string-regexp v4.0.0</th><td>MIT License</td></tr>
<tr><th>eventemitter3 5.0.0</th><td>MIT License</td></tr>
<tr><th>exenv 1.2.2</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>exp 20200223-snapshot-6cc2880d</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>fast_array_intersect 1.1.0</th><td>MIT License</td></tr>
<tr><th>fast-deep-equal v3.1.3</th><td>MIT License</td></tr>
<tr><th>fastest-stable-stringify 2.0.2</th><td>MIT License</td></tr>
<tr><th>fast-shallow-equal 1.0.0</th><td>Public Domain</td></tr>
<tr><th>file-selector 0.6.0</th><td>MIT License</td></tr>
<tr><th>find-root 1.1.0</th><td>MIT License</td></tr>
<tr><th>FlatBuffers 2.0.0</th><td>Apache License 2.0</td></tr>
<tr><th>@floating-ui/core 1.3.0</th><td>MIT License</td></tr>
<tr><th>@floating-ui/dom 1.3.0</th><td>MIT License</td></tr>
<tr><th>@formatjs/ecma402-abstract 1.13.0</th><td>MIT License</td></tr>
<tr><th>@formatjs/fast-memoize 1.2.6</th><td>MIT License</td></tr>
<tr><th>@formatjs/icu-messageformat-parser 2.1.10</th><td>MIT License</td></tr>
<tr><th>@formatjs/icu-skeleton-parser 1.3.14</th><td>MIT License</td></tr>
<tr><th>@formatjs/intl-localematcher 0.2.31</th><td>MIT License</td></tr>
<tr><th>fsnotify-fsnotify v1.4.7</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>function-bind 1.1.1</th><td>MIT License</td></tr>
<tr><th>fxamacker/cbor v1.5.1</th><td>MIT License</td></tr>
<tr><th>geotiff 2.0.7</th><td>MIT License</td></tr>
<tr><th>get-document 1.0.0</th><td>MIT License</td></tr>
<tr><th>getkin/kin-openapi v0.117.0</th><td>MIT License</td></tr>
<tr><th>get-user-locale 1.5.1</th><td>MIT License</td></tr>
<tr><th>get-window 1.1.2</th><td>MIT License</td></tr>
<tr><th>github.com/cheekybits/genny v1.0.0</th><td>MIT License</td></tr>
<tr><th>github.com/invopop/yaml v0.2.0</th><td>(MIT License AND BSD 3-clause "New" or "Revised"
License)</td></tr>
<tr><th>github.com/rivo/uniseg v0.2.0</th><td>MIT License</td></tr>
<tr><th>go-check-check 20201130-snapshot-10cb9826</th><td>BSD 2-clause "Simplified"
License</td></tr>
<tr><th>goconvey v1.6.4</th><td>MIT License</td></tr>
<tr><th>GoDoc Text v0.2.0</th><td>MIT License</td></tr>
<tr><th>golang/appengine v1.6.7</th><td>Apache License 2.0</td></tr>
<tr><th>golang/glog v1.0.0</th><td>Apache License 2.0</td></tr>
<tr><th>golang.org/x/net v0.9.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>golang.org/x/oauth2 v0.6.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>golang.org/x/sys v0.8.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>golang.org/x/xerrors 20200804-snapshot-5ec99f83</th><td>BSD 3-clause "New" or "Revised"
License</td></tr>
<tr><th>Golang Protobuf v1.30.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>Golang Protobuf v1.5.3</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>golang-snappy-go-dev v0.0.3</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>golang/text v0.9.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>go-logr/logr v1.2.3</th><td>Apache License 2.0</td></tr>
<tr><th>go-logr/stdr v1.2.2</th><td>Apache License 2.0</td></tr>
<tr><th>Gonum numerical packages v0.9.3</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>googleapis/go-genproto 20230410-snapshot-daa745c0</th><td>Apache License 2.0</td></tr>
<tr><th>google-cloud-go compute/metadata/v0.2.3</th><td>Apache License 2.0</td></tr>
<tr><th>google-cloud-go compute/v1.19.0</th><td>Apache License 2.0</td></tr>
<tr><th>google/go-cmp v0.5.9</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>google/uuid v1.3.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>go-openapi/jsonpointer v0.19.6</th><td>Apache License 2.0</td></tr>
<tr><th>go.opentelemetry.io/proto otlp/v0.19.0</th><td>Apache License 2.0</td></tr>
<tr><th>gopherjs 20181203-snapshot-d547d1d9</th><td>BSD 2-clause "Simplified" License</td></tr>
<tr><th>goproxy 20210317-snapshot-a0805db9</th><td>BSD 3-clause "New" or "Revised"
License</td></tr>
<tr><th>gorilla/mux v1.8.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>gorilla/websocket v1.5.0</th><td>BSD 2-clause "Simplified" License</td></tr>
<tr><th>go-spew v1.1.1</th><td>ISC License</td></tr>
<tr><th>go-test/deep v1.0.8</th><td>MIT License</td></tr>
<tr><th>Go Testify v1.8.2</th><td>MIT License</td></tr>
<tr><th>go.uber.org/goleak v1.2.1</th><td>MIT License</td></tr>
<tr><th>@grafana/data 9.5.3</th><td>Apache License 2.0</td></tr>
<tr><th>@grafana/e2e-selectors 9.5.3</th><td>Apache License 2.0</td></tr>
<tr><th>@grafana/faro-core 1.1.0</th><td>Apache License 2.0</td></tr>
<tr><th>@grafana/faro-web-sdk 1.0.2</th><td>Apache License 2.0</td></tr>
<tr><th>grafana/grafana-plugin-sdk-go v0.162.0</th><td>Apache License 2.0</td></tr>
<tr><th>@grafana/runtime 9.5.3</th><td>Apache License 2.0</td></tr>
<tr><th>@grafana/schema 9.5.3</th><td>Apache License 2.0</td></tr>
<tr><th>@grafana/tsconfig 1.2.0-rc1</th><td>Apache License 2.0</td></tr>
<tr><th>@grafana/ui 9.5.3</th><td>Apache License 2.0</td></tr>
<tr><th>grpc-ecosystem/go-grpc-middleware v1.4.0</th><td>Apache License 2.0</td></tr>
<tr><th>grpc-ecosystem/go-grpc-prometheus v1.2.0</th><td>Apache License 2.0</td></tr>
<tr><th>grpc-gateway v2.7.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>grpc-go v1.54.0</th><td>Apache License 2.0</td></tr>
<tr><th>has 1.0.3</th><td>MIT License</td></tr>
<tr><th>has-flag 3.0.0</th><td>MIT License</td></tr>
<tr><th>has-flag 4.0.0</th><td>MIT License</td></tr>
<tr><th>hashicorp/go-hclog v1.5.0</th><td>MIT License</td></tr>
<tr><th>hashicorp-go-plugin v1.4.9</th><td>Mozilla Public License 2.0</td></tr>
<tr><th>hashicorp-yamux v0.1.1</th><td>Mozilla Public License 2.0</td></tr>
<tr><th>highlight-words-core 1.2.2</th><td>MIT License</td></tr>
<tr><th>History v4.10.1</th><td>MIT License</td></tr>
<tr><th>hoist-non-react-statics v3.3.2</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>html-parse-stringify v3.0.1</th><td>MIT License</td></tr>
<tr><th>hyphenate-style-name 1.0.4</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>i18next/i18next 22.5.1</th><td>MIT License</td></tr>
<tr><th>ianstormtaylor/slate 0.2.11</th><td>MIT License</td></tr>
<tr><th>ianstormtaylor/slate 0.2.115</th><td>MIT License</td></tr>
<tr><th>ianstormtaylor/slate 0.2.9</th><td>MIT License</td></tr>
<tr><th>ianstormtaylor/slate 0.5.44</th><td>MIT License</td></tr>
<tr><th>ianstormtaylor/slate 0.7.13</th><td>MIT License</td></tr>
<tr><th>ianstormtaylor/slate v0.22.10</th><td>MIT License</td></tr>
<tr><th>ianstormtaylor/slate v0.2.5</th><td>MIT License</td></tr>
<tr><th>iconv-lite 0.6.3</th><td>MIT License</td></tr>
<tr><th>ieee754 v1.2.1</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>immutable-js 4.2.4</th><td>MIT License</td></tr>
<tr><th>import-fresh 3.3.0</th><td>MIT License</td></tr>
<tr><th>indexof-component 0.0.3</th><td>MIT License</td></tr>
<tr><th>inline-style-prefixer 6.0.1</th><td>MIT License</td></tr>
<tr><th>@internationalized/date 3.0.1</th><td>Apache License 2.0</td></tr>
<tr><th>@internationalized/message 3.0.9</th><td>Apache License 2.0</td></tr>
<tr><th>@internationalized/number 3.1.1</th><td>Apache License 2.0</td></tr>
<tr><th>@internationalized/string 3.0.0</th><td>Apache License 2.0</td></tr>
<tr><th>internmap 2.0.3</th><td>ISC License</td></tr>
<tr><th>intl-messageformat 10.2.1</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>invariant 2.2.4</th><td>MIT License</td></tr>
<tr><th>isarray 0.0.1</th><td>MIT License</td></tr>
<tr><th>is-arrayish 0.2.1</th><td>MIT License</td></tr>
<tr><th>is-core-module 2.10.0</th><td>MIT License</td></tr>
<tr><th>is-hotkey 0.1.4</th><td>MIT License</td></tr>
<tr><th>is-hotkey 0.2.0</th><td>MIT License</td></tr>
<tr><th>is-in-browser 1.1.3</th><td>MIT License</td></tr>
<tr><th>isobject 3.0.1</th><td>MIT License</td></tr>
<tr><th>isomorphic-base64 1.0.2</th><td>MIT License</td></tr>
<tr><th>is-plain-object 2.0.4</th><td>MIT License</td></tr>
<tr><th>is-window 1.0.2</th><td>MIT License</td></tr>
<tr><th>JedWatson/react-select 5.7.0</th><td>MIT License</td></tr>
<tr><th>jhump/protoreflect v1.6.0</th><td>Apache License 2.0</td></tr>
<tr><th>josharian/intern v1.0.0</th><td>MIT License</td></tr>
<tr><th>jQuery 3.6.3</th><td>MIT License</td></tr>
<tr><th>js-cookie 2.2.1</th><td>MIT License</td></tr>
<tr><th>jsoniter-go v1.1.12</th><td>MIT License</td></tr>
<tr><th>json-parse-even-better-errors 2.3.1</th><td>MIT License</td></tr>
<tr><th>json-stringify-pretty-compact 2.0.0</th><td>MIT License</td></tr>
<tr><th>js-tokens 4.0.0</th><td>MIT License</td></tr>
<tr><th>js-xss 1.0.14</th><td>MIT License</td></tr>
<tr><th>jtolds-gls v4.20.0</th><td>MIT License</td></tr>
<tr><th>klauspost-compress v1.13.1</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>kossnocorp/date-fns 2.29.3</th><td>MIT License</td></tr>
<tr><th>kr/pretty 0.2.1</th><td>MIT License</td></tr>
<tr><th>@leeoniya/ufuzzy 1.0.6</th><td>MIT License</td></tr>
<tr><th>lerc 3.0.0</th><td>Apache License 2.0</td></tr>
<tr><th>lines-and-columns 1.2.4</th><td>MIT License</td></tr>
<tr><th>Lodash 4.17.21</th><td>MIT License</td></tr>
<tr><th>lodash.memoize 4.1.2</th><td>MIT License</td></tr>
<tr><th>lodash.merge 4.6.2</th><td>MIT License</td></tr>
<tr><th>loose-envify 1.4.0</th><td>MIT License</td></tr>
<tr><th>lz-string 1.4.4</th><td>Do What The F*ck You Want To Public License</td></tr>
<tr><th>magefile/mage v1.15.0</th><td>Apache License 2.0</td></tr>
<tr><th>mailru/easyjson v0.7.7</th><td>MIT License</td></tr>
<tr><th>mapbox-gl-style-spec 13.26.0</th><td>ISC License</td></tr>
<tr><th>@mapbox/jsonlint-lines-primitives 2.0.2</th><td>MIT License</td></tr>
<tr><th>mapbox-to-css-font 2.4.1</th><td>BSD 2-clause "Simplified" License</td></tr>
<tr><th>@mapbox/unitbezier 0.0.0</th><td>BSD 2-clause "Simplified" License</td></tr>
<tr><th>markedjs 4.2.12</th><td>MIT License</td></tr>
<tr><th>mathiasbynens's esrever 0.2.0</th><td>MIT License</td></tr>
<tr><th>mattetti/filebuffer v1.0.1</th><td>MIT License</td></tr>
<tr><th>mattn-go-colorable 0.1.13</th><td>(MIT License AND BSD 3-clause "New" or "Revised"
License)</td></tr>
<tr><th>mattn-go-isatty v0.0.18</th><td>MIT License</td></tr>
<tr><th>mattn-go-runewidth v0.0.13</th><td>MIT License</td></tr>
<tr><th>matttproud-golang_protobuf_extensions v1.0.4</th><td>Apache License 2.0</td></tr>
<tr><th>mdn-data 2.0.14</th><td>Creative Commons Zero v1.0 Universal</td></tr>
<tr><th>memoize-one 4.1.0</th><td>MIT License</td></tr>
<tr><th>memoize-one 6.0.0</th><td>MIT License</td></tr>
<tr><th>memoize-one v5.2.1</th><td>MIT License</td></tr>
<tr><th>Microsoft/tslib 1.14.1</th><td>BSD Zero Clause License</td></tr>
<tr><th>Microsoft/tslib 2.4.0</th><td>BSD Zero Clause License</td></tr>
<tr><th>Microsoft/tslib 2.5.0</th><td>BSD Zero Clause License</td></tr>
<tr><th>Microsoft/tslib 2.5.3</th><td>BSD Zero Clause License</td></tr>
<tr><th>minimist 1.2.7</th><td>MIT License</td></tr>
<tr><th>mitchellh/go-testing-interface v1.14.1</th><td>MIT License</td></tr>
<tr><th>mitchellh-reflectwalk v1.0.2</th><td>MIT License</td></tr>
<tr><th>modern-go/concurrent 20180305-snapshot-bacd9c7e</th><td>Apache License 2.0</td></tr>
<tr><th>modern-go/reflect2 v1.0.2</th><td>Apache License 2.0</td></tr>
<tr><th>mohae/deepcopy 20170929-snapshot-c48cc78d</th><td>MIT License</td></tr>
<tr><th>moment/moment 2.29.4</th><td>MIT License</td></tr>
<tr><th>moment-timezone 0.5.41</th><td>MIT License</td></tr>
<tr><th>monaco-editor 0.34.0</th><td>MIT License</td></tr>
<tr><th>@monaco-editor/loader 1.3.2</th><td>MIT License</td></tr>
<tr><th>@monaco-editor/react 4.4.6</th><td>MIT License</td></tr>
<tr><th>ms.js 2.1.3</th><td>MIT License</td></tr>
<tr><th>murmurhash-js 1.0.0</th><td>MIT License</td></tr>
<tr><th>nano-css 5.3.5</th><td>The Unlicense</td></tr>
<tr><th>nodeca/pako 2.0.4</th><td>(zlib License AND MIT License)</td></tr>
<tr><th>node-error-ex 1.3.2</th><td>MIT License</td></tr>
<tr><th>node-uuid 9.0.0</th><td>MIT License</td></tr>
<tr><th>object-assign 4.1.1</th><td>MIT License</td></tr>
<tr><th>oklog/run v1.1.0</th><td>Apache License 2.0</td></tr>
<tr><th>olekukonko-tablewriter v0.0.5</th><td>MIT License</td></tr>
<tr><th>ol-mapbox-style 9.7.0</th><td>BSD 2-clause "Simplified" License</td></tr>
<tr><th>OpenLayers 7.2.2</th><td>BSD 2-clause "Simplified" License</td></tr>
<tr><th>@opentelemetry/api 1.1.0</th><td>Apache License 2.0</td></tr>
<tr><th>@opentelemetry/api 1.4.1</th><td>Apache License 2.0</td></tr>
<tr><th>@opentelemetry/api-metrics 0.33.0</th><td>Apache License 2.0</td></tr>
<tr><th>@opentelemetry/core 1.11.0</th><td>Apache License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go exporters/otlp/internal/retry/v1.14.0</th><td>Apache
License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go
exporters/otlp/otlptrace/otlptracegrpc/v1.14.0</th><td>Apache License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.14.0</th><td>Apache License
2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go metric/v0.37.0</th><td>Apache License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go sdk/v1.14.0</th><td>Apache License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go trace/v1.14.0</th><td>Apache License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go v1.14.0</th><td>Apache License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go-contrib
instrumentation/google.golang.org/grpc/otelgrpc/v0.40.0</th><td>Apache License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go-contrib
instrumentation/net/http/httptrace/otelhttptrace/v0.37.0</th><td>Apache License 2.0</td></tr>
<tr><th>open-telemetry/opentelemetry-go-contrib propagators/jaeger/v1.15.0</th><td>Apache
License 2.0</td></tr>
<tr><th>@opentelemetry/otlp-transformer 0.37.0</th><td>Apache License 2.0</td></tr>
<tr><th>@opentelemetry/resources 1.11.0</th><td>Apache License 2.0</td></tr>
<tr><th>@opentelemetry/sdk-metrics 1.11.0</th><td>Apache License 2.0</td></tr>
<tr><th>@opentelemetry/sdk-trace-base 1.11.0</th><td>Apache License 2.0</td></tr>
<tr><th>@opentelemetry/semantic-conventions 1.11.0</th><td>Apache License 2.0</td></tr>
<tr><th>PapaParse 5.3.2</th><td>MIT License</td></tr>
<tr><th>parent-module 1.0.1</th><td>MIT License</td></tr>
<tr><th>parse-headers 2.0.5</th><td>MIT License</td></tr>
<tr><th>parse-json v5.2.0</th><td>MIT License</td></tr>
<tr><th>path-parse 1.0.7</th><td>MIT License</td></tr>
<tr><th>path-to-regexp 1.8.0</th><td>MIT License</td></tr>
<tr><th>path-type 4.0.0</th><td>MIT License</td></tr>
<tr><th>pbf 3.2.1</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>performance-now 2.1.0</th><td>MIT License</td></tr>
<tr><th>@petamoriken/float16 3.6.6</th><td>MIT License</td></tr>
<tr><th>pierrec-lz4 v4.1.8</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>pmezard-go-difflib 1.0.0</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>point-geometry 0.1.0</th><td>ISC License</td></tr>
<tr><th>@popperjs/core 2.11.6</th><td>MIT License</td></tr>
<tr><th>prefix-style 2.0.1</th><td>MIT License</td></tr>
<tr><th>pretty-format 27.5.1</th><td>MIT License</td></tr>
<tr><th>PrismJS 1.29.0</th><td>MIT License</td></tr>
<tr><th>prometheus-client_model v0.3.0</th><td>Apache License 2.0</td></tr>
<tr><th>prometheus-common v0.40.0</th><td>Apache License 2.0</td></tr>
<tr><th>prometheus-procfs 0.8.0</th><td>(Apache License 2.0 AND BSD 3-clause "New" or "Revised"
License)</td></tr>
<tr><th>prop-types 15.8.1</th><td>MIT License</td></tr>
<tr><th>protocol-buffers-schema 3.6.0</th><td>MIT License</td></tr>
<tr><th>Qix-/color-convert 1.9.3</th><td>MIT License</td></tr>
<tr><th>Qix-/color-convert 2.0.1</th><td>MIT License</td></tr>
<tr><th>quick-lru 6.1.1</th><td>MIT License</td></tr>
<tr><th>quickselect 2.0.0</th><td>ISC License</td></tr>
<tr><th>rackt/react-router 5.3.4</th><td>MIT License</td></tr>
<tr><th>raf-schd 4.0.3</th><td>MIT License</td></tr>
<tr><th>rbush v3.0.1</th><td>MIT License</td></tr>
<tr><th>rc-align 2.4.5</th><td>MIT License</td></tr>
<tr><th>rc-align 4.0.12</th><td>MIT License</td></tr>
<tr><th>rc-animate 2.11.1</th><td>MIT License</td></tr>
<tr><th>rc-cascader 3.8.0</th><td>MIT License</td></tr>
<tr><th>@rc-component/portal 1.1.1</th><td>MIT License</td></tr>
<tr><th>rc-drawer 6.1.3</th><td>MIT License</td></tr>
<tr><th>rc-motion 2.6.2</th><td>MIT License</td></tr>
<tr><th>rc-motion 2.7.3</th><td>MIT License</td></tr>
<tr><th>rc-overflow 1.2.8</th><td>MIT License</td></tr>
<tr><th>rc-resize-observer 1.2.0</th><td>MIT License</td></tr>
<tr><th>rc-select 14.2.2</th><td>MIT License</td></tr>
<tr><th>rc-slider 10.1.1</th><td>MIT License</td></tr>
<tr><th>rc-time-picker 3.7.3</th><td>MIT License</td></tr>
<tr><th>rc-tooltip 5.3.1</th><td>MIT License</td></tr>
<tr><th>rc-tree 5.7.4</th><td>MIT License</td></tr>
<tr><th>rc-trigger 2.6.5</th><td>MIT License</td></tr>
<tr><th>rc-trigger 5.3.1</th><td>MIT License</td></tr>
<tr><th>rc-trigger 5.3.4</th><td>MIT License</td></tr>
<tr><th>rc-util 5.24.4</th><td>MIT License</td></tr>
<tr><th>rc-util 5.33.1</th><td>MIT License</td></tr>
<tr><th>rc-util v4.21.1</th><td>MIT License</td></tr>
<tr><th>rc-virtual-list 3.5.2</th><td>MIT License</td></tr>
<tr><th>@react-aria/button 3.6.1</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/dialog 3.3.1</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/focus 3.8.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/focus 3.9.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/i18n 3.6.1</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/interactions 3.12.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/menu 3.6.1</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/overlays 3.10.1</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/overlays 3.11.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/selection 3.11.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/ssr 3.3.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/utils 3.13.1</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/utils 3.14.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-aria/visually-hidden 3.5.0</th><td>Apache License 2.0</td></tr>
<tr><th>react-beautiful-dnd 13.1.1</th><td>Apache License 2.0</td></tr>
<tr><th>react-calendar 4.0.0</th><td>MIT License</td></tr>
<tr><th>react-colorful 5.6.1</th><td>MIT License</td></tr>
<tr><th>react-custom-scrollbars-2 4.5.0</th><td>MIT License</td></tr>
<tr><th>react-dropzone 14.2.3</th><td>MIT License</td></tr>
<tr><th>react-fast-compare 3.2.0</th><td>MIT License</td></tr>
<tr><th>react-from-dom 0.6.2</th><td>MIT License</td></tr>
<tr><th>React from Facebook 16.13.1</th><td>MIT License</td></tr>
<tr><th>React from Facebook 17.0.2</th><td>MIT License</td></tr>
<tr><th>react-highlight-words 0.20.0</th><td>MIT License</td></tr>
<tr><th>react-hook-form 7.5.3</th><td>MIT License</td></tr>
<tr><th>react-i18next 12.3.1</th><td>MIT License</td></tr>
<tr><th>react-immutable-proptypes 2.2.0</th><td>MIT License</td></tr>
<tr><th>react-inlinesvg 3.0.2</th><td>MIT License</td></tr>
<tr><th>ReactiveX RxJS 7.8.0</th><td>Apache License 2.0</td></tr>
<tr><th>react-lifecycles-compat 3.0.4</th><td>MIT License</td></tr>
<tr><th>react-popper 2.3.0</th><td>MIT License</td></tr>
<tr><th>react-popper-tooltip 4.4.2</th><td>MIT License</td></tr>
<tr><th>React-Redux 7.2.9</th><td>MIT License</td></tr>
<tr><th>react-router-dom 5.3.4</th><td>MIT License</td></tr>
<tr><th>react-select-event 5.5.1</th><td>MIT License</td></tr>
<tr><th>@react-stately/collections 3.4.4</th><td>Apache License 2.0</td></tr>
<tr><th>@react-stately/menu 3.4.1</th><td>Apache License 2.0</td></tr>
<tr><th>@react-stately/menu 3.4.2</th><td>Apache License 2.0</td></tr>
<tr><th>@react-stately/overlays 3.4.2</th><td>Apache License 2.0</td></tr>
<tr><th>@react-stately/selection 3.11.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-stately/toggle 3.4.2</th><td>Apache License 2.0</td></tr>
<tr><th>@react-stately/tree 3.3.4</th><td>Apache License 2.0</td></tr>
<tr><th>@react-stately/utils 3.5.1</th><td>Apache License 2.0</td></tr>
<tr><th>react-table 7.8.0</th><td>MIT License</td></tr>
<tr><th>react-transition-group 4.4.5</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>@react-types/button 3.6.2</th><td>Apache License 2.0</td></tr>
<tr><th>@react-types/checkbox 3.4.0</th><td>Apache License 2.0</td></tr>
<tr><th>@react-types/dialog 3.4.4</th><td>Apache License 2.0</td></tr>
<tr><th>@react-types/menu 3.7.2</th><td>Apache License 2.0</td></tr>
<tr><th>@react-types/overlays 3.6.4</th><td>Apache License 2.0</td></tr>
<tr><th>@react-types/shared 3.15.0</th><td>Apache License 2.0</td></tr>
<tr><th>react-universal-interface 0.6.2</th><td>The Unlicense</td></tr>
<tr><th>react-use 17.4.0</th><td>The Unlicense</td></tr>
<tr><th>react-window 1.8.8</th><td>MIT License</td></tr>
<tr><th>Redux JS 4.2.0</th><td>MIT License</td></tr>
<tr><th>regenerator-runtime 0.11.1</th><td>MIT License</td></tr>
<tr><th>regenerator-runtime 0.13.10</th><td>MIT License</td></tr>
<tr><th>regenerator-runtime 0.13.11</th><td>MIT License</td></tr>
<tr><th>resize-observer-polyfill 1.5.1</th><td>MIT License</td></tr>
<tr><th>resolve-from 4.0.0</th><td>MIT License</td></tr>
<tr><th>resolve-pathname 3.0.0</th><td>MIT License</td></tr>
<tr><th>resolve-protobuf-schema 2.1.0</th><td>MIT License</td></tr>
<tr><th>robust-predicates 3.0.2</th><td>The Unlicense</td></tr>
<tr><th>rtl-css-js 1.16.0</th><td>MIT License</td></tr>
<tr><th>rw 1.3.3</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>sacOO7/GoWebsocket 20221109-snapshot-70ac927b</th><td>Apache License 2.0</td></tr>
<tr><th>safer-buffer 2.1.2</th><td>MIT License</td></tr>
<tr><th>scheduler 0.20.2</th><td>MIT License</td></tr>
<tr><th>screenfull 5.2.0</th><td>MIT License</td></tr>
<tr><th>selection-is-backward 1.0.0</th><td>MIT License</td></tr>
<tr><th>@sentry/browser 6.19.7</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>@sentry/core 6.19.7</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>@sentry/hub 6.19.7</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>@sentry/minimal 6.19.7</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>@sentry/types 6.19.7</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>@sentry/utils 6.19.7</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>set-harmonic-interval 1.0.1</th><td>The Unlicense</td></tr>
<tr><th>shallowequal 1.1.0</th><td>MIT License</td></tr>
<tr><th>sindresorhus/supports-color 5.5.0</th><td>MIT License</td></tr>
<tr><th>sindresorhus/supports-color v7.2.0</th><td>MIT License</td></tr>
<tr><th>slate 0.47.9</th><td>MIT License</td></tr>
<tr><th>smartystreets-assertions 20190121-snapshot-b6c0e53d</th><td>GNU General Public License
v3.0 only</td></tr>
<tr><th>sort-asc 0.1.0</th><td>MIT License</td></tr>
<tr><th>sort-desc 0.1.1</th><td>MIT License</td></tr>
<tr><th>sort-object 0.3.2</th><td>MIT License</td></tr>
<tr><th>source-map 0.5.6</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>source-map 0.5.7</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>source-map 0.6.1</th><td>BSD 3-clause "New" or "Revised" License</td></tr>
<tr><th>sourcemap-codec 1.4.8</th><td>MIT License</td></tr>
<tr><th>stackframe 1.3.4</th><td>MIT License</td></tr>
<tr><th>stack-generator 2.0.10</th><td>MIT License</td></tr>
<tr><th>stacktrace-gps 3.1.2</th><td>MIT License</td></tr>
<tr><th>stacktrace-js v2.0.2</th><td>MIT License</td></tr>
<tr><th>state-local 1.0.7</th><td>MIT License</td></tr>
<tr><th>stylis 4.0.13</th><td>MIT License</td></tr>
<tr><th>stylis 4.1.2</th><td>MIT License</td></tr>
<tr><th>stylis 4.2.0</th><td>MIT License</td></tr>
<tr><th>supports-preserve-symlinks-flag 1.0.0</th><td>MIT License</td></tr>
<tr><th>swag v0.22.3</th><td>Apache License 2.0</td></tr>
<tr><th>SystemJS 0.20.19</th><td>MIT License</td></tr>
<tr><th>@testing-library/dom 8.19.0</th><td>MIT License</td></tr>
<tr><th>throttle-debounce v3.0.1</th><td>MIT License</td></tr>
<tr><th>TinyColor 1.6.0</th><td>MIT License</td></tr>
<tr><th>tiny-invariant 1.3.1</th><td>MIT License</td></tr>
<tr><th>tiny-warning 0.0.3</th><td>MIT License</td></tr>
<tr><th>tiny-warning 1.0.3</th><td>MIT License</td></tr>
<tr><th>to-camel-case 1.0.0</th><td>MIT License</td></tr>
<tr><th>to-fast-properties 2.0.0</th><td>MIT License</td></tr>
<tr><th>toggle-selection 1.0.6</th><td>MIT License</td></tr>
<tr><th>to-no-case 1.0.2</th><td>MIT License</td></tr>
<tr><th>to-space-case 1.0.0</th><td>MIT License</td></tr>
<tr><th>ts-easing 0.2.0</th><td>The Unlicense</td></tr>
<tr><th>type-of 2.0.1</th><td>MIT License</td></tr>
<tr><th>@types/aria-query 4.2.2</th><td>MIT License</td></tr>
<tr><th>TypeScript 4.8.4</th><td>Apache License 2.0</td></tr>
<tr><th>@types/d3-color 3.1.0</th><td>MIT License</td></tr>
<tr><th>@types/d3-interpolate 3.0.1</th><td>MIT License</td></tr>
<tr><th>@types/hoist-non-react-statics 3.3.1</th><td>MIT License</td></tr>
<tr><th>@types/js-cookie 2.2.7</th><td>MIT License</td></tr>
<tr><th>@types/parse-json 4.0.0</th><td>MIT License</td></tr>
<tr><th>@types/prop-types 15.7.5</th><td>MIT License</td></tr>
<tr><th>@types/react 18.0.21</th><td>MIT License</td></tr>
<tr><th>@types/react-redux 7.1.24</th><td>MIT License</td></tr>
<tr><th>@types/react-transition-group 4.4.5</th><td>MIT License</td></tr>
<tr><th>@types/scheduler 0.16.2</th><td>MIT License</td></tr>
<tr><th>UAParser.js 1.0.35</th><td>MIT License</td></tr>
<tr><th>ugorji's go codec/v1.2.7</th><td>MIT License</td></tr>
<tr><th>unknwon/bra 20200517-snapshot-1e3013ec</th><td>Apache License 2.0</td></tr>
<tr><th>unknwon/com v1.0.1</th><td>Apache License 2.0</td></tr>
<tr><th>uplot 1.6.24</th><td>MIT License</td></tr>
<tr><th>urfave-cli v1.22.13</th><td>MIT License</td></tr>
<tr><th>use-isomorphic-layout-effect 1.1.2</th><td>MIT License</td></tr>
<tr><th>use-memo-one 1.1.3</th><td>MIT License</td></tr>
<tr><th>value-equal 1.0.1</th><td>MIT License</td></tr>
<tr><th>void-elements 3.1.0</th><td>MIT License</td></tr>
<tr><th>warning 4.0.3</th><td>MIT License</td></tr>
<tr><th>web-vitals 3.3.2</th><td>Apache License 2.0</td></tr>
<tr><th>web-worker 1.2.0</th><td>Apache License 2.0</td></tr>
<tr><th>@wojtekmaj/date-utils 1.0.3</th><td>MIT License</td></tr>
<tr><th>x448/float16 v0.8.4</th><td>MIT License</td></tr>
<tr><th>xml-utils 1.3.0</th><td>Creative Commons Zero v1.0 Universal</td></tr>
<tr><th>@xobotyi/scrollbar-width 1.9.5</th><td>MIT License</td></tr>
<tr><th>yaml 1.10.2</th><td>ISC License</td></tr>
</table>
<h3>Licenses:</h3>
<pre>
Apache License 2.0
(@grafana/data 9.5.3, @grafana/e2e-selectors 9.5.3, @grafana/faro-core 1.1.0,
@grafana/faro-web-sdk 1.0.2, @grafana/runtime 9.5.3, @grafana/schema 9.5.3, @grafana/tsconfig
1.2.0-rc1, @grafana/ui 9.5.3, @internationalized/date 3.0.1, @internationalized/message 3.0.9,
@internationalized/number 3.1.1, @internationalized/string 3.0.0, @opentelemetry/api 1.1.0,
@opentelemetry/api 1.4.1, @opentelemetry/api-metrics 0.33.0, @opentelemetry/core 1.11.0,
@opentelemetry/otlp-transformer 0.37.0, @opentelemetry/resources 1.11.0, @opentelemetry/sdk-metrics
1.11.0, @opentelemetry/sdk-trace-base 1.11.0, @opentelemetry/semantic-conventions
1.11.0, @react-aria/button 3.6.1, @react-aria/dialog 3.3.1, @react-aria/focus 3.8.0,
@react-aria/focus 3.9.0, @react-aria/i18n 3.6.1, @react-aria/interactions 3.12.0,
@react-aria/menu 3.6.1, @react-aria/overlays 3.10.1, @react-aria/overlays 3.11.0,
@react-aria/selection 3.11.0, @react-aria/ssr 3.3.0, @react-aria/utils 3.13.1,
@react-aria/utils 3.14.0, @react-aria/visually-hidden 3.5.0, @react-stately/collections
3.4.4, @react-stately/menu 3.4.1, @react-stately/menu 3.4.2, @react-stately/overlays
3.4.2, @react-stately/selection 3.11.0, @react-stately/toggle 3.4.2, @react-stately/tree
3.3.4, @react-stately/utils 3.5.1, @react-types/button 3.6.2, @react-types/checkbox
3.4.0, @react-types/dialog 3.4.4, @react-types/menu 3.7.2, @react-types/overlays
3.6.4, @react-types/shared 3.15.0, Apache Arrow 20211112-snapshot-bc219186, aria-query
5.0.2, client_golang 1.14.0, DOMPurify 2.4.5, FlatBuffers 2.0.0, go-logr/logr v1.2.3,
go-logr/stdr v1.2.2, go-openapi/jsonpointer v0.19.6, go.opentelemetry.io/proto otlp/v0.19.0,
golang/appengine v1.6.7, golang/glog v1.0.0, google-cloud-go compute/metadata/v0.2.3,
google-cloud-go compute/v1.19.0, googleapis/go-genproto 20230410-snapshot-daa745c0,
grafana/grafana-plugin-sdk-go v0.162.0, grpc-ecosystem/go-grpc-middleware v1.4.0,
grpc-ecosystem/go-grpc-prometheus v1.2.0, grpc-go v1.54.0, jhump/protoreflect v1.6.0,
lerc 3.0.0, magefile/mage v1.15.0, matttproud-golang_protobuf_extensions v1.0.4,
modern-go/concurrent 20180305-snapshot-bacd9c7e, modern-go/reflect2 v1.0.2, oklog/run
v1.1.0, open-telemetry/opentelemetry-go exporters/otlp/internal/retry/v1.14.0,
open-telemetry/opentelemetry-go exporters/otlp/otlptrace/otlptracegrpc/v1.14.0,
open-telemetry/opentelemetry-go exporters/otlp/otlptrace/v1.14.0, open-telemetry/opentelemetry-go
metric/v0.37.0, open-telemetry/opentelemetry-go sdk/v1.14.0, open-telemetry/opentelemetry-go
trace/v1.14.0, open-telemetry/opentelemetry-go v1.14.0, open-telemetry/opentelemetry-go-contrib
instrumentation/google.golang.org/grpc/otelgrpc/v0.40.0, open-telemetry/opentelemetry-go-contrib
instrumentation/net/http/httptrace/otelhttptrace/v0.37.0, open-telemetry/opentelemetry-go-contrib
propagators/jaeger/v1.15.0, prometheus-client_model v0.3.0, prometheus-common v0.40.0,
prometheus-procfs 0.8.0, react-beautiful-dnd 13.1.1, ReactiveX RxJS 7.8.0, sacOO7/GoWebsocket
20221109-snapshot-70ac927b, swag v0.22.3, TypeScript 4.8.4, unknwon/bra 20200517-snapshot-1e3013ec,
unknwon/com v1.0.1, web-vitals 3.3.2, web-worker 1.2.0, yaml for Go v3.0.1)
Apache License
Version 2.0, January 2004
=========================
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising
permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is
based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work by
the copyright owner or by an individual or Legal Entity authorized to submit on
behalf of the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent to the
Licensor or its representatives, including but not limited to communication on
electronic mailing lists, source code control systems, and issue tracking systems
that are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously marked
or otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
whom a Contribution has been received by Licensor and subsequently incorporated
within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
reproduce, prepare Derivative Works of, publicly display, publicly perform,
sublicense, and distribute the Work and such Derivative Works in Source or Object
form.
3. Grant of Patent License. Subject to the terms and conditions of this License,
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable (except as stated in this section) patent
license to make, have made, use, offer to sell, sell, import, and otherwise
transfer the Work, where such license applies only to those patent claims
licensable by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s) with the Work to
which such Contribution(s) was submitted. If You institute patent litigation
against any entity (including a cross-claim or counterclaim in a lawsuit)
alleging that the Work or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent licenses granted to
You under this License for that Work shall terminate as of the date such
litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications, and in
Source or Object form, provided that You meet the following conditions:
a. You must give any other recipients of the Work or Derivative Works a copy of
this License; and
b. You must cause any modified files to carry prominent notices stating that
You changed the files; and
c. You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices from
the Source form of the Work, excluding those notices that do not pertain to
any part of the Derivative Works; and
d. If the Work includes a "NOTICE" text file as part of its distribution, then
any Derivative Works that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding those
notices that do not pertain to any part of the Derivative Works, in at least
one of the following places: within a NOTICE text file distributed as part of
the Derivative Works; within the Source form or documentation, if provided
along with the Derivative Works; or, within a display generated by the
Derivative Works, if and wherever such third-party notices normally appear.
The contents of the NOTICE file are for informational purposes only and do
not modify the License. You may add Your own attribution notices within
Derivative Works that You distribute, alongside or as an addendum to the
NOTICE text from the Work, provided that such additional attribution notices
cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide
additional or different license terms and conditions for use, reproduction, or
distribution of Your modifications, or for any such Derivative Works as a whole,
provided Your use, reproduction, and distribution of the Work otherwise complies
with the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any
Contribution intentionally submitted for inclusion in the Work by You to the
Licensor shall be under the terms and conditions of this License, without any
additional terms or conditions. Notwithstanding the above, nothing herein shall
supersede or modify the terms of any separate license agreement you may have
executed with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade names,
trademarks, service marks, or product names of the Licensor, except as required
for reasonable and customary use in describing the origin of the Work and
reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
writing, Licensor provides the Work (and each Contributor provides its
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied, including, without limitation, any warranties or
conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any risks
associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether in
tort (including negligence), contract, or otherwise, unless required by
applicable law (such as deliberate and grossly negligent acts) or agreed to in
writing, shall any Contributor be liable to You for damages, including any
direct, indirect, special, incidental, or consequential damages of any character
arising as a result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill, work stoppage,
computer failure or malfunction, or any and all other commercial damages or
losses), even if such Contributor has been advised of the possibility of such
damages.
9. Accepting Warranty or Additional Liability. While redistributing the Work or
Derivative Works thereof, You may choose to offer, and charge a fee for,
acceptance of support, warranty, indemnity, or other liability obligations and/or
rights consistent with this License. However, in accepting such obligations, You
may act only on Your own behalf and on Your sole responsibility, not on behalf of
any other Contributor, and only if You agree to indemnify, defend, and hold each
Contributor harmless for any liability incurred by, or claims asserted against,
such Contributor by reason of your accepting any such warranty or additional
liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work
To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "[]" replaced with your own
identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also recommend
that a file or class name and description of purpose be included on the same
"printed page" as the copyright notice for easier identification within
third-party archives.
Copyright [yyyy] [name of copyright owner] Licensed under the Apache License,
Version 2.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
or agreed to in writing, software distributed under the License is
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
---
BSD 2-clause "Simplified" License
(gopherjs 20181203-snapshot-d547d1d9)
Copyright (c) 2013 Richard Musiol. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
---
BSD 2-clause "Simplified" License
(mapbox-to-css-font 2.4.1)
Copyright 2016-present mapbox-to-css-font contributors
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
---
BSD 2-clause "Simplified" License
(blackfriday v2.1.0)
Upstream-Contact: https://github.com/russross/blackfriday/issues/new
Files: *
Copyright: 2011 Russ Ross
License: BSD-2-clause
Files: debian/*
Copyright: 2014–2015 Tianon Gravi <[email protected]>
2015 Martina Ferrari <[email protected]>
2015–2020 Anthony Fok <[email protected]>
2016 Dr. Tobias Quathamer <[email protected]>
2020 Reinhard Tartler <[email protected]>
License: BSD-2-clause
License: BSD-2-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
.
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
---
BSD 2-clause "Simplified" License
(gorilla/websocket v1.5.0)
Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
---
BSD 2-clause "Simplified" License
(@mapbox/unitbezier 0.0.0, BurntSushi/toml 1.2.1, go-check-check 20201130-snapshot-10cb9826,
ol-mapbox-style 9.7.0, OpenLayers 7.2.2)
BSD Two Clause License
======================
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
---
BSD 3-clause "New" or "Revised" License
(@sentry/browser 6.19.7, @sentry/core 6.19.7, @sentry/hub 6.19.7, @sentry/minimal 6.19.7,
@sentry/types 6.19.7, @sentry/utils 6.19.7, BurntSushi/toml 1.2.1, d3-ease 3.0.1, exenv
1.2.2, exp 20200223-snapshot-6cc2880d, fsnotify-fsnotify v1.4.7, github.com/invopop/yaml
v0.2.0, Golang Protobuf v1.30.0, Golang Protobuf v1.5.3, golang-snappy-go-dev v0.0.3,
golang.org/x/net v0.9.0, golang.org/x/oauth2 v0.6.0, golang.org/x/sys v0.8.0, golang.org/x/xerrors
20200804-snapshot-5ec99f83, golang/text v0.9.0, Gonum numerical packages v0.9.3, google/go-cmp
v0.5.9, google/uuid v1.3.0, goproxy 20210317-snapshot-a0805db9, gorilla/mux v1.8.0,
grpc-gateway v2.7.0, hoist-non-react-statics v3.3.2, hyphenate-style-name 1.0.4, ieee754 v1.2.1,
intl-messageformat 10.2.1, klauspost-compress v1.13.1, mattn-go-colorable 0.1.13, pbf 3.2.1,
pierrec-lz4 v4.1.8, pmezard-go-difflib 1.0.0, prometheus-procfs 0.8.0, react-transition-group
4.4.5, rw 1.3.3, source-map 0.5.6, source-map 0.5.7, source-map 0.6.1)
Copyright (c) <YEAR>, <OWNER>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the <ORGANIZATION> nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY