-
Notifications
You must be signed in to change notification settings - Fork 6
/
LICENSE
1954 lines (1685 loc) · 119 KB
/
LICENSE
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
Anyline, AnylineSDK
Copyright (c) 2023 Anyline GmbH All rights reserved.
Community Version User License Agreement
1. Scope of application of the community version user license agreement
1.1 This community version user license agreement (the "Agreement") is a legal agreement between the licensee (the "Licensee") and the licensor (the "Licensor") both as defined in the binding order (the "Order"). The Licensee and Licensor each being a "Party" and together the "Parties".
1.2 Licensor has developed, owns and licenses software referred to as ANYLINE® SDK Community Version (hereinafter referred to as “Licensed Technology”) which is implemented as a free community version of a software library for non-commercial purposes to be linked to and integrated in software products to be developed by Licensee and to be installed and executed on IT-devices.
1.3 By signing the Order, electronically submitting the Order, accepting the terms of this Agreement or downloading, installing, copying, or otherwise using Licensed Technology, Licensee agrees to be bound by the terms of this Agreement and acknowledges and confirms that he/she has read, understood and agreed to comply with all terms, conditions and notices contained in or referenced by this Agreement and the relevant Order.
1.4 If Licensee does not agree to be bound by the terms of this Agreement (including the documents referenced herein), no agreement shall exist between Licensee and Licensor in relation to Licensed Technology. In this case Licensee must not install, use in any other way or make available Licensed Technology.
2. Software Description
2.1 Licensed Technology is implemented as a software library providing diverse functions and procedures to be used for the development of software applications to be executed on IT-devices ("Derived Works"). Therefore, Licensed Technology is designed as a software package (library) to be included in Licensee’s software development environment in order to develop Derived Works. Such Derived Works may then be compiled to an executable binary application. For this compilation, Licensed Technology has to be statically linked to a software application developed by or for Licensee, in order to create the final version of this software application in the form of one binary file ("Licensee Application"). In order to enable Licensee to use Licensed Technology, Licensor provides detailed documentation and description of the interfaces.
3. Grant of License and Redistribution
3.1 Licensee understands that, in order to use Licensed Technology, Licensee needs to purchase the required licenses for the "iOS SDK" framework from Apple Inc. and/or the "Android SDK" from Google Inc. separately and at Licensee’s own expense and responsibility.
3.2 Licensor grants to Licensee certain personal, revocable, non-exclusive, non-assignable and non-transferable rights to use the Licensed Technology limited by the terms of this Agreement (the "License"). Licensor shall supply one copy of Licensed Technology to Licensee by making it available to Licensee via an electronic download pursuant to section 4 of this Agreement. Licensed Technology is licensed and not sold to Licensee. Licensee may only use the Licensed Technology pursuant to the terms of this Agreement, and Licensor reserves all rights not expressly granted to Licensee herein.
3.3 LICENSEE MAY ONLY USE LICENSED TECHNOLOGY FOR NON-COMMERCIAL PURPOSES. IN ALL CASES, LICENSED TECHNOLOGY'S OBJECT CODE MAY NOT BE SUBMITTED TO APPLE'S APP STORE OR USED IN PRODUCTION. ANY REDISTRIBUTION OF LICENSED TECHNOLOGY IN EITHER SOURCE OR BINARY FORM IS STRICTLY PROHIBITED.
3.4 ANY FORM OF COMMERCIAL OR PROFIT-ORIENTED USE OF LICENSED TECHNOLOGY IS STRICTLY PROHIBITED.
3.5 ANY DISTRIBUTION OR MAKING AVAILABLE OF DERIVED WORKS OR LICENSEE APPLICATIONS TO LICENSEE'S END USERS IS STRICTLY PROHIBITED.
3.6 ANY REDISTRIBUTION OF SOURCE OR HEADER FILES IS STRICTLY PROHIBITED.
3.7 ANY REDISTRIBUTION OR DISCLOSURE TO THIRD PARTIES OF PROVIDED DOCUMENTATION OR DESCRIPTIONS OF INTERFACES IS STRICTLY PROHIBITED.
4. Delivery and Updates
4.1 Licensor will make available Licensed Technology to Licensee via electronic download.
4.2 Further, Licensor may make available updates and error corrections or updated versions of Licensed Technology (collectively, “Updates”) to the Licensee. In case Licensor makes available Updates to Licensee, Licensee is obliged to install and use such Updates. Licensor will under no circumstances be obliged to develop Updates or upgrades of Licensed Technology or provide any support or maintenance services to Licensee.
4.3 Notwithstanding the right to terminate this Agreement, Licensor is entitled to suspend Licensee’s access to Updates, if Licensee is in breach of any obligations under the Order or this Agreement.
5. Duration and Termination of Agreement and Maintenance
5.1 This Agreement shall automatically expire and terminate following the term specified in the Order.
5.2 In the case of a material breach of this Agreement by one Party, the other Party shall have the right to terminate the Agreement for cause. With respect to Licensor valid reasons for termination, include, but are not limited to, non-compliance by Licensee with any provision of this Agreement.
5.3 Upon termination of this Agreement for cause, Licensee shall remove all Licensed Technology in full from its software development environment and remove/delete any and all corresponding files.
6. Warranty and Limitation of Liability
6.1 Licensee expressly acknowledges and agrees that:
6.1.1 LICENSED TECHNOLOGY IS PROVIDED ON AN "AS IS" AND "AS AVAILABLE" BASIS AND THE USE OF LICENSED TECHNOLOGY IS AT LICENSEE'S SOLE RISK;
6.1.2 LICENSOR EXPRESSLY DISCLAIMS ALL WARRANTIES, ENDORSEMENTS, GUARANTEES, CONDITIONS AND REPRESENTATIONS WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY CONDITIONS, ENDORSEMENTS, GUARANTEES, REPRESENTATIONS OR WARRANTIES OF DURABILITY, MERCHANTABILITY, MERCHANTABLE
QUALITY, SATISFACTORY QUALITY, ACCURACY, TITLE, NON-
INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE OR USE, OR ARISING FROM A STATUTE OR CUSTOM OR A COURSE OF DEALING OR USAGE OF TRADE;
6.1.3 NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY THE LICENSEE FROM LICENSOR SHALL CREATE ANY WARRANTY NOT EXPRESSLY STATED IN THIS AGREEMENT.
6.2 IN PARTICULAR, AND WITHOUT LIMITING THE FOREGOING, LICENSOR MAKES NO WARRANTY THAT:
6.2.1 LICENSED TECHNOLOGY OR ITS FUNCTIONALITY AND QUALITY WILL MEET THE LICENSEES REQUIREMENTS AND EXPECTATIONS;
6.2.2 LICENSED TECHNOLOGY WILL BE UNINTERRUPTED, TIMELY, SECURE,
OR FREE OF DEFICIENCIES AND INTERRUPTIONS OR WORK ACCURATELY;
6.2.3 THE RELEVANT LICENSED TECHNOLOGY DOCUMENTATION (INCLUDING ANY MANUALS) IS COMPLETE, ACCURATE AND NOT MISLEADING; OR
6.2.4 ANY DEFICIENCIES AND ERRORS IN LICENSED TECHNOLOGY WILL BE CORRECTED.
6.3 LICENSEE EXPRESSLY UNDERSTANDS AND AGREES THAT, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAWS AND REGULATIONS, LICENSOR SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES, INCLUDING BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, DATA OR OTHER INTANGIBLE LOSSES (EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), (I) ARISING OUT OF OR RESULTING FROM THE USE OR THE INABILITY TO USE LICENSED TECHNOLOGY OR (II) OTHERWISE RESULTING FROM LICENSED TECHNOLOGY. FURTHER, LICENSOR SHALL HAVE NO LIABILITY WITH RESPECT TO ANY DATA THAT IS READ, ACCESSED, STORED OR PROCESSED WITH THE LICENSED TECHNOLOGY, OR FOR THE COSTS OF RECOVERING ANY SUCH DATA.
6.4 Licensor is not aware of any rights of third parties which oppose the utilization purposes of Licensee in relation to the Licensed Technology, except the necessity of purchasing appropriate licenses of the "iOS SDK" software from Apple Inc. or "Android
SDK" software from Google Inc. as described in Section 3.1. Licensor is not liable, however, for the Licensed Technology and the licensed know-how being free of rights of third parties.
6.5 Licensed Technology’s source code contains and uses source code developed and owned by third parties according to specific license agreements. These third party products and the appropriate licenses included may be accessed via https://anyline.com/imprint-and-legal/.
6.6 Nothing herein shall be construed as a warranty or representation that products made with Licensed Technology will meet any safety, performance or other standards, whether imposed by any instrumentality of government or otherwise. Licensor makes no representations or warranties of any kind, either express or implied, and assumes no responsibilities whatever with respect to manufacture or use by Licensee of products made with or derived from methods employed with Licensed Technology.
6.7 THE FOREGOING LIMITATIONS, EXCLUSIONS AND DISCLAIMERS SHALL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAWS AND REGULATIONS.
7. Indemnification
Licensee shall indemnify and hold Licensor and its affiliates, their respective directors, officers, employees, co-branders, agents and independent contractors (the "Indemnified Parties") harmless from and against any loss, liability, claim, demand, damages, costs and expenses including attorney's and other legal fees and disbursements, incurred by the Indemnified Parties, including by way of a third party claim, as a consequence of Licensee's breach of its obligations under the Order, this Agreement or any applicable laws or otherwise due the use of Licensed Technology.
8. Intellectual Property Rights
8.1 Retention of Ownership. Except for the License granted to the Licensee under this Agreement and the Order, the Licensor will retain all right, title and interest in Licensed Technology, including all worldwide technology and intellectual property and proprietary rights therein.
8.2 Preservation of Notice. Licensee shall not remove, efface or obscure any copyright notices or other proprietary notices from Licensed Technology or materials provided under this Agreement.
9. Relevant Communications
9.1 All relevant notifications concerning this Agreement are to be carried out in writing to the address set out in the Order, provided no other form is mandatory by law. A notification via fax or e-mail shall be deemed to be given as in writing.
9.2 Each Party is obligated to notify the other Party of any changes in their contact addresses. Otherwise, notifications to the address set out in the Order are deemed to be delivered and given.
10. Governing Law and Place of Jurisdiction
10.1 This Agreement, the Order and any non-contractual obligations arising out of or in relation to this Agreement shall be governed by, and construed in accordance with, the laws of Austria, without reference to or application of any conflict of law rules and the UN Convention on Contracts for the International Sale of Goods.
10.2 The Courts of Vienna shall have exclusive jurisdiction to settle any dispute arising out of or in connection with this Agreement (including a dispute relating to the existence, validity or termination of this Agreement or any non-contractual obligation arising out of or in connection with this Agreement) and/or the Order.
11. Consent to Processing of Personal Data
11.1 Licensee hereby explicitly expresses its consent and agrees to the Licensor's Privacy Policy as attached to this Agreement as Annex 1 and expressly agrees to the processing of its (personal) data for the purposes described by Licensor in its Privacy Policy as attached to this Agreement.
11.2 Licensee hereby represents that Licensee has been informed about its right to: access and adjust personal data, lodge written, motivated request to cease processing of personal data and to lodge objection against processing of personal data.
12. Miscellaneous
12.1. This Agreement and the Order constitute the complete and exclusive understanding and agreement between the Parties regarding its subject matter and supersedes all prior or contemporaneous agreements or understandings, written or oral, relating to its subject matter. Licensee agrees that additional or different terms from any other previous oral or written discussions or negotiations shall not apply. Failure to enforce any provision of this Agreement shall not constitute a waiver of future enforcement of that or any other provision.
12.2 Any waiver, modification or amendment of this Agreement must be made in writing and signed by authorized representatives of the Parties. This does also apply to a deviation of this written form requirement.
12.3 This Agreement is personal to Licensee and may not be assigned or transferred for any reason whatsoever (including, without limitation, by operation of law, merger, reorganization, or as a result of an acquisition or change of control involving Licensee) without Licensors prior written consent and any action or conduct in violation of the foregoing shall be void and without effect. Licensor expressly reserves the right to assign this Agreement and to delegate any of its obligations hereunder.
12.4 Licensor and Licensee are independent parties. Nothing in this Agreement will be construed to make either Party an agent, employee, franchisee, joint venture or legal representative of the other Party.
12.5 Should any provision of this Agreement be invalid or become invalid or should this Agreement contain an omission, then the legal effect of the other provisions shall not be affected hereby. Instead of an invalid provision, a valid provision is deemed to have been agreed upon which comes closest to what the Parties intended commercially. The same applies in case of an omission.
12.6 Licensor or any future maintainer of Licensed Technology is permitted to list and disclose Licensee’s name and/or company and those products of the Licensee including Licensed Technology on Licensor’s product website and related material.
Annex 1 Privacy Policy
PRIVACY POLICY
Last Update: September 15th, 2015
Anyline GmbH ("Anyline", "we", "us", "our") respects the privacy of its users ("you") and has developed this privacy policy ("Privacy Policy") to demonstrate its commitment to protecting your privacy. During the course of our activities we will collect, store and process data about you. The use and share of your data by us and your choices about such processes are described in this Privacy Policy. We kindly ask you to consent to the policies described in this Privacy Policy and to read this document carefully before you use our website, software, applications, widgets, our official social media pages that we control, or other mobile interactive features (our "Service", together our "Services"). As we are based and processing data in Austria, this Privacy Policy is developed and your data is processed in accordance with the Austrian Data Protection Act.
If you have any questions regarding this Privacy Policy, please contact us by e-mail: [email protected]
1. Data we may collect and how we collect it
By agreeing to our Privacy Policy you consent that we may collect, store, retain, parse and process:
1. "Personal Data" meaning information that identifies you as an individual, such as your name, user name, academic title, postal address (including billing and shipping addresses), telephone number (including home and mobile phone numbers), e-mail address, place of work and its address, credit and debit card number, profile picture, date and place of birth, gender, nationality, company registration number, country of residence, passport number, signature, body height, social security number, eye colour and
2. non-personally identifiable data ("Other Data"), meaning any information that does not reveal your specific identity, such as: browser and device information, IP address, server log file information, the name of your host or the domain name of the website that referred you to ours, app usage data, site data, demographic information, information collected through cookies, anonymous app usage data and other information provided by you.
We may collect Personal Data and Other Data you provide us with or which we obtain from your device or activities by using our Services, e.g. through our website, subscribing to our press mailing list, contacting our customer service and other sources like social media platforms.
We collect your communication with our customer service and any other way of communication with us.
We also use Cookies to automatically collect certain Other Data such as the browser and device you are using, the hostname, the website that has referred you to us, language settings, etc. We may also collect data about whether Java and Flash are supported by your device and read first-party cookies on your browser in order to gather information about your browsing session. For further information on cookies please see below.
We may place links and plug-ins from plug-in providers such as Facebook, Google, YouTube, Google +, Twitter, Linkedin, GooglePlay Store, Apple Store, Chatra or certain media on our website. However, these services may use their own cookies or web beacons to collect information about users who interact with links to their websites.
If you visit our website your browser connects directly with the servers of plug-in providers and the content of the plug-in may be directly generated and incorporated on our website by your browser. Therefore plug-in providers may be enabled to track and connect your visit and activities on our website with your profile set on such plug-in profider's website. Any information about interactions such as comments or the use of "like-buttons" may be directly transmitted to the plug-in providers' websites and may be stored by the relevant plug-in provider. If you want to avoid such transmission and storage of your data you may prevent this by logging out of your relevant profiles with plug-in providers before using the plug-in. For further information about the purpose and extent of data usage and processing by plug-in providers on our website please find the relevant providers' privacy policies below:
https://www.facebook.com/policy.php http://www.google.com/policies/privacy/ https://www.google.com/+/policy/pagesterm.html https://twitter.com/privacy?lang=en https://www.linkedin.com/legal/privacy-policy https://play.google.com/about/play-terms.html http://www.apple.com/legal/internet-services/itunes/nz/terms.html https://chatra.io/privacy-policy/
2. Cookies
To optimize your experience while you are using our Services, we collect data by using cookies. In this section we will explain what these tools are, which ones we use exactly and how you can either delete them if they are already placed on your computer or decline their use. However, you might not be able to use some features of our Services properly if you decide to block or delete cookies.
Cookies are small text files that are stored on your browser or device. They are used in various ways, e.g. to analyse users' behaviour on a website or for personalization reasons based on the user's preferences.
Our website uses Google Analytics, a tool for web analysis provided by Google, Inc. ("Google"). Google Analytics uses cookies. The information generated by the cookie
about your use of the website (including your IP address) will be transmitted to and stored by Google on servers in the United States. Google will use the collected information for the purpose of evaluating your use of our website, compiling reports on website activity for us and providing other services relating to website activity and internet usage to us. Google may disclose this data to third parties if this is required by law or if third parties process this data on behalf of Google. Google will not associate your IP address with any other data held by Google. You may refuse the use of cookies by selecting the appropriate settings on your browser. However, please note that if you decline cookies, you may not be able to use the full functionality of our website. By using our website you agree to the processing of collected data in the manner and for the reasons described above.
Further we use Cookies in our Anyline store which allows us to store a hash value of your cart content and the session number to keep the store information for you. If you would like to order without the storage of your cart content and session number by Cookies, you may place an order via email to [email protected].
We use the obtained data in order to customize and to improve our Services and to evaluate effectiveness of our content, advertising, programming or other activities.
Services to which we link on our website may use their own cookies if you interact with links, plug-ins and other references we provide. We have no control over those cookies and refer to the Privacy Policies of those third parties for further information.
Most web browsers offer options to disable cookies. Alternatively, we would like to hint at the following tools in order to change your personal cookie application: https://tools.google.com/dlpage/gaoptout?hl=de
https://disconnect.me/
These tools are provided by third parties. We do not assume any guarantee or liability for their content or function.
3. How we use collected data
We limit the collection of Personal Data and Other Data to the amount required to review, analyse, adapt and improve quality of our Services, products, advertising, customer support, fraud fighting, testing and calibration of our Services, for verification of your eligibility and credit report and to inform you about changes and news to our Services.
All Personal Data collected will only be processed by our employees to the extent needed except otherwise explained in this Privacy Policy. Personal Data will not be disclosed to third parties unless it is necessary for execution of your order, in particular for delivery of products or services by logistic partners, for investigating your credit status and the handling of payments, if you have granted us permission to do so or if the disclosure is permitted by law. By handling of payments we use and protect your data with respect to and in compliance with the PCI DSS 3.1 standards by the PCI Security Standards Council.
Payments may be processed by our payment service provider Wirecard CEE (Wirecard Central Eastern Europe GmbH with registered office at Primoschgasse 3, 9020 Klagenfurt, Austria, registered with the company register under number FN 195599 x) whereby relevant data like you customer ID may be shared with Wirecard CEE for organizing and handling payments.
In case we buy or sell any business or asset, we may disclose Personal Data to the prospective seller or buyer of such business or assets. Further we may disclose Personal Data to third parties, if we or substantially all of our assets are acquired by a third party and Personal Data will be one of the transferred assets.
We may process and disclose Personal Data in order to comply with any legal obligation, to enforce or apply any contract with you, to protect our rights, property, or safety of our employees, customers, or others. This includes exchanging information with other companies and organizations for the purposes of credit risk reduction and fraud protection.
We may combine Personal Data and Other Data we collect with additional data from other sources. We may share Personal Data and Other Data to advisors, advertisers and investors, for the purpose of conducting general business analysis or other business purposes.
If you subscribe for one of our mailing lists, we will use your e-mail address, name, academic title and certain Other Data, for providing you with news about our Services. We use this data to keep you up to date about our product development, about the launch of new products as well as conferences we attend to. You may unsubscribe from our mailing lists by clicking the unsubscribe button in each of our e-mails or in your profile settings.
We will use your data only legally. If we use your data for purposes that require your prior consent, we will approach you with a request. You may revoke your consent at any time and/or disagree to any future use of your data by us via e-mail: [email protected]
4. Data retention
We will store your data as long as it is required for our business purposes respectively as it is required by law e.g. for tax and accounting reasons.
5. Right to information
Anyline GmbH is an Austrian limited liability company with registered office at Zirkusgasse 13/2b, 1020 Vienna, Austria, registered with the company register of the Vienna Commercial Court under number FN 392187 x. You may request information about your data which is processed by us. Furthermore you have the right to have your stored data corrected or deleted, if data is incorrect or has been processed contrary to the provisions of the Data Protection Act. Kindly note that we require proof of your identity before we may answer your request. Please send your request by e-mail [email protected] or by postal mail to Anyline GmbH, Zirkusgasse 13/2b, 1020 Vienna, Austria.
6. Data protection
In accordance with the Austrian Data Protection Act we will take appropriate security measures to ensure that your Personal Data will not be processed illegally, changed or deleted, duplicated, used by unauthorized third parties and will be prevented from accidental loss or damage. We will implement processes that guarantee the safety of your personal data from the time it is collected until the time it is deleted.
7. Use of our website by minors
If you are 14 years old or even younger we will need your parents/ legal guardian's consent before you submit data via our Services. It is not allowed to submit data without such consent. If we receive any such data we will stop to process this data as soon as we get informed.
8. Changes to this Privacy Policy
We may change this Privacy Policy at any time. All changes will be published on this site. Any changes to this Privacy Policy will become effective when we publish the revised Privacy Policy on our website. Your use of our website following these changes means that you accept the revised Privacy Policy. Therefore, we kindly ask you to review our Privacy Policy from time to time.
9. Withdrawal
You may revoke your consent to this Privacy Policy for process of your data in the future at any time at [email protected]
# Third Party License Agreements: #
## TABLE OF CONTENTS ##
1. JSON-CPP
2. Easylogging++
3. OpenCV
4. Tesseract
5. Leptonica
6. ZXING
7. libJPEG
8. zlib
9. TensorFlow
10. BearSSL
11. FlatBuffer
12. Eigen
### JSON-CPP ###
Copyright (c) 2007-2010 Baptiste Lepilleur
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
### Easylogging++ ###
Copyright (c) 2015 muflihun.com
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
### OpenCV ###
License Agreement
For Open Source Computer Vision Library
(3-clause BSD License)
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 names of the copyright holders nor the names of the 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 copyright holders 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.
### Tesseract ###
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.
### Leptonica ###
Copyright (C) 2001 Leptonica. All rights reserved.
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 ANY
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.
### ZXING ###
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.
### libJPEG ###
The authors make NO WARRANTY or representation, either express or implied,
with respect to this software, its quality, accuracy, merchantability, or
fitness for a particular purpose. This software is provided "AS IS", and you,
its user, assume the entire risk as to its quality and accuracy.
This software is copyright (C) 1991-1998, Thomas G. Lane.
All Rights Reserved except as specified below.
Permission is hereby granted to use, copy, modify, and distribute this
software (or portions thereof) for any purpose, without fee, subject to these
conditions:
(1) If any part of the source code for this software is distributed, then this
README file must be included, with this copyright and no-warranty notice
unaltered; and any additions, deletions, or changes to the original files
must be clearly indicated in accompanying documentation.
(2) If only executable code is distributed, then the accompanying
documentation must state that "this software is based in part on the work of
the Independent JPEG Group".
(3) Permission for use of this software is granted only if the user accepts
full responsibility for any undesirable consequences; the authors accept
NO LIABILITY for damages of any kind.
These conditions apply to any software derived from or based on the IJG code,
not just to the unmodified library. If you use our work, you ought to
acknowledge us.
Permission is NOT granted for the use of any IJG author's name or company name
in advertising or publicity relating to this software or products derived from
it. This software may be referred to only as "the Independent JPEG Group's
software".
We specifically permit and encourage the use of this software as the basis of
commercial products, provided that all warranty or liability claims are
assumed by the product vendor.
"The Graphics Interchange Format(c) is the Copyright property of
CompuServe Incorporated. GIF(sm) is a Service Mark property of
CompuServe Incorporated."
### zlib ###
This software is provided 'as-is', without any express or implied warranty. In no
event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including
commercial applications, and to alter it and redistribute it freely, subject to
the following restrictions:
1. The origin of this software must not be misrepresented; you must not claim that
you wrote the original software. If you use this software in a product, an
acknowledgment in the product documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
### TensorFlow ###
Copyright 2015 The TensorFlow Authors. All rights reserved.
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 2015, The TensorFlow Authors.
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.
### BearSSL ###
Copyright (c) 2016 Thomas Pornin <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
### FlatBuffer ###
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 2014 Google Inc.
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.
### Eigen ###
Eigen is primarily MPL2 licensed. See COPYING.MPL2 and these links:
http://www.mozilla.org/MPL/2.0/
http://www.mozilla.org/MPL/2.0/FAQ.html
Some files contain third-party code under BSD or LGPL licenses, whence
the other COPYING.* files here.
All the LGPL code is either LGPL 2.1-only, or LGPL 2.1-or-later.
For this reason, the COPYING.LGPL file contains the LGPL 2.1 text.
If you want to guarantee that the Eigen code that you are #including
is licensed under the MPL2 and possibly more permissive licenses (like
BSD), #define this preprocessor symbol: EIGEN_MPL2_ONLY
For example, with most compilers, you could add this to your project
CXXFLAGS: -DEIGEN_MPL2_ONLY
This will cause a compilation error to be generated if you #include
any code that is LGPL licensed.
----------------------------------------------------------------------
Following applies to:
./test/mapstaticmethods.cpp
./test/schur_real.cpp
./test/prec_inverse_4x4.cpp
./test/smallvectors.cpp
./test/redux.cpp
./test/special_numbers.cpp
./test/adjoint.cpp
./test/resize.cpp
./test/mixingtypes.cpp
./test/product_trmv.cpp
./test/sparse_solvers.cpp
./test/cholesky.cpp
./test/geo_quaternion.cpp
./test/miscmatrices.cpp
./test/stddeque.cpp
./test/integer_types.cpp
./test/product_large.cpp
./test/eigensolver_generic.cpp
./test/householder.cpp
./test/geo_orthomethods.cpp
./test/array_for_matrix.cpp
./test/sparseLM.cpp
./test/upperbidiagonalization.cpp
./test/nomalloc.cpp
./test/packetmath.cpp
./test/jacobisvd.cpp
./test/geo_transformations.cpp
./test/swap.cpp
./test/eigensolver_selfadjoint.cpp
./test/inverse.cpp
./test/product_selfadjoint.cpp
./test/product_trsolve.cpp
./test/product_extra.cpp
./test/sparse_solver.h
./test/mapstride.cpp
./test/mapped_matrix.cpp
./test/geo_eulerangles.cpp
./test/eigen2support.cpp
./test/denseLM.cpp
./test/stdvector.cpp
./test/nesting_ops.cpp
./test/sparse_permutations.cpp
./test/zerosized.cpp
./test/exceptions.cpp
./test/vectorwiseop.cpp
./test/cwiseop.cpp
./test/basicstuff.cpp
./test/product_trmm.cpp
./test/linearstructure.cpp
./test/sparse_product.cpp
./test/stdvector_overload.cpp
./test/stable_norm.cpp
./test/umeyama.cpp
./test/unalignedcount.cpp
./test/triangular.cpp
./test/product_mmtr.cpp
./test/sparse_basic.cpp
./test/sparse_vector.cpp
./test/meta.cpp
./test/real_qz.cpp
./test/ref.cpp
./test/eigensolver_complex.cpp
./test/cholmod_support.cpp
./test/conjugate_gradient.cpp
./test/sparse.h
./test/simplicial_cholesky.cpp
./test/bicgstab.cpp
./test/dynalloc.cpp
./test/product_notemporary.cpp
./test/geo_hyperplane.cpp
./test/lu.cpp
./test/qr.cpp
./test/hessenberg.cpp
./test/sizeof.cpp
./test/main.h
./test/selfadjoint.cpp
./test/permutationmatrices.cpp
./test/superlu_support.cpp
./test/qtvector.cpp
./test/geo_homogeneous.cpp
./test/determinant.cpp
./test/array_reverse.cpp
./test/unalignedassert.cpp
./test/stdlist.cpp
./test/product_symm.cpp
./test/corners.cpp
./test/dontalign.cpp
./test/visitor.cpp
./test/geo_alignedbox.cpp
./test/diagonalmatrices.cpp
./test/product_small.cpp
./test/eigensolver_generalized_real.cpp
./test/umfpack_support.cpp
./test/first_aligned.cpp
./test/qr_fullpivoting.cpp
./test/array_replicate.cpp
./test/geo_parametrizedline.cpp
./test/eigen2/eigen2_unalignedassert.cpp
./test/eigen2/eigen2_prec_inverse_4x4.cpp
./test/eigen2/eigen2_alignedbox.cpp
./test/eigen2/eigen2_sparse_product.cpp
./test/eigen2/eigen2_meta.cpp
./test/eigen2/eigen2_nomalloc.cpp
./test/eigen2/eigen2_visitor.cpp
./test/eigen2/eigen2_packetmath.cpp
./test/eigen2/eigen2_svd.cpp
./test/eigen2/eigen2_mixingtypes.cpp
./test/eigen2/eigen2_qr.cpp
./test/eigen2/eigen2_cwiseop.cpp
./test/eigen2/eigen2_geometry_with_eigen2_prefix.cpp
./test/eigen2/eigen2_smallvectors.cpp
./test/eigen2/eigen2_commainitializer.cpp
./test/eigen2/eigen2_sparse_solvers.cpp
./test/eigen2/eigen2_hyperplane.cpp
./test/eigen2/eigen2_eigensolver.cpp
./test/eigen2/eigen2_linearstructure.cpp
./test/eigen2/eigen2_sizeof.cpp
./test/eigen2/eigen2_parametrizedline.cpp
./test/eigen2/eigen2_lu.cpp
./test/eigen2/eigen2_adjoint.cpp
./test/eigen2/eigen2_geometry.cpp
./test/eigen2/eigen2_stdvector.cpp
./test/eigen2/eigen2_newstdvector.cpp
./test/eigen2/eigen2_submatrices.cpp
./test/eigen2/sparse.h
./test/eigen2/eigen2_swap.cpp
./test/eigen2/eigen2_triangular.cpp
./test/eigen2/eigen2_basicstuff.cpp
./test/eigen2/gsl_helper.h
./test/eigen2/eigen2_dynalloc.cpp
./test/eigen2/eigen2_array.cpp
./test/eigen2/eigen2_map.cpp
./test/eigen2/main.h
./test/eigen2/eigen2_miscmatrices.cpp
./test/eigen2/eigen2_product_large.cpp
./test/eigen2/eigen2_first_aligned.cpp
./test/eigen2/eigen2_cholesky.cpp
./test/eigen2/eigen2_determinant.cpp
./test/eigen2/eigen2_sum.cpp
./test/eigen2/eigen2_inverse.cpp
./test/eigen2/eigen2_regression.cpp
./test/eigen2/eigen2_product_small.cpp
./test/eigen2/eigen2_qtvector.cpp
./test/eigen2/eigen2_sparse_vector.cpp
./test/eigen2/product.h
./test/eigen2/eigen2_sparse_basic.cpp
./test/eigen2/eigen2_bug_132.cpp
./test/array.cpp
./test/product_syrk.cpp
./test/commainitializer.cpp
./test/conservative_resize.cpp
./test/qr_colpivoting.cpp
./test/nullary.cpp
./test/bandmatrix.cpp
./test/pastix_support.cpp
./test/product.h
./test/block.cpp
./test/vectorization_logic.cpp
./test/jacobi.cpp
./test/diagonal.cpp
./test/schur_complex.cpp
./test/sizeoverflow.cpp
./bench/BenchTimer.h
./bench/benchFFT.cpp
./bench/eig33.cpp
./bench/spbench/spbenchsolver.h
./bench/spbench/spbenchstyle.h
./lapack/complex_double.cpp
./lapack/cholesky.cpp
./lapack/lapack_common.h
./lapack/eigenvalues.cpp
./lapack/single.cpp
./lapack/lu.cpp
./lapack/complex_single.cpp
./lapack/double.cpp
./demos/mix_eigen_and_c/binary_library.cpp
./demos/mix_eigen_and_c/binary_library.h
./demos/mix_eigen_and_c/example.c
./demos/mandelbrot/mandelbrot.cpp
./demos/mandelbrot/mandelbrot.h
./demos/opengl/icosphere.cpp
./demos/opengl/icosphere.h
./demos/opengl/camera.cpp
./demos/opengl/quaternion_demo.h
./demos/opengl/camera.h
./demos/opengl/trackball.h
./demos/opengl/gpuhelper.h
./demos/opengl/trackball.cpp
./demos/opengl/gpuhelper.cpp
./demos/opengl/quaternion_demo.cpp
./debug/gdb/printers.py
./unsupported/test/minres.cpp
./unsupported/test/openglsupport.cpp
./unsupported/test/jacobisvd.cpp
./unsupported/test/dgmres.cpp
./unsupported/test/matrix_square_root.cpp
./unsupported/test/bdcsvd.cpp
./unsupported/test/matrix_exponential.cpp