-
Notifications
You must be signed in to change notification settings - Fork 8
/
VENDORLICENSES.html
1160 lines (1128 loc) · 87.9 KB
/
VENDORLICENSES.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
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Michael Doshi">
<title>ProteoWizard: Licenses</title>
<!-- Bootstrap Core CSS -->
<link href="VENDORLICENSES_files/bootstrap.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="VENDORLICENSES_files/font-awesome.css" rel="stylesheet" type="text/css">
<link href="VENDORLICENSES_files/css.css" rel="stylesheet" type="text/css">
<link href="VENDORLICENSES_files/css_002.css" rel="stylesheet" type="text/css">
<!-- Theme CSS -->
<link href="VENDORLICENSES_files/main.css" rel="stylesheet">
<link href="VENDORLICENSES_files/template.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
Licenses <i class="fa fa-bars"></i>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li>
<a href="javascript:;" class="license-1" onclick="switchLicense(this.className)">Pwiz Core</a>
</li>
<li>
<a href="javascript:;" class="license-2" onclick="switchLicense(this.className)">AB Sciex WiffReader</a>
</li>
<li>
<a href="javascript:;" class="license-3" onclick="switchLicense(this.className)">Agilent MHDAC</a>
</li>
<li>
<a href="javascript:;" class="license-4" onclick="switchLicense(this.className)">Bruker CompassXtract</a>
</li>
<li>
<a href="javascript:;" class="license-5" onclick="switchLicense(this.className)">Shimadazu SFCS</a>
</li>
<li>
<a href="javascript:;" class="license-6" onclick="switchLicense(this.className)">Thermo msFileReader</a>
</li>
<li>
<a href="javascript:;" class="license-7" onclick="switchLicense(this.className)">Waters WRDAC</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Info Section -->
<section id="info" class="container content-section">
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="license-1 hidden">
<h1>Pwiz Core</h1>
<p>ADDENDUM TO APACHE LICENSE</p>
<p>To the best of our ability we deliver this
software to you under the Apache 2.0 License listed below (the source
code is available in the ProteoWizard project). This software does,
however, depend on other software libraries which place further
restrictions on its use and redistribution. By accepting the license
terms for this software, you agree to comply with the restrictions
imposed on you by the license agreements of the software libraries on
which it depends:</p>
<p><b>
AB Sciex WIFF Reader Library
<br>
Agilent Mass Hunter Data Access Component Library
<br>
Bruker CompassXtract
<br>
Shimadzu SFCS
<br>
Thermo-Scientific MSFileReader Library
<br>
Waters Raw Data Access Component Library
</b></p>
<p>NOTE: If you do not plan to redistribute this software yourself, then you are the "end-user" in the above agreements.</p>
<hr>
<p>
Apache License - Covers Core ProteoWizard Tools and Library
<br>
<br>
Version 2.0, January 2004
<br>
<br>
<a href="http://www.apache.org/licenses/">http://www.apache.org/licenses/</a>
</p>
<p>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</p>
<p><strong><a name="definitions">1. Definitions</a></strong>.</p>
<p>"License" shall mean the terms and conditions for
use, reproduction, and distribution as defined by Sections 1 through 9
of this document.</p>
<p>"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.</p>
<p>"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.</p>
<p>"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.</p>
<p>"Source" form shall mean the preferred form for
making modifications, including but not limited to software source code,
documentation source, and configuration files.</p>
<p>"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.</p>
<p>"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).</p>
<p>"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.</p>
<p>"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."</p>
<p>"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.</p>
<p><strong><a name="copyright">2. Grant of Copyright License</a></strong>.
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.</p>
<p><strong><a name="patent">3. Grant of Patent License</a></strong>.
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.</p>
<p><strong><a name="redistribution">4. Redistribution</a></strong>.
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:</p>
<ol>
<li>
<p>You must give any other recipients of the Work or Derivative Works a copy of this License; and</p>
</li>
<li>
<p>You must cause any modified files to carry prominent notices stating that You changed the files; and</p>
</li>
<li>
<p>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</p>
</li>
<li>
<p>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.</p>
</li>
</ol>
<p><strong><a name="contributions">5. Submission of Contributions</a></strong>.
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.</p>
<p><strong><a name="trademarks">6. Trademarks</a></strong>.
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.</p>
<p><strong><a name="no-warranty">7. Disclaimer of Warranty</a></strong>.
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.</p>
<p><strong><a name="no-liability">8. Limitation of Liability</a></strong>.
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.</p>
<p><strong><a name="additional">9. Accepting Warranty or Additional Liability</a></strong>.
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.</p>
<hr>
</div>
<div class="license-2 hidden">
<h1>AB Sciex WiffReader</h1>
<p><br></p>
<p><b>AB Sciex LLC</b></p>
<p><b>END USER BETA SOFTWARE LICENSE AGREEMENT</b></p>
<p><b>and</b></p>
<p><b>LIMITED DEVELOPER LICENSE</b></p>
<p><i>WIFF Reader Distributable Beta SDK</i></p>
<p><br></p>
<p><br></p>
<p><b>NOTICE TO USER: PLEASE READ THIS DOCUMENT CAREFULLY.<span class="Apple-converted-space"> </span>THIS IS THE CONTRACT BETWEEN YOU AND AB SCIEX REGARDING THIS SOFTWARE PRODUCT.<span class="Apple-converted-space"> </span>THIS AGREEMENT INCLUDES LICENSE TERMS AND RESTRICTIONS, WARRANTY AND LIABILITY DISCLAIMERS, AND LIMITATIONS.</b></p>
<p><b></b><br></p>
<p><b>YOUR INSTALLATION AND USE OF THIS AB SCIEX SDK
IS SUBJECT TO THE TERMS AND CONDITIONS CONTAINED IN THIS END USER
SOFTWARE LICENSE AGREEMENT.</b></p>
<p><b></b><br></p>
<p>This AB Sciex End User Software License Agreement
(EULA) and Limited Developer & Redistribution License accompanies
this AB Sciex WIFF Reader Distributable Beta SDK product ("Software")
and related explanatory materials ("Documentation"). The term "SDK" also
includes any upgrades, modified versions, updates, additions and copies
of the SDK licensed to you by AB Sciex.<span class="Apple-converted-space"> </span>The term “AB Sciex,” as used in this License, means AB Sciex LLC and its subsidiaries and affiliates.<span class="Apple-converted-space"> </span>The
term “License” or “Agreement” means this EULA and Limited Developer
& Redistribution License including any and all Appendices.<span class="Apple-converted-space"> </span>The term “you” or “Licensee” means the purchaser of this License to the Software.</p>
<p><br></p>
<p><br></p>
<p><b>Third Party Products</b></p>
<p>This Software may include software products
licensed by third party provider(s). In addition, the Software may
enable you to run multiple instances of third-party software and
application programs. You are responsible for reviewing and complying
with any licenses necessary to use any such third-party software.<span class="Apple-converted-space"> </span>Such licenses may be included in your AB Sciex installation package.</p>
<p><br></p>
<p><b>TITLE</b></p>
<p>Title, ownership rights and intellectual property
rights in and to the Software and Documentation shall at all times
remain with AB Sciex and its subsidiaries, and their suppliers.<span class="Apple-converted-space"> </span>All
rights not specifically granted by this License, including Federal and
international copyrights, are reserved by AB Sciex or their respective
owners.</p>
<p><b></b><br></p>
<p><b>COPYRIGHT</b></p>
<p>The Software, including its structure,
organization, code, user interface and associated Documentation, is a
proprietary product of AB Sciex or its suppliers, and is protected by
international laws of copyright. The law provides for civil and criminal
penalties for anyone in violation of the laws of copyright.</p>
<p><br></p>
<p><b>LICENSE</b></p>
<p><b>Use of the Software</b></p>
<ol>
<li>As a Developer License, AB Sciex grants to
you one (1) personal, nontransferable, nonexclusive, license to use
copies of the Software and install such Software on your machine(s) for
your single concurrent internal use.</li>
</ol>
<p>2.<span class="Apple-tab-span"> </span>You may make one copy of the Software in machine-readable form solely for backup or archival purposes.<span class="Apple-converted-space"> </span>You must reproduce on any such copy all copyright notices and any other proprietary legends found on the original.<span class="Apple-converted-space"> </span>You may not make any other copies of the Software.</p>
<p>3.<span class="Apple-tab-span"> </span>From time to time, AB Sciex may change the terms of this Agreement.<span class="Apple-converted-space"> </span>AB Sciex will notify you of such change.<span class="Apple-converted-space"> </span>Your continued use of the Software will indicate your agreement to the change.</p>
<p><br></p>
<p><b>Use Restrictions</b></p>
<p>1.<span class="Apple-converted-space"> </span>You
may not use the Software, Documentation, or any associated
documentation, in whole or in part, except as expressly permitted in
this Agreement.</p>
<p>2.<span class="Apple-converted-space"> </span>You
may not sublicense, copy, merge, modify, sell, resell, rent, lease,
assign, transfer (except temporarily in the event of a computer
malfunction or as expressly permitted under the Section “Use of the
Software”), or distribute this license or the Software, or create
derivative works based on the Software (except as outlined in the
Distribution Rights below), or any part thereof or any interest therein.
<span class="Apple-converted-space"> </span></p>
<p>3.<span class="Apple-converted-space"> </span>You
may not reverse assemble, decompile, modify, create any derivative
works, or otherwise attempt, cause, or permit any reverse engineering of
the Software or any part thereof.</p>
<p>4.<span class="Apple-converted-space"> </span>You
acknowledge that the Software in human-readable (source code) form,
including its structure, sequence, and organization, is and remains the
confidential trade secret of AB Sciex.<span class="Apple-converted-space"> </span>You
agree that you shall not attempt, cause or permit the reverse
engineering, modification, decompiliation, disassembly of the Software
to any human readable or perceivable form, or creation of any derivative
works based on the Software or any part thereof except as expressly
permitted under the Section “Use of the Software”. <span class="Apple-converted-space"> </span></p>
<p>5.<span class="Apple-converted-space"> </span>You
may not remove any proprietary, copyright, trade secret or warning
legend from the Software or any Documentation and you acknowledge that
the Software in human-readable (source code) form, including its
structure, sequence, and organization, is and remains the confidential
trade secret of AB Sciex.</p>
<p>6.<span class="Apple-converted-space"> </span>You
agree to comply fully with all export laws and restrictions and
regulations of the United States or applicable foreign agencies or
authorities.<span class="Apple-converted-space"> </span>You agree that
you will not export or reexport, directly or indirectly, the Software
into any country prohibited by the United States Export Administration
Act and the regulations thereunder or other applicable United States
law.</p>
<p><br></p>
<p><b>Distribution of the Distributable Components (DCs)</b></p>
<p>1.<span class="Apple-converted-space"> </span><b>Distributable Components.</b> The Software contains Distributable Components that you are permitted<span class="Apple-converted-space"> </span></p>
<p>to distribute for non-commercial purposes
provided that: (a) the Distributable Components are bundled as part of,
and for the sole purpose of running programs developed by you and
supplied by you; and (b) you comply with all other terms in this EULA.<span class="Apple-converted-space"> </span>As
used herein commercial purposes include, but are not limited to,
charging a purchase price, license fee, maintenance fee, subscription
fee, or providing software incorporating Distributable Components for
use with a product sold by you or an affiliate.</p>
<p><br></p>
<p>2.<span class="Apple-converted-space"> </span><b>Right to Use and Distribute.</b> The code and text files listed in Appendix A are “Distributable<span class="Apple-converted-space"> </span></p>
<p><span class="Apple-converted-space"> </span>Components”.<span class="Apple-converted-space"> </span>All other code and text files of the Software are not distributable.</p>
<p><br></p>
<p>3.<span class="Apple-converted-space"> </span><b>Third Party Distribution.</b> You may not permit distributors of your programs or end users of your<span class="Apple-converted-space"> </span></p>
<p><span class="Apple-converted-space"> </span>programs to copy and distribute the Distributable Components as part of those or their programs.</p>
<p><br></p>
<p>4. <b>Distribution Requirements, General.</b> For any Distributable Component you distribute, you must:</p>
<p>(a) embed the license key in your program such that it is obscured from end users seeing it.<span class="Apple-converted-space"> </span>In the event that your program is open source, this license key must not be part of the open source;</p>
<p>(b) add significant primary functionality to it in your programs;</p>
<p>(c) for any Distributable Component having a
filename extension of .lib, distribute only the results of running such
Distributable Component through a linker with your program;</p>
<p>(d) distribute Distributable Components included in a setup program only as part of that setup program without modification;</p>
<p>(e) require distributors and external end users to agree to terms that protect it at least as much as this EULA; and</p>
<p>(f) display your valid copyright notice on your programs.</p>
<p><br></p>
<p>5. <b>Distribution Requirement, Indemnification.<span class="Apple-converted-space"> </span></b>For
any Distributable Component you distribute, you must and you hereby
agree to: indemnify, defend, and hold harmless AB Sciex from any and all
claims and costs, including attorneys’ fees, related to the
distribution or use of your programs.</p>
<p><br></p>
<p>6.<span class="Apple-converted-space"> </span><b>Distribution Restrictions.</b> You may not:</p>
<p>(a) alter any copyright, trademark or patent notice in the Distributable Component;</p>
<p>(b) use AB Sciex or AB Sciex’s trademarks in your
programs’ names or in a way that suggests your programs come from or
are endorsed by AB Sciex;</p>
<p>(c) include Distributable Components in malicious, deceptive or unlawful programs; or</p>
<p>(d) modify or distribute the source code of any
Distributable Component so that any part of it becomes subject to an
Excluded License. An Excluded License is one that requires, as a
condition of use, modification or distribution, that (i) the code be
disclosed or distributed in source code form; and/or (ii) others have
the right to modify it.</p>
<p><br></p>
<p><b>Trial</b></p>
<p>If this license is granted on a trial basis, you
are hereby notified that license management software may be included to
automatically cause the Software to cease functioning at the end of the
trial period.</p>
<p><br></p>
<p><b>Termination</b></p>
<p>You may terminate this Agreement by discontinuing
use of the Software, removing all copies from your computers and
storage media, and returning the Software and Documentation, and all
copies thereof, to AB Sciex.<span class="Apple-converted-space"> </span>AB
Sciex may terminate this Agreement if you fail to comply with all of
its terms, in which case you agree to discontinue using the Software,
remove all copies from your computers and storage media, and return the
Software and Documentation, and all copies thereof, to AB Sciex.</p>
<p><b></b><br></p>
<p><b>U.S. Government End Users</b></p>
<p>The Software is a "commercial item," as that term
is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial
computer software" and "commercial computer software documentation," as
such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
all U.S. Government End Users acquire the Software with only those
rights set forth herein.<span class="Apple-converted-space"> </span></p>
<p><b></b><br></p>
<p><b>European Community End Users</b></p>
<p>If this Software is used within a country of the
European Community, nothing in this Agreement shall be construed as
restricting any rights available under the European Community Software
Directive, O.J. Eur. Comm. (No. L. 122) 42 (1991).</p>
<p><br></p>
<p><b>Regulated Uses</b></p>
<p>You acknowledge that the Software has not been
cleared, approved, registered or otherwise qualified (collectively,
“Approval”) by AB Sciex<b> </b>with any regulatory agency, including
without limitation for use in diagnostic or therapeutic procedures or
any other use requiring compliance with any federal or state law
regulating diagnostic or therapeutic products, blood products, medical
devices or any similar product (hereafter collectively referred to as
"federal or state drug laws").<span class="Apple-converted-space"> </span>The Software may not be used for any purpose that would require any such Approval unless proper Approval is obtained.<span class="Apple-converted-space"> </span>You
agree that if you elect to use the Software for a purpose that would
subject you or the Software to the jurisdiction of any federal or state
drug laws, you will be solely responsible for obtaining any required
Approvals and otherwise ensuring that your use of the Software complies
with such laws.</p>
<p><b></b><br></p>
<p><b>NO WARRANTY and LIMITATION OF REMEDIES</b></p>
<p>AB SCIEX MAKES NO WARRANTIES OF ANY KIND
WHATSOEVER, EXPRESS OR IMPLIED, WITH RESPECT TO THE SOFTWARE OR
DOCUMENTATION, INCLUDING BUT NOT LIMITED TO WARRANTIES OF FITNESS FOR A
PARTICULAR PURPOSE OR MERCHANTABILITY OR THAT THE SOFTWARE OR
DOCUMENTATION IS NON-INFRINGING.<span class="Apple-converted-space"> </span>ALL OTHER WARRANTIES ARE EXPRESSLY DISCLAIMED.<span class="Apple-converted-space"> </span>WITHOUT
LIMITING THE GENERALITY OF THE FOREGOING, AB SCIEX MAKES NO WARRANTIES
THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS, THAT OPERATION OF THE
LICENSED SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE OR WILL CONFORM
EXACTLY TO THE DOCUMENTATION, OR THAT AB SCIEX WILL CORRECT ALL PROGRAM
ERRORS.<span class="Apple-converted-space"> </span>AB SCIEX’S SOLE
LIABILITY AND RESPONSIBILITY FOR BREACH OF WARRANTY RELATING TO THE
SOFTWARE OR DOCUMENTATION SHALL BE LIMITED, AT AB SCIEX’S SOLE OPTION,
TO (1) correctION of any error identified to ab sciex in A writing from
you in a subsequent release of the Software, which shall be supplied to
you free of charge, (2) acceptING a return of the PRODUCT and refundING
THE purchase price UPON RETURN OF THE PRODUCT AND REMOVAL OF ALL COPIES
OF THE SOFTWARE FROM YOUR COMPUTERS AND STORAGE DEVICES, (3) REPLACEMENT
OF THE DEFECTIVE SOFTWARE WITH A FUNCTIONALLY EQUIVALENT PROGRAM AT NO
CHARGE TO YOU, OR (4) PROVIDING A REASONABLE WORK AROUND WITHIN A
REASONABLE TIME.<span class="Apple-converted-space"> </span>AB SCIEX
SOLE LIABILITY AND RESPONSIBILITY UNDER THIS AGREEMENT FOR BREACH OF
WARRANTY RELATING TO MEDIA IS THE REPLACEMENT OF DEFECTIVE MEDIA
RETURNED WITHIN 90 DAYS OF THE DELIVERY DATE.<span class="Apple-converted-space"> </span>THESE ARE YOUR SOLE AND EXCLUSIVE REMEDIES FOR ANY BREACH OF WARRANTY.<span class="Apple-converted-space"> </span>warranty claims must be made within the applicable warranty period.</p>
<p><br></p>
<p><b>Limitation of Liability</b></p>
<p>IN NO EVENT SHALL AB SCIEX OR ITS AGENTS,
CONSULTANTS, CONTRACTORS OR SUPPLIERS BE RESPONSIBLE OR LIABLE, WHETHER
IN CONTRACT, TORT, WARRANTY OR UNDER ANY STATUTE (INCLUDING WITHOUT
LIMITATION ANY TRADE PRACTICE, UNFAIR COMPETITION OR OTHER STATUTE OF
SIMILAR IMPORT) OR ON ANY OTHER BASIS FOR SPECIAL, INDIRECT, INCIDENTAL,
MULTIPLE, PUNITIVE, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
POSSESSION OR USE OF, OR THE INABILITY TO USE, THE SOFTWARE OR
DOCUMENTATION, EVEN IF AB SCIEX IS ADVISED IN ADVANCE OF THE POSSIBILITY
OF SUCH DAMAGES, INCLUDING WITHOUT LIMITATION DAMAGES ARISING FROM OR
RELATED TO LOSS OF USE, LOSS OF DATA, DOWNTIME, OR FOR LOSS OF REVENUE,
PROFITS, GOODWILL OR BUSINESS OR OTHER FINANCIAL LOSS.<span class="Apple-converted-space"> </span>IN
ANY CASE, THE ENTIRE LIABILITY OF AB SCIEX AND ITS AGENTS, CONSULTANTS,
CONTRACTORS AND SUPPLIERS UNDER THIS LICENSE, OR ARISING OUT OF THE USE
OF THE SOFTWARE, SHALL NOT EXCEED IN THE AGGREGATE THE PURCHASE PRICE
OF THE LICENSE OR LICENSES TO THE SOFTWARE.</p>
<p><br></p>
<p>Some states, countries or jurisdictions limit the
scope of or preclude limitations or exclusion of remedies or damages,
or of liability, such as liability for gross negligence or willful
misconduct, as or to the extent set forth above, OR do not allow implied
warranties TO BE EXCLUDED.<span class="Apple-converted-space"> </span>In
such states, countries or jurisdictions, the limitation or exclusion of
warranties, remedies, damages or liability set forth above may not
apply to you.<span class="Apple-converted-space"> </span>however, although they shall not apply to the extent prohibited by law, they shall apply to the fullest extent permitted by law.<span class="Apple-converted-space"> </span>YOU MAY ALSO HAVE OTHER RIGHTS THAT VARY BY STATE, COUNTRY OR OTHER JURISDICTION.</p>
<p><br></p>
<p><b>GENERAL</b></p>
<p>This Agreement shall be governed by laws of the
Commonwealth of Massachusetts, U.S.A., exclusive of its conflict of laws
provisions.<span class="Apple-converted-space"> </span>This Agreement shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods.<span class="Apple-converted-space"> </span>This
Agreement contains the complete agreement between the parties with
respect to the subject matter hereof, and supersedes all prior or
contemporaneous agreements or understandings, whether oral or written.<span class="Apple-converted-space"> </span>If
any provision of this Agreement is held by a court of competent
jurisdiction to be contrary to law, that provision will be enforced to
the maximum extent permissible, and the remaining provisions of this
Agreement will remain in full force and effect.<span class="Apple-converted-space"> </span>The controlling language of this Agreement, and any proceedings relating to this Agreement, shall be English.<span class="Apple-converted-space"> </span>You agree to bear any and all costs of translation, if necessary.<span class="Apple-converted-space"> </span>The headings to the sections of this Agreement are used for convenience only and shall have no substantive meaning.<span class="Apple-converted-space"> </span>All
questions concerning this Agreement shall be directed to: AB Sciex, 500
Old Connecticut Path, Framingham MA U.S.A., Attention: Legal
Department.</p>
<p><br></p>
<p><br></p>
<p>Unpublished rights reserved under the copyright laws of the United States.</p>
<p>AB Sciex LLC, 500 Old Connecticut Path, Framingham, MA 01701 U.S.A.</p>
<p><br></p>
<p>For Research Use Only. Not for use in diagnostic procedures.<span class="Apple-converted-space"> </span>The trademarks mentioned herein are the property of AB Sciex Pte. Ltd. or their respective owners.<span class="Apple-converted-space"> </span>AB SCIEX™ is being used under license.</p>
<p>© 2012 AB SCIEX</p>
<p><b>APPENDIX A</b></p>
<p><b>DISTRIBUTABLE COMPONENTS OF THE SOFTWARE</b></p>
<p><br></p>
<p>Clearcore2.Compression.dll</p>
<p>Clearcore2.Data.AnalystDataProvider.dll</p>
<p>Clearcore2.Data.CommonInterfaces.dll</p>
<p>Clearcore2.Data.dll</p>
<p>Clearcore2.Data.WiffReader.dll</p>
<p>Clearcore2.InternalRawXYProcessing.dll</p>
<p>Clearcore2.Muni.dll</p>
<p>Clearcore2.ProjectUtilities.dll</p>
<p>Clearcore2.RawXYProcessing.dll</p>
<p>Clearcore2.StructuredStorage.dll</p>
<p>Clearcore2.Utility.dll</p>
<p><br></p>
</div>
<div class="license-3 hidden">
<h1>Agilent MHDAC</h1>
<p><strong>END-USER LICENSE TERMS FOR AGILENT MHDAC</strong></p>
<p><strong>AGILENT TECHNOLOGIES, INC. SOFTWARE LICENSE TERMS FOR THE MASSHUNTER DATA ACCESS COMPONENT RUNTIME VERSION</strong></p>
<p><strong>ATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE LICENSE TERMS SET FORTH BELOW.</strong></p>
<p>IF YOU DO NOT AGREE TO THESE LICENSE TERMS, THEN
(A) DO NOT INSTALL OR USE THE SOFTWARE, AND (B) YOU MAY RETURN THE
SOFTWARE FOR A FULL REFUND, OR, IF THE SOFTWARE IS SUPPLIED AS PART OF
ANOTHER PRODUCT, YOU MAY RETURN THE ENTIRE PRODUCT FOR A FULL REFUND.
NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS NOTICE, INSTALLING OR
OTHERWISE USING THE SOFTWARE INDICATES YOUR ACCEPTANCE OF THESE TERMS. </p>
<p>AGILENT SOFTWARE LICENSE TERMS</p>
<p><strong><u>Software</u></strong>. “Software” means the Masshunter Data Access Component Runtime computer program in object code format.</p>
<p><strong><u>License Grant</u></strong>. Agilent
grants you a non-exclusive, non-transferable license to (a) use one copy
of the Software for internal purposes in accordance with these License
Terms and the documentation provided with the Software or (b) to
distribute the Software for non-commercial purposes only and only
bundled as part of, and for the sole purpose of running, products
supplied by you. This Software is licensed for internal concurrent or
network use of an unlimited number of copies, provided access to this
Software and any copies is restricted to your employees, contractors and
other personnel that are working in a capacity that is under your
control and on your behalf. If you distribute for non-commercial
purposes only as permitted by this license, you must ensure that a copy
of this license is distributed with the Software and that the recipient
of the Software agrees to the terms of this license as a condition of
execution of this Software. </p>
<p><strong><u>License Restrictions</u></strong>.
You may make copies or adaptations of the Software only for archival
purposes or only when copying or adaptation is an essential step in the
authorized use of the Software. You must reproduce all copyright notices
in the original Software on all permitted copies or adaptations. You
may not offer or provide unrestricted access to this Software on any
public or distributed network.</p>
<p><strong><u>Upgrades</u></strong>. This license
does not entitle you to receive upgrades, updates or technical support.
Such services may be purchased separately. </p>
<p><strong><u>Ownership</u></strong>. <strong> </strong>The
Software and all copies thereof are owned and copyrighted by Agilent.
Agilent retains all right, title and interest in the Software. Agilent
and its third party suppliers may protect their rights in the Software
in the event of any violation of these License Terms.<strong><u></u></strong></p>
<p><strong><u>No Disassembly</u></strong>. <strong> </strong>You
may not disassemble, decompile or otherwise modify the Software without
written authorization from Agilent, except as permitted by law. Upon
request, you will provide Agilent with reasonably detailed information
regarding any permitted disassembly, decompilation or modification.</p>
<p><strong><u>High Risk Activities</u></strong>.<strong> </strong>The
Software is not specifically designed, manufactured or intended for use
in the planning, construction, maintenance or direct operation of a
nuclear facility, nor for use in on line control or fail safe operation
of aircraft navigation, control or communication systems, weapon systems
or direct life support systems. </p>
<p><strong><u>Termination</u></strong>. Agilent may
terminate your license upon notice for breach of these License Terms.
Upon termination, you must immediately destroy all copies of the
Software.<strong><u></u></strong></p>
<p><strong><u>No Warranty</u></strong>. THIS
SOFTWARE IS LICENSED "AS IS" AND WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED
WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A
PARTICULAR PURPOSE.
</p>
<p><strong><u>Limitation of Liability</u></strong>.
TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL AGILENT BE LIABLE
FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,
CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS
OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR
INABILITY TO USE SOFTWARE, EVEN IF AGILENT HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES. In no event will Agilent's liability to
you, whether in contract, tort (including negligence), or otherwise,
exceed the amount paid by you for the Software. The foregoing
limitations will apply even if the above stated warranty fails of its
essential purpose.</p>
<p><strong><u>Export Requirements</u></strong>. If
you export, re-export or import Software, technology or technical data
licensed hereunder, you assume responsibility for complying with
applicable laws and regulations and for obtaining required export and
import authorizations. Agilent may terminate this license immediately
if you are in violation of any applicable laws or regulations.</p>
<p><strong><u>U.S. Government Restricted Rights</u></strong>.<strong> </strong>Software
and technical data rights granted to the federal government include
only those rights customarily provided to end user customers. Agilent
provides this customary commercial license in Software and technical
data pursuant to FAR 12.211 (Technical Data) and 12.212 (Computer
Software) and, for the Department of Defense, DFARS 252.227-7015
(Technical Data – Commercial Items) and DFARS 227.7202-3 (Rights in
Commercial Computer Software or Computer Software Documentation).</p>
<hr>
</div>
<div class="license-4 shown">
<h1>Bruker CompassXtract</h1>
<div class="WordSection1">
<p style="text-autospace:none"><b><span style="font-family:
Helvetica;">SOFTWARE
LICENSE AGREEMENT for <span class="SpellE">CompassXtract</span> and <span class="SpellE">CompassXtract</span> Libraries</span></b></p>
<p style="text-autospace:none"><span class="SpellE"><span style="font-family:Helvetica;">Bruker</span></span><span style="font-family:
Helvetica;"> <span class="SpellE">Daltonik</span> GmbH (hereinafter referred to as
"Licensor") has developed the <span class="SpellE">CompassXtract</span> software program (hereinafter referred to as "<span class="SpellE">CompassXtract</span>"),
which consists of documentation and individual <span class="SpellE">CompassXtract</span> libraries (hereinafter referred to as "<span class="SpellE">CompassXtract</span> <b>Libraries"). </b>These license terms constitute an agreement (hereinafter referred to as
"Agreement") between you and Licensor and shall be the legal basis
for any non-commercial usage of Licensor's <span class="SpellE">CompassXtract</span>.
These license terms also apply to any updates or supplements for <span class="SpellE">CompassXtract</span> or separable parts of <span class="SpellE">CompassXtract</span> such as <span class="SpellE">CompassXtract</span> Libraries, unless other terms
accompany those items, in which case those terms apply<span class="GramE">.
</span>You
may only use <span class="SpellE">CompassXtract</span> as a whole, if you have
downloaded it from Licensor's Webserver at http://www.bdal.de/compassxtract and
accepted this Agreement as binding between Licensor and you. However, <span class="GramE">certain individual <span class="SpellE">CompassXtract</span> Libraries might be conveyed to you by others</span>. In both cases, you may
only legally use <span class="SpellE">CompassXtract</span> or any of the <span class="SpellE">CompassXtract</span> Libraries conveyed to you after having
accepted this Agreement as binding between Licensor and you.</span></p>
<p style="text-autospace:none"><b><span style="font-family:
Helvetica;">1. Purpose of <span class="SpellE">CompassXtract</span> and License</span></b></p>
<p style="text-autospace:none"><span class="SpellE"><span style="font-family:Helvetica;">CompassXtract</span></span><span style="font-family:Helvetica;"> is provided as it is, in a trial and development stage, not yet marketable and
without any warranties regarding fitness for any purpose whatsoever. It may
contain errors and defects. The aim and purpose of providing it free of charge
and under the terms of this Agreement is to discover such errors and defects.
It is, inter alia but not limited to, not designed, manufactured or intended
for any use requiring fail-safe performance in which the failure of <span class="SpellE">CompassXtract</span> could lead to death, personal injury or
physical and environmental damage, such as the operation of medical facilities.
Nor is it, inter alia but not limited to, designed to perform any queries or
operations which might require reliable results and/or which might be the basis
for business and/or medical decisions. You agree not to use <span class="SpellE">CompassXtract</span> in connection with any such activities.</span></p>
<p style="text-autospace:none"><b><span style="font-family:
Helvetica;">2. Rights
Granted</span></b></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">You may
install and use <span class="SpellE">CompassXtract</span> on any of your
computing devices.</span></p>
<p style="text-autospace:none"><b><span style="font-family:
Helvetica;">3. Use
Restrictions</span></b></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">3.1 You may
not decompile, disassemble, reverse engineer or modify <span class="SpellE">CompassXtract</span>.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">3.2 You may
not distribute <span class="SpellE">CompassXtract</span> to others, breach of
which terminates the rights granted under this agreement. This also applies to
any integration or implementation of <span class="SpellE">CompassXtract</span> to
software developed by you or by others on your behalf (hereinafter referred to
as "Own <b>Software") </b>or any distribution of which <span class="SpellE">CompassXtract</span> is <span class="GramE">part of.</span> However, you may distribute Own <span class="GramE">Software which requires the usage of</span> or links to <span class="SpellE">CompassXtract</span> Libraries if you comply with the requirements
set down in Section 4 of this Agreement.</span></p>
<p style="text-autospace:none"><b><span style="font-family:
Helvetica;">4.
Requirements for Distribution of your own Software using <span class="SpellE">CompassXtract</span> Libraries</span></b></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">You may only
distribute <span class="SpellE">CompassXtract</span> Libraries to others if all
of the following conditions are met: 4.1 <span class="GramE">You</span> distribute <span class="SpellE">CompassXtract</span> Libraries as part of Own
Software which you license to third parties</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">(<span class="GramE">hereinafter</span> "Your <b>Licensees");
</b>4.2
Your Own Software requires all the <span class="SpellE">CompassXtract</span> Libraries distributed by you in order to function</span></p>
<p style="text-autospace:none"><span class="GramE"><span style="font-family:Helvetica;">properly</span></span><span style="font-family:
Helvetica;"> when used by
Your Licensees;</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">4.3 You
provide to Your Licensee a URL to Licensor's Webserver at
http://www.bdal.de/compassxtract and require Your Licensees, as condition for
being granted the right to use your Own Software, to acquire the usage rights
for <span class="SpellE">CompassXtract</span> directly from Licensor by agreeing
to the terms of this Agreement, which you distribute in unmodified form with
your Own Software.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">4.4 In your
Own Software's "About" box the following text is displayed: "This software uses <span class="SpellE">CompassXtract</span> software. <span class="GramE">Copyright �
2011 by <span class="SpellE">Bruker</span> <span class="SpellE">Daltonik</span> GmbH.</span> All rights reserved."</span></p>
<p style="text-autospace:none"><b><span style="font-family:
Helvetica;">5.
Restrictions for Distribution of your own Products</span></b></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">5.1 You may
not use the Licensor's trademarks in a way that suggests your software
components and/or programs are provided by or are endorsed by the Licensor.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">5.2 You may
not commercially exploit <span class="SpellE">CompassXtract</span>, <span class="SpellE">CompassXtract</span> Libraries or products that require the usage
of or link to <span class="SpellE">CompassXtract</span> or <span class="SpellE">CompassXtract</span> Libraries. Commercial exploitation includes, but is not limited to, charging a
purchase price, license fee, maintenance fee, or subscription fee.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">5.3 Your
rights to <span class="SpellE">CompassXtract</span> do not include any license,
right, power or authority to subject <span class="SpellE">CompassXtract</span> in
whole or in part to any of the terms of an Excluded License. <b>"Excluded
License" </b>means any license that requires as a condition of use,
modification and/or distribution of software that such software or other
software combined and/or distributed with such software shall be (a) disclosed
or distributed in source code form; or (b) licensed for the purpose of making
derivative works. Without limiting the foregoing obligation, you are
specifically prohibited from distributing <span class="SpellE">CompassXtract</span> or <span class="SpellE">CompassXtract</span> Libraries with any software that is
subject to the General Public License (GPL) or similar license in a manner that
would create a combined work.</span></p>
<p style="text-autospace:none"><b><span style="font-family:
Helvetica;">6. Liability</span></b></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">6.1 As
Licensor delivers the software for free, Licensor is not liable for any kind of
damage, direct or indirect, which may arise due to simple negligence (Section
521 German Civil Code). In the event, that there should be – for whatever
reason – a statutory liability of Licensor for simple <span class="SpellE">negliegence</span>,
the aforementioned exclusion of liability applies nevertheless, but with the
exception of damages to life, body or health.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">6.2 You
indemnify, defend and hold harmless the Licensor from any liability claims,
including attorney fees, of third parties in connection with your usage of <span class="SpellE">CompassXtract</span> as well as the distribution of your Own <span class="GramE">Software which</span> requires usage of or links to <span class="SpellE">CompassXtract</span> Libraries and other circumstances for which
you are responsible.</span></p>
<p style="text-autospace:none"><b><span style="font-family:
Helvetica;">7. Additional
Terms Applicable to <span class="SpellE">CompassXtract</span></span></b></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">7.1 <span class="SpellE">CompassXtract</span> is licensed, not sold. This License only
gives you some rights to use <span class="SpellE">CompassXtract</span> and the <span class="SpellE">CompassXtract</span> Libraries; the Licensor reserves all other
rights. Unless applicable law gives you more rights despite this limitation,
you may use <span class="SpellE">CompassXtract</span> and the <span class="SpellE">CompassXtract</span> Libraries only as expressly permitted in this License.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">7.2 Licensor
has no obligation to fix, update, supplement or support <span class="SpellE">CompassXtract</span> and/or the <span class="SpellE">CompassXtract</span> Libraries.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">7.3 Your
rights under this License terminate automatically if you breach this License in
any way. Termination of this License will not affect any of your obligations or
liabilities arising prior to termination. The following sections of this
License shall survive termination: 3.1, 3.2, 5.1, 5.2, 5.3, 6.1<span class="GramE">.,</span> 6.2.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">7.4 No
subsidiary agreements of this Agreement have been made. Supplements and
amendments to this Agreement must be made in writing as prescribed by law in
order to be valid. The requirement of written form under this Agreement may be
waived in writing only.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">7.5 This
Agreement is governed by German law to the exclusion of the UN Convention on
Contracts for the International Sale of Goods. If you are a consumer, this does
not apply if legal provisions, in particular consumer protection legislation,
conflict with this choice. The courts of Bremen shall have exclusive
jurisdiction. If you are not a merchant, a legal entity under public law or a
public-law special fund in the sense Section 38 of the German Code of Civil
Procedure (ZPO), the <span class="GramE">agreement on the place of jurisdiction
is replaced by the legal provisions</span>.</span></p>
<p style="text-autospace:none"><span style="font-family:
Helvetica;">7.6 If
individual provisions of this Agreement are or become invalid or contain a <span class="GramE">gap which</span> needs to be filled, the validity of the remaining
provisions of the Agreement will not be affected thereby. The Parties hereby
undertake to substitute the invalid or lacking provision with a valid <span class="GramE">provision which</span> comes closest to the documented intentions
of the Parties.</span></p>
</div>
</div>
<div class="license-5 hidden">
<h1>Shimadazu SFCS</h1>
<div class="WordSection1" style="layout-grid:16.3pt">
<p style="text-align:center;line-height:12.0pt;
" align="center"><u><span style="font-size:9.0pt">SHIMADZU SOFTWARE
LICENSE AGREEMENT</span></u></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt">PLEASE READ THIS AGREEMENT CAREFULLY BEFORE USING THE
SOFTWARE. </span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt">Shimadzu Corporation ("Shimadzu") is willing to license
the Shimadzu software provided herein, together with accompanying documentation
to you only upon the condition that you accept all of the terms and condition
contained in this Agreement. By using the Shimadzu software, you agree to be
bound by the terms of this Agreement. If you do not agree to all these terms of
this Agreement, promptly return the unused Shimadzu software to the party
(either Shimadzu or its distributor).</span></p>
<p style="line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">1.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">SOFTWARE.</span></p>
<p style="line-height:15.0pt;"><span style="font-size:9.0pt">"SOFTWARE" means Shimadzu's file
converter software ("SFCS") provided by Shimadzu.<br>
(Comprised of one DataReader.dll containing the class <span class="SpellE">Shimadzu.LabSolutions.DataReader</span>)</span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">2.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">LICENSE. </span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt">Shimadzu grants you a non-exclusive and
non-transferable license to use the SOFTWARE subject to the following terms and
conditions. You may install and use the SOFTWARE on any of your computing
devices.</span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">3.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">LIMITATION OF USE.</span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt">You may: i) use the SOFTWARE for your
own internal use; and ii) conduct developments to incorporate the SOFTWARE into
your own derivative work that incorporates software under the brand name "<span class="SpellE">ProteoWizard</span>" provided by <span class="SpellE">ProteoWizard</span>
Software Foundation ("PW Software") and is distributed without
commercially
exploiting the SOFTWARE. Commercial
exploitation includes but is not limited to,
charging a purchase price, license
fee, maintenance fee, or subscription fee.
If you distribute without commercially exploiting the SOFTWARE only as
permitted by this license, you must ensure that a
copy of this license is
distributed with your derivative work, and that
the recipient of your
derivative work agrees to the terms of this
license as a condition of executing
your program.</span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt">Except as specifically authorized by Shimadzu,
you may NOT:</span></p>
<p style="line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">a.<span style="font:7.0pt "Times New Roman""> </span></span><span class="GramE"><span style="font-size:9.0pt">modify</span></span><span style="font-size:9.0pt">, adapt, translate, reverse-engineer, decompile,
disassemble, or otherwise reduce the SOFTWARE to a human-perceivable form, or
create derivative works of the SOFTWARE, or any part thereof .</span></p>
<p style="line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">b.<span style="font:7.0pt "Times New Roman""> </span></span><span class="GramE"><span style="font-size:9.0pt;
color:black">distribute</span></span><span style="font-size:9.0pt;color:black">,
rent, lease</span><span style="font-size:9.0pt">, sub-license or grant any
rights in or to the SOFTWARE in any form to anyone else. </span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">4.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">TITLE AND
OWNERSHIP.</span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt">The license granted hereunder is not for
sale and it may not be assigned or sublicensed to anyone else. Title and all
associated intellectual property rights to the SOFTWARE shall remain in Shimadzu.</span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">5.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">COPYRIGHT NOTICE<br>
When you conduct developments to incorporate the SOFTWARE into the PW Software
for your own internal use, you shall include Shimadzu copyright notices on any
copies of the SOFTWARE to display the following text in your software's "About"
box: "Shimadzu's file converter software. Copyright ©2014 by Shimadzu
Corporation. All rights reserved".<br>
You shall not use Shimadzu's trademarks in a way to suggest that your software,
components, and-or programs are provided by or are endorsed by Shimadzu.</span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">6.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">UPGRADES.</span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt;letter-spacing:
-.2pt">The </span><span style="font-size:9.0pt">Shimadzu<span style="letter-spacing:
-.2pt"> has no obligation to upgrade the SOFTWARE. An upgrade means certain
supplemental program modules and/or information for bug fixing and/or updates
to the defects and/or failures of the SOFTWARE that are acknowledged or
confirmed by </span>Shimadzu<span style="letter-spacing:-.2pt">. </span></span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">7.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">LIMITED WARRANTY.</span></p>
<p style="
line-height:12.0pt;"> <span style="font-size:
9.0pt">The SOFTWARE will be made available to you in "as-is" condition and
Shimadzu will not make any warranty whatsoever with respect to the SOFTWARE.
EXCEPT AS EXPRESSLY SET FORTH IN THIS ARTICLE, SHIMADZU DISCLAIMS ALL OTHER
WARRANTIES, EITHER EXPRESS OR IMPLIED, WHETHER BY STATUTE OR OTHERWISE,
INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF ACCURACY, COMPLETENESS,
PERFORMANCE, MERCHANTABILITY, NON-INFRINGEMENT OR FITNESS FOR A PARTICULAR
PURPOSE WITH REGARD TO THE SFCS. </span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">8.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">LIMITATION OF
LIABILITY.</span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt;letter-spacing:-.2pt">IN NO EVENT WILL SHIMADZU
BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT,
CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE
THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO
USE SOFTWARE, EVEN IF SHIMADZU HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE. IN NO EVENT WILL SHIMADZU'S
LIABILITY TO YOU, WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE), OR
OTHERWISE, EXCEED THE AMOUNT YOU PAID FOR SOFTWARE. THIS LIMITATION APPLIES TO
ANYTHING RELATED TO THE SOFTWARE, SERVICES, CONTENT (INCLUDING CODE) ON THIRD
PARTY INTERNET SITES, OR THIRD PARTY PROGRAMS, AND CLAIMS FOR BREACH OF
CONTRACT, BREACH OF WARRANTY, GUARANTEE OR CONDITION, STRICT LIABILITY,
NEGLIGENCE, OR OTHER TORT TO THE EXTENT PERMITTED BY APPLICABLE LAW.</span><span style="font-size:9.0pt"> </span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">9.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">TERMINATION.</span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt">This Agreement is effective until
terminated. You may terminate this Agreement at any time by destroying all
copies of the SOFTWARE<span style="letter-spacing:-.1pt"> </span>including any
documentation. This Agreement will terminate immediately without notice from Shimadzu
if you fail to comply with any provision of this License. Upon termination, you
must destroy all copies of the SOFTWARE.</span></p>
<p style="
line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">10.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">GENERAL</span></p>
<p style="line-height:
12.0pt;"><span style="font-size:9.0pt;"Times New Roman"">a.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt">This Agreement is
the entire agreement. If any provision of this agreement is held invalid, the
remainder of this agreement shall continue in full force and effect.</span></p>
<p style="line-height:
12.0pt;"><span style="font-size:9.0pt;letter-spacing:
-.1pt">b.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt;letter-spacing:
-.1pt">This Agreement shall be construed and governed in accordance with the
laws of Japan, excluding its conflict of law rules.</span></p>
<p style="line-height:
12.0pt;"><span style="font-size:9.0pt;letter-spacing:
-.2pt">c.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt;letter-spacing:
-.2pt">The exclusive jurisdiction for any disputes arising out of or in
connection with this Agreement shall be Kyoto District Court of Japan.</span></p>
<p style="line-height:
12.0pt;"><span style="font-size:9.0pt;letter-spacing:
-.3pt">d.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt;letter-spacing:
-.3pt">The invalidity or unenforceability of any provision of this Agreement
shall not affect the validity or enforceability of any other provision.</span></p>
<p style="line-height:
12.0pt;"><span style="font-size:9.0pt;letter-spacing:
-.3pt">e.<span style="font:7.0pt "Times New Roman""> </span></span><span style="font-size:9.0pt;letter-spacing:
-.3pt">The SOFTWARE is licensed, not sold. This </span><span style="font-size:
9.0pt">License <span style="letter-spacing:-.3pt">only gives you some rights to
use the SOFTWARE; the </span>Shimadzu<span style="letter-spacing:-.3pt"> reserves all other rights. Unless applicable law gives you more rights despite
this limitation, you may use the SOFTWARE only as expressly permitted in this </span>License<span style="letter-spacing:-.3pt">.</span></span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt;letter-spacing:-.2pt">Analytical & Measuring
Instruments Division, Shimadzu Corporation</span></p>
<p style="line-height:12.0pt;"><span style="font-size:9.0pt;letter-spacing:.2pt">1 Nishinokyo-Kuwabaracho,
Nakagyo-ku, Kyoto 604-8511, Japan</span></p>
</div>
</div>
<div class="license-6 hidden">
<h1>Thermo msFileReader</h1>
<div class="WordSection1">
<p style="text-align:center" align="center"><b><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">SOFTWARE
LICENSE AGREEMENT ("License") FOR MSFileReader</span></b></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">These
License terms are an agreement between you and Thermo Finnigan LLC ("Licensor"). They apply to
Licensor's MSFileReader software program ("Software"), which includes
documentation and any media on which you received it. These terms also apply to
any updates or supplements for this Software, unless other terms accompany
those items, in which case those terms apply. <b>If you use this Software, you
accept this License. If you do not accept this License, you are prohibited from
using this software. If you comply with
these License terms, you have the rights set forth below.</b></span></p>
<p><span style="font-size:10.0pt;font-family:Arial;
" lang="EN-US">1. </span><span style="font-size:10.0pt;
font-family:Arial" lang="EN-US">Rights Granted:</span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">1.1. <span class="GramE">You</span> may install and use this Software on any of your
computing devices.</span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">1.2. <span class="GramE">You</span> may distribute this Software to others, but only
in combination with other software components and/or programs that you provide
and subject to the distribution requirements and restrictions below. </span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">2. Use Restrictions:</span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">2.1. <span class="GramE">You</span> may not decompile, disassemble, reverse engineer,
use reflection or modify this Software.</span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">3.
Distribution Requirements:</span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">If
you distribute this Software to others, you agree to:</span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">3.1.
Indemnify, defend and hold harmless the Licensor from any claims, including
attorneys' fees, related to the distribution or use of this Software;</span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">3.2.
Display the following text in your software's "About" box: "<b>MSFileReader file reading tool. <span class="GramE">Copyright © 2009 - 2014 by Thermo Fisher Scientific, Inc.</span> All rights reserved</b>.";</span></p>
<p><span style="font-size:10.0pt;font-family:Arial" lang="EN-US">3.3. <span class="GramE">Require</span> your end users to agree to a license agreement