File: copyright

package info (click to toggle)
opencpn 5.2.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 101,540 kB
  • sloc: ansic: 414,598; cpp: 253,008; xml: 83,748; sh: 409; python: 353; makefile: 110; javascript: 87; perl: 83
file content (1141 lines) | stat: -rw-r--r-- 36,582 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: OpenCPN
Upstream-Contact: Dave S. Register <bdbcat@yahoo.com>
Source: https://github.com/OpenCPN/OpenCPN.git
Files-Excluded:
 buildosx*
 buildandroid*
 buildwin*
 data/doc*
 Docs/*
 plugins/chartdldr_pi/src/tinyxml*
 plugins/chartdldr_pi/src/unarr*
 plugins/chartdldr_pi/data/doc/highlight.min.js
 plugins/chartdldr_pi/data/doc/MathJax.js
 plugins/grib_pi/src/bzip2*
 libs/lz4*
 libs/serial*
 libs/tinyxml*
 libs/wxsvg*
 data/CoC-909_2013-InlandECDIS_20170308s.pdf

Files: *
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: LICENSING
Copyright: The OpenCPN
License: GPL-2+

Files: data/copyright
Copyright: -format/1.0
License: GPL-2+

Files: data/opencpn.appdata.xml.in
Copyright: 2018, Alec Leamas <leamas@nowhere.net> ->
License: GPL-2+

Files: include/*
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: include/AboutFrame.h
  include/RoutePropDlg.h
  include/tzdata.h
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: include/DepthFont.h
Copyright: 2020, David Register
License: GPL-2+

Files: include/Downloader.h
  include/PluginHandler.h
  include/catalog_handler.h
  include/catalog_mgr.h
  include/catalog_parser.h
  include/download_mgr.h
  include/ocpn_utils.h
  include/semantic_vers.h
  include/update_mgr.h
Copyright: 2019, Alec Leamas
License: GPL-2+

Files: include/GL/*
Copyright: 1999-2007, Brian Paul
License: Expat

Files: include/GL/glext.h
Copyright: 2007-2012, The Khronos Group Inc.
License: Expat

Files: include/GL/glu.h
Copyright: 1991-2000, Silicon Graphics, Inc.
License: SGI-B-1.1

Files: include/LLRegion.h
  include/TexFont.h
  include/ocpndc.h
Copyright: 2011, 2013-2016, Sean DEpagnier
License: GPL-2+

Files: include/bbox.h
Copyright: 2000, Klaas Holwerda
License: wxWidgets

Files: include/crashprint.h
Copyright: 2004, wxCode
License: wxWidgets

Files: include/geodesic.h
Copyright: 2012, Charles F. F. Karney (charles@karney.com)
License: Expat
Comment: https://geographiclib.sourceforge.io/

Files: include/gshhs.h
Copyright: zUGrib: meteorologic GRIB file data viewer / 2012, David S. Register / 2008, - Jacques Zaninetti - http:www.zygrib.org
License: GPL-2+

Files: include/ogr_s57.h
  include/s57.h
Copyright: 1998-2003, Frank Warmerdam
License: Expat

Files: include/pugiconfig.hpp
  include/pugixml.hpp
Copyright: 2006-2016, Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
License: Expat

Files: include/routemanagerdialog.h
Copyright: 2010, Anders Lund <anders@alweb.dk>
License: GPL-2+

Files: include/s52utils.h
Copyright: 2000-2004, Sylvain Duclos sduclos@users.sourceforgue.net
License: GPL-2+

Files: include/scrollingdialog.h
Copyright: Julian Smart
License: GPL-2+

Files: include/zeroconf-detail.hpp
  include/zeroconf-util.hpp
  include/zeroconf.hpp
Copyright: 2016, Yuri Yakovlev <yvzmail@gmail.com>
License: GPL-3
Comment: https://github.com/yvz/zeroconf

Files: libs/SQLiteCpp/*
Copyright: 2012-2018, Sebastien Rombauts (sebastien.rombauts@gmail.com)
  2015, Shibao HONG (shibaohong@outlook.com)
  2016, Paul Dreik (github@pauldreik.se)
  2015, Shibao HONG (shibaohong@outlook.com)
License: Expat

Files: libs/easywsclient/*
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
 2012, 2013, <dhbaird@gmail.com>
License: Expat or GPL-2+

Files: libs/easywsclient/Makefile
  libs/easywsclient/README.md
  libs/easywsclient/easywsclient.cpp
  libs/easywsclient/easywsclient.hpp
  libs/easywsclient/example-client-cpp11.cpp
  libs/easywsclient/example-client.cpp
  libs/easywsclient/example-server.js
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/easywsclient/test/*
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/garmin/*
Copyright: 2004-2006, Robert Lipe, robertlipe@usa.net
License: GPL-2+

Files: libs/garmin/jeeps/garmin_gps.h
  libs/garmin/jeeps/garmin_wrapper_utils.c
  libs/garmin/jeeps/garmin_wrapper_utils.h
Copyright: 2010, David S Register
License: GPL-2+

Files: libs/garmin/jeeps/gpsapp.c
  libs/garmin/jeeps/gpsapp.h
  libs/garmin/jeeps/gpsdatum.h
  libs/garmin/jeeps/gpsfmt.h
  libs/garmin/jeeps/gpsinput.h
  libs/garmin/jeeps/gpsmem.c
  libs/garmin/jeeps/gpsmem.h
  libs/garmin/jeeps/gpsport.h
  libs/garmin/jeeps/gpsproj.h
Copyright: 2007, Achim Schumacher
  2004-2006, Robert Lipe
  1999, 2000, Alan Bleasby
License: LGPL-2+

Files: libs/garmin/jeeps/gpscom.c
  libs/garmin/jeeps/gpscom.h
Copyright: 2010, Martin Buck
  2007, Achim Schumacher
  2005, 2006, Robert Lipe
  1999, Alan Bleasby
License: LGPL-2+

Files: libs/garmin/jeeps/gpsmath.c
  libs/garmin/jeeps/gpsmath.h
  libs/garmin/jeeps/gpsutil.c
  libs/garmin/jeeps/gpsutil.h
Copyright: 1999, Alan Bleasby
License: LGPL-2+

Files: libs/garmin/jeeps/gpsprot.c
  libs/garmin/jeeps/gpsprot.h
  libs/garmin/jeeps/gpsread.c
  libs/garmin/jeeps/gpsread.h
  libs/garmin/jeeps/gpsrqst.c
  libs/garmin/jeeps/gpsrqst.h
  libs/garmin/jeeps/gpssend.c
  libs/garmin/jeeps/gpssend.h
  libs/garmin/jeeps/gpsserial.c
  libs/garmin/jeeps/gpsserial.h
Copyright: 2006, Robert Lipe
  1999, 2000, Alan Bleasby
License: LGPL-2+

Files: libs/gdal/*
Copyright: 1998-2003, Frank Warmerdam
   1998, Daniel Morissette
   2003, Andrey Kiselev <dron@remotesensing.org>
   1998, Daniel Morissette
   1999, 2003, Frank Warmerdam <warmerdam@pobox.com>
   1999, Les Technologies SoftMap Inc.
   1999, Les Technologies SoftMap Inc.
License: Expat


Files: libs/glshim/*
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
 2013, Ryan Hileman
License: Expat or GPL-2+

Files: libs/glshim/README.md
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/glshim/include/*
Copyright: 2007-2012, The Khronos Group Inc.
License: Expat

Files: libs/glshim/include/GL/*
Copyright: 1999-2007, Brian Paul
License: Expat

Files: libs/glshim/include/GL/gl.h
Copyright: 2009, VMware, Inc.
  1999-2006, Brian Paul
License: Expat

Files: libs/glshim/include/GL/gl_mangle.h
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/glshim/include/GL/glext.h
  libs/glshim/include/GL/glxext.h
Copyright: 2007-2012, The Khronos Group Inc.
License: Expat

Files: libs/glshim/include/GL/glu.h
Copyright: 1991-2000, Silicon Graphics, Inc.
License: SGI-B-2.0

Files: libs/glshim/include/GL/glu_mangle.h
Copyright: 1995-1998, Brian Paul
License: LGPL-2+

Files: libs/glshim/include/GL/internal/*
Copyright:
  2004 IBM Corporation
  2007-2008, Red Hat, Inc.
  1998-1999, Precision Insight, Inc., Cedar Park, Texas.
License: GPL-2+

Files: libs/glshim/include/GLES/*
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: SGI-B-2.0

Files: libs/glshim/include/GLES/egl.h
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/glshim/include/GLES/gl3.h
Copyright: 2007-2012, The Khronos Group Inc.
License: Expat

Files: libs/glshim/spec/*
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/glshim/src/*
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/glshim/src/gl/math/*
Copyright: 1999-2007, Brian Paul
License: Expat

Files: libs/glshim/src/util/*
Copyright: 2008, 2009, 2011, Attractive Chaos <attractor@live.co.uk>
License: Expat

Files: libs/glu/libtess/dict-list.h
  libs/glu/libtess/dict.c
  libs/glu/libtess/dict.h
  libs/glu/libtess/geom.c
  libs/glu/libtess/geom.h
  libs/glu/libtess/memalloc.c
  libs/glu/libtess/memalloc.h
  libs/glu/libtess/mesh.c
  libs/glu/libtess/mesh.h
  libs/glu/libtess/normal.c
  libs/glu/libtess/normal.h
  libs/glu/libtess/priorityq-heap.c
  libs/glu/libtess/priorityq-heap.h
  libs/glu/libtess/priorityq-sort.h
  libs/glu/libtess/priorityq.c
  libs/glu/libtess/priorityq.h
  libs/glu/libtess/render.c
  libs/glu/libtess/render.h
  libs/glu/libtess/sweep.c
  libs/glu/libtess/sweep.h
  libs/glu/libtess/tess.c
  libs/glu/libtess/tess.h
  libs/glu/libtess/tessmono.c
  libs/glu/libtess/tessmono.h
Copyright: 1991-2000, Silicon Graphics, Inc.
License: SGI-B-2.0

Files: libs/glu/libutil/*
Copyright: 1991-2000, Silicon Graphics, Inc.
License: SGI-B-2.0

Files: libs/iso8211/*
Copyright: 1998-2003, Frank Warmerdam
License: Expat

Files: libs/iso8211/include/*
Copyright: 1999, 2003, Frank Warmerdam <warmerdam@pobox.com>
License: Expat

Files: libs/libtess2/*
Copyright: 2000, Pierre Terdiman (p.terdiman@wanadoo.fr)
License: GPL-2+

Files: libs/libtess2/Include/StripStdafx.h
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/libtess2/Include/tesselator.h
Copyright: [dates of first publication] Silicon Graphics, Inc.
License: SGI-B-2.0

Files: libs/libtess2/Source/*
Copyright: [dates of first publication] Silicon Graphics, Inc.
License: SGI-B-2.0

Files: libs/libtess2/Source/Adjacency.cpp
  libs/libtess2/Source/CustomArray.cpp
  libs/libtess2/Source/RevisitedRadix.cpp
  libs/libtess2/Source/Striper.cpp
Copyright: 2000, Pierre Terdiman (p.terdiman@wanadoo.fr)
License: GPL-2+

Files: libs/mipmap/*
Copyright: 2011, 2013-2016, Sean DEpagnier
License: GPL-2+

Files: libs/nmea0183/*
Copyright: 2010, Samuel R. Blackburn, David S Register
License: GPL-2+

Files: libs/sound/*
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: libs/ssl_sha1/*
Copyright: 2006-2014, Brainspark B.V.
License: GPL-2+

Files: libs/texcmp/*
Copyright: 2013, Bartosz Taudul <wolf.pld@gmail.com>
License: BSD-3-clause

Files: libs/texcmp/squish/*
Copyright: 2006, Simon Brown si@sjbrown.co.uk
License: Expat

Files: libs/texcmp/squish/clusterfit.cpp
  libs/texcmp/squish/clusterfit.h
Copyright: 2007, Ignacio Castano icastano@nvidia.com
  2006, Simon Brown si@sjbrown.co.uk
License: Expat

Files: libs/texcmp/squish/singlecolourfitfast.cpp
  libs/texcmp/squish/singlecolourfitfast.h
  libs/texcmp/squish/twocolourfitfast.cpp
  libs/texcmp/squish/twocolourfitfast.h
Copyright: 2015, Sean DEPagnier
License: Expat

Files: libs/wxJSON/*
Copyright: 2007, Luciano Cattani
License: GPL-2+

Files: libs/wxcurl/*
Copyright: 2004, Casey ODonnell.
License: GPL-2+

Files: libs/wxcurl/include/wx/curl/dialog.h
  libs/wxcurl/include/wx/curl/panel.h
  libs/wxcurl/include/wx/curl/thread.h
  libs/wxcurl/include/wx/curl/utils.h
Copyright: 2005, 2007, Francesco Montorsi
License: GPL-2+

Files: libs/wxcurl/src/dialog.cpp
  libs/wxcurl/src/panel.cpp
  libs/wxcurl/src/thread.cpp
  libs/wxcurl/src/utils.cpp
Copyright: 2005, 2007, Francesco Montorsi
License: GPL-2+

Files: libs/wxcurl/src/include/*
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: libs/wxcurl/src/include/curl/*
Copyright: 1998-2014, Daniel Stenberg, <daniel@haxx.se>, et al.
License: GPL-2+

Files: libs/wxservdisc/wxServDisc.cpp
  libs/wxservdisc/wxServDisc.h
Copyright: 2008, Christian Beier <dontmind@freeshell.org>
License: GPL-2+

Files: mingw/*
Copyright: fedorainfracloud.org/coprs/leamas/opencpn-mingw.
License: GPL-2+

Files: opencpn.1
Copyright: 2018, Alec Leamas <leamas.alec@gmail.com>
License: GPL-2+

Files: plugins/chartdldr_pi/cmake/wxWTranslateCatalog.h.in
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: plugins/chartdldr_pi/src/androidSupport.cpp
  plugins/chartdldr_pi/src/androidSupport.h
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: plugins/chartdldr_pi/src/base64.h
Copyright: 2005, Angelo Mandato (http:www.spaceblue.com)
License: wxWidgets

Files: plugins/chartdldr_pi/src/chartcatalog.cpp
  plugins/chartdldr_pi/src/chartcatalog.h
  plugins/chartdldr_pi/src/chartdldr_pi.cpp
  plugins/chartdldr_pi/src/chartdldr_pi.h
Copyright: 2011-2019, Pavel Kalian
License: GPL-2+

Files: plugins/chartdldr_pi/src/checkedlistctrl.cpp
  plugins/chartdldr_pi/src/checkedlistctrl.h
Copyright: 2005, 2007, Francesco Montorsi
License: wxWidgets

Files: plugins/chartdldr_pi/src/pugiconfig.hpp
  plugins/chartdldr_pi/src/pugixml.cpp
  plugins/chartdldr_pi/src/pugixml.hpp
Copyright: 2006-2016, Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
License: Expat

Files: plugins/dashboard_pi/include/*
Copyright: 2007, Luciano Cattani
License: GPL-2+

Files: plugins/dashboard_pi/src/*
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: plugins/dashboard_pi/src/icons.cpp
  plugins/dashboard_pi/src/icons.h
  plugins/dashboard_pi/src/iirfilter.cpp
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: plugins/dashboard_pi/src/iirfilter.h
Copyright: 2016
License: GPL-2+

Files: plugins/dashboard_pi/src/nmea0183/*
Copyright: 2010, Samuel R. Blackburn, David S Register
License: GPL-2+

Files: plugins/dashboard_pi/src/wxJSON/*
Copyright: 2007, Luciano Cattani
License: wxWidgets

Files: plugins/demo_pi_sample/cmake/wxWTranslateCatalog.h.in
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: plugins/demo_pi_sample/src/*
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: plugins/demo_pi_sample/src/nmea0183/*
Copyright: 2010, Samuel R. Blackburn, David S Register
License: GPL-2+

Files: plugins/grib_pi/libs/*
Copyright: 2001-2004, Michael David Adams.
  1999, 2000, Image Power, Inc. and the University of
License: GPL-2+

Files: plugins/grib_pi/libs/jasper/src/base/*
Copyright: 2001-2004, Michael David Adams.
License: GPL-2+

Files: plugins/grib_pi/libs/jasper/src/base/jas_getopt.c
  plugins/grib_pi/libs/jasper/src/base/jas_image.c
  plugins/grib_pi/libs/jasper/src/base/jas_malloc.c
  plugins/grib_pi/libs/jasper/src/base/jas_seq.c
  plugins/grib_pi/libs/jasper/src/base/jas_stream.c
  plugins/grib_pi/libs/jasper/src/base/jas_string.c
Copyright: 2001-2004, Michael David Adams.
  1999, 2000, Image Power, Inc. and the University of
License: GPL-2+

Files: plugins/grib_pi/libs/jasper/src/include/jasper/jas_cm.h
  plugins/grib_pi/libs/jasper/src/include/jasper/jas_config2.h
  plugins/grib_pi/libs/jasper/src/include/jasper/jas_debug.h
  plugins/grib_pi/libs/jasper/src/include/jasper/jas_icc.h
  plugins/grib_pi/libs/jasper/src/include/jasper/jas_init.h
  plugins/grib_pi/libs/jasper/src/include/jasper/jas_tmr.h
  plugins/grib_pi/libs/jasper/src/include/jasper/jas_tvp.h
  plugins/grib_pi/libs/jasper/src/include/jasper/jasper.h
Copyright: 2001-2004, Michael David Adams.
License: GPL-2+

Files: plugins/grib_pi/libs/jasper/src/include/jasper/jas_config.h
  plugins/grib_pi/libs/jasper/src/include/jasper/jas_config.h.in
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: plugins/grib_pi/libs/jasper/src/jpc/jpc_math.h
  plugins/grib_pi/libs/jasper/src/jpc/jpc_util.h
Copyright: 2001-2004, Michael David Adams.
License: GPL-2+

Files: plugins/grib_pi/src/*
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: plugins/grib_pi/src/GribReader.cpp
  plugins/grib_pi/src/GribReader.h
  plugins/grib_pi/src/GribRecord.cpp
  plugins/grib_pi/src/GribRecord.h
  plugins/grib_pi/src/GribV1Record.cpp
  plugins/grib_pi/src/GribV1Record.h
  plugins/grib_pi/src/GribV2Record.cpp
  plugins/grib_pi/src/GribV2Record.h
  plugins/grib_pi/src/IsoLine.cpp
  plugins/grib_pi/src/IsoLine.h
  plugins/grib_pi/src/zuFile.cpp
  plugins/grib_pi/src/zuFile.h
Copyright: 2008, - Jacques Zaninetti - http:www.zygrib.org
License: GPL-3+

Files: plugins/grib_pi/src/GribSettingsDialog.cpp
  plugins/grib_pi/src/GribSettingsDialog.h
  plugins/grib_pi/src/pi_TexFont.cpp
  plugins/grib_pi/src/pi_TexFont.h
  plugins/grib_pi/src/pi_ocpndc.cpp
  plugins/grib_pi/src/pi_ocpndc.h
Copyright: 2011, 2013-2016, Sean DEpagnier
License: GPL-2+

Files: plugins/grib_pi/src/GribUIDialogBase.cpp
  plugins/grib_pi/src/GribUIDialogBase.h
  plugins/grib_pi/src/icons.cpp
  plugins/grib_pi/src/icons.h
  plugins/grib_pi/src/version.h
Copyright: 2008, Jacques Zaninetti - http:www.zygrib.org
License: GPL-3+

Files: plugins/grib_pi/src/email.cpp
  plugins/grib_pi/src/email.h
  plugins/grib_pi/src/msg.h
Copyright: Julian Smart
License: GPL-3+

Files: plugins/grib_pi/src/json_defs.h
  plugins/grib_pi/src/jsonreader.cpp
  plugins/grib_pi/src/jsonreader.h
  plugins/grib_pi/src/jsonval.cpp
  plugins/grib_pi/src/jsonval.h
  plugins/grib_pi/src/jsonwriter.cpp
  plugins/grib_pi/src/jsonwriter.h
Copyright: 2007, Luciano Cattani
License: wxWidgets

Files: plugins/grib_pi/src/smapi.cpp
  plugins/grib_pi/src/smapi.h
Copyright: PJ Naughter
License: wxWidgets

Files: plugins/wmm_pi/cmake/wxWTranslateCatalog.h.in
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: plugins/wmm_pi/src/*
Copyright: 2007, Luciano Cattani
License: wxWidgets

Files: plugins/wmm_pi/src/EGM9615.h
  plugins/wmm_pi/src/GeomagnetismHeader.h
  plugins/wmm_pi/src/icons.cpp
  plugins/wmm_pi/src/icons.h
  plugins/wmm_pi/src/icons.sh
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: plugins/wmm_pi/src/GeomagnetismLibrary.c
Copyright: No copyright
License: public-domain
 The WMM source code is in the public domain and not licensed or under copyright.
 The information and software may be used freely by the public. As required by 17 U.S.C. 403,
 third parties producing copyrighted works consisting predominantly of the material produced by
 U.S. government agencies must provide notice with such work(s) identifying the U.S. Government material
 incorporated and stating that such material is not subject to copyright protection.

Files: plugins/wmm_pi/src/MagneticPlotMap.cpp
  plugins/wmm_pi/src/MagneticPlotMap.h
  plugins/wmm_pi/src/pi_TexFont.cpp
  plugins/wmm_pi/src/pi_TexFont.h
  plugins/wmm_pi/src/pi_ocpndc.cpp
  plugins/wmm_pi/src/pi_ocpndc.h
Copyright: 2011, 2013-2016, Sean DEpagnier
License: GPL-2+

Files: plugins/wmm_pi/src/WmmUIDialog.cpp
  plugins/wmm_pi/src/WmmUIDialog.h
Copyright: 2014, ESA-VirES
License: Expat
Comment: https://github.com/ESA-VirES/WMM/blob/master/LICENSE

Files: plugins/wmm_pi/src/pi_shaders.cpp
  plugins/wmm_pi/src/pi_shaders.h
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: plugins/wmm_pi/src/wmm_pi.cpp
  plugins/wmm_pi/src/wmm_pi.h
Copyright: 2011-2019, Pavel Kalian
License: GPL-2+

Files: src/*
Copyright: 2010, 2012-2019, David S. Register
License: GPL-2+

Files: src/AboutFrame.cpp
  src/RoutePropDlg.cpp
  src/TCWin.cpp
  src/opencpn.rc.in
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: src/DepthFont.cpp
  src/LLRegion.cpp
  src/TexFont.cpp
  src/ocpndc.cpp
Copyright: 2011, 2013-2016, Sean DEpagnier
License: GPL-2+

Files: src/Downloader.cpp
  src/PluginHandler.cpp
  src/catalog_handler.cpp
  src/catalog_mgr.cpp
  src/catalog_parser.cpp
  src/download_mgr.cpp
  src/ocpn_utils.cpp
  src/semantic_vers.cpp
  src/update_mgr.cpp
Copyright: 2019, Alec Leamas
License: GPL-2+

Files: src/bbox.cpp
Copyright: 2000, Klaas Holwerda
License: wxWidgets

Files: src/bitmaps/png2wx.pl
Copyright: 2011, 2014, Pavel Kalian
  2011, 2013-2016, Sean D'Epagnier
  2010, Samuel R. Blackburn, David S Register
  2010, Anders Lund <anders@alweb.dk>
  2010, 2012-2018, David S. Register
  2008, Jacques Zaninetti - http:www.zygrib.org
  2007, 2016, Transmitterdan
  2006-2014, Brainspark B.V.
  2006, dsr
  2004-2006, Robert Lipe, robertlipe@usa.net
  2000-2018, The OpenCPN Authors
  2000-2004, Sylvain Duclos <sduclos@users.sourceforgue.net>
  1995-1998, Brian Paul
License: GPL-2+

Files: src/crashprint.cpp
Copyright: 2004, wxCode
License: wxWidgets

Files: src/garmin_wrapper.cpp
  src/garmin_wrapper.h
Copyright: 2010, David S Register
License: GPL-2+

Files: src/geodesic.cpp
Copyright: 2002-2008, Chris Veness
License: Expat
Comment: https://geographiclib.sourceforge.io/

Files: src/gshhs.cpp
Copyright:
  2012, David S. Register
  2008, Jacques Zaninetti
License: GPL-2+

Files: src/ocpnhelper.c
Copyright: 2006, dsr
License: GPL-2+

Files: src/ogrs57datasource.cpp
  src/ogrs57layer.cpp
  src/s57classregistrar.cpp
  src/s57featuredefns.cpp
  src/s57reader.cpp
Copyright: 1998-2003, Frank Warmerdam
License: Expat

Files: src/pugixml.cpp
Copyright: 2006-2016, Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
License: Expat

Files: src/routemanagerdialog.cpp
Copyright: 2010, Anders Lund <anders@alweb.dk>
License: GPL-2+

Files: src/s52cnsy.cpp
  src/s52utils.cpp
Copyright: 2010, David S. Register
  2000-2004, Sylvain Duclos
License: GPL-2+

Files: src/scrollingdialog.cpp
Copyright: Julian Smart
License: GPL-2+

License: BSD-3-clause
 Redistribution and use in source and binary forms are permitted
 provided that the above copyright notice and this paragraph are
 duplicated in all such forms and that any documentation, advertising
 materials, and other materials related to such distribution and use
 acknowledge that the software was developed by the University of
 Southern California, Information Sciences Institute.  The name of the
 University may not be used to endorse or promote products derived from
 this software without specific prior written permission
 .
 THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
 WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

License: Expat
 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.

License: GPL-3
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation version 3
 .
 On Debian systems, the full text of the GNU General Public
 License version 3 can be found in the file
 `/usr/share/common-licenses/GPL-3'.

License: GPL-2+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version
 .
 On Debian systems, the full text of the GNU General Public
 License version 2 can be found in the file
 `/usr/share/common-licenses/GPL-2'.

License: GPL-3+
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version
 .
 On Debian systems, the full text of the GNU General Public
 License version 3 can be found in the file
 `/usr/share/common-licenses/GPL-3'.

License: LGPL-2+
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Library General Public
 License as published by the Free Software Foundation; either
 version 2 of the License, or (at your option) any later version
 .
 On Debian systems, the full text of the Lesser GNU General Public
 License version 2 can be found in the file
 `/usr/share/common-licenses/LGPL-2'.

License: SGI-B-1.1
 License Applicability. Except to the extent portions of this file are
 made subject to an alternative license as permitted in the SGI Free
 Software License B, Version 1.1 (the "License"), the contents of this
 file are subject only to the provisions of the License. You may not use
 this file except in compliance with the License. You may obtain a copy
 of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
 Amphitheatre Parkway, Mountain View, CA 94043-1351, or at
 :
 http://oss.sgi.com/projects/FreeB
 .
 Note that, as provided in the License, the Software is distributed on an
 "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
 DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
 CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
 PARTICULAR PURPOSE, AND NON-INFRINGEMENT
 .
 Original Code. The Original Code is: OpenGL Sample Implementation,
 Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
 Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
 Copyright in any portions created by third parties is as indicated
 elsewhere herein. All Rights Reserved
 .
 Additional Notice Provisions: This software was created using the
 OpenGL(R) version 1.2.1 Sample Implementation published by SGI, but has
 not been independently verified as being compliant with the OpenGL(R)
 version 1.2.1 Specification.

License: SGI-B-2.0
 SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
 Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved
 .
 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 including the dates of first publication and
 either this permission notice or a reference to
 http://oss.sgi.com/projects/FreeB/
 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
 SILICON GRAPHICS, INC. 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
 .
 Except as contained in this notice, the name of Silicon Graphics, Inc.
 shall not be used in advertising or otherwise to promote the sale, use or
 other dealings in this Software without prior written authorization from
 Silicon Graphics, Inc.

License: wxWidgets
 wxWindows Library License, Version 3.1
 Copyright (c) 1998-2005 Julian Smart, Robert Roebling et al
 .
 Everyone is permitted to copy and distribute verbatim copies of this licence
 document, but changing it is not allowed
 .
 WXWINDOWS LIBRARY LICENCE
 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
 .
 This library is free software; you can redistribute it and/or modify it
 under the terms of the GNU Library General Public Licence as published by
 the Free Software Foundation; either version 2 of the Licence, or (at
 your option) any later version
 .
 This library is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public Licence
 for more details
 .
 You should have received a copy of the GNU Library General Public Licence along
 with this software, usually in a file named COPYING.LIB. If not, write to the
 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
 MA 02110-1301, USA.
 .
 EXCEPTION NOTICE
 .
 1. As a special exception, the copyright holders of this library give permission
 for additional uses of the text contained in this release of the library as
 licenced under the wxWindows Library Licence, applying either version 3.1 of the
 Licence, or (at your option) any later version of the Licence as published by the
 copyright holders of version 3.1 of the Licence document
 .
 2. The exception is that you may use, copy, link, modify and distribute under your
 own terms, binary object code versions of works based on the Library
 .
 3. If you copy code from files distributed under the terms of the GNU General
 Public Licence or the GNU Library General Public Licence into a copy of this
 library, as this licence permits, the exception does not apply to the code that
 you add in this way. To avoid misleading anyone as to the status of such modified
 files, you must delete this exception notice from such code and/or adjust the
 licensing conditions notice accordingly
 .
 4. If you write modifications of your own for this library, it is your choice whether
 to permit this exception to apply to your modifications. If you do not wish that,
 you must delete the exception notice from such code and/or adjust the licensing '
 conditions notice accordingly.