NOTICE.txt 355 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819
  1. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2. [ Imagemagick 7.1.1-21] copyright:
  3. Before we get to the text of the license, lets just review what the license says in simple terms:
  4. It allows you to:
  5. * freely download and use ImageMagick software, in whole or in part, for personal, company internal, or commercial purposes;
  6. * use ImageMagick software in packages or distributions that you create;
  7. * link against a library under a different license;
  8. * link code under a different license against a library under this license;
  9. * merge code into a work under a different license;
  10. * extend patent grants to any code using code under this license;
  11. * and extend patent protection.
  12. It forbids you to:
  13. * redistribute any piece of ImageMagick-originated software without proper attribution;
  14. * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that ImageMagick Studio LLC endorses your distribution;
  15. * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that you created the ImageMagick software in question.
  16. It requires you to:
  17. * include a copy of the license in any redistribution you may make that includes ImageMagick software;
  18. * provide clear attribution to ImageMagick Studio LLC for any distributions that include ImageMagick software.
  19. It does not require you to:
  20. * include the source of the ImageMagick software itself, or of any modifications you may have made to it, in any redistribution you may assemble that includes it;
  21. * submit changes that you make to the software back to the ImageMagick Studio LLC (though such feedback is encouraged).
  22. A few other clarifications include:
  23. * ImageMagick is freely available without charge;
  24. * you may include ImageMagick on a DVD as long as you comply with the terms of the license;
  25. * you can give modified code away for free or sell it under the terms of the ImageMagick license or distribute the result under a different license, but you need to acknowledge the use of the ImageMagick software;
  26. * the license is compatible with the GPL V3.
  27. * when exporting the ImageMagick software, review its export classification.
  28. Terms and Conditions for Use, Reproduction, and Distribution
  29. The legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow:
  30. Copyright @ 1999 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available.
  31. 1. Definitions.
  32. License shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
  33. Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
  34. 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.
  35. You (or Your) shall mean an individual or Legal Entity exercising permissions granted by this License.
  36. Source form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
  37. 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.
  38. 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).
  39. 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.
  40. 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.
  41. 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.
  42. 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.
  43. 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.
  44. 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:
  45. * You must give any other recipients of the Work or Derivative Works a copy of this License; and
  46. * You must cause any modified files to carry prominent notices stating that You changed the files; and
  47. * 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
  48. * 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.
  49. 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.
  50. 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.
  51. 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.
  52. 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.
  53. 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.
  54. 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.
  55. How to Apply the License to your Work
  56. To apply the ImageMagick 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.
  57. Copyright [yyyy] [name of copyright owner]
  58. Licensed under the ImageMagick License (the "License"); you may not use
  59. this file except in compliance with the License. You may obtain a copy
  60. of the License at
  61. https://imagemagick.org/script/license.php
  62. Unless required by applicable law or agreed to in writing, software
  63. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  64. WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  65. License for the specific language governing permissions and limitations
  66. under the License.
  67. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  68. [ aom 3.7.0 ] copyright:
  69. Copyright (c) 2016, Alliance for Open Media. All rights reserved.
  70. Redistribution and use in source and binary forms, with or without
  71. modification, are permitted provided that the following conditions
  72. are met:
  73. 1. Redistributions of source code must retain the above copyright
  74. notice, this list of conditions and the following disclaimer.
  75. 2. Redistributions in binary form must reproduce the above copyright
  76. notice, this list of conditions and the following disclaimer in
  77. the documentation and/or other materials provided with the
  78. distribution.
  79. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  80. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  81. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  82. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  83. COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  84. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  85. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  86. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  87. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  88. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  89. ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  90. POSSIBILITY OF SUCH DAMAGE.
  91. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  92. [ brotli 1.1.0 ] copyright:
  93. Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
  94. Permission is hereby granted, free of charge, to any person obtaining a copy
  95. of this software and associated documentation files (the "Software"), to deal
  96. in the Software without restriction, including without limitation the rights
  97. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  98. copies of the Software, and to permit persons to whom the Software is
  99. furnished to do so, subject to the following conditions:
  100. The above copyright notice and this permission notice shall be included in
  101. all copies or substantial portions of the Software.
  102. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  103. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  104. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  105. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  106. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  107. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  108. THE SOFTWARE.
  109. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  110. [ bzlib 1.0.8 ] copyright:
  111. --------------------------------------------------------------------------
  112. This program, "bzip2", the associated library "libbzip2", and all
  113. documentation, are copyright (C) 1996-2019 Julian R Seward. All
  114. rights reserved.
  115. Redistribution and use in source and binary forms, with or without
  116. modification, are permitted provided that the following conditions
  117. are met:
  118. 1. Redistributions of source code must retain the above copyright
  119. notice, this list of conditions and the following disclaimer.
  120. 2. The origin of this software must not be misrepresented; you must
  121. not claim that you wrote the original software. If you use this
  122. software in a product, an acknowledgment in the product
  123. documentation would be appreciated but is not required.
  124. 3. Altered source versions must be plainly marked as such, and must
  125. not be misrepresented as being the original software.
  126. 4. The name of the author may not be used to endorse or promote
  127. products derived from this software without specific prior written
  128. permission.
  129. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  130. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  131. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  132. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  133. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  134. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  135. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  136. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  137. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  138. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  139. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  140. Julian Seward, jseward@acm.org
  141. bzip2/libbzip2 version 1.0.8 of 13 July 2019
  142. --------------------------------------------------------------------------
  143. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  144. [ cairo 1.18.0 ] copyright:
  145. GNU LESSER GENERAL PUBLIC LICENSE
  146. Version 2.1, February 1999
  147. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  148. 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
  149. Everyone is permitted to copy and distribute verbatim copies
  150. of this license document, but changing it is not allowed.
  151. [This is the first released version of the Lesser GPL. It also counts
  152. as the successor of the GNU Library Public License, version 2, hence
  153. the version number 2.1.]
  154. Preamble
  155. The licenses for most software are designed to take away your
  156. freedom to share and change it. By contrast, the GNU General Public
  157. Licenses are intended to guarantee your freedom to share and change
  158. free software--to make sure the software is free for all its users.
  159. This license, the Lesser General Public License, applies to some
  160. specially designated software packages--typically libraries--of the
  161. Free Software Foundation and other authors who decide to use it. You
  162. can use it too, but we suggest you first think carefully about whether
  163. this license or the ordinary General Public License is the better
  164. strategy to use in any particular case, based on the explanations
  165. below.
  166. When we speak of free software, we are referring to freedom of use,
  167. not price. Our General Public Licenses are designed to make sure that
  168. you have the freedom to distribute copies of free software (and charge
  169. for this service if you wish); that you receive source code or can get
  170. it if you want it; that you can change the software and use pieces of
  171. it in new free programs; and that you are informed that you can do
  172. these things.
  173. To protect your rights, we need to make restrictions that forbid
  174. distributors to deny you these rights or to ask you to surrender these
  175. rights. These restrictions translate to certain responsibilities for
  176. you if you distribute copies of the library or if you modify it.
  177. For example, if you distribute copies of the library, whether gratis
  178. or for a fee, you must give the recipients all the rights that we gave
  179. you. You must make sure that they, too, receive or can get the source
  180. code. If you link other code with the library, you must provide
  181. complete object files to the recipients, so that they can relink them
  182. with the library after making changes to the library and recompiling
  183. it. And you must show them these terms so they know their rights.
  184. We protect your rights with a two-step method: (1) we copyright the
  185. library, and (2) we offer you this license, which gives you legal
  186. permission to copy, distribute and/or modify the library.
  187. To protect each distributor, we want to make it very clear that
  188. there is no warranty for the free library. Also, if the library is
  189. modified by someone else and passed on, the recipients should know
  190. that what they have is not the original version, so that the original
  191. author's reputation will not be affected by problems that might be
  192. introduced by others.
  193. Finally, software patents pose a constant threat to the existence of
  194. any free program. We wish to make sure that a company cannot
  195. effectively restrict the users of a free program by obtaining a
  196. restrictive license from a patent holder. Therefore, we insist that
  197. any patent license obtained for a version of the library must be
  198. consistent with the full freedom of use specified in this license.
  199. Most GNU software, including some libraries, is covered by the
  200. ordinary GNU General Public License. This license, the GNU Lesser
  201. General Public License, applies to certain designated libraries, and
  202. is quite different from the ordinary General Public License. We use
  203. this license for certain libraries in order to permit linking those
  204. libraries into non-free programs.
  205. When a program is linked with a library, whether statically or using
  206. a shared library, the combination of the two is legally speaking a
  207. combined work, a derivative of the original library. The ordinary
  208. General Public License therefore permits such linking only if the
  209. entire combination fits its criteria of freedom. The Lesser General
  210. Public License permits more lax criteria for linking other code with
  211. the library.
  212. We call this license the "Lesser" General Public License because it
  213. does Less to protect the user's freedom than the ordinary General
  214. Public License. It also provides other free software developers Less
  215. of an advantage over competing non-free programs. These disadvantages
  216. are the reason we use the ordinary General Public License for many
  217. libraries. However, the Lesser license provides advantages in certain
  218. special circumstances.
  219. For example, on rare occasions, there may be a special need to
  220. encourage the widest possible use of a certain library, so that it
  221. becomes a de-facto standard. To achieve this, non-free programs must
  222. be allowed to use the library. A more frequent case is that a free
  223. library does the same job as widely used non-free libraries. In this
  224. case, there is little to gain by limiting the free library to free
  225. software only, so we use the Lesser General Public License.
  226. In other cases, permission to use a particular library in non-free
  227. programs enables a greater number of people to use a large body of
  228. free software. For example, permission to use the GNU C Library in
  229. non-free programs enables many more people to use the whole GNU
  230. operating system, as well as its variant, the GNU/Linux operating
  231. system.
  232. Although the Lesser General Public License is Less protective of the
  233. users' freedom, it does ensure that the user of a program that is
  234. linked with the Library has the freedom and the wherewithal to run
  235. that program using a modified version of the Library.
  236. The precise terms and conditions for copying, distribution and
  237. modification follow. Pay close attention to the difference between a
  238. "work based on the library" and a "work that uses the library". The
  239. former contains code derived from the library, whereas the latter must
  240. be combined with the library in order to run.
  241. GNU LESSER GENERAL PUBLIC LICENSE
  242. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  243. 0. This License Agreement applies to any software library or other
  244. program which contains a notice placed by the copyright holder or
  245. other authorized party saying it may be distributed under the terms of
  246. this Lesser General Public License (also called "this License").
  247. Each licensee is addressed as "you".
  248. A "library" means a collection of software functions and/or data
  249. prepared so as to be conveniently linked with application programs
  250. (which use some of those functions and data) to form executables.
  251. The "Library", below, refers to any such software library or work
  252. which has been distributed under these terms. A "work based on the
  253. Library" means either the Library or any derivative work under
  254. copyright law: that is to say, a work containing the Library or a
  255. portion of it, either verbatim or with modifications and/or translated
  256. straightforwardly into another language. (Hereinafter, translation is
  257. included without limitation in the term "modification".)
  258. "Source code" for a work means the preferred form of the work for
  259. making modifications to it. For a library, complete source code means
  260. all the source code for all modules it contains, plus any associated
  261. interface definition files, plus the scripts used to control
  262. compilation and installation of the library.
  263. Activities other than copying, distribution and modification are not
  264. covered by this License; they are outside its scope. The act of
  265. running a program using the Library is not restricted, and output from
  266. such a program is covered only if its contents constitute a work based
  267. on the Library (independent of the use of the Library in a tool for
  268. writing it). Whether that is true depends on what the Library does
  269. and what the program that uses the Library does.
  270. 1. You may copy and distribute verbatim copies of the Library's
  271. complete source code as you receive it, in any medium, provided that
  272. you conspicuously and appropriately publish on each copy an
  273. appropriate copyright notice and disclaimer of warranty; keep intact
  274. all the notices that refer to this License and to the absence of any
  275. warranty; and distribute a copy of this License along with the
  276. Library.
  277. You may charge a fee for the physical act of transferring a copy,
  278. and you may at your option offer warranty protection in exchange for a
  279. fee.
  280. 2. You may modify your copy or copies of the Library or any portion
  281. of it, thus forming a work based on the Library, and copy and
  282. distribute such modifications or work under the terms of Section 1
  283. above, provided that you also meet all of these conditions:
  284. a) The modified work must itself be a software library.
  285. b) You must cause the files modified to carry prominent notices
  286. stating that you changed the files and the date of any change.
  287. c) You must cause the whole of the work to be licensed at no
  288. charge to all third parties under the terms of this License.
  289. d) If a facility in the modified Library refers to a function or a
  290. table of data to be supplied by an application program that uses
  291. the facility, other than as an argument passed when the facility
  292. is invoked, then you must make a good faith effort to ensure that,
  293. in the event an application does not supply such function or
  294. table, the facility still operates, and performs whatever part of
  295. its purpose remains meaningful.
  296. (For example, a function in a library to compute square roots has
  297. a purpose that is entirely well-defined independent of the
  298. application. Therefore, Subsection 2d requires that any
  299. application-supplied function or table used by this function must
  300. be optional: if the application does not supply it, the square
  301. root function must still compute square roots.)
  302. These requirements apply to the modified work as a whole. If
  303. identifiable sections of that work are not derived from the Library,
  304. and can be reasonably considered independent and separate works in
  305. themselves, then this License, and its terms, do not apply to those
  306. sections when you distribute them as separate works. But when you
  307. distribute the same sections as part of a whole which is a work based
  308. on the Library, the distribution of the whole must be on the terms of
  309. this License, whose permissions for other licensees extend to the
  310. entire whole, and thus to each and every part regardless of who wrote
  311. it.
  312. Thus, it is not the intent of this section to claim rights or contest
  313. your rights to work written entirely by you; rather, the intent is to
  314. exercise the right to control the distribution of derivative or
  315. collective works based on the Library.
  316. In addition, mere aggregation of another work not based on the Library
  317. with the Library (or with a work based on the Library) on a volume of
  318. a storage or distribution medium does not bring the other work under
  319. the scope of this License.
  320. 3. You may opt to apply the terms of the ordinary GNU General Public
  321. License instead of this License to a given copy of the Library. To do
  322. this, you must alter all the notices that refer to this License, so
  323. that they refer to the ordinary GNU General Public License, version 2,
  324. instead of to this License. (If a newer version than version 2 of the
  325. ordinary GNU General Public License has appeared, then you can specify
  326. that version instead if you wish.) Do not make any other change in
  327. these notices.
  328. Once this change is made in a given copy, it is irreversible for
  329. that copy, so the ordinary GNU General Public License applies to all
  330. subsequent copies and derivative works made from that copy.
  331. This option is useful when you wish to copy part of the code of
  332. the Library into a program that is not a library.
  333. 4. You may copy and distribute the Library (or a portion or
  334. derivative of it, under Section 2) in object code or executable form
  335. under the terms of Sections 1 and 2 above provided that you accompany
  336. it with the complete corresponding machine-readable source code, which
  337. must be distributed under the terms of Sections 1 and 2 above on a
  338. medium customarily used for software interchange.
  339. If distribution of object code is made by offering access to copy
  340. from a designated place, then offering equivalent access to copy the
  341. source code from the same place satisfies the requirement to
  342. distribute the source code, even though third parties are not
  343. compelled to copy the source along with the object code.
  344. 5. A program that contains no derivative of any portion of the
  345. Library, but is designed to work with the Library by being compiled or
  346. linked with it, is called a "work that uses the Library". Such a
  347. work, in isolation, is not a derivative work of the Library, and
  348. therefore falls outside the scope of this License.
  349. However, linking a "work that uses the Library" with the Library
  350. creates an executable that is a derivative of the Library (because it
  351. contains portions of the Library), rather than a "work that uses the
  352. library". The executable is therefore covered by this License.
  353. Section 6 states terms for distribution of such executables.
  354. When a "work that uses the Library" uses material from a header file
  355. that is part of the Library, the object code for the work may be a
  356. derivative work of the Library even though the source code is not.
  357. Whether this is true is especially significant if the work can be
  358. linked without the Library, or if the work is itself a library. The
  359. threshold for this to be true is not precisely defined by law.
  360. If such an object file uses only numerical parameters, data
  361. structure layouts and accessors, and small macros and small inline
  362. functions (ten lines or less in length), then the use of the object
  363. file is unrestricted, regardless of whether it is legally a derivative
  364. work. (Executables containing this object code plus portions of the
  365. Library will still fall under Section 6.)
  366. Otherwise, if the work is a derivative of the Library, you may
  367. distribute the object code for the work under the terms of Section 6.
  368. Any executables containing that work also fall under Section 6,
  369. whether or not they are linked directly with the Library itself.
  370. 6. As an exception to the Sections above, you may also combine or
  371. link a "work that uses the Library" with the Library to produce a
  372. work containing portions of the Library, and distribute that work
  373. under terms of your choice, provided that the terms permit
  374. modification of the work for the customer's own use and reverse
  375. engineering for debugging such modifications.
  376. You must give prominent notice with each copy of the work that the
  377. Library is used in it and that the Library and its use are covered by
  378. this License. You must supply a copy of this License. If the work
  379. during execution displays copyright notices, you must include the
  380. copyright notice for the Library among them, as well as a reference
  381. directing the user to the copy of this License. Also, you must do one
  382. of these things:
  383. a) Accompany the work with the complete corresponding
  384. machine-readable source code for the Library including whatever
  385. changes were used in the work (which must be distributed under
  386. Sections 1 and 2 above); and, if the work is an executable linked
  387. with the Library, with the complete machine-readable "work that
  388. uses the Library", as object code and/or source code, so that the
  389. user can modify the Library and then relink to produce a modified
  390. executable containing the modified Library. (It is understood
  391. that the user who changes the contents of definitions files in the
  392. Library will not necessarily be able to recompile the application
  393. to use the modified definitions.)
  394. b) Use a suitable shared library mechanism for linking with the
  395. Library. A suitable mechanism is one that (1) uses at run time a
  396. copy of the library already present on the user's computer system,
  397. rather than copying library functions into the executable, and (2)
  398. will operate properly with a modified version of the library, if
  399. the user installs one, as long as the modified version is
  400. interface-compatible with the version that the work was made with.
  401. c) Accompany the work with a written offer, valid for at least
  402. three years, to give the same user the materials specified in
  403. Subsection 6a, above, for a charge no more than the cost of
  404. performing this distribution.
  405. d) If distribution of the work is made by offering access to copy
  406. from a designated place, offer equivalent access to copy the above
  407. specified materials from the same place.
  408. e) Verify that the user has already received a copy of these
  409. materials or that you have already sent this user a copy.
  410. For an executable, the required form of the "work that uses the
  411. Library" must include any data and utility programs needed for
  412. reproducing the executable from it. However, as a special exception,
  413. the materials to be distributed need not include anything that is
  414. normally distributed (in either source or binary form) with the major
  415. components (compiler, kernel, and so on) of the operating system on
  416. which the executable runs, unless that component itself accompanies
  417. the executable.
  418. It may happen that this requirement contradicts the license
  419. restrictions of other proprietary libraries that do not normally
  420. accompany the operating system. Such a contradiction means you cannot
  421. use both them and the Library together in an executable that you
  422. distribute.
  423. 7. You may place library facilities that are a work based on the
  424. Library side-by-side in a single library together with other library
  425. facilities not covered by this License, and distribute such a combined
  426. library, provided that the separate distribution of the work based on
  427. the Library and of the other library facilities is otherwise
  428. permitted, and provided that you do these two things:
  429. a) Accompany the combined library with a copy of the same work
  430. based on the Library, uncombined with any other library
  431. facilities. This must be distributed under the terms of the
  432. Sections above.
  433. b) Give prominent notice with the combined library of the fact
  434. that part of it is a work based on the Library, and explaining
  435. where to find the accompanying uncombined form of the same work.
  436. 8. You may not copy, modify, sublicense, link with, or distribute
  437. the Library except as expressly provided under this License. Any
  438. attempt otherwise to copy, modify, sublicense, link with, or
  439. distribute the Library is void, and will automatically terminate your
  440. rights under this License. However, parties who have received copies,
  441. or rights, from you under this License will not have their licenses
  442. terminated so long as such parties remain in full compliance.
  443. 9. You are not required to accept this License, since you have not
  444. signed it. However, nothing else grants you permission to modify or
  445. distribute the Library or its derivative works. These actions are
  446. prohibited by law if you do not accept this License. Therefore, by
  447. modifying or distributing the Library (or any work based on the
  448. Library), you indicate your acceptance of this License to do so, and
  449. all its terms and conditions for copying, distributing or modifying
  450. the Library or works based on it.
  451. 10. Each time you redistribute the Library (or any work based on the
  452. Library), the recipient automatically receives a license from the
  453. original licensor to copy, distribute, link with or modify the Library
  454. subject to these terms and conditions. You may not impose any further
  455. restrictions on the recipients' exercise of the rights granted herein.
  456. You are not responsible for enforcing compliance by third parties with
  457. this License.
  458. 11. If, as a consequence of a court judgment or allegation of patent
  459. infringement or for any other reason (not limited to patent issues),
  460. conditions are imposed on you (whether by court order, agreement or
  461. otherwise) that contradict the conditions of this License, they do not
  462. excuse you from the conditions of this License. If you cannot
  463. distribute so as to satisfy simultaneously your obligations under this
  464. License and any other pertinent obligations, then as a consequence you
  465. may not distribute the Library at all. For example, if a patent
  466. license would not permit royalty-free redistribution of the Library by
  467. all those who receive copies directly or indirectly through you, then
  468. the only way you could satisfy both it and this License would be to
  469. refrain entirely from distribution of the Library.
  470. If any portion of this section is held invalid or unenforceable under
  471. any particular circumstance, the balance of the section is intended to
  472. apply, and the section as a whole is intended to apply in other
  473. circumstances.
  474. It is not the purpose of this section to induce you to infringe any
  475. patents or other property right claims or to contest validity of any
  476. such claims; this section has the sole purpose of protecting the
  477. integrity of the free software distribution system which is
  478. implemented by public license practices. Many people have made
  479. generous contributions to the wide range of software distributed
  480. through that system in reliance on consistent application of that
  481. system; it is up to the author/donor to decide if he or she is willing
  482. to distribute software through any other system and a licensee cannot
  483. impose that choice.
  484. This section is intended to make thoroughly clear what is believed to
  485. be a consequence of the rest of this License.
  486. 12. If the distribution and/or use of the Library is restricted in
  487. certain countries either by patents or by copyrighted interfaces, the
  488. original copyright holder who places the Library under this License
  489. may add an explicit geographical distribution limitation excluding those
  490. countries, so that distribution is permitted only in or among
  491. countries not thus excluded. In such case, this License incorporates
  492. the limitation as if written in the body of this License.
  493. 13. The Free Software Foundation may publish revised and/or new
  494. versions of the Lesser General Public License from time to time.
  495. Such new versions will be similar in spirit to the present version,
  496. but may differ in detail to address new problems or concerns.
  497. Each version is given a distinguishing version number. If the Library
  498. specifies a version number of this License which applies to it and
  499. "any later version", you have the option of following the terms and
  500. conditions either of that version or of any later version published by
  501. the Free Software Foundation. If the Library does not specify a
  502. license version number, you may choose any version ever published by
  503. the Free Software Foundation.
  504. 14. If you wish to incorporate parts of the Library into other free
  505. programs whose distribution conditions are incompatible with these,
  506. write to the author to ask for permission. For software which is
  507. copyrighted by the Free Software Foundation, write to the Free
  508. Software Foundation; we sometimes make exceptions for this. Our
  509. decision will be guided by the two goals of preserving the free status
  510. of all derivatives of our free software and of promoting the sharing
  511. and reuse of software generally.
  512. NO WARRANTY
  513. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  514. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  515. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  516. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  517. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  518. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  519. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  520. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  521. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  522. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  523. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  524. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  525. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  526. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  527. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  528. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  529. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  530. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  531. DAMAGES.
  532. END OF TERMS AND CONDITIONS
  533. How to Apply These Terms to Your New Libraries
  534. If you develop a new library, and you want it to be of the greatest
  535. possible use to the public, we recommend making it free software that
  536. everyone can redistribute and change. You can do so by permitting
  537. redistribution under these terms (or, alternatively, under the terms
  538. of the ordinary General Public License).
  539. To apply these terms, attach the following notices to the library.
  540. It is safest to attach them to the start of each source file to most
  541. effectively convey the exclusion of warranty; and each file should
  542. have at least the "copyright" line and a pointer to where the full
  543. notice is found.
  544. <one line to give the library's name and a brief idea of what it does.>
  545. Copyright (C) <year> <name of author>
  546. This library is free software; you can redistribute it and/or
  547. modify it under the terms of the GNU Lesser General Public
  548. License as published by the Free Software Foundation; either
  549. version 2.1 of the License, or (at your option) any later version.
  550. This library is distributed in the hope that it will be useful,
  551. but WITHOUT ANY WARRANTY; without even the implied warranty of
  552. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  553. Lesser General Public License for more details.
  554. You should have received a copy of the GNU Lesser General Public
  555. License along with this library; if not, write to the Free Software
  556. Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
  557. Also add information on how to contact you by electronic and paper mail.
  558. You should also get your employer (if you work as a programmer) or
  559. your school, if any, to sign a "copyright disclaimer" for the library,
  560. if necessary. Here is a sample; alter the names:
  561. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  562. library `Frob' (a library for tweaking knobs) written by James
  563. Random Hacker.
  564. <signature of Ty Coon>, 1 April 1990
  565. Ty Coon, President of Vice
  566. That's all there is to it!
  567. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  568. [ croco 0.6.13 ] copyright:
  569. GNU LIBRARY GENERAL PUBLIC LICENSE
  570. Version 2, June 1991
  571. Copyright (C) 1991 Free Software Foundation, Inc.
  572. 675 Mass Ave, Cambridge, MA 02139, USA
  573. Everyone is permitted to copy and distribute verbatim copies
  574. of this license document, but changing it is not allowed.
  575. [This is the first released version of the library GPL. It is
  576. numbered 2 because it goes with version 2 of the ordinary GPL.]
  577. Preamble
  578. The licenses for most software are designed to take away your
  579. freedom to share and change it. By contrast, the GNU General Public
  580. Licenses are intended to guarantee your freedom to share and change
  581. free software--to make sure the software is free for all its users.
  582. This license, the Library General Public License, applies to some
  583. specially designated Free Software Foundation software, and to any
  584. other libraries whose authors decide to use it. You can use it for
  585. your libraries, too.
  586. When we speak of free software, we are referring to freedom, not
  587. price. Our General Public Licenses are designed to make sure that you
  588. have the freedom to distribute copies of free software (and charge for
  589. this service if you wish), that you receive source code or can get it
  590. if you want it, that you can change the software or use pieces of it
  591. in new free programs; and that you know you can do these things.
  592. To protect your rights, we need to make restrictions that forbid
  593. anyone to deny you these rights or to ask you to surrender the rights.
  594. These restrictions translate to certain responsibilities for you if
  595. you distribute copies of the library, or if you modify it.
  596. For example, if you distribute copies of the library, whether gratis
  597. or for a fee, you must give the recipients all the rights that we gave
  598. you. You must make sure that they, too, receive or can get the source
  599. code. If you link a program with the library, you must provide
  600. complete object files to the recipients so that they can relink them
  601. with the library, after making changes to the library and recompiling
  602. it. And you must show them these terms so they know their rights.
  603. Our method of protecting your rights has two steps: (1) copyright
  604. the library, and (2) offer you this license which gives you legal
  605. permission to copy, distribute and/or modify the library.
  606. Also, for each distributor's protection, we want to make certain
  607. that everyone understands that there is no warranty for this free
  608. library. If the library is modified by someone else and passed on, we
  609. want its recipients to know that what they have is not the original
  610. version, so that any problems introduced by others will not reflect on
  611. the original authors' reputations.
  612. Finally, any free program is threatened constantly by software
  613. patents. We wish to avoid the danger that companies distributing free
  614. software will individually obtain patent licenses, thus in effect
  615. transforming the program into proprietary software. To prevent this,
  616. we have made it clear that any patent must be licensed for everyone's
  617. free use or not licensed at all.
  618. Most GNU software, including some libraries, is covered by the ordinary
  619. GNU General Public License, which was designed for utility programs. This
  620. license, the GNU Library General Public License, applies to certain
  621. designated libraries. This license is quite different from the ordinary
  622. one; be sure to read it in full, and don't assume that anything in it is
  623. the same as in the ordinary license.
  624. The reason we have a separate public license for some libraries is that
  625. they blur the distinction we usually make between modifying or adding to a
  626. program and simply using it. Linking a program with a library, without
  627. changing the library, is in some sense simply using the library, and is
  628. analogous to running a utility program or application program. However, in
  629. a textual and legal sense, the linked executable is a combined work, a
  630. derivative of the original library, and the ordinary General Public License
  631. treats it as such.
  632. Because of this blurred distinction, using the ordinary General
  633. Public License for libraries did not effectively promote software
  634. sharing, because most developers did not use the libraries. We
  635. concluded that weaker conditions might promote sharing better.
  636. However, unrestricted linking of non-free programs would deprive the
  637. users of those programs of all benefit from the free status of the
  638. libraries themselves. This Library General Public License is intended to
  639. permit developers of non-free programs to use free libraries, while
  640. preserving your freedom as a user of such programs to change the free
  641. libraries that are incorporated in them. (We have not seen how to achieve
  642. this as regards changes in header files, but we have achieved it as regards
  643. changes in the actual functions of the Library.) The hope is that this
  644. will lead to faster development of free libraries.
  645. The precise terms and conditions for copying, distribution and
  646. modification follow. Pay close attention to the difference between a
  647. "work based on the library" and a "work that uses the library". The
  648. former contains code derived from the library, while the latter only
  649. works together with the library.
  650. Note that it is possible for a library to be covered by the ordinary
  651. General Public License rather than by this special one.
  652. GNU LIBRARY GENERAL PUBLIC LICENSE
  653. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  654. 0. This License Agreement applies to any software library which
  655. contains a notice placed by the copyright holder or other authorized
  656. party saying it may be distributed under the terms of this Library
  657. General Public License (also called "this License"). Each licensee is
  658. addressed as "you".
  659. A "library" means a collection of software functions and/or data
  660. prepared so as to be conveniently linked with application programs
  661. (which use some of those functions and data) to form executables.
  662. The "Library", below, refers to any such software library or work
  663. which has been distributed under these terms. A "work based on the
  664. Library" means either the Library or any derivative work under
  665. copyright law: that is to say, a work containing the Library or a
  666. portion of it, either verbatim or with modifications and/or translated
  667. straightforwardly into another language. (Hereinafter, translation is
  668. included without limitation in the term "modification".)
  669. "Source code" for a work means the preferred form of the work for
  670. making modifications to it. For a library, complete source code means
  671. all the source code for all modules it contains, plus any associated
  672. interface definition files, plus the scripts used to control compilation
  673. and installation of the library.
  674. Activities other than copying, distribution and modification are not
  675. covered by this License; they are outside its scope. The act of
  676. running a program using the Library is not restricted, and output from
  677. such a program is covered only if its contents constitute a work based
  678. on the Library (independent of the use of the Library in a tool for
  679. writing it). Whether that is true depends on what the Library does
  680. and what the program that uses the Library does.
  681. 1. You may copy and distribute verbatim copies of the Library's
  682. complete source code as you receive it, in any medium, provided that
  683. you conspicuously and appropriately publish on each copy an
  684. appropriate copyright notice and disclaimer of warranty; keep intact
  685. all the notices that refer to this License and to the absence of any
  686. warranty; and distribute a copy of this License along with the
  687. Library.
  688. You may charge a fee for the physical act of transferring a copy,
  689. and you may at your option offer warranty protection in exchange for a
  690. fee.
  691. 2. You may modify your copy or copies of the Library or any portion
  692. of it, thus forming a work based on the Library, and copy and
  693. distribute such modifications or work under the terms of Section 1
  694. above, provided that you also meet all of these conditions:
  695. a) The modified work must itself be a software library.
  696. b) You must cause the files modified to carry prominent notices
  697. stating that you changed the files and the date of any change.
  698. c) You must cause the whole of the work to be licensed at no
  699. charge to all third parties under the terms of this License.
  700. d) If a facility in the modified Library refers to a function or a
  701. table of data to be supplied by an application program that uses
  702. the facility, other than as an argument passed when the facility
  703. is invoked, then you must make a good faith effort to ensure that,
  704. in the event an application does not supply such function or
  705. table, the facility still operates, and performs whatever part of
  706. its purpose remains meaningful.
  707. (For example, a function in a library to compute square roots has
  708. a purpose that is entirely well-defined independent of the
  709. application. Therefore, Subsection 2d requires that any
  710. application-supplied function or table used by this function must
  711. be optional: if the application does not supply it, the square
  712. root function must still compute square roots.)
  713. These requirements apply to the modified work as a whole. If
  714. identifiable sections of that work are not derived from the Library,
  715. and can be reasonably considered independent and separate works in
  716. themselves, then this License, and its terms, do not apply to those
  717. sections when you distribute them as separate works. But when you
  718. distribute the same sections as part of a whole which is a work based
  719. on the Library, the distribution of the whole must be on the terms of
  720. this License, whose permissions for other licensees extend to the
  721. entire whole, and thus to each and every part regardless of who wrote
  722. it.
  723. Thus, it is not the intent of this section to claim rights or contest
  724. your rights to work written entirely by you; rather, the intent is to
  725. exercise the right to control the distribution of derivative or
  726. collective works based on the Library.
  727. In addition, mere aggregation of another work not based on the Library
  728. with the Library (or with a work based on the Library) on a volume of
  729. a storage or distribution medium does not bring the other work under
  730. the scope of this License.
  731. 3. You may opt to apply the terms of the ordinary GNU General Public
  732. License instead of this License to a given copy of the Library. To do
  733. this, you must alter all the notices that refer to this License, so
  734. that they refer to the ordinary GNU General Public License, version 2,
  735. instead of to this License. (If a newer version than version 2 of the
  736. ordinary GNU General Public License has appeared, then you can specify
  737. that version instead if you wish.) Do not make any other change in
  738. these notices.
  739. Once this change is made in a given copy, it is irreversible for
  740. that copy, so the ordinary GNU General Public License applies to all
  741. subsequent copies and derivative works made from that copy.
  742. This option is useful when you wish to copy part of the code of
  743. the Library into a program that is not a library.
  744. 4. You may copy and distribute the Library (or a portion or
  745. derivative of it, under Section 2) in object code or executable form
  746. under the terms of Sections 1 and 2 above provided that you accompany
  747. it with the complete corresponding machine-readable source code, which
  748. must be distributed under the terms of Sections 1 and 2 above on a
  749. medium customarily used for software interchange.
  750. If distribution of object code is made by offering access to copy
  751. from a designated place, then offering equivalent access to copy the
  752. source code from the same place satisfies the requirement to
  753. distribute the source code, even though third parties are not
  754. compelled to copy the source along with the object code.
  755. 5. A program that contains no derivative of any portion of the
  756. Library, but is designed to work with the Library by being compiled or
  757. linked with it, is called a "work that uses the Library". Such a
  758. work, in isolation, is not a derivative work of the Library, and
  759. therefore falls outside the scope of this License.
  760. However, linking a "work that uses the Library" with the Library
  761. creates an executable that is a derivative of the Library (because it
  762. contains portions of the Library), rather than a "work that uses the
  763. library". The executable is therefore covered by this License.
  764. Section 6 states terms for distribution of such executables.
  765. When a "work that uses the Library" uses material from a header file
  766. that is part of the Library, the object code for the work may be a
  767. derivative work of the Library even though the source code is not.
  768. Whether this is true is especially significant if the work can be
  769. linked without the Library, or if the work is itself a library. The
  770. threshold for this to be true is not precisely defined by law.
  771. If such an object file uses only numerical parameters, data
  772. structure layouts and accessors, and small macros and small inline
  773. functions (ten lines or less in length), then the use of the object
  774. file is unrestricted, regardless of whether it is legally a derivative
  775. work. (Executables containing this object code plus portions of the
  776. Library will still fall under Section 6.)
  777. Otherwise, if the work is a derivative of the Library, you may
  778. distribute the object code for the work under the terms of Section 6.
  779. Any executables containing that work also fall under Section 6,
  780. whether or not they are linked directly with the Library itself.
  781. 6. As an exception to the Sections above, you may also compile or
  782. link a "work that uses the Library" with the Library to produce a
  783. work containing portions of the Library, and distribute that work
  784. under terms of your choice, provided that the terms permit
  785. modification of the work for the customer's own use and reverse
  786. engineering for debugging such modifications.
  787. You must give prominent notice with each copy of the work that the
  788. Library is used in it and that the Library and its use are covered by
  789. this License. You must supply a copy of this License. If the work
  790. during execution displays copyright notices, you must include the
  791. copyright notice for the Library among them, as well as a reference
  792. directing the user to the copy of this License. Also, you must do one
  793. of these things:
  794. a) Accompany the work with the complete corresponding
  795. machine-readable source code for the Library including whatever
  796. changes were used in the work (which must be distributed under
  797. Sections 1 and 2 above); and, if the work is an executable linked
  798. with the Library, with the complete machine-readable "work that
  799. uses the Library", as object code and/or source code, so that the
  800. user can modify the Library and then relink to produce a modified
  801. executable containing the modified Library. (It is understood
  802. that the user who changes the contents of definitions files in the
  803. Library will not necessarily be able to recompile the application
  804. to use the modified definitions.)
  805. b) Accompany the work with a written offer, valid for at
  806. least three years, to give the same user the materials
  807. specified in Subsection 6a, above, for a charge no more
  808. than the cost of performing this distribution.
  809. c) If distribution of the work is made by offering access to copy
  810. from a designated place, offer equivalent access to copy the above
  811. specified materials from the same place.
  812. d) Verify that the user has already received a copy of these
  813. materials or that you have already sent this user a copy.
  814. For an executable, the required form of the "work that uses the
  815. Library" must include any data and utility programs needed for
  816. reproducing the executable from it. However, as a special exception,
  817. the source code distributed need not include anything that is normally
  818. distributed (in either source or binary form) with the major
  819. components (compiler, kernel, and so on) of the operating system on
  820. which the executable runs, unless that component itself accompanies
  821. the executable.
  822. It may happen that this requirement contradicts the license
  823. restrictions of other proprietary libraries that do not normally
  824. accompany the operating system. Such a contradiction means you cannot
  825. use both them and the Library together in an executable that you
  826. distribute.
  827. 7. You may place library facilities that are a work based on the
  828. Library side-by-side in a single library together with other library
  829. facilities not covered by this License, and distribute such a combined
  830. library, provided that the separate distribution of the work based on
  831. the Library and of the other library facilities is otherwise
  832. permitted, and provided that you do these two things:
  833. a) Accompany the combined library with a copy of the same work
  834. based on the Library, uncombined with any other library
  835. facilities. This must be distributed under the terms of the
  836. Sections above.
  837. b) Give prominent notice with the combined library of the fact
  838. that part of it is a work based on the Library, and explaining
  839. where to find the accompanying uncombined form of the same work.
  840. 8. You may not copy, modify, sublicense, link with, or distribute
  841. the Library except as expressly provided under this License. Any
  842. attempt otherwise to copy, modify, sublicense, link with, or
  843. distribute the Library is void, and will automatically terminate your
  844. rights under this License. However, parties who have received copies,
  845. or rights, from you under this License will not have their licenses
  846. terminated so long as such parties remain in full compliance.
  847. 9. You are not required to accept this License, since you have not
  848. signed it. However, nothing else grants you permission to modify or
  849. distribute the Library or its derivative works. These actions are
  850. prohibited by law if you do not accept this License. Therefore, by
  851. modifying or distributing the Library (or any work based on the
  852. Library), you indicate your acceptance of this License to do so, and
  853. all its terms and conditions for copying, distributing or modifying
  854. the Library or works based on it.
  855. 10. Each time you redistribute the Library (or any work based on the
  856. Library), the recipient automatically receives a license from the
  857. original licensor to copy, distribute, link with or modify the Library
  858. subject to these terms and conditions. You may not impose any further
  859. restrictions on the recipients' exercise of the rights granted herein.
  860. You are not responsible for enforcing compliance by third parties to
  861. this License.
  862. 11. If, as a consequence of a court judgment or allegation of patent
  863. infringement or for any other reason (not limited to patent issues),
  864. conditions are imposed on you (whether by court order, agreement or
  865. otherwise) that contradict the conditions of this License, they do not
  866. excuse you from the conditions of this License. If you cannot
  867. distribute so as to satisfy simultaneously your obligations under this
  868. License and any other pertinent obligations, then as a consequence you
  869. may not distribute the Library at all. For example, if a patent
  870. license would not permit royalty-free redistribution of the Library by
  871. all those who receive copies directly or indirectly through you, then
  872. the only way you could satisfy both it and this License would be to
  873. refrain entirely from distribution of the Library.
  874. If any portion of this section is held invalid or unenforceable under any
  875. particular circumstance, the balance of the section is intended to apply,
  876. and the section as a whole is intended to apply in other circumstances.
  877. It is not the purpose of this section to induce you to infringe any
  878. patents or other property right claims or to contest validity of any
  879. such claims; this section has the sole purpose of protecting the
  880. integrity of the free software distribution system which is
  881. implemented by public license practices. Many people have made
  882. generous contributions to the wide range of software distributed
  883. through that system in reliance on consistent application of that
  884. system; it is up to the author/donor to decide if he or she is willing
  885. to distribute software through any other system and a licensee cannot
  886. impose that choice.
  887. This section is intended to make thoroughly clear what is believed to
  888. be a consequence of the rest of this License.
  889. 12. If the distribution and/or use of the Library is restricted in
  890. certain countries either by patents or by copyrighted interfaces, the
  891. original copyright holder who places the Library under this License may add
  892. an explicit geographical distribution limitation excluding those countries,
  893. so that distribution is permitted only in or among countries not thus
  894. excluded. In such case, this License incorporates the limitation as if
  895. written in the body of this License.
  896. 13. The Free Software Foundation may publish revised and/or new
  897. versions of the Library General Public License from time to time.
  898. Such new versions will be similar in spirit to the present version,
  899. but may differ in detail to address new problems or concerns.
  900. Each version is given a distinguishing version number. If the Library
  901. specifies a version number of this License which applies to it and
  902. "any later version", you have the option of following the terms and
  903. conditions either of that version or of any later version published by
  904. the Free Software Foundation. If the Library does not specify a
  905. license version number, you may choose any version ever published by
  906. the Free Software Foundation.
  907. 14. If you wish to incorporate parts of the Library into other free
  908. programs whose distribution conditions are incompatible with these,
  909. write to the author to ask for permission. For software which is
  910. copyrighted by the Free Software Foundation, write to the Free
  911. Software Foundation; we sometimes make exceptions for this. Our
  912. decision will be guided by the two goals of preserving the free status
  913. of all derivatives of our free software and of promoting the sharing
  914. and reuse of software generally.
  915. NO WARRANTY
  916. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  917. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  918. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  919. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  920. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  921. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  922. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  923. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  924. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  925. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  926. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  927. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  928. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  929. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  930. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  931. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  932. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  933. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  934. DAMAGES.
  935. END OF TERMS AND CONDITIONS
  936. Appendix: How to Apply These Terms to Your New Libraries
  937. If you develop a new library, and you want it to be of the greatest
  938. possible use to the public, we recommend making it free software that
  939. everyone can redistribute and change. You can do so by permitting
  940. redistribution under these terms (or, alternatively, under the terms of the
  941. ordinary General Public License).
  942. To apply these terms, attach the following notices to the library. It is
  943. safest to attach them to the start of each source file to most effectively
  944. convey the exclusion of warranty; and each file should have at least the
  945. "copyright" line and a pointer to where the full notice is found.
  946. <one line to give the library's name and a brief idea of what it does.>
  947. Copyright (C) <year> <name of author>
  948. This library is free software; you can redistribute it and/or
  949. modify it under the terms of the GNU Library General Public
  950. License as published by the Free Software Foundation; either
  951. version 2 of the License, or (at your option) any later version.
  952. This library is distributed in the hope that it will be useful,
  953. but WITHOUT ANY WARRANTY; without even the implied warranty of
  954. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  955. Library General Public License for more details.
  956. You should have received a copy of the GNU Library General Public
  957. License along with this library; if not, write to the Free
  958. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  959. Also add information on how to contact you by electronic and paper mail.
  960. You should also get your employer (if you work as a programmer) or your
  961. school, if any, to sign a "copyright disclaimer" for the library, if
  962. necessary. Here is a sample; alter the names:
  963. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  964. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  965. <signature of Ty Coon>, 1 April 1990
  966. Ty Coon, President of Vice
  967. That's all there is to it!
  968. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  969. [ de265 1.0.12 ] copyright:
  970. * The library `libde265` is distributed under the terms of the GNU Lesser General Public License.
  971. * The sample applications are distributed under the terms of the MIT license.
  972. License texts below and in the `COPYING` files of the corresponding subfolders.
  973. ----------------------------------------------------------------------
  974. GNU LESSER GENERAL PUBLIC LICENSE
  975. Version 3, 29 June 2007
  976. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  977. Everyone is permitted to copy and distribute verbatim copies
  978. of this license document, but changing it is not allowed.
  979. This version of the GNU Lesser General Public License incorporates
  980. the terms and conditions of version 3 of the GNU General Public
  981. License, supplemented by the additional permissions listed below.
  982. 0. Additional Definitions.
  983. As used herein, "this License" refers to version 3 of the GNU Lesser
  984. General Public License, and the "GNU GPL" refers to version 3 of the GNU
  985. General Public License.
  986. "The Library" refers to a covered work governed by this License,
  987. other than an Application or a Combined Work as defined below.
  988. An "Application" is any work that makes use of an interface provided
  989. by the Library, but which is not otherwise based on the Library.
  990. Defining a subclass of a class defined by the Library is deemed a mode
  991. of using an interface provided by the Library.
  992. A "Combined Work" is a work produced by combining or linking an
  993. Application with the Library. The particular version of the Library
  994. with which the Combined Work was made is also called the "Linked
  995. Version".
  996. The "Minimal Corresponding Source" for a Combined Work means the
  997. Corresponding Source for the Combined Work, excluding any source code
  998. for portions of the Combined Work that, considered in isolation, are
  999. based on the Application, and not on the Linked Version.
  1000. The "Corresponding Application Code" for a Combined Work means the
  1001. object code and/or source code for the Application, including any data
  1002. and utility programs needed for reproducing the Combined Work from the
  1003. Application, but excluding the System Libraries of the Combined Work.
  1004. 1. Exception to Section 3 of the GNU GPL.
  1005. You may convey a covered work under sections 3 and 4 of this License
  1006. without being bound by section 3 of the GNU GPL.
  1007. 2. Conveying Modified Versions.
  1008. If you modify a copy of the Library, and, in your modifications, a
  1009. facility refers to a function or data to be supplied by an Application
  1010. that uses the facility (other than as an argument passed when the
  1011. facility is invoked), then you may convey a copy of the modified
  1012. version:
  1013. a) under this License, provided that you make a good faith effort to
  1014. ensure that, in the event an Application does not supply the
  1015. function or data, the facility still operates, and performs
  1016. whatever part of its purpose remains meaningful, or
  1017. b) under the GNU GPL, with none of the additional permissions of
  1018. this License applicable to that copy.
  1019. 3. Object Code Incorporating Material from Library Header Files.
  1020. The object code form of an Application may incorporate material from
  1021. a header file that is part of the Library. You may convey such object
  1022. code under terms of your choice, provided that, if the incorporated
  1023. material is not limited to numerical parameters, data structure
  1024. layouts and accessors, or small macros, inline functions and templates
  1025. (ten or fewer lines in length), you do both of the following:
  1026. a) Give prominent notice with each copy of the object code that the
  1027. Library is used in it and that the Library and its use are
  1028. covered by this License.
  1029. b) Accompany the object code with a copy of the GNU GPL and this license
  1030. document.
  1031. 4. Combined Works.
  1032. You may convey a Combined Work under terms of your choice that,
  1033. taken together, effectively do not restrict modification of the
  1034. portions of the Library contained in the Combined Work and reverse
  1035. engineering for debugging such modifications, if you also do each of
  1036. the following:
  1037. a) Give prominent notice with each copy of the Combined Work that
  1038. the Library is used in it and that the Library and its use are
  1039. covered by this License.
  1040. b) Accompany the Combined Work with a copy of the GNU GPL and this license
  1041. document.
  1042. c) For a Combined Work that displays copyright notices during
  1043. execution, include the copyright notice for the Library among
  1044. these notices, as well as a reference directing the user to the
  1045. copies of the GNU GPL and this license document.
  1046. d) Do one of the following:
  1047. 0) Convey the Minimal Corresponding Source under the terms of this
  1048. License, and the Corresponding Application Code in a form
  1049. suitable for, and under terms that permit, the user to
  1050. recombine or relink the Application with a modified version of
  1051. the Linked Version to produce a modified Combined Work, in the
  1052. manner specified by section 6 of the GNU GPL for conveying
  1053. Corresponding Source.
  1054. 1) Use a suitable shared library mechanism for linking with the
  1055. Library. A suitable mechanism is one that (a) uses at run time
  1056. a copy of the Library already present on the user's computer
  1057. system, and (b) will operate properly with a modified version
  1058. of the Library that is interface-compatible with the Linked
  1059. Version.
  1060. e) Provide Installation Information, but only if you would otherwise
  1061. be required to provide such information under section 6 of the
  1062. GNU GPL, and only to the extent that such information is
  1063. necessary to install and execute a modified version of the
  1064. Combined Work produced by recombining or relinking the
  1065. Application with a modified version of the Linked Version. (If
  1066. you use option 4d0, the Installation Information must accompany
  1067. the Minimal Corresponding Source and Corresponding Application
  1068. Code. If you use option 4d1, you must provide the Installation
  1069. Information in the manner specified by section 6 of the GNU GPL
  1070. for conveying Corresponding Source.)
  1071. 5. Combined Libraries.
  1072. You may place library facilities that are a work based on the
  1073. Library side by side in a single library together with other library
  1074. facilities that are not Applications and are not covered by this
  1075. License, and convey such a combined library under terms of your
  1076. choice, if you do both of the following:
  1077. a) Accompany the combined library with a copy of the same work based
  1078. on the Library, uncombined with any other library facilities,
  1079. conveyed under the terms of this License.
  1080. b) Give prominent notice with the combined library that part of it
  1081. is a work based on the Library, and explaining where to find the
  1082. accompanying uncombined form of the same work.
  1083. 6. Revised Versions of the GNU Lesser General Public License.
  1084. The Free Software Foundation may publish revised and/or new versions
  1085. of the GNU Lesser General Public License from time to time. Such new
  1086. versions will be similar in spirit to the present version, but may
  1087. differ in detail to address new problems or concerns.
  1088. Each version is given a distinguishing version number. If the
  1089. Library as you received it specifies that a certain numbered version
  1090. of the GNU Lesser General Public License "or any later version"
  1091. applies to it, you have the option of following the terms and
  1092. conditions either of that published version or of any later version
  1093. published by the Free Software Foundation. If the Library as you
  1094. received it does not specify a version number of the GNU Lesser
  1095. General Public License, you may choose any version of the GNU Lesser
  1096. General Public License ever published by the Free Software Foundation.
  1097. If the Library as you received it specifies that a proxy can decide
  1098. whether future versions of the GNU Lesser General Public License shall
  1099. apply, that proxy's public statement of acceptance of any version is
  1100. permanent authorization for you to choose that version for the
  1101. Library.
  1102. ----------------------------------------------------------------------
  1103. GNU GENERAL PUBLIC LICENSE
  1104. Version 3, 29 June 2007
  1105. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  1106. Everyone is permitted to copy and distribute verbatim copies
  1107. of this license document, but changing it is not allowed.
  1108. Preamble
  1109. The GNU General Public License is a free, copyleft license for
  1110. software and other kinds of works.
  1111. The licenses for most software and other practical works are designed
  1112. to take away your freedom to share and change the works. By contrast,
  1113. the GNU General Public License is intended to guarantee your freedom to
  1114. share and change all versions of a program--to make sure it remains free
  1115. software for all its users. We, the Free Software Foundation, use the
  1116. GNU General Public License for most of our software; it applies also to
  1117. any other work released this way by its authors. You can apply it to
  1118. your programs, too.
  1119. When we speak of free software, we are referring to freedom, not
  1120. price. Our General Public Licenses are designed to make sure that you
  1121. have the freedom to distribute copies of free software (and charge for
  1122. them if you wish), that you receive source code or can get it if you
  1123. want it, that you can change the software or use pieces of it in new
  1124. free programs, and that you know you can do these things.
  1125. To protect your rights, we need to prevent others from denying you
  1126. these rights or asking you to surrender the rights. Therefore, you have
  1127. certain responsibilities if you distribute copies of the software, or if
  1128. you modify it: responsibilities to respect the freedom of others.
  1129. For example, if you distribute copies of such a program, whether
  1130. gratis or for a fee, you must pass on to the recipients the same
  1131. freedoms that you received. You must make sure that they, too, receive
  1132. or can get the source code. And you must show them these terms so they
  1133. know their rights.
  1134. Developers that use the GNU GPL protect your rights with two steps:
  1135. (1) assert copyright on the software, and (2) offer you this License
  1136. giving you legal permission to copy, distribute and/or modify it.
  1137. For the developers' and authors' protection, the GPL clearly explains
  1138. that there is no warranty for this free software. For both users' and
  1139. authors' sake, the GPL requires that modified versions be marked as
  1140. changed, so that their problems will not be attributed erroneously to
  1141. authors of previous versions.
  1142. Some devices are designed to deny users access to install or run
  1143. modified versions of the software inside them, although the manufacturer
  1144. can do so. This is fundamentally incompatible with the aim of
  1145. protecting users' freedom to change the software. The systematic
  1146. pattern of such abuse occurs in the area of products for individuals to
  1147. use, which is precisely where it is most unacceptable. Therefore, we
  1148. have designed this version of the GPL to prohibit the practice for those
  1149. products. If such problems arise substantially in other domains, we
  1150. stand ready to extend this provision to those domains in future versions
  1151. of the GPL, as needed to protect the freedom of users.
  1152. Finally, every program is threatened constantly by software patents.
  1153. States should not allow patents to restrict development and use of
  1154. software on general-purpose computers, but in those that do, we wish to
  1155. avoid the special danger that patents applied to a free program could
  1156. make it effectively proprietary. To prevent this, the GPL assures that
  1157. patents cannot be used to render the program non-free.
  1158. The precise terms and conditions for copying, distribution and
  1159. modification follow.
  1160. TERMS AND CONDITIONS
  1161. 0. Definitions.
  1162. "This License" refers to version 3 of the GNU General Public License.
  1163. "Copyright" also means copyright-like laws that apply to other kinds of
  1164. works, such as semiconductor masks.
  1165. "The Program" refers to any copyrightable work licensed under this
  1166. License. Each licensee is addressed as "you". "Licensees" and
  1167. "recipients" may be individuals or organizations.
  1168. To "modify" a work means to copy from or adapt all or part of the work
  1169. in a fashion requiring copyright permission, other than the making of an
  1170. exact copy. The resulting work is called a "modified version" of the
  1171. earlier work or a work "based on" the earlier work.
  1172. A "covered work" means either the unmodified Program or a work based
  1173. on the Program.
  1174. To "propagate" a work means to do anything with it that, without
  1175. permission, would make you directly or secondarily liable for
  1176. infringement under applicable copyright law, except executing it on a
  1177. computer or modifying a private copy. Propagation includes copying,
  1178. distribution (with or without modification), making available to the
  1179. public, and in some countries other activities as well.
  1180. To "convey" a work means any kind of propagation that enables other
  1181. parties to make or receive copies. Mere interaction with a user through
  1182. a computer network, with no transfer of a copy, is not conveying.
  1183. An interactive user interface displays "Appropriate Legal Notices"
  1184. to the extent that it includes a convenient and prominently visible
  1185. feature that (1) displays an appropriate copyright notice, and (2)
  1186. tells the user that there is no warranty for the work (except to the
  1187. extent that warranties are provided), that licensees may convey the
  1188. work under this License, and how to view a copy of this License. If
  1189. the interface presents a list of user commands or options, such as a
  1190. menu, a prominent item in the list meets this criterion.
  1191. 1. Source Code.
  1192. The "source code" for a work means the preferred form of the work
  1193. for making modifications to it. "Object code" means any non-source
  1194. form of a work.
  1195. A "Standard Interface" means an interface that either is an official
  1196. standard defined by a recognized standards body, or, in the case of
  1197. interfaces specified for a particular programming language, one that
  1198. is widely used among developers working in that language.
  1199. The "System Libraries" of an executable work include anything, other
  1200. than the work as a whole, that (a) is included in the normal form of
  1201. packaging a Major Component, but which is not part of that Major
  1202. Component, and (b) serves only to enable use of the work with that
  1203. Major Component, or to implement a Standard Interface for which an
  1204. implementation is available to the public in source code form. A
  1205. "Major Component", in this context, means a major essential component
  1206. (kernel, window system, and so on) of the specific operating system
  1207. (if any) on which the executable work runs, or a compiler used to
  1208. produce the work, or an object code interpreter used to run it.
  1209. The "Corresponding Source" for a work in object code form means all
  1210. the source code needed to generate, install, and (for an executable
  1211. work) run the object code and to modify the work, including scripts to
  1212. control those activities. However, it does not include the work's
  1213. System Libraries, or general-purpose tools or generally available free
  1214. programs which are used unmodified in performing those activities but
  1215. which are not part of the work. For example, Corresponding Source
  1216. includes interface definition files associated with source files for
  1217. the work, and the source code for shared libraries and dynamically
  1218. linked subprograms that the work is specifically designed to require,
  1219. such as by intimate data communication or control flow between those
  1220. subprograms and other parts of the work.
  1221. The Corresponding Source need not include anything that users
  1222. can regenerate automatically from other parts of the Corresponding
  1223. Source.
  1224. The Corresponding Source for a work in source code form is that
  1225. same work.
  1226. 2. Basic Permissions.
  1227. All rights granted under this License are granted for the term of
  1228. copyright on the Program, and are irrevocable provided the stated
  1229. conditions are met. This License explicitly affirms your unlimited
  1230. permission to run the unmodified Program. The output from running a
  1231. covered work is covered by this License only if the output, given its
  1232. content, constitutes a covered work. This License acknowledges your
  1233. rights of fair use or other equivalent, as provided by copyright law.
  1234. You may make, run and propagate covered works that you do not
  1235. convey, without conditions so long as your license otherwise remains
  1236. in force. You may convey covered works to others for the sole purpose
  1237. of having them make modifications exclusively for you, or provide you
  1238. with facilities for running those works, provided that you comply with
  1239. the terms of this License in conveying all material for which you do
  1240. not control copyright. Those thus making or running the covered works
  1241. for you must do so exclusively on your behalf, under your direction
  1242. and control, on terms that prohibit them from making any copies of
  1243. your copyrighted material outside their relationship with you.
  1244. Conveying under any other circumstances is permitted solely under
  1245. the conditions stated below. Sublicensing is not allowed; section 10
  1246. makes it unnecessary.
  1247. 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
  1248. No covered work shall be deemed part of an effective technological
  1249. measure under any applicable law fulfilling obligations under article
  1250. 11 of the WIPO copyright treaty adopted on 20 December 1996, or
  1251. similar laws prohibiting or restricting circumvention of such
  1252. measures.
  1253. When you convey a covered work, you waive any legal power to forbid
  1254. circumvention of technological measures to the extent such circumvention
  1255. is effected by exercising rights under this License with respect to
  1256. the covered work, and you disclaim any intention to limit operation or
  1257. modification of the work as a means of enforcing, against the work's
  1258. users, your or third parties' legal rights to forbid circumvention of
  1259. technological measures.
  1260. 4. Conveying Verbatim Copies.
  1261. You may convey verbatim copies of the Program's source code as you
  1262. receive it, in any medium, provided that you conspicuously and
  1263. appropriately publish on each copy an appropriate copyright notice;
  1264. keep intact all notices stating that this License and any
  1265. non-permissive terms added in accord with section 7 apply to the code;
  1266. keep intact all notices of the absence of any warranty; and give all
  1267. recipients a copy of this License along with the Program.
  1268. You may charge any price or no price for each copy that you convey,
  1269. and you may offer support or warranty protection for a fee.
  1270. 5. Conveying Modified Source Versions.
  1271. You may convey a work based on the Program, or the modifications to
  1272. produce it from the Program, in the form of source code under the
  1273. terms of section 4, provided that you also meet all of these conditions:
  1274. a) The work must carry prominent notices stating that you modified
  1275. it, and giving a relevant date.
  1276. b) The work must carry prominent notices stating that it is
  1277. released under this License and any conditions added under section
  1278. 7. This requirement modifies the requirement in section 4 to
  1279. "keep intact all notices".
  1280. c) You must license the entire work, as a whole, under this
  1281. License to anyone who comes into possession of a copy. This
  1282. License will therefore apply, along with any applicable section 7
  1283. additional terms, to the whole of the work, and all its parts,
  1284. regardless of how they are packaged. This License gives no
  1285. permission to license the work in any other way, but it does not
  1286. invalidate such permission if you have separately received it.
  1287. d) If the work has interactive user interfaces, each must display
  1288. Appropriate Legal Notices; however, if the Program has interactive
  1289. interfaces that do not display Appropriate Legal Notices, your
  1290. work need not make them do so.
  1291. A compilation of a covered work with other separate and independent
  1292. works, which are not by their nature extensions of the covered work,
  1293. and which are not combined with it such as to form a larger program,
  1294. in or on a volume of a storage or distribution medium, is called an
  1295. "aggregate" if the compilation and its resulting copyright are not
  1296. used to limit the access or legal rights of the compilation's users
  1297. beyond what the individual works permit. Inclusion of a covered work
  1298. in an aggregate does not cause this License to apply to the other
  1299. parts of the aggregate.
  1300. 6. Conveying Non-Source Forms.
  1301. You may convey a covered work in object code form under the terms
  1302. of sections 4 and 5, provided that you also convey the
  1303. machine-readable Corresponding Source under the terms of this License,
  1304. in one of these ways:
  1305. a) Convey the object code in, or embodied in, a physical product
  1306. (including a physical distribution medium), accompanied by the
  1307. Corresponding Source fixed on a durable physical medium
  1308. customarily used for software interchange.
  1309. b) Convey the object code in, or embodied in, a physical product
  1310. (including a physical distribution medium), accompanied by a
  1311. written offer, valid for at least three years and valid for as
  1312. long as you offer spare parts or customer support for that product
  1313. model, to give anyone who possesses the object code either (1) a
  1314. copy of the Corresponding Source for all the software in the
  1315. product that is covered by this License, on a durable physical
  1316. medium customarily used for software interchange, for a price no
  1317. more than your reasonable cost of physically performing this
  1318. conveying of source, or (2) access to copy the
  1319. Corresponding Source from a network server at no charge.
  1320. c) Convey individual copies of the object code with a copy of the
  1321. written offer to provide the Corresponding Source. This
  1322. alternative is allowed only occasionally and noncommercially, and
  1323. only if you received the object code with such an offer, in accord
  1324. with subsection 6b.
  1325. d) Convey the object code by offering access from a designated
  1326. place (gratis or for a charge), and offer equivalent access to the
  1327. Corresponding Source in the same way through the same place at no
  1328. further charge. You need not require recipients to copy the
  1329. Corresponding Source along with the object code. If the place to
  1330. copy the object code is a network server, the Corresponding Source
  1331. may be on a different server (operated by you or a third party)
  1332. that supports equivalent copying facilities, provided you maintain
  1333. clear directions next to the object code saying where to find the
  1334. Corresponding Source. Regardless of what server hosts the
  1335. Corresponding Source, you remain obligated to ensure that it is
  1336. available for as long as needed to satisfy these requirements.
  1337. e) Convey the object code using peer-to-peer transmission, provided
  1338. you inform other peers where the object code and Corresponding
  1339. Source of the work are being offered to the general public at no
  1340. charge under subsection 6d.
  1341. A separable portion of the object code, whose source code is excluded
  1342. from the Corresponding Source as a System Library, need not be
  1343. included in conveying the object code work.
  1344. A "User Product" is either (1) a "consumer product", which means any
  1345. tangible personal property which is normally used for personal, family,
  1346. or household purposes, or (2) anything designed or sold for incorporation
  1347. into a dwelling. In determining whether a product is a consumer product,
  1348. doubtful cases shall be resolved in favor of coverage. For a particular
  1349. product received by a particular user, "normally used" refers to a
  1350. typical or common use of that class of product, regardless of the status
  1351. of the particular user or of the way in which the particular user
  1352. actually uses, or expects or is expected to use, the product. A product
  1353. is a consumer product regardless of whether the product has substantial
  1354. commercial, industrial or non-consumer uses, unless such uses represent
  1355. the only significant mode of use of the product.
  1356. "Installation Information" for a User Product means any methods,
  1357. procedures, authorization keys, or other information required to install
  1358. and execute modified versions of a covered work in that User Product from
  1359. a modified version of its Corresponding Source. The information must
  1360. suffice to ensure that the continued functioning of the modified object
  1361. code is in no case prevented or interfered with solely because
  1362. modification has been made.
  1363. If you convey an object code work under this section in, or with, or
  1364. specifically for use in, a User Product, and the conveying occurs as
  1365. part of a transaction in which the right of possession and use of the
  1366. User Product is transferred to the recipient in perpetuity or for a
  1367. fixed term (regardless of how the transaction is characterized), the
  1368. Corresponding Source conveyed under this section must be accompanied
  1369. by the Installation Information. But this requirement does not apply
  1370. if neither you nor any third party retains the ability to install
  1371. modified object code on the User Product (for example, the work has
  1372. been installed in ROM).
  1373. The requirement to provide Installation Information does not include a
  1374. requirement to continue to provide support service, warranty, or updates
  1375. for a work that has been modified or installed by the recipient, or for
  1376. the User Product in which it has been modified or installed. Access to a
  1377. network may be denied when the modification itself materially and
  1378. adversely affects the operation of the network or violates the rules and
  1379. protocols for communication across the network.
  1380. Corresponding Source conveyed, and Installation Information provided,
  1381. in accord with this section must be in a format that is publicly
  1382. documented (and with an implementation available to the public in
  1383. source code form), and must require no special password or key for
  1384. unpacking, reading or copying.
  1385. 7. Additional Terms.
  1386. "Additional permissions" are terms that supplement the terms of this
  1387. License by making exceptions from one or more of its conditions.
  1388. Additional permissions that are applicable to the entire Program shall
  1389. be treated as though they were included in this License, to the extent
  1390. that they are valid under applicable law. If additional permissions
  1391. apply only to part of the Program, that part may be used separately
  1392. under those permissions, but the entire Program remains governed by
  1393. this License without regard to the additional permissions.
  1394. When you convey a copy of a covered work, you may at your option
  1395. remove any additional permissions from that copy, or from any part of
  1396. it. (Additional permissions may be written to require their own
  1397. removal in certain cases when you modify the work.) You may place
  1398. additional permissions on material, added by you to a covered work,
  1399. for which you have or can give appropriate copyright permission.
  1400. Notwithstanding any other provision of this License, for material you
  1401. add to a covered work, you may (if authorized by the copyright holders of
  1402. that material) supplement the terms of this License with terms:
  1403. a) Disclaiming warranty or limiting liability differently from the
  1404. terms of sections 15 and 16 of this License; or
  1405. b) Requiring preservation of specified reasonable legal notices or
  1406. author attributions in that material or in the Appropriate Legal
  1407. Notices displayed by works containing it; or
  1408. c) Prohibiting misrepresentation of the origin of that material, or
  1409. requiring that modified versions of such material be marked in
  1410. reasonable ways as different from the original version; or
  1411. d) Limiting the use for publicity purposes of names of licensors or
  1412. authors of the material; or
  1413. e) Declining to grant rights under trademark law for use of some
  1414. trade names, trademarks, or service marks; or
  1415. f) Requiring indemnification of licensors and authors of that
  1416. material by anyone who conveys the material (or modified versions of
  1417. it) with contractual assumptions of liability to the recipient, for
  1418. any liability that these contractual assumptions directly impose on
  1419. those licensors and authors.
  1420. All other non-permissive additional terms are considered "further
  1421. restrictions" within the meaning of section 10. If the Program as you
  1422. received it, or any part of it, contains a notice stating that it is
  1423. governed by this License along with a term that is a further
  1424. restriction, you may remove that term. If a license document contains
  1425. a further restriction but permits relicensing or conveying under this
  1426. License, you may add to a covered work material governed by the terms
  1427. of that license document, provided that the further restriction does
  1428. not survive such relicensing or conveying.
  1429. If you add terms to a covered work in accord with this section, you
  1430. must place, in the relevant source files, a statement of the
  1431. additional terms that apply to those files, or a notice indicating
  1432. where to find the applicable terms.
  1433. Additional terms, permissive or non-permissive, may be stated in the
  1434. form of a separately written license, or stated as exceptions;
  1435. the above requirements apply either way.
  1436. 8. Termination.
  1437. You may not propagate or modify a covered work except as expressly
  1438. provided under this License. Any attempt otherwise to propagate or
  1439. modify it is void, and will automatically terminate your rights under
  1440. this License (including any patent licenses granted under the third
  1441. paragraph of section 11).
  1442. However, if you cease all violation of this License, then your
  1443. license from a particular copyright holder is reinstated (a)
  1444. provisionally, unless and until the copyright holder explicitly and
  1445. finally terminates your license, and (b) permanently, if the copyright
  1446. holder fails to notify you of the violation by some reasonable means
  1447. prior to 60 days after the cessation.
  1448. Moreover, your license from a particular copyright holder is
  1449. reinstated permanently if the copyright holder notifies you of the
  1450. violation by some reasonable means, this is the first time you have
  1451. received notice of violation of this License (for any work) from that
  1452. copyright holder, and you cure the violation prior to 30 days after
  1453. your receipt of the notice.
  1454. Termination of your rights under this section does not terminate the
  1455. licenses of parties who have received copies or rights from you under
  1456. this License. If your rights have been terminated and not permanently
  1457. reinstated, you do not qualify to receive new licenses for the same
  1458. material under section 10.
  1459. 9. Acceptance Not Required for Having Copies.
  1460. You are not required to accept this License in order to receive or
  1461. run a copy of the Program. Ancillary propagation of a covered work
  1462. occurring solely as a consequence of using peer-to-peer transmission
  1463. to receive a copy likewise does not require acceptance. However,
  1464. nothing other than this License grants you permission to propagate or
  1465. modify any covered work. These actions infringe copyright if you do
  1466. not accept this License. Therefore, by modifying or propagating a
  1467. covered work, you indicate your acceptance of this License to do so.
  1468. 10. Automatic Licensing of Downstream Recipients.
  1469. Each time you convey a covered work, the recipient automatically
  1470. receives a license from the original licensors, to run, modify and
  1471. propagate that work, subject to this License. You are not responsible
  1472. for enforcing compliance by third parties with this License.
  1473. An "entity transaction" is a transaction transferring control of an
  1474. organization, or substantially all assets of one, or subdividing an
  1475. organization, or merging organizations. If propagation of a covered
  1476. work results from an entity transaction, each party to that
  1477. transaction who receives a copy of the work also receives whatever
  1478. licenses to the work the party's predecessor in interest had or could
  1479. give under the previous paragraph, plus a right to possession of the
  1480. Corresponding Source of the work from the predecessor in interest, if
  1481. the predecessor has it or can get it with reasonable efforts.
  1482. You may not impose any further restrictions on the exercise of the
  1483. rights granted or affirmed under this License. For example, you may
  1484. not impose a license fee, royalty, or other charge for exercise of
  1485. rights granted under this License, and you may not initiate litigation
  1486. (including a cross-claim or counterclaim in a lawsuit) alleging that
  1487. any patent claim is infringed by making, using, selling, offering for
  1488. sale, or importing the Program or any portion of it.
  1489. 11. Patents.
  1490. A "contributor" is a copyright holder who authorizes use under this
  1491. License of the Program or a work on which the Program is based. The
  1492. work thus licensed is called the contributor's "contributor version".
  1493. A contributor's "essential patent claims" are all patent claims
  1494. owned or controlled by the contributor, whether already acquired or
  1495. hereafter acquired, that would be infringed by some manner, permitted
  1496. by this License, of making, using, or selling its contributor version,
  1497. but do not include claims that would be infringed only as a
  1498. consequence of further modification of the contributor version. For
  1499. purposes of this definition, "control" includes the right to grant
  1500. patent sublicenses in a manner consistent with the requirements of
  1501. this License.
  1502. Each contributor grants you a non-exclusive, worldwide, royalty-free
  1503. patent license under the contributor's essential patent claims, to
  1504. make, use, sell, offer for sale, import and otherwise run, modify and
  1505. propagate the contents of its contributor version.
  1506. In the following three paragraphs, a "patent license" is any express
  1507. agreement or commitment, however denominated, not to enforce a patent
  1508. (such as an express permission to practice a patent or covenant not to
  1509. sue for patent infringement). To "grant" such a patent license to a
  1510. party means to make such an agreement or commitment not to enforce a
  1511. patent against the party.
  1512. If you convey a covered work, knowingly relying on a patent license,
  1513. and the Corresponding Source of the work is not available for anyone
  1514. to copy, free of charge and under the terms of this License, through a
  1515. publicly available network server or other readily accessible means,
  1516. then you must either (1) cause the Corresponding Source to be so
  1517. available, or (2) arrange to deprive yourself of the benefit of the
  1518. patent license for this particular work, or (3) arrange, in a manner
  1519. consistent with the requirements of this License, to extend the patent
  1520. license to downstream recipients. "Knowingly relying" means you have
  1521. actual knowledge that, but for the patent license, your conveying the
  1522. covered work in a country, or your recipient's use of the covered work
  1523. in a country, would infringe one or more identifiable patents in that
  1524. country that you have reason to believe are valid.
  1525. If, pursuant to or in connection with a single transaction or
  1526. arrangement, you convey, or propagate by procuring conveyance of, a
  1527. covered work, and grant a patent license to some of the parties
  1528. receiving the covered work authorizing them to use, propagate, modify
  1529. or convey a specific copy of the covered work, then the patent license
  1530. you grant is automatically extended to all recipients of the covered
  1531. work and works based on it.
  1532. A patent license is "discriminatory" if it does not include within
  1533. the scope of its coverage, prohibits the exercise of, or is
  1534. conditioned on the non-exercise of one or more of the rights that are
  1535. specifically granted under this License. You may not convey a covered
  1536. work if you are a party to an arrangement with a third party that is
  1537. in the business of distributing software, under which you make payment
  1538. to the third party based on the extent of your activity of conveying
  1539. the work, and under which the third party grants, to any of the
  1540. parties who would receive the covered work from you, a discriminatory
  1541. patent license (a) in connection with copies of the covered work
  1542. conveyed by you (or copies made from those copies), or (b) primarily
  1543. for and in connection with specific products or compilations that
  1544. contain the covered work, unless you entered into that arrangement,
  1545. or that patent license was granted, prior to 28 March 2007.
  1546. Nothing in this License shall be construed as excluding or limiting
  1547. any implied license or other defenses to infringement that may
  1548. otherwise be available to you under applicable patent law.
  1549. 12. No Surrender of Others' Freedom.
  1550. If conditions are imposed on you (whether by court order, agreement or
  1551. otherwise) that contradict the conditions of this License, they do not
  1552. excuse you from the conditions of this License. If you cannot convey a
  1553. covered work so as to satisfy simultaneously your obligations under this
  1554. License and any other pertinent obligations, then as a consequence you may
  1555. not convey it at all. For example, if you agree to terms that obligate you
  1556. to collect a royalty for further conveying from those to whom you convey
  1557. the Program, the only way you could satisfy both those terms and this
  1558. License would be to refrain entirely from conveying the Program.
  1559. 13. Use with the GNU Affero General Public License.
  1560. Notwithstanding any other provision of this License, you have
  1561. permission to link or combine any covered work with a work licensed
  1562. under version 3 of the GNU Affero General Public License into a single
  1563. combined work, and to convey the resulting work. The terms of this
  1564. License will continue to apply to the part which is the covered work,
  1565. but the special requirements of the GNU Affero General Public License,
  1566. section 13, concerning interaction through a network will apply to the
  1567. combination as such.
  1568. 14. Revised Versions of this License.
  1569. The Free Software Foundation may publish revised and/or new versions of
  1570. the GNU General Public License from time to time. Such new versions will
  1571. be similar in spirit to the present version, but may differ in detail to
  1572. address new problems or concerns.
  1573. Each version is given a distinguishing version number. If the
  1574. Program specifies that a certain numbered version of the GNU General
  1575. Public License "or any later version" applies to it, you have the
  1576. option of following the terms and conditions either of that numbered
  1577. version or of any later version published by the Free Software
  1578. Foundation. If the Program does not specify a version number of the
  1579. GNU General Public License, you may choose any version ever published
  1580. by the Free Software Foundation.
  1581. If the Program specifies that a proxy can decide which future
  1582. versions of the GNU General Public License can be used, that proxy's
  1583. public statement of acceptance of a version permanently authorizes you
  1584. to choose that version for the Program.
  1585. Later license versions may give you additional or different
  1586. permissions. However, no additional obligations are imposed on any
  1587. author or copyright holder as a result of your choosing to follow a
  1588. later version.
  1589. 15. Disclaimer of Warranty.
  1590. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
  1591. APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  1592. HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
  1593. OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  1594. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1595. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
  1596. IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
  1597. ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  1598. 16. Limitation of Liability.
  1599. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  1600. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
  1601. THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
  1602. GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  1603. USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  1604. DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
  1605. PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
  1606. EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
  1607. SUCH DAMAGES.
  1608. 17. Interpretation of Sections 15 and 16.
  1609. If the disclaimer of warranty and limitation of liability provided
  1610. above cannot be given local legal effect according to their terms,
  1611. reviewing courts shall apply local law that most closely approximates
  1612. an absolute waiver of all civil liability in connection with the
  1613. Program, unless a warranty or assumption of liability accompanies a
  1614. copy of the Program in return for a fee.
  1615. END OF TERMS AND CONDITIONS
  1616. How to Apply These Terms to Your New Programs
  1617. If you develop a new program, and you want it to be of the greatest
  1618. possible use to the public, the best way to achieve this is to make it
  1619. free software which everyone can redistribute and change under these terms.
  1620. To do so, attach the following notices to the program. It is safest
  1621. to attach them to the start of each source file to most effectively
  1622. state the exclusion of warranty; and each file should have at least
  1623. the "copyright" line and a pointer to where the full notice is found.
  1624. <one line to give the program's name and a brief idea of what it does.>
  1625. Copyright (C) <year> <name of author>
  1626. This program is free software: you can redistribute it and/or modify
  1627. it under the terms of the GNU General Public License as published by
  1628. the Free Software Foundation, either version 3 of the License, or
  1629. (at your option) any later version.
  1630. This program is distributed in the hope that it will be useful,
  1631. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1632. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1633. GNU General Public License for more details.
  1634. You should have received a copy of the GNU General Public License
  1635. along with this program. If not, see <http://www.gnu.org/licenses/>.
  1636. Also add information on how to contact you by electronic and paper mail.
  1637. If the program does terminal interaction, make it output a short
  1638. notice like this when it starts in an interactive mode:
  1639. <program> Copyright (C) <year> <name of author>
  1640. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  1641. This is free software, and you are welcome to redistribute it
  1642. under certain conditions; type `show c' for details.
  1643. The hypothetical commands `show w' and `show c' should show the appropriate
  1644. parts of the General Public License. Of course, your program's commands
  1645. might be different; for a GUI interface, you would use an "about box".
  1646. You should also get your employer (if you work as a programmer) or school,
  1647. if any, to sign a "copyright disclaimer" for the program, if necessary.
  1648. For more information on this, and how to apply and follow the GNU GPL, see
  1649. <http://www.gnu.org/licenses/>.
  1650. The GNU General Public License does not permit incorporating your program
  1651. into proprietary programs. If your program is a subroutine library, you
  1652. may consider it more useful to permit linking proprietary applications with
  1653. the library. If this is what you want to do, use the GNU Lesser General
  1654. Public License instead of this License. But first, please read
  1655. <http://www.gnu.org/philosophy/why-not-lgpl.html>.
  1656. ----------------------------------------------------------------------
  1657. MIT License
  1658. Permission is hereby granted, free of charge, to any person obtaining a copy
  1659. of this software and associated documentation files (the "Software"), to deal
  1660. in the Software without restriction, including without limitation the rights
  1661. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1662. copies of the Software, and to permit persons to whom the Software is
  1663. furnished to do so, subject to the following conditions:
  1664. The above copyright notice and this permission notice shall be included in all
  1665. copies or substantial portions of the Software.
  1666. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1667. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1668. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1669. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1670. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1671. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1672. SOFTWARE.
  1673. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  1674. [ deflate 1.19.0 ] copyright:
  1675. Copyright 2016 Eric Biggers
  1676. Permission is hereby granted, free of charge, to any person
  1677. obtaining a copy of this software and associated documentation files
  1678. (the "Software"), to deal in the Software without restriction,
  1679. including without limitation the rights to use, copy, modify, merge,
  1680. publish, distribute, sublicense, and/or sell copies of the Software,
  1681. and to permit persons to whom the Software is furnished to do so,
  1682. subject to the following conditions:
  1683. The above copyright notice and this permission notice shall be
  1684. included in all copies or substantial portions of the Software.
  1685. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1686. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1687. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1688. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  1689. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  1690. ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  1691. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1692. SOFTWARE.
  1693. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  1694. [ openexr 3.2.1 ] copyright:
  1695. Copyright (c) Contributors to the OpenEXR Project. All rights reserved.
  1696. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  1697. 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  1698. 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.
  1699. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  1700. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1701. [ imath 3.1.9 ] copyright:
  1702. Copyright Contributors to the OpenEXR Project. All rights reserved.
  1703. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  1704. 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  1705. 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.
  1706. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  1707. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1708. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  1709. [ ffi 3.4.4 ] copyright:
  1710. libffi - Copyright (c) 1996-2022 Anthony Green, Red Hat, Inc and others.
  1711. See source files for details.
  1712. Permission is hereby granted, free of charge, to any person obtaining
  1713. a copy of this software and associated documentation files (the
  1714. ``Software''), to deal in the Software without restriction, including
  1715. without limitation the rights to use, copy, modify, merge, publish,
  1716. distribute, sublicense, and/or sell copies of the Software, and to
  1717. permit persons to whom the Software is furnished to do so, subject to
  1718. the following conditions:
  1719. The above copyright notice and this permission notice shall be
  1720. included in all copies or substantial portions of the Software.
  1721. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
  1722. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1723. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  1724. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  1725. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  1726. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  1727. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1728. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  1729. [ flif 0.4.0 ] copyright:
  1730. Apache License
  1731. Version 2.0, January 2004
  1732. http://www.apache.org/licenses/
  1733. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  1734. 1. Definitions.
  1735. "License" shall mean the terms and conditions for use, reproduction,
  1736. and distribution as defined by Sections 1 through 9 of this document.
  1737. "Licensor" shall mean the copyright owner or entity authorized by
  1738. the copyright owner that is granting the License.
  1739. "Legal Entity" shall mean the union of the acting entity and all
  1740. other entities that control, are controlled by, or are under common
  1741. control with that entity. For the purposes of this definition,
  1742. "control" means (i) the power, direct or indirect, to cause the
  1743. direction or management of such entity, whether by contract or
  1744. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  1745. outstanding shares, or (iii) beneficial ownership of such entity.
  1746. "You" (or "Your") shall mean an individual or Legal Entity
  1747. exercising permissions granted by this License.
  1748. "Source" form shall mean the preferred form for making modifications,
  1749. including but not limited to software source code, documentation
  1750. source, and configuration files.
  1751. "Object" form shall mean any form resulting from mechanical
  1752. transformation or translation of a Source form, including but
  1753. not limited to compiled object code, generated documentation,
  1754. and conversions to other media types.
  1755. "Work" shall mean the work of authorship, whether in Source or
  1756. Object form, made available under the License, as indicated by a
  1757. copyright notice that is included in or attached to the work
  1758. (an example is provided in the Appendix below).
  1759. "Derivative Works" shall mean any work, whether in Source or Object
  1760. form, that is based on (or derived from) the Work and for which the
  1761. editorial revisions, annotations, elaborations, or other modifications
  1762. represent, as a whole, an original work of authorship. For the purposes
  1763. of this License, Derivative Works shall not include works that remain
  1764. separable from, or merely link (or bind by name) to the interfaces of,
  1765. the Work and Derivative Works thereof.
  1766. "Contribution" shall mean any work of authorship, including
  1767. the original version of the Work and any modifications or additions
  1768. to that Work or Derivative Works thereof, that is intentionally
  1769. submitted to Licensor for inclusion in the Work by the copyright owner
  1770. or by an individual or Legal Entity authorized to submit on behalf of
  1771. the copyright owner. For the purposes of this definition, "submitted"
  1772. means any form of electronic, verbal, or written communication sent
  1773. to the Licensor or its representatives, including but not limited to
  1774. communication on electronic mailing lists, source code control systems,
  1775. and issue tracking systems that are managed by, or on behalf of, the
  1776. Licensor for the purpose of discussing and improving the Work, but
  1777. excluding communication that is conspicuously marked or otherwise
  1778. designated in writing by the copyright owner as "Not a Contribution."
  1779. "Contributor" shall mean Licensor and any individual or Legal Entity
  1780. on behalf of whom a Contribution has been received by Licensor and
  1781. subsequently incorporated within the Work.
  1782. 2. Grant of Copyright License. Subject to the terms and conditions of
  1783. this License, each Contributor hereby grants to You a perpetual,
  1784. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  1785. copyright license to reproduce, prepare Derivative Works of,
  1786. publicly display, publicly perform, sublicense, and distribute the
  1787. Work and such Derivative Works in Source or Object form.
  1788. 3. Grant of Patent License. Subject to the terms and conditions of
  1789. this License, each Contributor hereby grants to You a perpetual,
  1790. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  1791. (except as stated in this section) patent license to make, have made,
  1792. use, offer to sell, sell, import, and otherwise transfer the Work,
  1793. where such license applies only to those patent claims licensable
  1794. by such Contributor that are necessarily infringed by their
  1795. Contribution(s) alone or by combination of their Contribution(s)
  1796. with the Work to which such Contribution(s) was submitted. If You
  1797. institute patent litigation against any entity (including a
  1798. cross-claim or counterclaim in a lawsuit) alleging that the Work
  1799. or a Contribution incorporated within the Work constitutes direct
  1800. or contributory patent infringement, then any patent licenses
  1801. granted to You under this License for that Work shall terminate
  1802. as of the date such litigation is filed.
  1803. 4. Redistribution. You may reproduce and distribute copies of the
  1804. Work or Derivative Works thereof in any medium, with or without
  1805. modifications, and in Source or Object form, provided that You
  1806. meet the following conditions:
  1807. (a) You must give any other recipients of the Work or
  1808. Derivative Works a copy of this License; and
  1809. (b) You must cause any modified files to carry prominent notices
  1810. stating that You changed the files; and
  1811. (c) You must retain, in the Source form of any Derivative Works
  1812. that You distribute, all copyright, patent, trademark, and
  1813. attribution notices from the Source form of the Work,
  1814. excluding those notices that do not pertain to any part of
  1815. the Derivative Works; and
  1816. (d) If the Work includes a "NOTICE" text file as part of its
  1817. distribution, then any Derivative Works that You distribute must
  1818. include a readable copy of the attribution notices contained
  1819. within such NOTICE file, excluding those notices that do not
  1820. pertain to any part of the Derivative Works, in at least one
  1821. of the following places: within a NOTICE text file distributed
  1822. as part of the Derivative Works; within the Source form or
  1823. documentation, if provided along with the Derivative Works; or,
  1824. within a display generated by the Derivative Works, if and
  1825. wherever such third-party notices normally appear. The contents
  1826. of the NOTICE file are for informational purposes only and
  1827. do not modify the License. You may add Your own attribution
  1828. notices within Derivative Works that You distribute, alongside
  1829. or as an addendum to the NOTICE text from the Work, provided
  1830. that such additional attribution notices cannot be construed
  1831. as modifying the License.
  1832. You may add Your own copyright statement to Your modifications and
  1833. may provide additional or different license terms and conditions
  1834. for use, reproduction, or distribution of Your modifications, or
  1835. for any such Derivative Works as a whole, provided Your use,
  1836. reproduction, and distribution of the Work otherwise complies with
  1837. the conditions stated in this License.
  1838. 5. Submission of Contributions. Unless You explicitly state otherwise,
  1839. any Contribution intentionally submitted for inclusion in the Work
  1840. by You to the Licensor shall be under the terms and conditions of
  1841. this License, without any additional terms or conditions.
  1842. Notwithstanding the above, nothing herein shall supersede or modify
  1843. the terms of any separate license agreement you may have executed
  1844. with Licensor regarding such Contributions.
  1845. 6. Trademarks. This License does not grant permission to use the trade
  1846. names, trademarks, service marks, or product names of the Licensor,
  1847. except as required for reasonable and customary use in describing the
  1848. origin of the Work and reproducing the content of the NOTICE file.
  1849. 7. Disclaimer of Warranty. Unless required by applicable law or
  1850. agreed to in writing, Licensor provides the Work (and each
  1851. Contributor provides its Contributions) on an "AS IS" BASIS,
  1852. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  1853. implied, including, without limitation, any warranties or conditions
  1854. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  1855. PARTICULAR PURPOSE. You are solely responsible for determining the
  1856. appropriateness of using or redistributing the Work and assume any
  1857. risks associated with Your exercise of permissions under this License.
  1858. 8. Limitation of Liability. In no event and under no legal theory,
  1859. whether in tort (including negligence), contract, or otherwise,
  1860. unless required by applicable law (such as deliberate and grossly
  1861. negligent acts) or agreed to in writing, shall any Contributor be
  1862. liable to You for damages, including any direct, indirect, special,
  1863. incidental, or consequential damages of any character arising as a
  1864. result of this License or out of the use or inability to use the
  1865. Work (including but not limited to damages for loss of goodwill,
  1866. work stoppage, computer failure or malfunction, or any and all
  1867. other commercial damages or losses), even if such Contributor
  1868. has been advised of the possibility of such damages.
  1869. 9. Accepting Warranty or Additional Liability. While redistributing
  1870. the Work or Derivative Works thereof, You may choose to offer,
  1871. and charge a fee for, acceptance of support, warranty, indemnity,
  1872. or other liability obligations and/or rights consistent with this
  1873. License. However, in accepting such obligations, You may act only
  1874. on Your own behalf and on Your sole responsibility, not on behalf
  1875. of any other Contributor, and only if You agree to indemnify,
  1876. defend, and hold each Contributor harmless for any liability
  1877. incurred by, or claims asserted against, such Contributor by reason
  1878. of your accepting any such warranty or additional liability.
  1879. END OF TERMS AND CONDITIONS
  1880. APPENDIX: How to apply the Apache License to your work.
  1881. To apply the Apache License to your work, attach the following
  1882. boilerplate notice, with the fields enclosed by brackets "[]"
  1883. replaced with your own identifying information. (Don't include
  1884. the brackets!) The text should be enclosed in the appropriate
  1885. comment syntax for the file format. We also recommend that a
  1886. file or class name and description of purpose be included on the
  1887. same "printed page" as the copyright notice for easier
  1888. identification within third-party archives.
  1889. Copyright [yyyy] [name of copyright owner]
  1890. Licensed under the Apache License, Version 2.0 (the "License");
  1891. you may not use this file except in compliance with the License.
  1892. You may obtain a copy of the License at
  1893. http://www.apache.org/licenses/LICENSE-2.0
  1894. Unless required by applicable law or agreed to in writing, software
  1895. distributed under the License is distributed on an "AS IS" BASIS,
  1896. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  1897. See the License for the specific language governing permissions and
  1898. limitations under the License.
  1899. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  1900. [ freetype 2.13.2 ] copyright:
  1901. The FreeType Project LICENSE
  1902. ----------------------------
  1903. 2006-Jan-27
  1904. Copyright 1996-2002, 2006 by
  1905. David Turner, Robert Wilhelm, and Werner Lemberg
  1906. Introduction
  1907. ============
  1908. The FreeType Project is distributed in several archive packages;
  1909. some of them may contain, in addition to the FreeType font engine,
  1910. various tools and contributions which rely on, or relate to, the
  1911. FreeType Project.
  1912. This license applies to all files found in such packages, and
  1913. which do not fall under their own explicit license. The license
  1914. affects thus the FreeType font engine, the test programs,
  1915. documentation and makefiles, at the very least.
  1916. This license was inspired by the BSD, Artistic, and IJG
  1917. (Independent JPEG Group) licenses, which all encourage inclusion
  1918. and use of free software in commercial and freeware products
  1919. alike. As a consequence, its main points are that:
  1920. o We don't promise that this software works. However, we will be
  1921. interested in any kind of bug reports. (`as is' distribution)
  1922. o You can use this software for whatever you want, in parts or
  1923. full form, without having to pay us. (`royalty-free' usage)
  1924. o You may not pretend that you wrote this software. If you use
  1925. it, or only parts of it, in a program, you must acknowledge
  1926. somewhere in your documentation that you have used the
  1927. FreeType code. (`credits')
  1928. We specifically permit and encourage the inclusion of this
  1929. software, with or without modifications, in commercial products.
  1930. We disclaim all warranties covering The FreeType Project and
  1931. assume no liability related to The FreeType Project.
  1932. Finally, many people asked us for a preferred form for a
  1933. credit/disclaimer to use in compliance with this license. We thus
  1934. encourage you to use the following text:
  1935. """
  1936. Portions of this software are copyright © <year> The FreeType
  1937. Project (www.freetype.org). All rights reserved.
  1938. """
  1939. Please replace <year> with the value from the FreeType version you
  1940. actually use.
  1941. Legal Terms
  1942. ===========
  1943. 0. Definitions
  1944. --------------
  1945. Throughout this license, the terms `package', `FreeType Project',
  1946. and `FreeType archive' refer to the set of files originally
  1947. distributed by the authors (David Turner, Robert Wilhelm, and
  1948. Werner Lemberg) as the `FreeType Project', be they named as alpha,
  1949. beta or final release.
  1950. `You' refers to the licensee, or person using the project, where
  1951. `using' is a generic term including compiling the project's source
  1952. code as well as linking it to form a `program' or `executable'.
  1953. This program is referred to as `a program using the FreeType
  1954. engine'.
  1955. This license applies to all files distributed in the original
  1956. FreeType Project, including all source code, binaries and
  1957. documentation, unless otherwise stated in the file in its
  1958. original, unmodified form as distributed in the original archive.
  1959. If you are unsure whether or not a particular file is covered by
  1960. this license, you must contact us to verify this.
  1961. The FreeType Project is copyright (C) 1996-2000 by David Turner,
  1962. Robert Wilhelm, and Werner Lemberg. All rights reserved except as
  1963. specified below.
  1964. 1. No Warranty
  1965. --------------
  1966. THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
  1967. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  1968. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1969. PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
  1970. BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
  1971. USE, OF THE FREETYPE PROJECT.
  1972. 2. Redistribution
  1973. -----------------
  1974. This license grants a worldwide, royalty-free, perpetual and
  1975. irrevocable right and license to use, execute, perform, compile,
  1976. display, copy, create derivative works of, distribute and
  1977. sublicense the FreeType Project (in both source and object code
  1978. forms) and derivative works thereof for any purpose; and to
  1979. authorize others to exercise some or all of the rights granted
  1980. herein, subject to the following conditions:
  1981. o Redistribution of source code must retain this license file
  1982. (`FTL.TXT') unaltered; any additions, deletions or changes to
  1983. the original files must be clearly indicated in accompanying
  1984. documentation. The copyright notices of the unaltered,
  1985. original files must be preserved in all copies of source
  1986. files.
  1987. o Redistribution in binary form must provide a disclaimer that
  1988. states that the software is based in part of the work of the
  1989. FreeType Team, in the distribution documentation. We also
  1990. encourage you to put an URL to the FreeType web page in your
  1991. documentation, though this isn't mandatory.
  1992. These conditions apply to any software derived from or based on
  1993. the FreeType Project, not just the unmodified files. If you use
  1994. our work, you must acknowledge us. However, no fee need be paid
  1995. to us.
  1996. 3. Advertising
  1997. --------------
  1998. Neither the FreeType authors and contributors nor you shall use
  1999. the name of the other for commercial, advertising, or promotional
  2000. purposes without specific prior written permission.
  2001. We suggest, but do not require, that you use one or more of the
  2002. following phrases to refer to this software in your documentation
  2003. or advertising materials: `FreeType Project', `FreeType Engine',
  2004. `FreeType library', or `FreeType Distribution'.
  2005. As you have not signed this license, you are not required to
  2006. accept it. However, as the FreeType Project is copyrighted
  2007. material, only this license, or another one contracted with the
  2008. authors, grants you the right to use, distribute, and modify it.
  2009. Therefore, by using, distributing, or modifying the FreeType
  2010. Project, you indicate that you understand and accept all the terms
  2011. of this license.
  2012. 4. Contacts
  2013. -----------
  2014. There are two mailing lists related to FreeType:
  2015. o freetype@nongnu.org
  2016. Discusses general use and applications of FreeType, as well as
  2017. future and wanted additions to the library and distribution.
  2018. If you are looking for support, start in this list if you
  2019. haven't found anything to help you in the documentation.
  2020. o freetype-devel@nongnu.org
  2021. Discusses bugs, as well as engine internals, design issues,
  2022. specific licenses, porting, etc.
  2023. Our home page can be found at
  2024. https://www.freetype.org
  2025. --- end of FTL.TXT ---
  2026. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2027. [ fribidi 1.0.13 ] copyright:
  2028. GNU LESSER GENERAL PUBLIC LICENSE
  2029. Version 2.1, February 1999
  2030. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  2031. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  2032. Everyone is permitted to copy and distribute verbatim copies
  2033. of this license document, but changing it is not allowed.
  2034. [This is the first released version of the Lesser GPL. It also counts
  2035. as the successor of the GNU Library Public License, version 2, hence
  2036. the version number 2.1.]
  2037. Preamble
  2038. The licenses for most software are designed to take away your
  2039. freedom to share and change it. By contrast, the GNU General Public
  2040. Licenses are intended to guarantee your freedom to share and change
  2041. free software--to make sure the software is free for all its users.
  2042. This license, the Lesser General Public License, applies to some
  2043. specially designated software packages--typically libraries--of the
  2044. Free Software Foundation and other authors who decide to use it. You
  2045. can use it too, but we suggest you first think carefully about whether
  2046. this license or the ordinary General Public License is the better
  2047. strategy to use in any particular case, based on the explanations below.
  2048. When we speak of free software, we are referring to freedom of use,
  2049. not price. Our General Public Licenses are designed to make sure that
  2050. you have the freedom to distribute copies of free software (and charge
  2051. for this service if you wish); that you receive source code or can get
  2052. it if you want it; that you can change the software and use pieces of
  2053. it in new free programs; and that you are informed that you can do
  2054. these things.
  2055. To protect your rights, we need to make restrictions that forbid
  2056. distributors to deny you these rights or to ask you to surrender these
  2057. rights. These restrictions translate to certain responsibilities for
  2058. you if you distribute copies of the library or if you modify it.
  2059. For example, if you distribute copies of the library, whether gratis
  2060. or for a fee, you must give the recipients all the rights that we gave
  2061. you. You must make sure that they, too, receive or can get the source
  2062. code. If you link other code with the library, you must provide
  2063. complete object files to the recipients, so that they can relink them
  2064. with the library after making changes to the library and recompiling
  2065. it. And you must show them these terms so they know their rights.
  2066. We protect your rights with a two-step method: (1) we copyright the
  2067. library, and (2) we offer you this license, which gives you legal
  2068. permission to copy, distribute and/or modify the library.
  2069. To protect each distributor, we want to make it very clear that
  2070. there is no warranty for the free library. Also, if the library is
  2071. modified by someone else and passed on, the recipients should know
  2072. that what they have is not the original version, so that the original
  2073. author's reputation will not be affected by problems that might be
  2074. introduced by others.
  2075. Finally, software patents pose a constant threat to the existence of
  2076. any free program. We wish to make sure that a company cannot
  2077. effectively restrict the users of a free program by obtaining a
  2078. restrictive license from a patent holder. Therefore, we insist that
  2079. any patent license obtained for a version of the library must be
  2080. consistent with the full freedom of use specified in this license.
  2081. Most GNU software, including some libraries, is covered by the
  2082. ordinary GNU General Public License. This license, the GNU Lesser
  2083. General Public License, applies to certain designated libraries, and
  2084. is quite different from the ordinary General Public License. We use
  2085. this license for certain libraries in order to permit linking those
  2086. libraries into non-free programs.
  2087. When a program is linked with a library, whether statically or using
  2088. a shared library, the combination of the two is legally speaking a
  2089. combined work, a derivative of the original library. The ordinary
  2090. General Public License therefore permits such linking only if the
  2091. entire combination fits its criteria of freedom. The Lesser General
  2092. Public License permits more lax criteria for linking other code with
  2093. the library.
  2094. We call this license the "Lesser" General Public License because it
  2095. does Less to protect the user's freedom than the ordinary General
  2096. Public License. It also provides other free software developers Less
  2097. of an advantage over competing non-free programs. These disadvantages
  2098. are the reason we use the ordinary General Public License for many
  2099. libraries. However, the Lesser license provides advantages in certain
  2100. special circumstances.
  2101. For example, on rare occasions, there may be a special need to
  2102. encourage the widest possible use of a certain library, so that it becomes
  2103. a de-facto standard. To achieve this, non-free programs must be
  2104. allowed to use the library. A more frequent case is that a free
  2105. library does the same job as widely used non-free libraries. In this
  2106. case, there is little to gain by limiting the free library to free
  2107. software only, so we use the Lesser General Public License.
  2108. In other cases, permission to use a particular library in non-free
  2109. programs enables a greater number of people to use a large body of
  2110. free software. For example, permission to use the GNU C Library in
  2111. non-free programs enables many more people to use the whole GNU
  2112. operating system, as well as its variant, the GNU/Linux operating
  2113. system.
  2114. Although the Lesser General Public License is Less protective of the
  2115. users' freedom, it does ensure that the user of a program that is
  2116. linked with the Library has the freedom and the wherewithal to run
  2117. that program using a modified version of the Library.
  2118. The precise terms and conditions for copying, distribution and
  2119. modification follow. Pay close attention to the difference between a
  2120. "work based on the library" and a "work that uses the library". The
  2121. former contains code derived from the library, whereas the latter must
  2122. be combined with the library in order to run.
  2123. GNU LESSER GENERAL PUBLIC LICENSE
  2124. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  2125. 0. This License Agreement applies to any software library or other
  2126. program which contains a notice placed by the copyright holder or
  2127. other authorized party saying it may be distributed under the terms of
  2128. this Lesser General Public License (also called "this License").
  2129. Each licensee is addressed as "you".
  2130. A "library" means a collection of software functions and/or data
  2131. prepared so as to be conveniently linked with application programs
  2132. (which use some of those functions and data) to form executables.
  2133. The "Library", below, refers to any such software library or work
  2134. which has been distributed under these terms. A "work based on the
  2135. Library" means either the Library or any derivative work under
  2136. copyright law: that is to say, a work containing the Library or a
  2137. portion of it, either verbatim or with modifications and/or translated
  2138. straightforwardly into another language. (Hereinafter, translation is
  2139. included without limitation in the term "modification".)
  2140. "Source code" for a work means the preferred form of the work for
  2141. making modifications to it. For a library, complete source code means
  2142. all the source code for all modules it contains, plus any associated
  2143. interface definition files, plus the scripts used to control compilation
  2144. and installation of the library.
  2145. Activities other than copying, distribution and modification are not
  2146. covered by this License; they are outside its scope. The act of
  2147. running a program using the Library is not restricted, and output from
  2148. such a program is covered only if its contents constitute a work based
  2149. on the Library (independent of the use of the Library in a tool for
  2150. writing it). Whether that is true depends on what the Library does
  2151. and what the program that uses the Library does.
  2152. 1. You may copy and distribute verbatim copies of the Library's
  2153. complete source code as you receive it, in any medium, provided that
  2154. you conspicuously and appropriately publish on each copy an
  2155. appropriate copyright notice and disclaimer of warranty; keep intact
  2156. all the notices that refer to this License and to the absence of any
  2157. warranty; and distribute a copy of this License along with the
  2158. Library.
  2159. You may charge a fee for the physical act of transferring a copy,
  2160. and you may at your option offer warranty protection in exchange for a
  2161. fee.
  2162. 2. You may modify your copy or copies of the Library or any portion
  2163. of it, thus forming a work based on the Library, and copy and
  2164. distribute such modifications or work under the terms of Section 1
  2165. above, provided that you also meet all of these conditions:
  2166. a) The modified work must itself be a software library.
  2167. b) You must cause the files modified to carry prominent notices
  2168. stating that you changed the files and the date of any change.
  2169. c) You must cause the whole of the work to be licensed at no
  2170. charge to all third parties under the terms of this License.
  2171. d) If a facility in the modified Library refers to a function or a
  2172. table of data to be supplied by an application program that uses
  2173. the facility, other than as an argument passed when the facility
  2174. is invoked, then you must make a good faith effort to ensure that,
  2175. in the event an application does not supply such function or
  2176. table, the facility still operates, and performs whatever part of
  2177. its purpose remains meaningful.
  2178. (For example, a function in a library to compute square roots has
  2179. a purpose that is entirely well-defined independent of the
  2180. application. Therefore, Subsection 2d requires that any
  2181. application-supplied function or table used by this function must
  2182. be optional: if the application does not supply it, the square
  2183. root function must still compute square roots.)
  2184. These requirements apply to the modified work as a whole. If
  2185. identifiable sections of that work are not derived from the Library,
  2186. and can be reasonably considered independent and separate works in
  2187. themselves, then this License, and its terms, do not apply to those
  2188. sections when you distribute them as separate works. But when you
  2189. distribute the same sections as part of a whole which is a work based
  2190. on the Library, the distribution of the whole must be on the terms of
  2191. this License, whose permissions for other licensees extend to the
  2192. entire whole, and thus to each and every part regardless of who wrote
  2193. it.
  2194. Thus, it is not the intent of this section to claim rights or contest
  2195. your rights to work written entirely by you; rather, the intent is to
  2196. exercise the right to control the distribution of derivative or
  2197. collective works based on the Library.
  2198. In addition, mere aggregation of another work not based on the Library
  2199. with the Library (or with a work based on the Library) on a volume of
  2200. a storage or distribution medium does not bring the other work under
  2201. the scope of this License.
  2202. 3. You may opt to apply the terms of the ordinary GNU General Public
  2203. License instead of this License to a given copy of the Library. To do
  2204. this, you must alter all the notices that refer to this License, so
  2205. that they refer to the ordinary GNU General Public License, version 2,
  2206. instead of to this License. (If a newer version than version 2 of the
  2207. ordinary GNU General Public License has appeared, then you can specify
  2208. that version instead if you wish.) Do not make any other change in
  2209. these notices.
  2210. Once this change is made in a given copy, it is irreversible for
  2211. that copy, so the ordinary GNU General Public License applies to all
  2212. subsequent copies and derivative works made from that copy.
  2213. This option is useful when you wish to copy part of the code of
  2214. the Library into a program that is not a library.
  2215. 4. You may copy and distribute the Library (or a portion or
  2216. derivative of it, under Section 2) in object code or executable form
  2217. under the terms of Sections 1 and 2 above provided that you accompany
  2218. it with the complete corresponding machine-readable source code, which
  2219. must be distributed under the terms of Sections 1 and 2 above on a
  2220. medium customarily used for software interchange.
  2221. If distribution of object code is made by offering access to copy
  2222. from a designated place, then offering equivalent access to copy the
  2223. source code from the same place satisfies the requirement to
  2224. distribute the source code, even though third parties are not
  2225. compelled to copy the source along with the object code.
  2226. 5. A program that contains no derivative of any portion of the
  2227. Library, but is designed to work with the Library by being compiled or
  2228. linked with it, is called a "work that uses the Library". Such a
  2229. work, in isolation, is not a derivative work of the Library, and
  2230. therefore falls outside the scope of this License.
  2231. However, linking a "work that uses the Library" with the Library
  2232. creates an executable that is a derivative of the Library (because it
  2233. contains portions of the Library), rather than a "work that uses the
  2234. library". The executable is therefore covered by this License.
  2235. Section 6 states terms for distribution of such executables.
  2236. When a "work that uses the Library" uses material from a header file
  2237. that is part of the Library, the object code for the work may be a
  2238. derivative work of the Library even though the source code is not.
  2239. Whether this is true is especially significant if the work can be
  2240. linked without the Library, or if the work is itself a library. The
  2241. threshold for this to be true is not precisely defined by law.
  2242. If such an object file uses only numerical parameters, data
  2243. structure layouts and accessors, and small macros and small inline
  2244. functions (ten lines or less in length), then the use of the object
  2245. file is unrestricted, regardless of whether it is legally a derivative
  2246. work. (Executables containing this object code plus portions of the
  2247. Library will still fall under Section 6.)
  2248. Otherwise, if the work is a derivative of the Library, you may
  2249. distribute the object code for the work under the terms of Section 6.
  2250. Any executables containing that work also fall under Section 6,
  2251. whether or not they are linked directly with the Library itself.
  2252. 6. As an exception to the Sections above, you may also combine or
  2253. link a "work that uses the Library" with the Library to produce a
  2254. work containing portions of the Library, and distribute that work
  2255. under terms of your choice, provided that the terms permit
  2256. modification of the work for the customer's own use and reverse
  2257. engineering for debugging such modifications.
  2258. You must give prominent notice with each copy of the work that the
  2259. Library is used in it and that the Library and its use are covered by
  2260. this License. You must supply a copy of this License. If the work
  2261. during execution displays copyright notices, you must include the
  2262. copyright notice for the Library among them, as well as a reference
  2263. directing the user to the copy of this License. Also, you must do one
  2264. of these things:
  2265. a) Accompany the work with the complete corresponding
  2266. machine-readable source code for the Library including whatever
  2267. changes were used in the work (which must be distributed under
  2268. Sections 1 and 2 above); and, if the work is an executable linked
  2269. with the Library, with the complete machine-readable "work that
  2270. uses the Library", as object code and/or source code, so that the
  2271. user can modify the Library and then relink to produce a modified
  2272. executable containing the modified Library. (It is understood
  2273. that the user who changes the contents of definitions files in the
  2274. Library will not necessarily be able to recompile the application
  2275. to use the modified definitions.)
  2276. b) Use a suitable shared library mechanism for linking with the
  2277. Library. A suitable mechanism is one that (1) uses at run time a
  2278. copy of the library already present on the user's computer system,
  2279. rather than copying library functions into the executable, and (2)
  2280. will operate properly with a modified version of the library, if
  2281. the user installs one, as long as the modified version is
  2282. interface-compatible with the version that the work was made with.
  2283. c) Accompany the work with a written offer, valid for at
  2284. least three years, to give the same user the materials
  2285. specified in Subsection 6a, above, for a charge no more
  2286. than the cost of performing this distribution.
  2287. d) If distribution of the work is made by offering access to copy
  2288. from a designated place, offer equivalent access to copy the above
  2289. specified materials from the same place.
  2290. e) Verify that the user has already received a copy of these
  2291. materials or that you have already sent this user a copy.
  2292. For an executable, the required form of the "work that uses the
  2293. Library" must include any data and utility programs needed for
  2294. reproducing the executable from it. However, as a special exception,
  2295. the materials to be distributed need not include anything that is
  2296. normally distributed (in either source or binary form) with the major
  2297. components (compiler, kernel, and so on) of the operating system on
  2298. which the executable runs, unless that component itself accompanies
  2299. the executable.
  2300. It may happen that this requirement contradicts the license
  2301. restrictions of other proprietary libraries that do not normally
  2302. accompany the operating system. Such a contradiction means you cannot
  2303. use both them and the Library together in an executable that you
  2304. distribute.
  2305. 7. You may place library facilities that are a work based on the
  2306. Library side-by-side in a single library together with other library
  2307. facilities not covered by this License, and distribute such a combined
  2308. library, provided that the separate distribution of the work based on
  2309. the Library and of the other library facilities is otherwise
  2310. permitted, and provided that you do these two things:
  2311. a) Accompany the combined library with a copy of the same work
  2312. based on the Library, uncombined with any other library
  2313. facilities. This must be distributed under the terms of the
  2314. Sections above.
  2315. b) Give prominent notice with the combined library of the fact
  2316. that part of it is a work based on the Library, and explaining
  2317. where to find the accompanying uncombined form of the same work.
  2318. 8. You may not copy, modify, sublicense, link with, or distribute
  2319. the Library except as expressly provided under this License. Any
  2320. attempt otherwise to copy, modify, sublicense, link with, or
  2321. distribute the Library is void, and will automatically terminate your
  2322. rights under this License. However, parties who have received copies,
  2323. or rights, from you under this License will not have their licenses
  2324. terminated so long as such parties remain in full compliance.
  2325. 9. You are not required to accept this License, since you have not
  2326. signed it. However, nothing else grants you permission to modify or
  2327. distribute the Library or its derivative works. These actions are
  2328. prohibited by law if you do not accept this License. Therefore, by
  2329. modifying or distributing the Library (or any work based on the
  2330. Library), you indicate your acceptance of this License to do so, and
  2331. all its terms and conditions for copying, distributing or modifying
  2332. the Library or works based on it.
  2333. 10. Each time you redistribute the Library (or any work based on the
  2334. Library), the recipient automatically receives a license from the
  2335. original licensor to copy, distribute, link with or modify the Library
  2336. subject to these terms and conditions. You may not impose any further
  2337. restrictions on the recipients' exercise of the rights granted herein.
  2338. You are not responsible for enforcing compliance by third parties with
  2339. this License.
  2340. 11. If, as a consequence of a court judgment or allegation of patent
  2341. infringement or for any other reason (not limited to patent issues),
  2342. conditions are imposed on you (whether by court order, agreement or
  2343. otherwise) that contradict the conditions of this License, they do not
  2344. excuse you from the conditions of this License. If you cannot
  2345. distribute so as to satisfy simultaneously your obligations under this
  2346. License and any other pertinent obligations, then as a consequence you
  2347. may not distribute the Library at all. For example, if a patent
  2348. license would not permit royalty-free redistribution of the Library by
  2349. all those who receive copies directly or indirectly through you, then
  2350. the only way you could satisfy both it and this License would be to
  2351. refrain entirely from distribution of the Library.
  2352. If any portion of this section is held invalid or unenforceable under any
  2353. particular circumstance, the balance of the section is intended to apply,
  2354. and the section as a whole is intended to apply in other circumstances.
  2355. It is not the purpose of this section to induce you to infringe any
  2356. patents or other property right claims or to contest validity of any
  2357. such claims; this section has the sole purpose of protecting the
  2358. integrity of the free software distribution system which is
  2359. implemented by public license practices. Many people have made
  2360. generous contributions to the wide range of software distributed
  2361. through that system in reliance on consistent application of that
  2362. system; it is up to the author/donor to decide if he or she is willing
  2363. to distribute software through any other system and a licensee cannot
  2364. impose that choice.
  2365. This section is intended to make thoroughly clear what is believed to
  2366. be a consequence of the rest of this License.
  2367. 12. If the distribution and/or use of the Library is restricted in
  2368. certain countries either by patents or by copyrighted interfaces, the
  2369. original copyright holder who places the Library under this License may add
  2370. an explicit geographical distribution limitation excluding those countries,
  2371. so that distribution is permitted only in or among countries not thus
  2372. excluded. In such case, this License incorporates the limitation as if
  2373. written in the body of this License.
  2374. 13. The Free Software Foundation may publish revised and/or new
  2375. versions of the Lesser General Public License from time to time.
  2376. Such new versions will be similar in spirit to the present version,
  2377. but may differ in detail to address new problems or concerns.
  2378. Each version is given a distinguishing version number. If the Library
  2379. specifies a version number of this License which applies to it and
  2380. "any later version", you have the option of following the terms and
  2381. conditions either of that version or of any later version published by
  2382. the Free Software Foundation. If the Library does not specify a
  2383. license version number, you may choose any version ever published by
  2384. the Free Software Foundation.
  2385. 14. If you wish to incorporate parts of the Library into other free
  2386. programs whose distribution conditions are incompatible with these,
  2387. write to the author to ask for permission. For software which is
  2388. copyrighted by the Free Software Foundation, write to the Free
  2389. Software Foundation; we sometimes make exceptions for this. Our
  2390. decision will be guided by the two goals of preserving the free status
  2391. of all derivatives of our free software and of promoting the sharing
  2392. and reuse of software generally.
  2393. NO WARRANTY
  2394. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  2395. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  2396. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  2397. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  2398. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  2399. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  2400. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  2401. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  2402. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  2403. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  2404. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  2405. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  2406. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  2407. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  2408. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  2409. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  2410. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  2411. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  2412. DAMAGES.
  2413. END OF TERMS AND CONDITIONS
  2414. How to Apply These Terms to Your New Libraries
  2415. If you develop a new library, and you want it to be of the greatest
  2416. possible use to the public, we recommend making it free software that
  2417. everyone can redistribute and change. You can do so by permitting
  2418. redistribution under these terms (or, alternatively, under the terms of the
  2419. ordinary General Public License).
  2420. To apply these terms, attach the following notices to the library. It is
  2421. safest to attach them to the start of each source file to most effectively
  2422. convey the exclusion of warranty; and each file should have at least the
  2423. "copyright" line and a pointer to where the full notice is found.
  2424. <one line to give the library's name and a brief idea of what it does.>
  2425. Copyright (C) <year> <name of author>
  2426. This library is free software; you can redistribute it and/or
  2427. modify it under the terms of the GNU Lesser General Public
  2428. License as published by the Free Software Foundation; either
  2429. version 2.1 of the License, or (at your option) any later version.
  2430. This library is distributed in the hope that it will be useful,
  2431. but WITHOUT ANY WARRANTY; without even the implied warranty of
  2432. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  2433. Lesser General Public License for more details.
  2434. You should have received a copy of the GNU Lesser General Public
  2435. License along with this library; if not, write to the Free Software
  2436. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  2437. Also add information on how to contact you by electronic and paper mail.
  2438. You should also get your employer (if you work as a programmer) or your
  2439. school, if any, to sign a "copyright disclaimer" for the library, if
  2440. necessary. Here is a sample; alter the names:
  2441. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  2442. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  2443. <signature of Ty Coon>, 1 April 1990
  2444. Ty Coon, President of Vice
  2445. That's all there is to it!
  2446. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2447. [ glib 2.64.3 ] copyright:
  2448. GNU LESSER GENERAL PUBLIC LICENSE
  2449. Version 2.1, February 1999
  2450. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  2451. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  2452. Everyone is permitted to copy and distribute verbatim copies
  2453. of this license document, but changing it is not allowed.
  2454. [This is the first released version of the Lesser GPL. It also counts
  2455. as the successor of the GNU Library Public License, version 2, hence
  2456. the version number 2.1.]
  2457. Preamble
  2458. The licenses for most software are designed to take away your
  2459. freedom to share and change it. By contrast, the GNU General Public
  2460. Licenses are intended to guarantee your freedom to share and change
  2461. free software--to make sure the software is free for all its users.
  2462. This license, the Lesser General Public License, applies to some
  2463. specially designated software packages--typically libraries--of the
  2464. Free Software Foundation and other authors who decide to use it. You
  2465. can use it too, but we suggest you first think carefully about whether
  2466. this license or the ordinary General Public License is the better
  2467. strategy to use in any particular case, based on the explanations below.
  2468. When we speak of free software, we are referring to freedom of use,
  2469. not price. Our General Public Licenses are designed to make sure that
  2470. you have the freedom to distribute copies of free software (and charge
  2471. for this service if you wish); that you receive source code or can get
  2472. it if you want it; that you can change the software and use pieces of
  2473. it in new free programs; and that you are informed that you can do
  2474. these things.
  2475. To protect your rights, we need to make restrictions that forbid
  2476. distributors to deny you these rights or to ask you to surrender these
  2477. rights. These restrictions translate to certain responsibilities for
  2478. you if you distribute copies of the library or if you modify it.
  2479. For example, if you distribute copies of the library, whether gratis
  2480. or for a fee, you must give the recipients all the rights that we gave
  2481. you. You must make sure that they, too, receive or can get the source
  2482. code. If you link other code with the library, you must provide
  2483. complete object files to the recipients, so that they can relink them
  2484. with the library after making changes to the library and recompiling
  2485. it. And you must show them these terms so they know their rights.
  2486. We protect your rights with a two-step method: (1) we copyright the
  2487. library, and (2) we offer you this license, which gives you legal
  2488. permission to copy, distribute and/or modify the library.
  2489. To protect each distributor, we want to make it very clear that
  2490. there is no warranty for the free library. Also, if the library is
  2491. modified by someone else and passed on, the recipients should know
  2492. that what they have is not the original version, so that the original
  2493. author's reputation will not be affected by problems that might be
  2494. introduced by others.
  2495. Finally, software patents pose a constant threat to the existence of
  2496. any free program. We wish to make sure that a company cannot
  2497. effectively restrict the users of a free program by obtaining a
  2498. restrictive license from a patent holder. Therefore, we insist that
  2499. any patent license obtained for a version of the library must be
  2500. consistent with the full freedom of use specified in this license.
  2501. Most GNU software, including some libraries, is covered by the
  2502. ordinary GNU General Public License. This license, the GNU Lesser
  2503. General Public License, applies to certain designated libraries, and
  2504. is quite different from the ordinary General Public License. We use
  2505. this license for certain libraries in order to permit linking those
  2506. libraries into non-free programs.
  2507. When a program is linked with a library, whether statically or using
  2508. a shared library, the combination of the two is legally speaking a
  2509. combined work, a derivative of the original library. The ordinary
  2510. General Public License therefore permits such linking only if the
  2511. entire combination fits its criteria of freedom. The Lesser General
  2512. Public License permits more lax criteria for linking other code with
  2513. the library.
  2514. We call this license the "Lesser" General Public License because it
  2515. does Less to protect the user's freedom than the ordinary General
  2516. Public License. It also provides other free software developers Less
  2517. of an advantage over competing non-free programs. These disadvantages
  2518. are the reason we use the ordinary General Public License for many
  2519. libraries. However, the Lesser license provides advantages in certain
  2520. special circumstances.
  2521. For example, on rare occasions, there may be a special need to
  2522. encourage the widest possible use of a certain library, so that it becomes
  2523. a de-facto standard. To achieve this, non-free programs must be
  2524. allowed to use the library. A more frequent case is that a free
  2525. library does the same job as widely used non-free libraries. In this
  2526. case, there is little to gain by limiting the free library to free
  2527. software only, so we use the Lesser General Public License.
  2528. In other cases, permission to use a particular library in non-free
  2529. programs enables a greater number of people to use a large body of
  2530. free software. For example, permission to use the GNU C Library in
  2531. non-free programs enables many more people to use the whole GNU
  2532. operating system, as well as its variant, the GNU/Linux operating
  2533. system.
  2534. Although the Lesser General Public License is Less protective of the
  2535. users' freedom, it does ensure that the user of a program that is
  2536. linked with the Library has the freedom and the wherewithal to run
  2537. that program using a modified version of the Library.
  2538. The precise terms and conditions for copying, distribution and
  2539. modification follow. Pay close attention to the difference between a
  2540. "work based on the library" and a "work that uses the library". The
  2541. former contains code derived from the library, whereas the latter must
  2542. be combined with the library in order to run.
  2543. GNU LESSER GENERAL PUBLIC LICENSE
  2544. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  2545. 0. This License Agreement applies to any software library or other
  2546. program which contains a notice placed by the copyright holder or
  2547. other authorized party saying it may be distributed under the terms of
  2548. this Lesser General Public License (also called "this License").
  2549. Each licensee is addressed as "you".
  2550. A "library" means a collection of software functions and/or data
  2551. prepared so as to be conveniently linked with application programs
  2552. (which use some of those functions and data) to form executables.
  2553. The "Library", below, refers to any such software library or work
  2554. which has been distributed under these terms. A "work based on the
  2555. Library" means either the Library or any derivative work under
  2556. copyright law: that is to say, a work containing the Library or a
  2557. portion of it, either verbatim or with modifications and/or translated
  2558. straightforwardly into another language. (Hereinafter, translation is
  2559. included without limitation in the term "modification".)
  2560. "Source code" for a work means the preferred form of the work for
  2561. making modifications to it. For a library, complete source code means
  2562. all the source code for all modules it contains, plus any associated
  2563. interface definition files, plus the scripts used to control compilation
  2564. and installation of the library.
  2565. Activities other than copying, distribution and modification are not
  2566. covered by this License; they are outside its scope. The act of
  2567. running a program using the Library is not restricted, and output from
  2568. such a program is covered only if its contents constitute a work based
  2569. on the Library (independent of the use of the Library in a tool for
  2570. writing it). Whether that is true depends on what the Library does
  2571. and what the program that uses the Library does.
  2572. 1. You may copy and distribute verbatim copies of the Library's
  2573. complete source code as you receive it, in any medium, provided that
  2574. you conspicuously and appropriately publish on each copy an
  2575. appropriate copyright notice and disclaimer of warranty; keep intact
  2576. all the notices that refer to this License and to the absence of any
  2577. warranty; and distribute a copy of this License along with the
  2578. Library.
  2579. You may charge a fee for the physical act of transferring a copy,
  2580. and you may at your option offer warranty protection in exchange for a
  2581. fee.
  2582. 2. You may modify your copy or copies of the Library or any portion
  2583. of it, thus forming a work based on the Library, and copy and
  2584. distribute such modifications or work under the terms of Section 1
  2585. above, provided that you also meet all of these conditions:
  2586. a) The modified work must itself be a software library.
  2587. b) You must cause the files modified to carry prominent notices
  2588. stating that you changed the files and the date of any change.
  2589. c) You must cause the whole of the work to be licensed at no
  2590. charge to all third parties under the terms of this License.
  2591. d) If a facility in the modified Library refers to a function or a
  2592. table of data to be supplied by an application program that uses
  2593. the facility, other than as an argument passed when the facility
  2594. is invoked, then you must make a good faith effort to ensure that,
  2595. in the event an application does not supply such function or
  2596. table, the facility still operates, and performs whatever part of
  2597. its purpose remains meaningful.
  2598. (For example, a function in a library to compute square roots has
  2599. a purpose that is entirely well-defined independent of the
  2600. application. Therefore, Subsection 2d requires that any
  2601. application-supplied function or table used by this function must
  2602. be optional: if the application does not supply it, the square
  2603. root function must still compute square roots.)
  2604. These requirements apply to the modified work as a whole. If
  2605. identifiable sections of that work are not derived from the Library,
  2606. and can be reasonably considered independent and separate works in
  2607. themselves, then this License, and its terms, do not apply to those
  2608. sections when you distribute them as separate works. But when you
  2609. distribute the same sections as part of a whole which is a work based
  2610. on the Library, the distribution of the whole must be on the terms of
  2611. this License, whose permissions for other licensees extend to the
  2612. entire whole, and thus to each and every part regardless of who wrote
  2613. it.
  2614. Thus, it is not the intent of this section to claim rights or contest
  2615. your rights to work written entirely by you; rather, the intent is to
  2616. exercise the right to control the distribution of derivative or
  2617. collective works based on the Library.
  2618. In addition, mere aggregation of another work not based on the Library
  2619. with the Library (or with a work based on the Library) on a volume of
  2620. a storage or distribution medium does not bring the other work under
  2621. the scope of this License.
  2622. 3. You may opt to apply the terms of the ordinary GNU General Public
  2623. License instead of this License to a given copy of the Library. To do
  2624. this, you must alter all the notices that refer to this License, so
  2625. that they refer to the ordinary GNU General Public License, version 2,
  2626. instead of to this License. (If a newer version than version 2 of the
  2627. ordinary GNU General Public License has appeared, then you can specify
  2628. that version instead if you wish.) Do not make any other change in
  2629. these notices.
  2630. Once this change is made in a given copy, it is irreversible for
  2631. that copy, so the ordinary GNU General Public License applies to all
  2632. subsequent copies and derivative works made from that copy.
  2633. This option is useful when you wish to copy part of the code of
  2634. the Library into a program that is not a library.
  2635. 4. You may copy and distribute the Library (or a portion or
  2636. derivative of it, under Section 2) in object code or executable form
  2637. under the terms of Sections 1 and 2 above provided that you accompany
  2638. it with the complete corresponding machine-readable source code, which
  2639. must be distributed under the terms of Sections 1 and 2 above on a
  2640. medium customarily used for software interchange.
  2641. If distribution of object code is made by offering access to copy
  2642. from a designated place, then offering equivalent access to copy the
  2643. source code from the same place satisfies the requirement to
  2644. distribute the source code, even though third parties are not
  2645. compelled to copy the source along with the object code.
  2646. 5. A program that contains no derivative of any portion of the
  2647. Library, but is designed to work with the Library by being compiled or
  2648. linked with it, is called a "work that uses the Library". Such a
  2649. work, in isolation, is not a derivative work of the Library, and
  2650. therefore falls outside the scope of this License.
  2651. However, linking a "work that uses the Library" with the Library
  2652. creates an executable that is a derivative of the Library (because it
  2653. contains portions of the Library), rather than a "work that uses the
  2654. library". The executable is therefore covered by this License.
  2655. Section 6 states terms for distribution of such executables.
  2656. When a "work that uses the Library" uses material from a header file
  2657. that is part of the Library, the object code for the work may be a
  2658. derivative work of the Library even though the source code is not.
  2659. Whether this is true is especially significant if the work can be
  2660. linked without the Library, or if the work is itself a library. The
  2661. threshold for this to be true is not precisely defined by law.
  2662. If such an object file uses only numerical parameters, data
  2663. structure layouts and accessors, and small macros and small inline
  2664. functions (ten lines or less in length), then the use of the object
  2665. file is unrestricted, regardless of whether it is legally a derivative
  2666. work. (Executables containing this object code plus portions of the
  2667. Library will still fall under Section 6.)
  2668. Otherwise, if the work is a derivative of the Library, you may
  2669. distribute the object code for the work under the terms of Section 6.
  2670. Any executables containing that work also fall under Section 6,
  2671. whether or not they are linked directly with the Library itself.
  2672. 6. As an exception to the Sections above, you may also combine or
  2673. link a "work that uses the Library" with the Library to produce a
  2674. work containing portions of the Library, and distribute that work
  2675. under terms of your choice, provided that the terms permit
  2676. modification of the work for the customer's own use and reverse
  2677. engineering for debugging such modifications.
  2678. You must give prominent notice with each copy of the work that the
  2679. Library is used in it and that the Library and its use are covered by
  2680. this License. You must supply a copy of this License. If the work
  2681. during execution displays copyright notices, you must include the
  2682. copyright notice for the Library among them, as well as a reference
  2683. directing the user to the copy of this License. Also, you must do one
  2684. of these things:
  2685. a) Accompany the work with the complete corresponding
  2686. machine-readable source code for the Library including whatever
  2687. changes were used in the work (which must be distributed under
  2688. Sections 1 and 2 above); and, if the work is an executable linked
  2689. with the Library, with the complete machine-readable "work that
  2690. uses the Library", as object code and/or source code, so that the
  2691. user can modify the Library and then relink to produce a modified
  2692. executable containing the modified Library. (It is understood
  2693. that the user who changes the contents of definitions files in the
  2694. Library will not necessarily be able to recompile the application
  2695. to use the modified definitions.)
  2696. b) Use a suitable shared library mechanism for linking with the
  2697. Library. A suitable mechanism is one that (1) uses at run time a
  2698. copy of the library already present on the user's computer system,
  2699. rather than copying library functions into the executable, and (2)
  2700. will operate properly with a modified version of the library, if
  2701. the user installs one, as long as the modified version is
  2702. interface-compatible with the version that the work was made with.
  2703. c) Accompany the work with a written offer, valid for at
  2704. least three years, to give the same user the materials
  2705. specified in Subsection 6a, above, for a charge no more
  2706. than the cost of performing this distribution.
  2707. d) If distribution of the work is made by offering access to copy
  2708. from a designated place, offer equivalent access to copy the above
  2709. specified materials from the same place.
  2710. e) Verify that the user has already received a copy of these
  2711. materials or that you have already sent this user a copy.
  2712. For an executable, the required form of the "work that uses the
  2713. Library" must include any data and utility programs needed for
  2714. reproducing the executable from it. However, as a special exception,
  2715. the materials to be distributed need not include anything that is
  2716. normally distributed (in either source or binary form) with the major
  2717. components (compiler, kernel, and so on) of the operating system on
  2718. which the executable runs, unless that component itself accompanies
  2719. the executable.
  2720. It may happen that this requirement contradicts the license
  2721. restrictions of other proprietary libraries that do not normally
  2722. accompany the operating system. Such a contradiction means you cannot
  2723. use both them and the Library together in an executable that you
  2724. distribute.
  2725. 7. You may place library facilities that are a work based on the
  2726. Library side-by-side in a single library together with other library
  2727. facilities not covered by this License, and distribute such a combined
  2728. library, provided that the separate distribution of the work based on
  2729. the Library and of the other library facilities is otherwise
  2730. permitted, and provided that you do these two things:
  2731. a) Accompany the combined library with a copy of the same work
  2732. based on the Library, uncombined with any other library
  2733. facilities. This must be distributed under the terms of the
  2734. Sections above.
  2735. b) Give prominent notice with the combined library of the fact
  2736. that part of it is a work based on the Library, and explaining
  2737. where to find the accompanying uncombined form of the same work.
  2738. 8. You may not copy, modify, sublicense, link with, or distribute
  2739. the Library except as expressly provided under this License. Any
  2740. attempt otherwise to copy, modify, sublicense, link with, or
  2741. distribute the Library is void, and will automatically terminate your
  2742. rights under this License. However, parties who have received copies,
  2743. or rights, from you under this License will not have their licenses
  2744. terminated so long as such parties remain in full compliance.
  2745. 9. You are not required to accept this License, since you have not
  2746. signed it. However, nothing else grants you permission to modify or
  2747. distribute the Library or its derivative works. These actions are
  2748. prohibited by law if you do not accept this License. Therefore, by
  2749. modifying or distributing the Library (or any work based on the
  2750. Library), you indicate your acceptance of this License to do so, and
  2751. all its terms and conditions for copying, distributing or modifying
  2752. the Library or works based on it.
  2753. 10. Each time you redistribute the Library (or any work based on the
  2754. Library), the recipient automatically receives a license from the
  2755. original licensor to copy, distribute, link with or modify the Library
  2756. subject to these terms and conditions. You may not impose any further
  2757. restrictions on the recipients' exercise of the rights granted herein.
  2758. You are not responsible for enforcing compliance by third parties with
  2759. this License.
  2760. 11. If, as a consequence of a court judgment or allegation of patent
  2761. infringement or for any other reason (not limited to patent issues),
  2762. conditions are imposed on you (whether by court order, agreement or
  2763. otherwise) that contradict the conditions of this License, they do not
  2764. excuse you from the conditions of this License. If you cannot
  2765. distribute so as to satisfy simultaneously your obligations under this
  2766. License and any other pertinent obligations, then as a consequence you
  2767. may not distribute the Library at all. For example, if a patent
  2768. license would not permit royalty-free redistribution of the Library by
  2769. all those who receive copies directly or indirectly through you, then
  2770. the only way you could satisfy both it and this License would be to
  2771. refrain entirely from distribution of the Library.
  2772. If any portion of this section is held invalid or unenforceable under any
  2773. particular circumstance, the balance of the section is intended to apply,
  2774. and the section as a whole is intended to apply in other circumstances.
  2775. It is not the purpose of this section to induce you to infringe any
  2776. patents or other property right claims or to contest validity of any
  2777. such claims; this section has the sole purpose of protecting the
  2778. integrity of the free software distribution system which is
  2779. implemented by public license practices. Many people have made
  2780. generous contributions to the wide range of software distributed
  2781. through that system in reliance on consistent application of that
  2782. system; it is up to the author/donor to decide if he or she is willing
  2783. to distribute software through any other system and a licensee cannot
  2784. impose that choice.
  2785. This section is intended to make thoroughly clear what is believed to
  2786. be a consequence of the rest of this License.
  2787. 12. If the distribution and/or use of the Library is restricted in
  2788. certain countries either by patents or by copyrighted interfaces, the
  2789. original copyright holder who places the Library under this License may add
  2790. an explicit geographical distribution limitation excluding those countries,
  2791. so that distribution is permitted only in or among countries not thus
  2792. excluded. In such case, this License incorporates the limitation as if
  2793. written in the body of this License.
  2794. 13. The Free Software Foundation may publish revised and/or new
  2795. versions of the Lesser General Public License from time to time.
  2796. Such new versions will be similar in spirit to the present version,
  2797. but may differ in detail to address new problems or concerns.
  2798. Each version is given a distinguishing version number. If the Library
  2799. specifies a version number of this License which applies to it and
  2800. "any later version", you have the option of following the terms and
  2801. conditions either of that version or of any later version published by
  2802. the Free Software Foundation. If the Library does not specify a
  2803. license version number, you may choose any version ever published by
  2804. the Free Software Foundation.
  2805. 14. If you wish to incorporate parts of the Library into other free
  2806. programs whose distribution conditions are incompatible with these,
  2807. write to the author to ask for permission. For software which is
  2808. copyrighted by the Free Software Foundation, write to the Free
  2809. Software Foundation; we sometimes make exceptions for this. Our
  2810. decision will be guided by the two goals of preserving the free status
  2811. of all derivatives of our free software and of promoting the sharing
  2812. and reuse of software generally.
  2813. NO WARRANTY
  2814. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  2815. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  2816. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  2817. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  2818. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  2819. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  2820. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  2821. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  2822. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  2823. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  2824. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  2825. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  2826. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  2827. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  2828. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  2829. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  2830. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  2831. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  2832. DAMAGES.
  2833. END OF TERMS AND CONDITIONS
  2834. How to Apply These Terms to Your New Libraries
  2835. If you develop a new library, and you want it to be of the greatest
  2836. possible use to the public, we recommend making it free software that
  2837. everyone can redistribute and change. You can do so by permitting
  2838. redistribution under these terms (or, alternatively, under the terms of the
  2839. ordinary General Public License).
  2840. To apply these terms, attach the following notices to the library. It is
  2841. safest to attach them to the start of each source file to most effectively
  2842. convey the exclusion of warranty; and each file should have at least the
  2843. "copyright" line and a pointer to where the full notice is found.
  2844. <one line to give the library's name and a brief idea of what it does.>
  2845. Copyright (C) <year> <name of author>
  2846. This library is free software; you can redistribute it and/or
  2847. modify it under the terms of the GNU Lesser General Public
  2848. License as published by the Free Software Foundation; either
  2849. version 2.1 of the License, or (at your option) any later version.
  2850. This library is distributed in the hope that it will be useful,
  2851. but WITHOUT ANY WARRANTY; without even the implied warranty of
  2852. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  2853. Lesser General Public License for more details.
  2854. You should have received a copy of the GNU Lesser General Public
  2855. License along with this library; if not, write to the Free Software
  2856. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  2857. Also add information on how to contact you by electronic and paper mail.
  2858. You should also get your employer (if you work as a programmer) or your
  2859. school, if any, to sign a "copyright disclaimer" for the library, if
  2860. necessary. Here is a sample; alter the names:
  2861. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  2862. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  2863. <signature of Ty Coon>, 1 April 1990
  2864. Ty Coon, President of Vice
  2865. That's all there is to it!
  2866. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2867. [ harfbuzz 8.2.1 ] copyright:
  2868. HarfBuzz is licensed under the so-called "Old MIT" license. Details follow.
  2869. For parts of HarfBuzz that are licensed under different licenses see individual
  2870. files names COPYING in subdirectories where applicable.
  2871. Copyright © 2010-2022 Google, Inc.
  2872. Copyright © 2015-2020 Ebrahim Byagowi
  2873. Copyright © 2019,2020 Facebook, Inc.
  2874. Copyright © 2012,2015 Mozilla Foundation
  2875. Copyright © 2011 Codethink Limited
  2876. Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)
  2877. Copyright © 2009 Keith Stribley
  2878. Copyright © 2011 Martin Hosken and SIL International
  2879. Copyright © 2007 Chris Wilson
  2880. Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod
  2881. Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc.
  2882. Copyright © 1998-2005 David Turner and Werner Lemberg
  2883. Copyright © 2016 Igalia S.L.
  2884. Copyright © 2022 Matthias Clasen
  2885. Copyright © 2018,2021 Khaled Hosny
  2886. Copyright © 2018,2019,2020 Adobe, Inc
  2887. Copyright © 2013-2015 Alexei Podtelezhnikov
  2888. For full copyright notices consult the individual files in the package.
  2889. Permission is hereby granted, without written agreement and without
  2890. license or royalty fees, to use, copy, modify, and distribute this
  2891. software and its documentation for any purpose, provided that the
  2892. above copyright notice and the following two paragraphs appear in
  2893. all copies of this software.
  2894. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  2895. DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  2896. ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  2897. IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  2898. DAMAGE.
  2899. THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  2900. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  2901. FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  2902. ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  2903. PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  2904. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2905. [ heif 1.17.0 ] copyright:
  2906. * The library `libheif` is distributed under the terms of the GNU Lesser General Public License.
  2907. * The sample applications are distributed under the terms of the MIT License.
  2908. License texts below and in the `COPYING` files of the corresponding subfolders.
  2909. ----------------------------------------------------------------------
  2910. GNU LESSER GENERAL PUBLIC LICENSE
  2911. Version 3, 29 June 2007
  2912. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  2913. Everyone is permitted to copy and distribute verbatim copies
  2914. of this license document, but changing it is not allowed.
  2915. This version of the GNU Lesser General Public License incorporates
  2916. the terms and conditions of version 3 of the GNU General Public
  2917. License, supplemented by the additional permissions listed below.
  2918. 0. Additional Definitions.
  2919. As used herein, "this License" refers to version 3 of the GNU Lesser
  2920. General Public License, and the "GNU GPL" refers to version 3 of the GNU
  2921. General Public License.
  2922. "The Library" refers to a covered work governed by this License,
  2923. other than an Application or a Combined Work as defined below.
  2924. An "Application" is any work that makes use of an interface provided
  2925. by the Library, but which is not otherwise based on the Library.
  2926. Defining a subclass of a class defined by the Library is deemed a mode
  2927. of using an interface provided by the Library.
  2928. A "Combined Work" is a work produced by combining or linking an
  2929. Application with the Library. The particular version of the Library
  2930. with which the Combined Work was made is also called the "Linked
  2931. Version".
  2932. The "Minimal Corresponding Source" for a Combined Work means the
  2933. Corresponding Source for the Combined Work, excluding any source code
  2934. for portions of the Combined Work that, considered in isolation, are
  2935. based on the Application, and not on the Linked Version.
  2936. The "Corresponding Application Code" for a Combined Work means the
  2937. object code and/or source code for the Application, including any data
  2938. and utility programs needed for reproducing the Combined Work from the
  2939. Application, but excluding the System Libraries of the Combined Work.
  2940. 1. Exception to Section 3 of the GNU GPL.
  2941. You may convey a covered work under sections 3 and 4 of this License
  2942. without being bound by section 3 of the GNU GPL.
  2943. 2. Conveying Modified Versions.
  2944. If you modify a copy of the Library, and, in your modifications, a
  2945. facility refers to a function or data to be supplied by an Application
  2946. that uses the facility (other than as an argument passed when the
  2947. facility is invoked), then you may convey a copy of the modified
  2948. version:
  2949. a) under this License, provided that you make a good faith effort to
  2950. ensure that, in the event an Application does not supply the
  2951. function or data, the facility still operates, and performs
  2952. whatever part of its purpose remains meaningful, or
  2953. b) under the GNU GPL, with none of the additional permissions of
  2954. this License applicable to that copy.
  2955. 3. Object Code Incorporating Material from Library Header Files.
  2956. The object code form of an Application may incorporate material from
  2957. a header file that is part of the Library. You may convey such object
  2958. code under terms of your choice, provided that, if the incorporated
  2959. material is not limited to numerical parameters, data structure
  2960. layouts and accessors, or small macros, inline functions and templates
  2961. (ten or fewer lines in length), you do both of the following:
  2962. a) Give prominent notice with each copy of the object code that the
  2963. Library is used in it and that the Library and its use are
  2964. covered by this License.
  2965. b) Accompany the object code with a copy of the GNU GPL and this license
  2966. document.
  2967. 4. Combined Works.
  2968. You may convey a Combined Work under terms of your choice that,
  2969. taken together, effectively do not restrict modification of the
  2970. portions of the Library contained in the Combined Work and reverse
  2971. engineering for debugging such modifications, if you also do each of
  2972. the following:
  2973. a) Give prominent notice with each copy of the Combined Work that
  2974. the Library is used in it and that the Library and its use are
  2975. covered by this License.
  2976. b) Accompany the Combined Work with a copy of the GNU GPL and this license
  2977. document.
  2978. c) For a Combined Work that displays copyright notices during
  2979. execution, include the copyright notice for the Library among
  2980. these notices, as well as a reference directing the user to the
  2981. copies of the GNU GPL and this license document.
  2982. d) Do one of the following:
  2983. 0) Convey the Minimal Corresponding Source under the terms of this
  2984. License, and the Corresponding Application Code in a form
  2985. suitable for, and under terms that permit, the user to
  2986. recombine or relink the Application with a modified version of
  2987. the Linked Version to produce a modified Combined Work, in the
  2988. manner specified by section 6 of the GNU GPL for conveying
  2989. Corresponding Source.
  2990. 1) Use a suitable shared library mechanism for linking with the
  2991. Library. A suitable mechanism is one that (a) uses at run time
  2992. a copy of the Library already present on the user's computer
  2993. system, and (b) will operate properly with a modified version
  2994. of the Library that is interface-compatible with the Linked
  2995. Version.
  2996. e) Provide Installation Information, but only if you would otherwise
  2997. be required to provide such information under section 6 of the
  2998. GNU GPL, and only to the extent that such information is
  2999. necessary to install and execute a modified version of the
  3000. Combined Work produced by recombining or relinking the
  3001. Application with a modified version of the Linked Version. (If
  3002. you use option 4d0, the Installation Information must accompany
  3003. the Minimal Corresponding Source and Corresponding Application
  3004. Code. If you use option 4d1, you must provide the Installation
  3005. Information in the manner specified by section 6 of the GNU GPL
  3006. for conveying Corresponding Source.)
  3007. 5. Combined Libraries.
  3008. You may place library facilities that are a work based on the
  3009. Library side by side in a single library together with other library
  3010. facilities that are not Applications and are not covered by this
  3011. License, and convey such a combined library under terms of your
  3012. choice, if you do both of the following:
  3013. a) Accompany the combined library with a copy of the same work based
  3014. on the Library, uncombined with any other library facilities,
  3015. conveyed under the terms of this License.
  3016. b) Give prominent notice with the combined library that part of it
  3017. is a work based on the Library, and explaining where to find the
  3018. accompanying uncombined form of the same work.
  3019. 6. Revised Versions of the GNU Lesser General Public License.
  3020. The Free Software Foundation may publish revised and/or new versions
  3021. of the GNU Lesser General Public License from time to time. Such new
  3022. versions will be similar in spirit to the present version, but may
  3023. differ in detail to address new problems or concerns.
  3024. Each version is given a distinguishing version number. If the
  3025. Library as you received it specifies that a certain numbered version
  3026. of the GNU Lesser General Public License "or any later version"
  3027. applies to it, you have the option of following the terms and
  3028. conditions either of that published version or of any later version
  3029. published by the Free Software Foundation. If the Library as you
  3030. received it does not specify a version number of the GNU Lesser
  3031. General Public License, you may choose any version of the GNU Lesser
  3032. General Public License ever published by the Free Software Foundation.
  3033. If the Library as you received it specifies that a proxy can decide
  3034. whether future versions of the GNU Lesser General Public License shall
  3035. apply, that proxy's public statement of acceptance of any version is
  3036. permanent authorization for you to choose that version for the
  3037. Library.
  3038. ----------------------------------------------------------------------
  3039. GNU GENERAL PUBLIC LICENSE
  3040. Version 3, 29 June 2007
  3041. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  3042. Everyone is permitted to copy and distribute verbatim copies
  3043. of this license document, but changing it is not allowed.
  3044. Preamble
  3045. The GNU General Public License is a free, copyleft license for
  3046. software and other kinds of works.
  3047. The licenses for most software and other practical works are designed
  3048. to take away your freedom to share and change the works. By contrast,
  3049. the GNU General Public License is intended to guarantee your freedom to
  3050. share and change all versions of a program--to make sure it remains free
  3051. software for all its users. We, the Free Software Foundation, use the
  3052. GNU General Public License for most of our software; it applies also to
  3053. any other work released this way by its authors. You can apply it to
  3054. your programs, too.
  3055. When we speak of free software, we are referring to freedom, not
  3056. price. Our General Public Licenses are designed to make sure that you
  3057. have the freedom to distribute copies of free software (and charge for
  3058. them if you wish), that you receive source code or can get it if you
  3059. want it, that you can change the software or use pieces of it in new
  3060. free programs, and that you know you can do these things.
  3061. To protect your rights, we need to prevent others from denying you
  3062. these rights or asking you to surrender the rights. Therefore, you have
  3063. certain responsibilities if you distribute copies of the software, or if
  3064. you modify it: responsibilities to respect the freedom of others.
  3065. For example, if you distribute copies of such a program, whether
  3066. gratis or for a fee, you must pass on to the recipients the same
  3067. freedoms that you received. You must make sure that they, too, receive
  3068. or can get the source code. And you must show them these terms so they
  3069. know their rights.
  3070. Developers that use the GNU GPL protect your rights with two steps:
  3071. (1) assert copyright on the software, and (2) offer you this License
  3072. giving you legal permission to copy, distribute and/or modify it.
  3073. For the developers' and authors' protection, the GPL clearly explains
  3074. that there is no warranty for this free software. For both users' and
  3075. authors' sake, the GPL requires that modified versions be marked as
  3076. changed, so that their problems will not be attributed erroneously to
  3077. authors of previous versions.
  3078. Some devices are designed to deny users access to install or run
  3079. modified versions of the software inside them, although the manufacturer
  3080. can do so. This is fundamentally incompatible with the aim of
  3081. protecting users' freedom to change the software. The systematic
  3082. pattern of such abuse occurs in the area of products for individuals to
  3083. use, which is precisely where it is most unacceptable. Therefore, we
  3084. have designed this version of the GPL to prohibit the practice for those
  3085. products. If such problems arise substantially in other domains, we
  3086. stand ready to extend this provision to those domains in future versions
  3087. of the GPL, as needed to protect the freedom of users.
  3088. Finally, every program is threatened constantly by software patents.
  3089. States should not allow patents to restrict development and use of
  3090. software on general-purpose computers, but in those that do, we wish to
  3091. avoid the special danger that patents applied to a free program could
  3092. make it effectively proprietary. To prevent this, the GPL assures that
  3093. patents cannot be used to render the program non-free.
  3094. The precise terms and conditions for copying, distribution and
  3095. modification follow.
  3096. TERMS AND CONDITIONS
  3097. 0. Definitions.
  3098. "This License" refers to version 3 of the GNU General Public License.
  3099. "Copyright" also means copyright-like laws that apply to other kinds of
  3100. works, such as semiconductor masks.
  3101. "The Program" refers to any copyrightable work licensed under this
  3102. License. Each licensee is addressed as "you". "Licensees" and
  3103. "recipients" may be individuals or organizations.
  3104. To "modify" a work means to copy from or adapt all or part of the work
  3105. in a fashion requiring copyright permission, other than the making of an
  3106. exact copy. The resulting work is called a "modified version" of the
  3107. earlier work or a work "based on" the earlier work.
  3108. A "covered work" means either the unmodified Program or a work based
  3109. on the Program.
  3110. To "propagate" a work means to do anything with it that, without
  3111. permission, would make you directly or secondarily liable for
  3112. infringement under applicable copyright law, except executing it on a
  3113. computer or modifying a private copy. Propagation includes copying,
  3114. distribution (with or without modification), making available to the
  3115. public, and in some countries other activities as well.
  3116. To "convey" a work means any kind of propagation that enables other
  3117. parties to make or receive copies. Mere interaction with a user through
  3118. a computer network, with no transfer of a copy, is not conveying.
  3119. An interactive user interface displays "Appropriate Legal Notices"
  3120. to the extent that it includes a convenient and prominently visible
  3121. feature that (1) displays an appropriate copyright notice, and (2)
  3122. tells the user that there is no warranty for the work (except to the
  3123. extent that warranties are provided), that licensees may convey the
  3124. work under this License, and how to view a copy of this License. If
  3125. the interface presents a list of user commands or options, such as a
  3126. menu, a prominent item in the list meets this criterion.
  3127. 1. Source Code.
  3128. The "source code" for a work means the preferred form of the work
  3129. for making modifications to it. "Object code" means any non-source
  3130. form of a work.
  3131. A "Standard Interface" means an interface that either is an official
  3132. standard defined by a recognized standards body, or, in the case of
  3133. interfaces specified for a particular programming language, one that
  3134. is widely used among developers working in that language.
  3135. The "System Libraries" of an executable work include anything, other
  3136. than the work as a whole, that (a) is included in the normal form of
  3137. packaging a Major Component, but which is not part of that Major
  3138. Component, and (b) serves only to enable use of the work with that
  3139. Major Component, or to implement a Standard Interface for which an
  3140. implementation is available to the public in source code form. A
  3141. "Major Component", in this context, means a major essential component
  3142. (kernel, window system, and so on) of the specific operating system
  3143. (if any) on which the executable work runs, or a compiler used to
  3144. produce the work, or an object code interpreter used to run it.
  3145. The "Corresponding Source" for a work in object code form means all
  3146. the source code needed to generate, install, and (for an executable
  3147. work) run the object code and to modify the work, including scripts to
  3148. control those activities. However, it does not include the work's
  3149. System Libraries, or general-purpose tools or generally available free
  3150. programs which are used unmodified in performing those activities but
  3151. which are not part of the work. For example, Corresponding Source
  3152. includes interface definition files associated with source files for
  3153. the work, and the source code for shared libraries and dynamically
  3154. linked subprograms that the work is specifically designed to require,
  3155. such as by intimate data communication or control flow between those
  3156. subprograms and other parts of the work.
  3157. The Corresponding Source need not include anything that users
  3158. can regenerate automatically from other parts of the Corresponding
  3159. Source.
  3160. The Corresponding Source for a work in source code form is that
  3161. same work.
  3162. 2. Basic Permissions.
  3163. All rights granted under this License are granted for the term of
  3164. copyright on the Program, and are irrevocable provided the stated
  3165. conditions are met. This License explicitly affirms your unlimited
  3166. permission to run the unmodified Program. The output from running a
  3167. covered work is covered by this License only if the output, given its
  3168. content, constitutes a covered work. This License acknowledges your
  3169. rights of fair use or other equivalent, as provided by copyright law.
  3170. You may make, run and propagate covered works that you do not
  3171. convey, without conditions so long as your license otherwise remains
  3172. in force. You may convey covered works to others for the sole purpose
  3173. of having them make modifications exclusively for you, or provide you
  3174. with facilities for running those works, provided that you comply with
  3175. the terms of this License in conveying all material for which you do
  3176. not control copyright. Those thus making or running the covered works
  3177. for you must do so exclusively on your behalf, under your direction
  3178. and control, on terms that prohibit them from making any copies of
  3179. your copyrighted material outside their relationship with you.
  3180. Conveying under any other circumstances is permitted solely under
  3181. the conditions stated below. Sublicensing is not allowed; section 10
  3182. makes it unnecessary.
  3183. 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
  3184. No covered work shall be deemed part of an effective technological
  3185. measure under any applicable law fulfilling obligations under article
  3186. 11 of the WIPO copyright treaty adopted on 20 December 1996, or
  3187. similar laws prohibiting or restricting circumvention of such
  3188. measures.
  3189. When you convey a covered work, you waive any legal power to forbid
  3190. circumvention of technological measures to the extent such circumvention
  3191. is effected by exercising rights under this License with respect to
  3192. the covered work, and you disclaim any intention to limit operation or
  3193. modification of the work as a means of enforcing, against the work's
  3194. users, your or third parties' legal rights to forbid circumvention of
  3195. technological measures.
  3196. 4. Conveying Verbatim Copies.
  3197. You may convey verbatim copies of the Program's source code as you
  3198. receive it, in any medium, provided that you conspicuously and
  3199. appropriately publish on each copy an appropriate copyright notice;
  3200. keep intact all notices stating that this License and any
  3201. non-permissive terms added in accord with section 7 apply to the code;
  3202. keep intact all notices of the absence of any warranty; and give all
  3203. recipients a copy of this License along with the Program.
  3204. You may charge any price or no price for each copy that you convey,
  3205. and you may offer support or warranty protection for a fee.
  3206. 5. Conveying Modified Source Versions.
  3207. You may convey a work based on the Program, or the modifications to
  3208. produce it from the Program, in the form of source code under the
  3209. terms of section 4, provided that you also meet all of these conditions:
  3210. a) The work must carry prominent notices stating that you modified
  3211. it, and giving a relevant date.
  3212. b) The work must carry prominent notices stating that it is
  3213. released under this License and any conditions added under section
  3214. 7. This requirement modifies the requirement in section 4 to
  3215. "keep intact all notices".
  3216. c) You must license the entire work, as a whole, under this
  3217. License to anyone who comes into possession of a copy. This
  3218. License will therefore apply, along with any applicable section 7
  3219. additional terms, to the whole of the work, and all its parts,
  3220. regardless of how they are packaged. This License gives no
  3221. permission to license the work in any other way, but it does not
  3222. invalidate such permission if you have separately received it.
  3223. d) If the work has interactive user interfaces, each must display
  3224. Appropriate Legal Notices; however, if the Program has interactive
  3225. interfaces that do not display Appropriate Legal Notices, your
  3226. work need not make them do so.
  3227. A compilation of a covered work with other separate and independent
  3228. works, which are not by their nature extensions of the covered work,
  3229. and which are not combined with it such as to form a larger program,
  3230. in or on a volume of a storage or distribution medium, is called an
  3231. "aggregate" if the compilation and its resulting copyright are not
  3232. used to limit the access or legal rights of the compilation's users
  3233. beyond what the individual works permit. Inclusion of a covered work
  3234. in an aggregate does not cause this License to apply to the other
  3235. parts of the aggregate.
  3236. 6. Conveying Non-Source Forms.
  3237. You may convey a covered work in object code form under the terms
  3238. of sections 4 and 5, provided that you also convey the
  3239. machine-readable Corresponding Source under the terms of this License,
  3240. in one of these ways:
  3241. a) Convey the object code in, or embodied in, a physical product
  3242. (including a physical distribution medium), accompanied by the
  3243. Corresponding Source fixed on a durable physical medium
  3244. customarily used for software interchange.
  3245. b) Convey the object code in, or embodied in, a physical product
  3246. (including a physical distribution medium), accompanied by a
  3247. written offer, valid for at least three years and valid for as
  3248. long as you offer spare parts or customer support for that product
  3249. model, to give anyone who possesses the object code either (1) a
  3250. copy of the Corresponding Source for all the software in the
  3251. product that is covered by this License, on a durable physical
  3252. medium customarily used for software interchange, for a price no
  3253. more than your reasonable cost of physically performing this
  3254. conveying of source, or (2) access to copy the
  3255. Corresponding Source from a network server at no charge.
  3256. c) Convey individual copies of the object code with a copy of the
  3257. written offer to provide the Corresponding Source. This
  3258. alternative is allowed only occasionally and noncommercially, and
  3259. only if you received the object code with such an offer, in accord
  3260. with subsection 6b.
  3261. d) Convey the object code by offering access from a designated
  3262. place (gratis or for a charge), and offer equivalent access to the
  3263. Corresponding Source in the same way through the same place at no
  3264. further charge. You need not require recipients to copy the
  3265. Corresponding Source along with the object code. If the place to
  3266. copy the object code is a network server, the Corresponding Source
  3267. may be on a different server (operated by you or a third party)
  3268. that supports equivalent copying facilities, provided you maintain
  3269. clear directions next to the object code saying where to find the
  3270. Corresponding Source. Regardless of what server hosts the
  3271. Corresponding Source, you remain obligated to ensure that it is
  3272. available for as long as needed to satisfy these requirements.
  3273. e) Convey the object code using peer-to-peer transmission, provided
  3274. you inform other peers where the object code and Corresponding
  3275. Source of the work are being offered to the general public at no
  3276. charge under subsection 6d.
  3277. A separable portion of the object code, whose source code is excluded
  3278. from the Corresponding Source as a System Library, need not be
  3279. included in conveying the object code work.
  3280. A "User Product" is either (1) a "consumer product", which means any
  3281. tangible personal property which is normally used for personal, family,
  3282. or household purposes, or (2) anything designed or sold for incorporation
  3283. into a dwelling. In determining whether a product is a consumer product,
  3284. doubtful cases shall be resolved in favor of coverage. For a particular
  3285. product received by a particular user, "normally used" refers to a
  3286. typical or common use of that class of product, regardless of the status
  3287. of the particular user or of the way in which the particular user
  3288. actually uses, or expects or is expected to use, the product. A product
  3289. is a consumer product regardless of whether the product has substantial
  3290. commercial, industrial or non-consumer uses, unless such uses represent
  3291. the only significant mode of use of the product.
  3292. "Installation Information" for a User Product means any methods,
  3293. procedures, authorization keys, or other information required to install
  3294. and execute modified versions of a covered work in that User Product from
  3295. a modified version of its Corresponding Source. The information must
  3296. suffice to ensure that the continued functioning of the modified object
  3297. code is in no case prevented or interfered with solely because
  3298. modification has been made.
  3299. If you convey an object code work under this section in, or with, or
  3300. specifically for use in, a User Product, and the conveying occurs as
  3301. part of a transaction in which the right of possession and use of the
  3302. User Product is transferred to the recipient in perpetuity or for a
  3303. fixed term (regardless of how the transaction is characterized), the
  3304. Corresponding Source conveyed under this section must be accompanied
  3305. by the Installation Information. But this requirement does not apply
  3306. if neither you nor any third party retains the ability to install
  3307. modified object code on the User Product (for example, the work has
  3308. been installed in ROM).
  3309. The requirement to provide Installation Information does not include a
  3310. requirement to continue to provide support service, warranty, or updates
  3311. for a work that has been modified or installed by the recipient, or for
  3312. the User Product in which it has been modified or installed. Access to a
  3313. network may be denied when the modification itself materially and
  3314. adversely affects the operation of the network or violates the rules and
  3315. protocols for communication across the network.
  3316. Corresponding Source conveyed, and Installation Information provided,
  3317. in accord with this section must be in a format that is publicly
  3318. documented (and with an implementation available to the public in
  3319. source code form), and must require no special password or key for
  3320. unpacking, reading or copying.
  3321. 7. Additional Terms.
  3322. "Additional permissions" are terms that supplement the terms of this
  3323. License by making exceptions from one or more of its conditions.
  3324. Additional permissions that are applicable to the entire Program shall
  3325. be treated as though they were included in this License, to the extent
  3326. that they are valid under applicable law. If additional permissions
  3327. apply only to part of the Program, that part may be used separately
  3328. under those permissions, but the entire Program remains governed by
  3329. this License without regard to the additional permissions.
  3330. When you convey a copy of a covered work, you may at your option
  3331. remove any additional permissions from that copy, or from any part of
  3332. it. (Additional permissions may be written to require their own
  3333. removal in certain cases when you modify the work.) You may place
  3334. additional permissions on material, added by you to a covered work,
  3335. for which you have or can give appropriate copyright permission.
  3336. Notwithstanding any other provision of this License, for material you
  3337. add to a covered work, you may (if authorized by the copyright holders of
  3338. that material) supplement the terms of this License with terms:
  3339. a) Disclaiming warranty or limiting liability differently from the
  3340. terms of sections 15 and 16 of this License; or
  3341. b) Requiring preservation of specified reasonable legal notices or
  3342. author attributions in that material or in the Appropriate Legal
  3343. Notices displayed by works containing it; or
  3344. c) Prohibiting misrepresentation of the origin of that material, or
  3345. requiring that modified versions of such material be marked in
  3346. reasonable ways as different from the original version; or
  3347. d) Limiting the use for publicity purposes of names of licensors or
  3348. authors of the material; or
  3349. e) Declining to grant rights under trademark law for use of some
  3350. trade names, trademarks, or service marks; or
  3351. f) Requiring indemnification of licensors and authors of that
  3352. material by anyone who conveys the material (or modified versions of
  3353. it) with contractual assumptions of liability to the recipient, for
  3354. any liability that these contractual assumptions directly impose on
  3355. those licensors and authors.
  3356. All other non-permissive additional terms are considered "further
  3357. restrictions" within the meaning of section 10. If the Program as you
  3358. received it, or any part of it, contains a notice stating that it is
  3359. governed by this License along with a term that is a further
  3360. restriction, you may remove that term. If a license document contains
  3361. a further restriction but permits relicensing or conveying under this
  3362. License, you may add to a covered work material governed by the terms
  3363. of that license document, provided that the further restriction does
  3364. not survive such relicensing or conveying.
  3365. If you add terms to a covered work in accord with this section, you
  3366. must place, in the relevant source files, a statement of the
  3367. additional terms that apply to those files, or a notice indicating
  3368. where to find the applicable terms.
  3369. Additional terms, permissive or non-permissive, may be stated in the
  3370. form of a separately written license, or stated as exceptions;
  3371. the above requirements apply either way.
  3372. 8. Termination.
  3373. You may not propagate or modify a covered work except as expressly
  3374. provided under this License. Any attempt otherwise to propagate or
  3375. modify it is void, and will automatically terminate your rights under
  3376. this License (including any patent licenses granted under the third
  3377. paragraph of section 11).
  3378. However, if you cease all violation of this License, then your
  3379. license from a particular copyright holder is reinstated (a)
  3380. provisionally, unless and until the copyright holder explicitly and
  3381. finally terminates your license, and (b) permanently, if the copyright
  3382. holder fails to notify you of the violation by some reasonable means
  3383. prior to 60 days after the cessation.
  3384. Moreover, your license from a particular copyright holder is
  3385. reinstated permanently if the copyright holder notifies you of the
  3386. violation by some reasonable means, this is the first time you have
  3387. received notice of violation of this License (for any work) from that
  3388. copyright holder, and you cure the violation prior to 30 days after
  3389. your receipt of the notice.
  3390. Termination of your rights under this section does not terminate the
  3391. licenses of parties who have received copies or rights from you under
  3392. this License. If your rights have been terminated and not permanently
  3393. reinstated, you do not qualify to receive new licenses for the same
  3394. material under section 10.
  3395. 9. Acceptance Not Required for Having Copies.
  3396. You are not required to accept this License in order to receive or
  3397. run a copy of the Program. Ancillary propagation of a covered work
  3398. occurring solely as a consequence of using peer-to-peer transmission
  3399. to receive a copy likewise does not require acceptance. However,
  3400. nothing other than this License grants you permission to propagate or
  3401. modify any covered work. These actions infringe copyright if you do
  3402. not accept this License. Therefore, by modifying or propagating a
  3403. covered work, you indicate your acceptance of this License to do so.
  3404. 10. Automatic Licensing of Downstream Recipients.
  3405. Each time you convey a covered work, the recipient automatically
  3406. receives a license from the original licensors, to run, modify and
  3407. propagate that work, subject to this License. You are not responsible
  3408. for enforcing compliance by third parties with this License.
  3409. An "entity transaction" is a transaction transferring control of an
  3410. organization, or substantially all assets of one, or subdividing an
  3411. organization, or merging organizations. If propagation of a covered
  3412. work results from an entity transaction, each party to that
  3413. transaction who receives a copy of the work also receives whatever
  3414. licenses to the work the party's predecessor in interest had or could
  3415. give under the previous paragraph, plus a right to possession of the
  3416. Corresponding Source of the work from the predecessor in interest, if
  3417. the predecessor has it or can get it with reasonable efforts.
  3418. You may not impose any further restrictions on the exercise of the
  3419. rights granted or affirmed under this License. For example, you may
  3420. not impose a license fee, royalty, or other charge for exercise of
  3421. rights granted under this License, and you may not initiate litigation
  3422. (including a cross-claim or counterclaim in a lawsuit) alleging that
  3423. any patent claim is infringed by making, using, selling, offering for
  3424. sale, or importing the Program or any portion of it.
  3425. 11. Patents.
  3426. A "contributor" is a copyright holder who authorizes use under this
  3427. License of the Program or a work on which the Program is based. The
  3428. work thus licensed is called the contributor's "contributor version".
  3429. A contributor's "essential patent claims" are all patent claims
  3430. owned or controlled by the contributor, whether already acquired or
  3431. hereafter acquired, that would be infringed by some manner, permitted
  3432. by this License, of making, using, or selling its contributor version,
  3433. but do not include claims that would be infringed only as a
  3434. consequence of further modification of the contributor version. For
  3435. purposes of this definition, "control" includes the right to grant
  3436. patent sublicenses in a manner consistent with the requirements of
  3437. this License.
  3438. Each contributor grants you a non-exclusive, worldwide, royalty-free
  3439. patent license under the contributor's essential patent claims, to
  3440. make, use, sell, offer for sale, import and otherwise run, modify and
  3441. propagate the contents of its contributor version.
  3442. In the following three paragraphs, a "patent license" is any express
  3443. agreement or commitment, however denominated, not to enforce a patent
  3444. (such as an express permission to practice a patent or covenant not to
  3445. sue for patent infringement). To "grant" such a patent license to a
  3446. party means to make such an agreement or commitment not to enforce a
  3447. patent against the party.
  3448. If you convey a covered work, knowingly relying on a patent license,
  3449. and the Corresponding Source of the work is not available for anyone
  3450. to copy, free of charge and under the terms of this License, through a
  3451. publicly available network server or other readily accessible means,
  3452. then you must either (1) cause the Corresponding Source to be so
  3453. available, or (2) arrange to deprive yourself of the benefit of the
  3454. patent license for this particular work, or (3) arrange, in a manner
  3455. consistent with the requirements of this License, to extend the patent
  3456. license to downstream recipients. "Knowingly relying" means you have
  3457. actual knowledge that, but for the patent license, your conveying the
  3458. covered work in a country, or your recipient's use of the covered work
  3459. in a country, would infringe one or more identifiable patents in that
  3460. country that you have reason to believe are valid.
  3461. If, pursuant to or in connection with a single transaction or
  3462. arrangement, you convey, or propagate by procuring conveyance of, a
  3463. covered work, and grant a patent license to some of the parties
  3464. receiving the covered work authorizing them to use, propagate, modify
  3465. or convey a specific copy of the covered work, then the patent license
  3466. you grant is automatically extended to all recipients of the covered
  3467. work and works based on it.
  3468. A patent license is "discriminatory" if it does not include within
  3469. the scope of its coverage, prohibits the exercise of, or is
  3470. conditioned on the non-exercise of one or more of the rights that are
  3471. specifically granted under this License. You may not convey a covered
  3472. work if you are a party to an arrangement with a third party that is
  3473. in the business of distributing software, under which you make payment
  3474. to the third party based on the extent of your activity of conveying
  3475. the work, and under which the third party grants, to any of the
  3476. parties who would receive the covered work from you, a discriminatory
  3477. patent license (a) in connection with copies of the covered work
  3478. conveyed by you (or copies made from those copies), or (b) primarily
  3479. for and in connection with specific products or compilations that
  3480. contain the covered work, unless you entered into that arrangement,
  3481. or that patent license was granted, prior to 28 March 2007.
  3482. Nothing in this License shall be construed as excluding or limiting
  3483. any implied license or other defenses to infringement that may
  3484. otherwise be available to you under applicable patent law.
  3485. 12. No Surrender of Others' Freedom.
  3486. If conditions are imposed on you (whether by court order, agreement or
  3487. otherwise) that contradict the conditions of this License, they do not
  3488. excuse you from the conditions of this License. If you cannot convey a
  3489. covered work so as to satisfy simultaneously your obligations under this
  3490. License and any other pertinent obligations, then as a consequence you may
  3491. not convey it at all. For example, if you agree to terms that obligate you
  3492. to collect a royalty for further conveying from those to whom you convey
  3493. the Program, the only way you could satisfy both those terms and this
  3494. License would be to refrain entirely from conveying the Program.
  3495. 13. Use with the GNU Affero General Public License.
  3496. Notwithstanding any other provision of this License, you have
  3497. permission to link or combine any covered work with a work licensed
  3498. under version 3 of the GNU Affero General Public License into a single
  3499. combined work, and to convey the resulting work. The terms of this
  3500. License will continue to apply to the part which is the covered work,
  3501. but the special requirements of the GNU Affero General Public License,
  3502. section 13, concerning interaction through a network will apply to the
  3503. combination as such.
  3504. 14. Revised Versions of this License.
  3505. The Free Software Foundation may publish revised and/or new versions of
  3506. the GNU General Public License from time to time. Such new versions will
  3507. be similar in spirit to the present version, but may differ in detail to
  3508. address new problems or concerns.
  3509. Each version is given a distinguishing version number. If the
  3510. Program specifies that a certain numbered version of the GNU General
  3511. Public License "or any later version" applies to it, you have the
  3512. option of following the terms and conditions either of that numbered
  3513. version or of any later version published by the Free Software
  3514. Foundation. If the Program does not specify a version number of the
  3515. GNU General Public License, you may choose any version ever published
  3516. by the Free Software Foundation.
  3517. If the Program specifies that a proxy can decide which future
  3518. versions of the GNU General Public License can be used, that proxy's
  3519. public statement of acceptance of a version permanently authorizes you
  3520. to choose that version for the Program.
  3521. Later license versions may give you additional or different
  3522. permissions. However, no additional obligations are imposed on any
  3523. author or copyright holder as a result of your choosing to follow a
  3524. later version.
  3525. 15. Disclaimer of Warranty.
  3526. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
  3527. APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  3528. HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
  3529. OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  3530. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  3531. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
  3532. IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
  3533. ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  3534. 16. Limitation of Liability.
  3535. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  3536. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
  3537. THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
  3538. GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  3539. USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  3540. DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
  3541. PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
  3542. EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
  3543. SUCH DAMAGES.
  3544. 17. Interpretation of Sections 15 and 16.
  3545. If the disclaimer of warranty and limitation of liability provided
  3546. above cannot be given local legal effect according to their terms,
  3547. reviewing courts shall apply local law that most closely approximates
  3548. an absolute waiver of all civil liability in connection with the
  3549. Program, unless a warranty or assumption of liability accompanies a
  3550. copy of the Program in return for a fee.
  3551. END OF TERMS AND CONDITIONS
  3552. How to Apply These Terms to Your New Programs
  3553. If you develop a new program, and you want it to be of the greatest
  3554. possible use to the public, the best way to achieve this is to make it
  3555. free software which everyone can redistribute and change under these terms.
  3556. To do so, attach the following notices to the program. It is safest
  3557. to attach them to the start of each source file to most effectively
  3558. state the exclusion of warranty; and each file should have at least
  3559. the "copyright" line and a pointer to where the full notice is found.
  3560. <one line to give the program's name and a brief idea of what it does.>
  3561. Copyright (C) <year> <name of author>
  3562. This program is free software: you can redistribute it and/or modify
  3563. it under the terms of the GNU General Public License as published by
  3564. the Free Software Foundation, either version 3 of the License, or
  3565. (at your option) any later version.
  3566. This program is distributed in the hope that it will be useful,
  3567. but WITHOUT ANY WARRANTY; without even the implied warranty of
  3568. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  3569. GNU General Public License for more details.
  3570. You should have received a copy of the GNU General Public License
  3571. along with this program. If not, see <http://www.gnu.org/licenses/>.
  3572. Also add information on how to contact you by electronic and paper mail.
  3573. If the program does terminal interaction, make it output a short
  3574. notice like this when it starts in an interactive mode:
  3575. <program> Copyright (C) <year> <name of author>
  3576. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  3577. This is free software, and you are welcome to redistribute it
  3578. under certain conditions; type `show c' for details.
  3579. The hypothetical commands `show w' and `show c' should show the appropriate
  3580. parts of the General Public License. Of course, your program's commands
  3581. might be different; for a GUI interface, you would use an "about box".
  3582. You should also get your employer (if you work as a programmer) or school,
  3583. if any, to sign a "copyright disclaimer" for the program, if necessary.
  3584. For more information on this, and how to apply and follow the GNU GPL, see
  3585. <http://www.gnu.org/licenses/>.
  3586. The GNU General Public License does not permit incorporating your program
  3587. into proprietary programs. If your program is a subroutine library, you
  3588. may consider it more useful to permit linking proprietary applications with
  3589. the library. If this is what you want to do, use the GNU Lesser General
  3590. Public License instead of this License. But first, please read
  3591. <http://www.gnu.org/philosophy/why-not-lgpl.html>.
  3592. ----------------------------------------------------------------------
  3593. MIT License
  3594. Permission is hereby granted, free of charge, to any person obtaining a copy
  3595. of this software and associated documentation files (the "Software"), to deal
  3596. in the Software without restriction, including without limitation the rights
  3597. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3598. copies of the Software, and to permit persons to whom the Software is
  3599. furnished to do so, subject to the following conditions:
  3600. The above copyright notice and this permission notice shall be included in all
  3601. copies or substantial portions of the Software.
  3602. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3603. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3604. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3605. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3606. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3607. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  3608. SOFTWARE.
  3609. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3610. [ highway 1.0.7 ] copyright:
  3611. Apache License
  3612. Version 2.0, January 2004
  3613. http://www.apache.org/licenses/
  3614. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  3615. 1. Definitions.
  3616. "License" shall mean the terms and conditions for use, reproduction,
  3617. and distribution as defined by Sections 1 through 9 of this document.
  3618. "Licensor" shall mean the copyright owner or entity authorized by
  3619. the copyright owner that is granting the License.
  3620. "Legal Entity" shall mean the union of the acting entity and all
  3621. other entities that control, are controlled by, or are under common
  3622. control with that entity. For the purposes of this definition,
  3623. "control" means (i) the power, direct or indirect, to cause the
  3624. direction or management of such entity, whether by contract or
  3625. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  3626. outstanding shares, or (iii) beneficial ownership of such entity.
  3627. "You" (or "Your") shall mean an individual or Legal Entity
  3628. exercising permissions granted by this License.
  3629. "Source" form shall mean the preferred form for making modifications,
  3630. including but not limited to software source code, documentation
  3631. source, and configuration files.
  3632. "Object" form shall mean any form resulting from mechanical
  3633. transformation or translation of a Source form, including but
  3634. not limited to compiled object code, generated documentation,
  3635. and conversions to other media types.
  3636. "Work" shall mean the work of authorship, whether in Source or
  3637. Object form, made available under the License, as indicated by a
  3638. copyright notice that is included in or attached to the work
  3639. (an example is provided in the Appendix below).
  3640. "Derivative Works" shall mean any work, whether in Source or Object
  3641. form, that is based on (or derived from) the Work and for which the
  3642. editorial revisions, annotations, elaborations, or other modifications
  3643. represent, as a whole, an original work of authorship. For the purposes
  3644. of this License, Derivative Works shall not include works that remain
  3645. separable from, or merely link (or bind by name) to the interfaces of,
  3646. the Work and Derivative Works thereof.
  3647. "Contribution" shall mean any work of authorship, including
  3648. the original version of the Work and any modifications or additions
  3649. to that Work or Derivative Works thereof, that is intentionally
  3650. submitted to Licensor for inclusion in the Work by the copyright owner
  3651. or by an individual or Legal Entity authorized to submit on behalf of
  3652. the copyright owner. For the purposes of this definition, "submitted"
  3653. means any form of electronic, verbal, or written communication sent
  3654. to the Licensor or its representatives, including but not limited to
  3655. communication on electronic mailing lists, source code control systems,
  3656. and issue tracking systems that are managed by, or on behalf of, the
  3657. Licensor for the purpose of discussing and improving the Work, but
  3658. excluding communication that is conspicuously marked or otherwise
  3659. designated in writing by the copyright owner as "Not a Contribution."
  3660. "Contributor" shall mean Licensor and any individual or Legal Entity
  3661. on behalf of whom a Contribution has been received by Licensor and
  3662. subsequently incorporated within the Work.
  3663. 2. Grant of Copyright License. Subject to the terms and conditions of
  3664. this License, each Contributor hereby grants to You a perpetual,
  3665. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  3666. copyright license to reproduce, prepare Derivative Works of,
  3667. publicly display, publicly perform, sublicense, and distribute the
  3668. Work and such Derivative Works in Source or Object form.
  3669. 3. Grant of Patent License. Subject to the terms and conditions of
  3670. this License, each Contributor hereby grants to You a perpetual,
  3671. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  3672. (except as stated in this section) patent license to make, have made,
  3673. use, offer to sell, sell, import, and otherwise transfer the Work,
  3674. where such license applies only to those patent claims licensable
  3675. by such Contributor that are necessarily infringed by their
  3676. Contribution(s) alone or by combination of their Contribution(s)
  3677. with the Work to which such Contribution(s) was submitted. If You
  3678. institute patent litigation against any entity (including a
  3679. cross-claim or counterclaim in a lawsuit) alleging that the Work
  3680. or a Contribution incorporated within the Work constitutes direct
  3681. or contributory patent infringement, then any patent licenses
  3682. granted to You under this License for that Work shall terminate
  3683. as of the date such litigation is filed.
  3684. 4. Redistribution. You may reproduce and distribute copies of the
  3685. Work or Derivative Works thereof in any medium, with or without
  3686. modifications, and in Source or Object form, provided that You
  3687. meet the following conditions:
  3688. (a) You must give any other recipients of the Work or
  3689. Derivative Works a copy of this License; and
  3690. (b) You must cause any modified files to carry prominent notices
  3691. stating that You changed the files; and
  3692. (c) You must retain, in the Source form of any Derivative Works
  3693. that You distribute, all copyright, patent, trademark, and
  3694. attribution notices from the Source form of the Work,
  3695. excluding those notices that do not pertain to any part of
  3696. the Derivative Works; and
  3697. (d) If the Work includes a "NOTICE" text file as part of its
  3698. distribution, then any Derivative Works that You distribute must
  3699. include a readable copy of the attribution notices contained
  3700. within such NOTICE file, excluding those notices that do not
  3701. pertain to any part of the Derivative Works, in at least one
  3702. of the following places: within a NOTICE text file distributed
  3703. as part of the Derivative Works; within the Source form or
  3704. documentation, if provided along with the Derivative Works; or,
  3705. within a display generated by the Derivative Works, if and
  3706. wherever such third-party notices normally appear. The contents
  3707. of the NOTICE file are for informational purposes only and
  3708. do not modify the License. You may add Your own attribution
  3709. notices within Derivative Works that You distribute, alongside
  3710. or as an addendum to the NOTICE text from the Work, provided
  3711. that such additional attribution notices cannot be construed
  3712. as modifying the License.
  3713. You may add Your own copyright statement to Your modifications and
  3714. may provide additional or different license terms and conditions
  3715. for use, reproduction, or distribution of Your modifications, or
  3716. for any such Derivative Works as a whole, provided Your use,
  3717. reproduction, and distribution of the Work otherwise complies with
  3718. the conditions stated in this License.
  3719. 5. Submission of Contributions. Unless You explicitly state otherwise,
  3720. any Contribution intentionally submitted for inclusion in the Work
  3721. by You to the Licensor shall be under the terms and conditions of
  3722. this License, without any additional terms or conditions.
  3723. Notwithstanding the above, nothing herein shall supersede or modify
  3724. the terms of any separate license agreement you may have executed
  3725. with Licensor regarding such Contributions.
  3726. 6. Trademarks. This License does not grant permission to use the trade
  3727. names, trademarks, service marks, or product names of the Licensor,
  3728. except as required for reasonable and customary use in describing the
  3729. origin of the Work and reproducing the content of the NOTICE file.
  3730. 7. Disclaimer of Warranty. Unless required by applicable law or
  3731. agreed to in writing, Licensor provides the Work (and each
  3732. Contributor provides its Contributions) on an "AS IS" BASIS,
  3733. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  3734. implied, including, without limitation, any warranties or conditions
  3735. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  3736. PARTICULAR PURPOSE. You are solely responsible for determining the
  3737. appropriateness of using or redistributing the Work and assume any
  3738. risks associated with Your exercise of permissions under this License.
  3739. 8. Limitation of Liability. In no event and under no legal theory,
  3740. whether in tort (including negligence), contract, or otherwise,
  3741. unless required by applicable law (such as deliberate and grossly
  3742. negligent acts) or agreed to in writing, shall any Contributor be
  3743. liable to You for damages, including any direct, indirect, special,
  3744. incidental, or consequential damages of any character arising as a
  3745. result of this License or out of the use or inability to use the
  3746. Work (including but not limited to damages for loss of goodwill,
  3747. work stoppage, computer failure or malfunction, or any and all
  3748. other commercial damages or losses), even if such Contributor
  3749. has been advised of the possibility of such damages.
  3750. 9. Accepting Warranty or Additional Liability. While redistributing
  3751. the Work or Derivative Works thereof, You may choose to offer,
  3752. and charge a fee for, acceptance of support, warranty, indemnity,
  3753. or other liability obligations and/or rights consistent with this
  3754. License. However, in accepting such obligations, You may act only
  3755. on Your own behalf and on Your sole responsibility, not on behalf
  3756. of any other Contributor, and only if You agree to indemnify,
  3757. defend, and hold each Contributor harmless for any liability
  3758. incurred by, or claims asserted against, such Contributor by reason
  3759. of your accepting any such warranty or additional liability.
  3760. END OF TERMS AND CONDITIONS
  3761. APPENDIX: How to apply the Apache License to your work.
  3762. To apply the Apache License to your work, attach the following
  3763. boilerplate notice, with the fields enclosed by brackets "[]"
  3764. replaced with your own identifying information. (Don't include
  3765. the brackets!) The text should be enclosed in the appropriate
  3766. comment syntax for the file format. We also recommend that a
  3767. file or class name and description of purpose be included on the
  3768. same "printed page" as the copyright notice for easier
  3769. identification within third-party archives.
  3770. Copyright [yyyy] [name of copyright owner]
  3771. Licensed under the Apache License, Version 2.0 (the "License");
  3772. you may not use this file except in compliance with the License.
  3773. You may obtain a copy of the License at
  3774. http://www.apache.org/licenses/LICENSE-2.0
  3775. Unless required by applicable law or agreed to in writing, software
  3776. distributed under the License is distributed on an "AS IS" BASIS,
  3777. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  3778. See the License for the specific language governing permissions and
  3779. limitations under the License.
  3780. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3781. [ jasper 4.0.0 ] copyright:
  3782. JasPer License Version 2.0
  3783. Copyright (c) 2001-2016 Michael David Adams
  3784. Copyright (c) 1999-2000 Image Power, Inc.
  3785. Copyright (c) 1999-2000 The University of British Columbia
  3786. All rights reserved.
  3787. Permission is hereby granted, free of charge, to any person (the
  3788. "User") obtaining a copy of this software and associated documentation
  3789. files (the "Software"), to deal in the Software without restriction,
  3790. including without limitation the rights to use, copy, modify, merge,
  3791. publish, distribute, and/or sell copies of the Software, and to permit
  3792. persons to whom the Software is furnished to do so, subject to the
  3793. following conditions:
  3794. 1. The above copyright notices and this permission notice (which
  3795. includes the disclaimer below) shall be included in all copies or
  3796. substantial portions of the Software.
  3797. 2. The name of a copyright holder shall not be used to endorse or
  3798. promote products derived from the Software without specific prior
  3799. written permission.
  3800. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
  3801. LICENSE. NO USE OF THE SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  3802. THIS DISCLAIMER. THE SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS
  3803. "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
  3804. BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  3805. PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO
  3806. EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
  3807. INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
  3808. FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  3809. NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
  3810. WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. NO ASSURANCES ARE
  3811. PROVIDED BY THE COPYRIGHT HOLDERS THAT THE SOFTWARE DOES NOT INFRINGE
  3812. THE PATENT OR OTHER INTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY.
  3813. EACH COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY TO THE USER FOR CLAIMS
  3814. BROUGHT BY ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL
  3815. PROPERTY RIGHTS OR OTHERWISE. AS A CONDITION TO EXERCISING THE RIGHTS
  3816. GRANTED HEREUNDER, EACH USER HEREBY ASSUMES SOLE RESPONSIBILITY TO SECURE
  3817. ANY OTHER INTELLECTUAL PROPERTY RIGHTS NEEDED, IF ANY. THE SOFTWARE
  3818. IS NOT FAULT-TOLERANT AND IS NOT INTENDED FOR USE IN MISSION-CRITICAL
  3819. SYSTEMS, SUCH AS THOSE USED IN THE OPERATION OF NUCLEAR FACILITIES,
  3820. AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL
  3821. SYSTEMS, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH
  3822. THE FAILURE OF THE SOFTWARE OR SYSTEM COULD LEAD DIRECTLY TO DEATH,
  3823. PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH
  3824. RISK ACTIVITIES"). THE COPYRIGHT HOLDERS SPECIFICALLY DISCLAIM ANY
  3825. EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES.
  3826. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3827. [ jpeg-turbo 3.0.0 ] copyright:
  3828. libjpeg-turbo Licenses
  3829. ======================
  3830. libjpeg-turbo is covered by three compatible BSD-style open source licenses:
  3831. - The IJG (Independent JPEG Group) License, which is listed in
  3832. [README.ijg](README.ijg)
  3833. This license applies to the libjpeg API library and associated programs
  3834. (any code inherited from libjpeg, and any modifications to that code.)
  3835. - The Modified (3-clause) BSD License, which is listed below
  3836. This license covers the TurboJPEG API library and associated programs, as
  3837. well as the build system.
  3838. - The [zlib License](https://opensource.org/licenses/Zlib)
  3839. This license is a subset of the other two, and it covers the libjpeg-turbo
  3840. SIMD extensions.
  3841. Complying with the libjpeg-turbo Licenses
  3842. =========================================
  3843. This section provides a roll-up of the libjpeg-turbo licensing terms, to the
  3844. best of our understanding.
  3845. 1. If you are distributing a modified version of the libjpeg-turbo source,
  3846. then:
  3847. 1. You cannot alter or remove any existing copyright or license notices
  3848. from the source.
  3849. **Origin**
  3850. - Clause 1 of the IJG License
  3851. - Clause 1 of the Modified BSD License
  3852. - Clauses 1 and 3 of the zlib License
  3853. 2. You must add your own copyright notice to the header of each source
  3854. file you modified, so others can tell that you modified that file (if
  3855. there is not an existing copyright header in that file, then you can
  3856. simply add a notice stating that you modified the file.)
  3857. **Origin**
  3858. - Clause 1 of the IJG License
  3859. - Clause 2 of the zlib License
  3860. 3. You must include the IJG README file, and you must not alter any of the
  3861. copyright or license text in that file.
  3862. **Origin**
  3863. - Clause 1 of the IJG License
  3864. 2. If you are distributing only libjpeg-turbo binaries without the source, or
  3865. if you are distributing an application that statically links with
  3866. libjpeg-turbo, then:
  3867. 1. Your product documentation must include a message stating:
  3868. This software is based in part on the work of the Independent JPEG
  3869. Group.
  3870. **Origin**
  3871. - Clause 2 of the IJG license
  3872. 2. If your binary distribution includes or uses the TurboJPEG API, then
  3873. your product documentation must include the text of the Modified BSD
  3874. License (see below.)
  3875. **Origin**
  3876. - Clause 2 of the Modified BSD License
  3877. 3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
  3878. contributors thereof in advertising, publicity, etc.
  3879. **Origin**
  3880. - IJG License
  3881. - Clause 3 of the Modified BSD License
  3882. 4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be
  3883. free of defects, nor do we accept any liability for undesirable
  3884. consequences resulting from your use of the software.
  3885. **Origin**
  3886. - IJG License
  3887. - Modified BSD License
  3888. - zlib License
  3889. The Modified (3-clause) BSD License
  3890. ===================================
  3891. Copyright (C)2009-2023 D. R. Commander. All Rights Reserved.<br>
  3892. Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
  3893. Redistribution and use in source and binary forms, with or without
  3894. modification, are permitted provided that the following conditions are met:
  3895. - Redistributions of source code must retain the above copyright notice,
  3896. this list of conditions and the following disclaimer.
  3897. - Redistributions in binary form must reproduce the above copyright notice,
  3898. this list of conditions and the following disclaimer in the documentation
  3899. and/or other materials provided with the distribution.
  3900. - Neither the name of the libjpeg-turbo Project nor the names of its
  3901. contributors may be used to endorse or promote products derived from this
  3902. software without specific prior written permission.
  3903. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
  3904. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  3905. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  3906. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
  3907. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  3908. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  3909. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  3910. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  3911. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  3912. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  3913. POSSIBILITY OF SUCH DAMAGE.
  3914. Why Three Licenses?
  3915. ===================
  3916. The zlib License could have been used instead of the Modified (3-clause) BSD
  3917. License, and since the IJG License effectively subsumes the distribution
  3918. conditions of the zlib License, this would have effectively placed
  3919. libjpeg-turbo binary distributions under the IJG License. However, the IJG
  3920. License specifically refers to the Independent JPEG Group and does not extend
  3921. attribution and endorsement protections to other entities. Thus, it was
  3922. desirable to choose a license that granted us the same protections for new code
  3923. that were granted to the IJG for code derived from their software.
  3924. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3925. [ jpeg-xl 0.8.2 ] copyright:
  3926. Copyright (c) the JPEG XL Project Authors.
  3927. All rights reserved.
  3928. Redistribution and use in source and binary forms, with or without
  3929. modification, are permitted provided that the following conditions are met:
  3930. 1. Redistributions of source code must retain the above copyright notice, this
  3931. list of conditions and the following disclaimer.
  3932. 2. Redistributions in binary form must reproduce the above copyright notice,
  3933. this list of conditions and the following disclaimer in the documentation
  3934. and/or other materials provided with the distribution.
  3935. 3. Neither the name of the copyright holder nor the names of its
  3936. contributors may be used to endorse or promote products derived from
  3937. this software without specific prior written permission.
  3938. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  3939. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  3940. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  3941. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  3942. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  3943. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  3944. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  3945. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  3946. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  3947. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  3948. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3949. [ lcms 2.15.0 ] copyright:
  3950. Little CMS
  3951. Copyright (c) 1998-2020 Marti Maria Saguer
  3952. Permission is hereby granted, free of charge, to any person obtaining
  3953. a copy of this software and associated documentation files (the
  3954. "Software"), to deal in the Software without restriction, including
  3955. without limitation the rights to use, copy, modify, merge, publish,
  3956. distribute, sublicense, and/or sell copies of the Software, and to
  3957. permit persons to whom the Software is furnished to do so, subject
  3958. to the following conditions:
  3959. The above copyright notice and this permission notice shall be
  3960. included in all copies or substantial portions of the Software.
  3961. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  3962. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  3963. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  3964. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  3965. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  3966. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  3967. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  3968. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3969. [ lqr 0.4.2 ] copyright:
  3970. GNU LESSER GENERAL PUBLIC LICENSE
  3971. Version 3, 29 June 2007
  3972. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  3973. Everyone is permitted to copy and distribute verbatim copies
  3974. of this license document, but changing it is not allowed.
  3975. This version of the GNU Lesser General Public License incorporates
  3976. the terms and conditions of version 3 of the GNU General Public
  3977. License, supplemented by the additional permissions listed below.
  3978. 0. Additional Definitions.
  3979. As used herein, "this License" refers to version 3 of the GNU Lesser
  3980. General Public License, and the "GNU GPL" refers to version 3 of the GNU
  3981. General Public License.
  3982. "The Library" refers to a covered work governed by this License,
  3983. other than an Application or a Combined Work as defined below.
  3984. An "Application" is any work that makes use of an interface provided
  3985. by the Library, but which is not otherwise based on the Library.
  3986. Defining a subclass of a class defined by the Library is deemed a mode
  3987. of using an interface provided by the Library.
  3988. A "Combined Work" is a work produced by combining or linking an
  3989. Application with the Library. The particular version of the Library
  3990. with which the Combined Work was made is also called the "Linked
  3991. Version".
  3992. The "Minimal Corresponding Source" for a Combined Work means the
  3993. Corresponding Source for the Combined Work, excluding any source code
  3994. for portions of the Combined Work that, considered in isolation, are
  3995. based on the Application, and not on the Linked Version.
  3996. The "Corresponding Application Code" for a Combined Work means the
  3997. object code and/or source code for the Application, including any data
  3998. and utility programs needed for reproducing the Combined Work from the
  3999. Application, but excluding the System Libraries of the Combined Work.
  4000. 1. Exception to Section 3 of the GNU GPL.
  4001. You may convey a covered work under sections 3 and 4 of this License
  4002. without being bound by section 3 of the GNU GPL.
  4003. 2. Conveying Modified Versions.
  4004. If you modify a copy of the Library, and, in your modifications, a
  4005. facility refers to a function or data to be supplied by an Application
  4006. that uses the facility (other than as an argument passed when the
  4007. facility is invoked), then you may convey a copy of the modified
  4008. version:
  4009. a) under this License, provided that you make a good faith effort to
  4010. ensure that, in the event an Application does not supply the
  4011. function or data, the facility still operates, and performs
  4012. whatever part of its purpose remains meaningful, or
  4013. b) under the GNU GPL, with none of the additional permissions of
  4014. this License applicable to that copy.
  4015. 3. Object Code Incorporating Material from Library Header Files.
  4016. The object code form of an Application may incorporate material from
  4017. a header file that is part of the Library. You may convey such object
  4018. code under terms of your choice, provided that, if the incorporated
  4019. material is not limited to numerical parameters, data structure
  4020. layouts and accessors, or small macros, inline functions and templates
  4021. (ten or fewer lines in length), you do both of the following:
  4022. a) Give prominent notice with each copy of the object code that the
  4023. Library is used in it and that the Library and its use are
  4024. covered by this License.
  4025. b) Accompany the object code with a copy of the GNU GPL and this license
  4026. document.
  4027. 4. Combined Works.
  4028. You may convey a Combined Work under terms of your choice that,
  4029. taken together, effectively do not restrict modification of the
  4030. portions of the Library contained in the Combined Work and reverse
  4031. engineering for debugging such modifications, if you also do each of
  4032. the following:
  4033. a) Give prominent notice with each copy of the Combined Work that
  4034. the Library is used in it and that the Library and its use are
  4035. covered by this License.
  4036. b) Accompany the Combined Work with a copy of the GNU GPL and this license
  4037. document.
  4038. c) For a Combined Work that displays copyright notices during
  4039. execution, include the copyright notice for the Library among
  4040. these notices, as well as a reference directing the user to the
  4041. copies of the GNU GPL and this license document.
  4042. d) Do one of the following:
  4043. 0) Convey the Minimal Corresponding Source under the terms of this
  4044. License, and the Corresponding Application Code in a form
  4045. suitable for, and under terms that permit, the user to
  4046. recombine or relink the Application with a modified version of
  4047. the Linked Version to produce a modified Combined Work, in the
  4048. manner specified by section 6 of the GNU GPL for conveying
  4049. Corresponding Source.
  4050. 1) Use a suitable shared library mechanism for linking with the
  4051. Library. A suitable mechanism is one that (a) uses at run time
  4052. a copy of the Library already present on the user's computer
  4053. system, and (b) will operate properly with a modified version
  4054. of the Library that is interface-compatible with the Linked
  4055. Version.
  4056. e) Provide Installation Information, but only if you would otherwise
  4057. be required to provide such information under section 6 of the
  4058. GNU GPL, and only to the extent that such information is
  4059. necessary to install and execute a modified version of the
  4060. Combined Work produced by recombining or relinking the
  4061. Application with a modified version of the Linked Version. (If
  4062. you use option 4d0, the Installation Information must accompany
  4063. the Minimal Corresponding Source and Corresponding Application
  4064. Code. If you use option 4d1, you must provide the Installation
  4065. Information in the manner specified by section 6 of the GNU GPL
  4066. for conveying Corresponding Source.)
  4067. 5. Combined Libraries.
  4068. You may place library facilities that are a work based on the
  4069. Library side by side in a single library together with other library
  4070. facilities that are not Applications and are not covered by this
  4071. License, and convey such a combined library under terms of your
  4072. choice, if you do both of the following:
  4073. a) Accompany the combined library with a copy of the same work based
  4074. on the Library, uncombined with any other library facilities,
  4075. conveyed under the terms of this License.
  4076. b) Give prominent notice with the combined library that part of it
  4077. is a work based on the Library, and explaining where to find the
  4078. accompanying uncombined form of the same work.
  4079. 6. Revised Versions of the GNU Lesser General Public License.
  4080. The Free Software Foundation may publish revised and/or new versions
  4081. of the GNU Lesser General Public License from time to time. Such new
  4082. versions will be similar in spirit to the present version, but may
  4083. differ in detail to address new problems or concerns.
  4084. Each version is given a distinguishing version number. If the
  4085. Library as you received it specifies that a certain numbered version
  4086. of the GNU Lesser General Public License "or any later version"
  4087. applies to it, you have the option of following the terms and
  4088. conditions either of that published version or of any later version
  4089. published by the Free Software Foundation. If the Library as you
  4090. received it does not specify a version number of the GNU Lesser
  4091. General Public License, you may choose any version of the GNU Lesser
  4092. General Public License ever published by the Free Software Foundation.
  4093. If the Library as you received it specifies that a proxy can decide
  4094. whether future versions of the GNU Lesser General Public License shall
  4095. apply, that proxy's public statement of acceptance of any version is
  4096. permanent authorization for you to choose that version for the
  4097. Library.
  4098. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4099. [ lzma 5.4.4 ] copyright:
  4100. GNU LESSER GENERAL PUBLIC LICENSE
  4101. Version 2.1, February 1999
  4102. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  4103. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  4104. Everyone is permitted to copy and distribute verbatim copies
  4105. of this license document, but changing it is not allowed.
  4106. [This is the first released version of the Lesser GPL. It also counts
  4107. as the successor of the GNU Library Public License, version 2, hence
  4108. the version number 2.1.]
  4109. Preamble
  4110. The licenses for most software are designed to take away your
  4111. freedom to share and change it. By contrast, the GNU General Public
  4112. Licenses are intended to guarantee your freedom to share and change
  4113. free software--to make sure the software is free for all its users.
  4114. This license, the Lesser General Public License, applies to some
  4115. specially designated software packages--typically libraries--of the
  4116. Free Software Foundation and other authors who decide to use it. You
  4117. can use it too, but we suggest you first think carefully about whether
  4118. this license or the ordinary General Public License is the better
  4119. strategy to use in any particular case, based on the explanations below.
  4120. When we speak of free software, we are referring to freedom of use,
  4121. not price. Our General Public Licenses are designed to make sure that
  4122. you have the freedom to distribute copies of free software (and charge
  4123. for this service if you wish); that you receive source code or can get
  4124. it if you want it; that you can change the software and use pieces of
  4125. it in new free programs; and that you are informed that you can do
  4126. these things.
  4127. To protect your rights, we need to make restrictions that forbid
  4128. distributors to deny you these rights or to ask you to surrender these
  4129. rights. These restrictions translate to certain responsibilities for
  4130. you if you distribute copies of the library or if you modify it.
  4131. For example, if you distribute copies of the library, whether gratis
  4132. or for a fee, you must give the recipients all the rights that we gave
  4133. you. You must make sure that they, too, receive or can get the source
  4134. code. If you link other code with the library, you must provide
  4135. complete object files to the recipients, so that they can relink them
  4136. with the library after making changes to the library and recompiling
  4137. it. And you must show them these terms so they know their rights.
  4138. We protect your rights with a two-step method: (1) we copyright the
  4139. library, and (2) we offer you this license, which gives you legal
  4140. permission to copy, distribute and/or modify the library.
  4141. To protect each distributor, we want to make it very clear that
  4142. there is no warranty for the free library. Also, if the library is
  4143. modified by someone else and passed on, the recipients should know
  4144. that what they have is not the original version, so that the original
  4145. author's reputation will not be affected by problems that might be
  4146. introduced by others.
  4147. Finally, software patents pose a constant threat to the existence of
  4148. any free program. We wish to make sure that a company cannot
  4149. effectively restrict the users of a free program by obtaining a
  4150. restrictive license from a patent holder. Therefore, we insist that
  4151. any patent license obtained for a version of the library must be
  4152. consistent with the full freedom of use specified in this license.
  4153. Most GNU software, including some libraries, is covered by the
  4154. ordinary GNU General Public License. This license, the GNU Lesser
  4155. General Public License, applies to certain designated libraries, and
  4156. is quite different from the ordinary General Public License. We use
  4157. this license for certain libraries in order to permit linking those
  4158. libraries into non-free programs.
  4159. When a program is linked with a library, whether statically or using
  4160. a shared library, the combination of the two is legally speaking a
  4161. combined work, a derivative of the original library. The ordinary
  4162. General Public License therefore permits such linking only if the
  4163. entire combination fits its criteria of freedom. The Lesser General
  4164. Public License permits more lax criteria for linking other code with
  4165. the library.
  4166. We call this license the "Lesser" General Public License because it
  4167. does Less to protect the user's freedom than the ordinary General
  4168. Public License. It also provides other free software developers Less
  4169. of an advantage over competing non-free programs. These disadvantages
  4170. are the reason we use the ordinary General Public License for many
  4171. libraries. However, the Lesser license provides advantages in certain
  4172. special circumstances.
  4173. For example, on rare occasions, there may be a special need to
  4174. encourage the widest possible use of a certain library, so that it becomes
  4175. a de-facto standard. To achieve this, non-free programs must be
  4176. allowed to use the library. A more frequent case is that a free
  4177. library does the same job as widely used non-free libraries. In this
  4178. case, there is little to gain by limiting the free library to free
  4179. software only, so we use the Lesser General Public License.
  4180. In other cases, permission to use a particular library in non-free
  4181. programs enables a greater number of people to use a large body of
  4182. free software. For example, permission to use the GNU C Library in
  4183. non-free programs enables many more people to use the whole GNU
  4184. operating system, as well as its variant, the GNU/Linux operating
  4185. system.
  4186. Although the Lesser General Public License is Less protective of the
  4187. users' freedom, it does ensure that the user of a program that is
  4188. linked with the Library has the freedom and the wherewithal to run
  4189. that program using a modified version of the Library.
  4190. The precise terms and conditions for copying, distribution and
  4191. modification follow. Pay close attention to the difference between a
  4192. "work based on the library" and a "work that uses the library". The
  4193. former contains code derived from the library, whereas the latter must
  4194. be combined with the library in order to run.
  4195. GNU LESSER GENERAL PUBLIC LICENSE
  4196. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  4197. 0. This License Agreement applies to any software library or other
  4198. program which contains a notice placed by the copyright holder or
  4199. other authorized party saying it may be distributed under the terms of
  4200. this Lesser General Public License (also called "this License").
  4201. Each licensee is addressed as "you".
  4202. A "library" means a collection of software functions and/or data
  4203. prepared so as to be conveniently linked with application programs
  4204. (which use some of those functions and data) to form executables.
  4205. The "Library", below, refers to any such software library or work
  4206. which has been distributed under these terms. A "work based on the
  4207. Library" means either the Library or any derivative work under
  4208. copyright law: that is to say, a work containing the Library or a
  4209. portion of it, either verbatim or with modifications and/or translated
  4210. straightforwardly into another language. (Hereinafter, translation is
  4211. included without limitation in the term "modification".)
  4212. "Source code" for a work means the preferred form of the work for
  4213. making modifications to it. For a library, complete source code means
  4214. all the source code for all modules it contains, plus any associated
  4215. interface definition files, plus the scripts used to control compilation
  4216. and installation of the library.
  4217. Activities other than copying, distribution and modification are not
  4218. covered by this License; they are outside its scope. The act of
  4219. running a program using the Library is not restricted, and output from
  4220. such a program is covered only if its contents constitute a work based
  4221. on the Library (independent of the use of the Library in a tool for
  4222. writing it). Whether that is true depends on what the Library does
  4223. and what the program that uses the Library does.
  4224. 1. You may copy and distribute verbatim copies of the Library's
  4225. complete source code as you receive it, in any medium, provided that
  4226. you conspicuously and appropriately publish on each copy an
  4227. appropriate copyright notice and disclaimer of warranty; keep intact
  4228. all the notices that refer to this License and to the absence of any
  4229. warranty; and distribute a copy of this License along with the
  4230. Library.
  4231. You may charge a fee for the physical act of transferring a copy,
  4232. and you may at your option offer warranty protection in exchange for a
  4233. fee.
  4234. 2. You may modify your copy or copies of the Library or any portion
  4235. of it, thus forming a work based on the Library, and copy and
  4236. distribute such modifications or work under the terms of Section 1
  4237. above, provided that you also meet all of these conditions:
  4238. a) The modified work must itself be a software library.
  4239. b) You must cause the files modified to carry prominent notices
  4240. stating that you changed the files and the date of any change.
  4241. c) You must cause the whole of the work to be licensed at no
  4242. charge to all third parties under the terms of this License.
  4243. d) If a facility in the modified Library refers to a function or a
  4244. table of data to be supplied by an application program that uses
  4245. the facility, other than as an argument passed when the facility
  4246. is invoked, then you must make a good faith effort to ensure that,
  4247. in the event an application does not supply such function or
  4248. table, the facility still operates, and performs whatever part of
  4249. its purpose remains meaningful.
  4250. (For example, a function in a library to compute square roots has
  4251. a purpose that is entirely well-defined independent of the
  4252. application. Therefore, Subsection 2d requires that any
  4253. application-supplied function or table used by this function must
  4254. be optional: if the application does not supply it, the square
  4255. root function must still compute square roots.)
  4256. These requirements apply to the modified work as a whole. If
  4257. identifiable sections of that work are not derived from the Library,
  4258. and can be reasonably considered independent and separate works in
  4259. themselves, then this License, and its terms, do not apply to those
  4260. sections when you distribute them as separate works. But when you
  4261. distribute the same sections as part of a whole which is a work based
  4262. on the Library, the distribution of the whole must be on the terms of
  4263. this License, whose permissions for other licensees extend to the
  4264. entire whole, and thus to each and every part regardless of who wrote
  4265. it.
  4266. Thus, it is not the intent of this section to claim rights or contest
  4267. your rights to work written entirely by you; rather, the intent is to
  4268. exercise the right to control the distribution of derivative or
  4269. collective works based on the Library.
  4270. In addition, mere aggregation of another work not based on the Library
  4271. with the Library (or with a work based on the Library) on a volume of
  4272. a storage or distribution medium does not bring the other work under
  4273. the scope of this License.
  4274. 3. You may opt to apply the terms of the ordinary GNU General Public
  4275. License instead of this License to a given copy of the Library. To do
  4276. this, you must alter all the notices that refer to this License, so
  4277. that they refer to the ordinary GNU General Public License, version 2,
  4278. instead of to this License. (If a newer version than version 2 of the
  4279. ordinary GNU General Public License has appeared, then you can specify
  4280. that version instead if you wish.) Do not make any other change in
  4281. these notices.
  4282. Once this change is made in a given copy, it is irreversible for
  4283. that copy, so the ordinary GNU General Public License applies to all
  4284. subsequent copies and derivative works made from that copy.
  4285. This option is useful when you wish to copy part of the code of
  4286. the Library into a program that is not a library.
  4287. 4. You may copy and distribute the Library (or a portion or
  4288. derivative of it, under Section 2) in object code or executable form
  4289. under the terms of Sections 1 and 2 above provided that you accompany
  4290. it with the complete corresponding machine-readable source code, which
  4291. must be distributed under the terms of Sections 1 and 2 above on a
  4292. medium customarily used for software interchange.
  4293. If distribution of object code is made by offering access to copy
  4294. from a designated place, then offering equivalent access to copy the
  4295. source code from the same place satisfies the requirement to
  4296. distribute the source code, even though third parties are not
  4297. compelled to copy the source along with the object code.
  4298. 5. A program that contains no derivative of any portion of the
  4299. Library, but is designed to work with the Library by being compiled or
  4300. linked with it, is called a "work that uses the Library". Such a
  4301. work, in isolation, is not a derivative work of the Library, and
  4302. therefore falls outside the scope of this License.
  4303. However, linking a "work that uses the Library" with the Library
  4304. creates an executable that is a derivative of the Library (because it
  4305. contains portions of the Library), rather than a "work that uses the
  4306. library". The executable is therefore covered by this License.
  4307. Section 6 states terms for distribution of such executables.
  4308. When a "work that uses the Library" uses material from a header file
  4309. that is part of the Library, the object code for the work may be a
  4310. derivative work of the Library even though the source code is not.
  4311. Whether this is true is especially significant if the work can be
  4312. linked without the Library, or if the work is itself a library. The
  4313. threshold for this to be true is not precisely defined by law.
  4314. If such an object file uses only numerical parameters, data
  4315. structure layouts and accessors, and small macros and small inline
  4316. functions (ten lines or less in length), then the use of the object
  4317. file is unrestricted, regardless of whether it is legally a derivative
  4318. work. (Executables containing this object code plus portions of the
  4319. Library will still fall under Section 6.)
  4320. Otherwise, if the work is a derivative of the Library, you may
  4321. distribute the object code for the work under the terms of Section 6.
  4322. Any executables containing that work also fall under Section 6,
  4323. whether or not they are linked directly with the Library itself.
  4324. 6. As an exception to the Sections above, you may also combine or
  4325. link a "work that uses the Library" with the Library to produce a
  4326. work containing portions of the Library, and distribute that work
  4327. under terms of your choice, provided that the terms permit
  4328. modification of the work for the customer's own use and reverse
  4329. engineering for debugging such modifications.
  4330. You must give prominent notice with each copy of the work that the
  4331. Library is used in it and that the Library and its use are covered by
  4332. this License. You must supply a copy of this License. If the work
  4333. during execution displays copyright notices, you must include the
  4334. copyright notice for the Library among them, as well as a reference
  4335. directing the user to the copy of this License. Also, you must do one
  4336. of these things:
  4337. a) Accompany the work with the complete corresponding
  4338. machine-readable source code for the Library including whatever
  4339. changes were used in the work (which must be distributed under
  4340. Sections 1 and 2 above); and, if the work is an executable linked
  4341. with the Library, with the complete machine-readable "work that
  4342. uses the Library", as object code and/or source code, so that the
  4343. user can modify the Library and then relink to produce a modified
  4344. executable containing the modified Library. (It is understood
  4345. that the user who changes the contents of definitions files in the
  4346. Library will not necessarily be able to recompile the application
  4347. to use the modified definitions.)
  4348. b) Use a suitable shared library mechanism for linking with the
  4349. Library. A suitable mechanism is one that (1) uses at run time a
  4350. copy of the library already present on the user's computer system,
  4351. rather than copying library functions into the executable, and (2)
  4352. will operate properly with a modified version of the library, if
  4353. the user installs one, as long as the modified version is
  4354. interface-compatible with the version that the work was made with.
  4355. c) Accompany the work with a written offer, valid for at
  4356. least three years, to give the same user the materials
  4357. specified in Subsection 6a, above, for a charge no more
  4358. than the cost of performing this distribution.
  4359. d) If distribution of the work is made by offering access to copy
  4360. from a designated place, offer equivalent access to copy the above
  4361. specified materials from the same place.
  4362. e) Verify that the user has already received a copy of these
  4363. materials or that you have already sent this user a copy.
  4364. For an executable, the required form of the "work that uses the
  4365. Library" must include any data and utility programs needed for
  4366. reproducing the executable from it. However, as a special exception,
  4367. the materials to be distributed need not include anything that is
  4368. normally distributed (in either source or binary form) with the major
  4369. components (compiler, kernel, and so on) of the operating system on
  4370. which the executable runs, unless that component itself accompanies
  4371. the executable.
  4372. It may happen that this requirement contradicts the license
  4373. restrictions of other proprietary libraries that do not normally
  4374. accompany the operating system. Such a contradiction means you cannot
  4375. use both them and the Library together in an executable that you
  4376. distribute.
  4377. 7. You may place library facilities that are a work based on the
  4378. Library side-by-side in a single library together with other library
  4379. facilities not covered by this License, and distribute such a combined
  4380. library, provided that the separate distribution of the work based on
  4381. the Library and of the other library facilities is otherwise
  4382. permitted, and provided that you do these two things:
  4383. a) Accompany the combined library with a copy of the same work
  4384. based on the Library, uncombined with any other library
  4385. facilities. This must be distributed under the terms of the
  4386. Sections above.
  4387. b) Give prominent notice with the combined library of the fact
  4388. that part of it is a work based on the Library, and explaining
  4389. where to find the accompanying uncombined form of the same work.
  4390. 8. You may not copy, modify, sublicense, link with, or distribute
  4391. the Library except as expressly provided under this License. Any
  4392. attempt otherwise to copy, modify, sublicense, link with, or
  4393. distribute the Library is void, and will automatically terminate your
  4394. rights under this License. However, parties who have received copies,
  4395. or rights, from you under this License will not have their licenses
  4396. terminated so long as such parties remain in full compliance.
  4397. 9. You are not required to accept this License, since you have not
  4398. signed it. However, nothing else grants you permission to modify or
  4399. distribute the Library or its derivative works. These actions are
  4400. prohibited by law if you do not accept this License. Therefore, by
  4401. modifying or distributing the Library (or any work based on the
  4402. Library), you indicate your acceptance of this License to do so, and
  4403. all its terms and conditions for copying, distributing or modifying
  4404. the Library or works based on it.
  4405. 10. Each time you redistribute the Library (or any work based on the
  4406. Library), the recipient automatically receives a license from the
  4407. original licensor to copy, distribute, link with or modify the Library
  4408. subject to these terms and conditions. You may not impose any further
  4409. restrictions on the recipients' exercise of the rights granted herein.
  4410. You are not responsible for enforcing compliance by third parties with
  4411. this License.
  4412. 11. If, as a consequence of a court judgment or allegation of patent
  4413. infringement or for any other reason (not limited to patent issues),
  4414. conditions are imposed on you (whether by court order, agreement or
  4415. otherwise) that contradict the conditions of this License, they do not
  4416. excuse you from the conditions of this License. If you cannot
  4417. distribute so as to satisfy simultaneously your obligations under this
  4418. License and any other pertinent obligations, then as a consequence you
  4419. may not distribute the Library at all. For example, if a patent
  4420. license would not permit royalty-free redistribution of the Library by
  4421. all those who receive copies directly or indirectly through you, then
  4422. the only way you could satisfy both it and this License would be to
  4423. refrain entirely from distribution of the Library.
  4424. If any portion of this section is held invalid or unenforceable under any
  4425. particular circumstance, the balance of the section is intended to apply,
  4426. and the section as a whole is intended to apply in other circumstances.
  4427. It is not the purpose of this section to induce you to infringe any
  4428. patents or other property right claims or to contest validity of any
  4429. such claims; this section has the sole purpose of protecting the
  4430. integrity of the free software distribution system which is
  4431. implemented by public license practices. Many people have made
  4432. generous contributions to the wide range of software distributed
  4433. through that system in reliance on consistent application of that
  4434. system; it is up to the author/donor to decide if he or she is willing
  4435. to distribute software through any other system and a licensee cannot
  4436. impose that choice.
  4437. This section is intended to make thoroughly clear what is believed to
  4438. be a consequence of the rest of this License.
  4439. 12. If the distribution and/or use of the Library is restricted in
  4440. certain countries either by patents or by copyrighted interfaces, the
  4441. original copyright holder who places the Library under this License may add
  4442. an explicit geographical distribution limitation excluding those countries,
  4443. so that distribution is permitted only in or among countries not thus
  4444. excluded. In such case, this License incorporates the limitation as if
  4445. written in the body of this License.
  4446. 13. The Free Software Foundation may publish revised and/or new
  4447. versions of the Lesser General Public License from time to time.
  4448. Such new versions will be similar in spirit to the present version,
  4449. but may differ in detail to address new problems or concerns.
  4450. Each version is given a distinguishing version number. If the Library
  4451. specifies a version number of this License which applies to it and
  4452. "any later version", you have the option of following the terms and
  4453. conditions either of that version or of any later version published by
  4454. the Free Software Foundation. If the Library does not specify a
  4455. license version number, you may choose any version ever published by
  4456. the Free Software Foundation.
  4457. 14. If you wish to incorporate parts of the Library into other free
  4458. programs whose distribution conditions are incompatible with these,
  4459. write to the author to ask for permission. For software which is
  4460. copyrighted by the Free Software Foundation, write to the Free
  4461. Software Foundation; we sometimes make exceptions for this. Our
  4462. decision will be guided by the two goals of preserving the free status
  4463. of all derivatives of our free software and of promoting the sharing
  4464. and reuse of software generally.
  4465. NO WARRANTY
  4466. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  4467. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  4468. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  4469. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  4470. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  4471. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  4472. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  4473. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  4474. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  4475. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  4476. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  4477. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  4478. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  4479. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  4480. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  4481. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  4482. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  4483. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  4484. DAMAGES.
  4485. END OF TERMS AND CONDITIONS
  4486. How to Apply These Terms to Your New Libraries
  4487. If you develop a new library, and you want it to be of the greatest
  4488. possible use to the public, we recommend making it free software that
  4489. everyone can redistribute and change. You can do so by permitting
  4490. redistribution under these terms (or, alternatively, under the terms of the
  4491. ordinary General Public License).
  4492. To apply these terms, attach the following notices to the library. It is
  4493. safest to attach them to the start of each source file to most effectively
  4494. convey the exclusion of warranty; and each file should have at least the
  4495. "copyright" line and a pointer to where the full notice is found.
  4496. <one line to give the library's name and a brief idea of what it does.>
  4497. Copyright (C) <year> <name of author>
  4498. This library is free software; you can redistribute it and/or
  4499. modify it under the terms of the GNU Lesser General Public
  4500. License as published by the Free Software Foundation; either
  4501. version 2.1 of the License, or (at your option) any later version.
  4502. This library is distributed in the hope that it will be useful,
  4503. but WITHOUT ANY WARRANTY; without even the implied warranty of
  4504. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  4505. Lesser General Public License for more details.
  4506. You should have received a copy of the GNU Lesser General Public
  4507. License along with this library; if not, write to the Free Software
  4508. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  4509. Also add information on how to contact you by electronic and paper mail.
  4510. You should also get your employer (if you work as a programmer) or your
  4511. school, if any, to sign a "copyright disclaimer" for the library, if
  4512. necessary. Here is a sample; alter the names:
  4513. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  4514. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  4515. <signature of Ty Coon>, 1 April 1990
  4516. Ty Coon, President of Vice
  4517. That's all there is to it!
  4518. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4519. [ openjpeg 2.5.0 ] copyright:
  4520. /*
  4521. * The copyright in this software is being made available under the 2-clauses
  4522. * BSD License, included below. This software may be subject to other third
  4523. * party and contributor rights, including patent rights, and no such rights
  4524. * are granted under this license.
  4525. *
  4526. * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
  4527. * Copyright (c) 2002-2014, Professor Benoit Macq
  4528. * Copyright (c) 2003-2014, Antonin Descampe
  4529. * Copyright (c) 2003-2009, Francois-Olivier Devaux
  4530. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  4531. * Copyright (c) 2002-2003, Yannick Verschueren
  4532. * Copyright (c) 2001-2003, David Janssens
  4533. * Copyright (c) 2011-2012, Centre National d'Etudes Spatiales (CNES), France
  4534. * Copyright (c) 2012, CS Systemes d'Information, France
  4535. *
  4536. * All rights reserved.
  4537. *
  4538. * Redistribution and use in source and binary forms, with or without
  4539. * modification, are permitted provided that the following conditions
  4540. * are met:
  4541. * 1. Redistributions of source code must retain the above copyright
  4542. * notice, this list of conditions and the following disclaimer.
  4543. * 2. Redistributions in binary form must reproduce the above copyright
  4544. * notice, this list of conditions and the following disclaimer in the
  4545. * documentation and/or other materials provided with the distribution.
  4546. *
  4547. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  4548. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  4549. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  4550. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  4551. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  4552. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  4553. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  4554. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  4555. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  4556. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  4557. * POSSIBILITY OF SUCH DAMAGE.
  4558. */
  4559. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4560. [ pango 1.45.3 ] copyright:
  4561. GNU LIBRARY GENERAL PUBLIC LICENSE
  4562. Version 2, June 1991
  4563. Copyright (C) 1991 Free Software Foundation, Inc.
  4564. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  4565. Everyone is permitted to copy and distribute verbatim copies
  4566. of this license document, but changing it is not allowed.
  4567. [This is the first released version of the library GPL. It is
  4568. numbered 2 because it goes with version 2 of the ordinary GPL.]
  4569. Preamble
  4570. The licenses for most software are designed to take away your
  4571. freedom to share and change it. By contrast, the GNU General Public
  4572. Licenses are intended to guarantee your freedom to share and change
  4573. free software--to make sure the software is free for all its users.
  4574. This license, the Library General Public License, applies to some
  4575. specially designated Free Software Foundation software, and to any
  4576. other libraries whose authors decide to use it. You can use it for
  4577. your libraries, too.
  4578. When we speak of free software, we are referring to freedom, not
  4579. price. Our General Public Licenses are designed to make sure that you
  4580. have the freedom to distribute copies of free software (and charge for
  4581. this service if you wish), that you receive source code or can get it
  4582. if you want it, that you can change the software or use pieces of it
  4583. in new free programs; and that you know you can do these things.
  4584. To protect your rights, we need to make restrictions that forbid
  4585. anyone to deny you these rights or to ask you to surrender the rights.
  4586. These restrictions translate to certain responsibilities for you if
  4587. you distribute copies of the library, or if you modify it.
  4588. For example, if you distribute copies of the library, whether gratis
  4589. or for a fee, you must give the recipients all the rights that we gave
  4590. you. You must make sure that they, too, receive or can get the source
  4591. code. If you link a program with the library, you must provide
  4592. complete object files to the recipients so that they can relink them
  4593. with the library, after making changes to the library and recompiling
  4594. it. And you must show them these terms so they know their rights.
  4595. Our method of protecting your rights has two steps: (1) copyright
  4596. the library, and (2) offer you this license which gives you legal
  4597. permission to copy, distribute and/or modify the library.
  4598. Also, for each distributor's protection, we want to make certain
  4599. that everyone understands that there is no warranty for this free
  4600. library. If the library is modified by someone else and passed on, we
  4601. want its recipients to know that what they have is not the original
  4602. version, so that any problems introduced by others will not reflect on
  4603. the original authors' reputations.
  4604. Finally, any free program is threatened constantly by software
  4605. patents. We wish to avoid the danger that companies distributing free
  4606. software will individually obtain patent licenses, thus in effect
  4607. transforming the program into proprietary software. To prevent this,
  4608. we have made it clear that any patent must be licensed for everyone's
  4609. free use or not licensed at all.
  4610. Most GNU software, including some libraries, is covered by the ordinary
  4611. GNU General Public License, which was designed for utility programs. This
  4612. license, the GNU Library General Public License, applies to certain
  4613. designated libraries. This license is quite different from the ordinary
  4614. one; be sure to read it in full, and don't assume that anything in it is
  4615. the same as in the ordinary license.
  4616. The reason we have a separate public license for some libraries is that
  4617. they blur the distinction we usually make between modifying or adding to a
  4618. program and simply using it. Linking a program with a library, without
  4619. changing the library, is in some sense simply using the library, and is
  4620. analogous to running a utility program or application program. However, in
  4621. a textual and legal sense, the linked executable is a combined work, a
  4622. derivative of the original library, and the ordinary General Public License
  4623. treats it as such.
  4624. Because of this blurred distinction, using the ordinary General
  4625. Public License for libraries did not effectively promote software
  4626. sharing, because most developers did not use the libraries. We
  4627. concluded that weaker conditions might promote sharing better.
  4628. However, unrestricted linking of non-free programs would deprive the
  4629. users of those programs of all benefit from the free status of the
  4630. libraries themselves. This Library General Public License is intended to
  4631. permit developers of non-free programs to use free libraries, while
  4632. preserving your freedom as a user of such programs to change the free
  4633. libraries that are incorporated in them. (We have not seen how to achieve
  4634. this as regards changes in header files, but we have achieved it as regards
  4635. changes in the actual functions of the Library.) The hope is that this
  4636. will lead to faster development of free libraries.
  4637. The precise terms and conditions for copying, distribution and
  4638. modification follow. Pay close attention to the difference between a
  4639. "work based on the library" and a "work that uses the library". The
  4640. former contains code derived from the library, while the latter only
  4641. works together with the library.
  4642. Note that it is possible for a library to be covered by the ordinary
  4643. General Public License rather than by this special one.
  4644. GNU LIBRARY GENERAL PUBLIC LICENSE
  4645. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  4646. 0. This License Agreement applies to any software library which
  4647. contains a notice placed by the copyright holder or other authorized
  4648. party saying it may be distributed under the terms of this Library
  4649. General Public License (also called "this License"). Each licensee is
  4650. addressed as "you".
  4651. A "library" means a collection of software functions and/or data
  4652. prepared so as to be conveniently linked with application programs
  4653. (which use some of those functions and data) to form executables.
  4654. The "Library", below, refers to any such software library or work
  4655. which has been distributed under these terms. A "work based on the
  4656. Library" means either the Library or any derivative work under
  4657. copyright law: that is to say, a work containing the Library or a
  4658. portion of it, either verbatim or with modifications and/or translated
  4659. straightforwardly into another language. (Hereinafter, translation is
  4660. included without limitation in the term "modification".)
  4661. "Source code" for a work means the preferred form of the work for
  4662. making modifications to it. For a library, complete source code means
  4663. all the source code for all modules it contains, plus any associated
  4664. interface definition files, plus the scripts used to control compilation
  4665. and installation of the library.
  4666. Activities other than copying, distribution and modification are not
  4667. covered by this License; they are outside its scope. The act of
  4668. running a program using the Library is not restricted, and output from
  4669. such a program is covered only if its contents constitute a work based
  4670. on the Library (independent of the use of the Library in a tool for
  4671. writing it). Whether that is true depends on what the Library does
  4672. and what the program that uses the Library does.
  4673. 1. You may copy and distribute verbatim copies of the Library's
  4674. complete source code as you receive it, in any medium, provided that
  4675. you conspicuously and appropriately publish on each copy an
  4676. appropriate copyright notice and disclaimer of warranty; keep intact
  4677. all the notices that refer to this License and to the absence of any
  4678. warranty; and distribute a copy of this License along with the
  4679. Library.
  4680. You may charge a fee for the physical act of transferring a copy,
  4681. and you may at your option offer warranty protection in exchange for a
  4682. fee.
  4683. 2. You may modify your copy or copies of the Library or any portion
  4684. of it, thus forming a work based on the Library, and copy and
  4685. distribute such modifications or work under the terms of Section 1
  4686. above, provided that you also meet all of these conditions:
  4687. a) The modified work must itself be a software library.
  4688. b) You must cause the files modified to carry prominent notices
  4689. stating that you changed the files and the date of any change.
  4690. c) You must cause the whole of the work to be licensed at no
  4691. charge to all third parties under the terms of this License.
  4692. d) If a facility in the modified Library refers to a function or a
  4693. table of data to be supplied by an application program that uses
  4694. the facility, other than as an argument passed when the facility
  4695. is invoked, then you must make a good faith effort to ensure that,
  4696. in the event an application does not supply such function or
  4697. table, the facility still operates, and performs whatever part of
  4698. its purpose remains meaningful.
  4699. (For example, a function in a library to compute square roots has
  4700. a purpose that is entirely well-defined independent of the
  4701. application. Therefore, Subsection 2d requires that any
  4702. application-supplied function or table used by this function must
  4703. be optional: if the application does not supply it, the square
  4704. root function must still compute square roots.)
  4705. These requirements apply to the modified work as a whole. If
  4706. identifiable sections of that work are not derived from the Library,
  4707. and can be reasonably considered independent and separate works in
  4708. themselves, then this License, and its terms, do not apply to those
  4709. sections when you distribute them as separate works. But when you
  4710. distribute the same sections as part of a whole which is a work based
  4711. on the Library, the distribution of the whole must be on the terms of
  4712. this License, whose permissions for other licensees extend to the
  4713. entire whole, and thus to each and every part regardless of who wrote
  4714. it.
  4715. Thus, it is not the intent of this section to claim rights or contest
  4716. your rights to work written entirely by you; rather, the intent is to
  4717. exercise the right to control the distribution of derivative or
  4718. collective works based on the Library.
  4719. In addition, mere aggregation of another work not based on the Library
  4720. with the Library (or with a work based on the Library) on a volume of
  4721. a storage or distribution medium does not bring the other work under
  4722. the scope of this License.
  4723. 3. You may opt to apply the terms of the ordinary GNU General Public
  4724. License instead of this License to a given copy of the Library. To do
  4725. this, you must alter all the notices that refer to this License, so
  4726. that they refer to the ordinary GNU General Public License, version 2,
  4727. instead of to this License. (If a newer version than version 2 of the
  4728. ordinary GNU General Public License has appeared, then you can specify
  4729. that version instead if you wish.) Do not make any other change in
  4730. these notices.
  4731. Once this change is made in a given copy, it is irreversible for
  4732. that copy, so the ordinary GNU General Public License applies to all
  4733. subsequent copies and derivative works made from that copy.
  4734. This option is useful when you wish to copy part of the code of
  4735. the Library into a program that is not a library.
  4736. 4. You may copy and distribute the Library (or a portion or
  4737. derivative of it, under Section 2) in object code or executable form
  4738. under the terms of Sections 1 and 2 above provided that you accompany
  4739. it with the complete corresponding machine-readable source code, which
  4740. must be distributed under the terms of Sections 1 and 2 above on a
  4741. medium customarily used for software interchange.
  4742. If distribution of object code is made by offering access to copy
  4743. from a designated place, then offering equivalent access to copy the
  4744. source code from the same place satisfies the requirement to
  4745. distribute the source code, even though third parties are not
  4746. compelled to copy the source along with the object code.
  4747. 5. A program that contains no derivative of any portion of the
  4748. Library, but is designed to work with the Library by being compiled or
  4749. linked with it, is called a "work that uses the Library". Such a
  4750. work, in isolation, is not a derivative work of the Library, and
  4751. therefore falls outside the scope of this License.
  4752. However, linking a "work that uses the Library" with the Library
  4753. creates an executable that is a derivative of the Library (because it
  4754. contains portions of the Library), rather than a "work that uses the
  4755. library". The executable is therefore covered by this License.
  4756. Section 6 states terms for distribution of such executables.
  4757. When a "work that uses the Library" uses material from a header file
  4758. that is part of the Library, the object code for the work may be a
  4759. derivative work of the Library even though the source code is not.
  4760. Whether this is true is especially significant if the work can be
  4761. linked without the Library, or if the work is itself a library. The
  4762. threshold for this to be true is not precisely defined by law.
  4763. If such an object file uses only numerical parameters, data
  4764. structure layouts and accessors, and small macros and small inline
  4765. functions (ten lines or less in length), then the use of the object
  4766. file is unrestricted, regardless of whether it is legally a derivative
  4767. work. (Executables containing this object code plus portions of the
  4768. Library will still fall under Section 6.)
  4769. Otherwise, if the work is a derivative of the Library, you may
  4770. distribute the object code for the work under the terms of Section 6.
  4771. Any executables containing that work also fall under Section 6,
  4772. whether or not they are linked directly with the Library itself.
  4773. 6. As an exception to the Sections above, you may also compile or
  4774. link a "work that uses the Library" with the Library to produce a
  4775. work containing portions of the Library, and distribute that work
  4776. under terms of your choice, provided that the terms permit
  4777. modification of the work for the customer's own use and reverse
  4778. engineering for debugging such modifications.
  4779. You must give prominent notice with each copy of the work that the
  4780. Library is used in it and that the Library and its use are covered by
  4781. this License. You must supply a copy of this License. If the work
  4782. during execution displays copyright notices, you must include the
  4783. copyright notice for the Library among them, as well as a reference
  4784. directing the user to the copy of this License. Also, you must do one
  4785. of these things:
  4786. a) Accompany the work with the complete corresponding
  4787. machine-readable source code for the Library including whatever
  4788. changes were used in the work (which must be distributed under
  4789. Sections 1 and 2 above); and, if the work is an executable linked
  4790. with the Library, with the complete machine-readable "work that
  4791. uses the Library", as object code and/or source code, so that the
  4792. user can modify the Library and then relink to produce a modified
  4793. executable containing the modified Library. (It is understood
  4794. that the user who changes the contents of definitions files in the
  4795. Library will not necessarily be able to recompile the application
  4796. to use the modified definitions.)
  4797. b) Accompany the work with a written offer, valid for at
  4798. least three years, to give the same user the materials
  4799. specified in Subsection 6a, above, for a charge no more
  4800. than the cost of performing this distribution.
  4801. c) If distribution of the work is made by offering access to copy
  4802. from a designated place, offer equivalent access to copy the above
  4803. specified materials from the same place.
  4804. d) Verify that the user has already received a copy of these
  4805. materials or that you have already sent this user a copy.
  4806. For an executable, the required form of the "work that uses the
  4807. Library" must include any data and utility programs needed for
  4808. reproducing the executable from it. However, as a special exception,
  4809. the source code distributed need not include anything that is normally
  4810. distributed (in either source or binary form) with the major
  4811. components (compiler, kernel, and so on) of the operating system on
  4812. which the executable runs, unless that component itself accompanies
  4813. the executable.
  4814. It may happen that this requirement contradicts the license
  4815. restrictions of other proprietary libraries that do not normally
  4816. accompany the operating system. Such a contradiction means you cannot
  4817. use both them and the Library together in an executable that you
  4818. distribute.
  4819. 7. You may place library facilities that are a work based on the
  4820. Library side-by-side in a single library together with other library
  4821. facilities not covered by this License, and distribute such a combined
  4822. library, provided that the separate distribution of the work based on
  4823. the Library and of the other library facilities is otherwise
  4824. permitted, and provided that you do these two things:
  4825. a) Accompany the combined library with a copy of the same work
  4826. based on the Library, uncombined with any other library
  4827. facilities. This must be distributed under the terms of the
  4828. Sections above.
  4829. b) Give prominent notice with the combined library of the fact
  4830. that part of it is a work based on the Library, and explaining
  4831. where to find the accompanying uncombined form of the same work.
  4832. 8. You may not copy, modify, sublicense, link with, or distribute
  4833. the Library except as expressly provided under this License. Any
  4834. attempt otherwise to copy, modify, sublicense, link with, or
  4835. distribute the Library is void, and will automatically terminate your
  4836. rights under this License. However, parties who have received copies,
  4837. or rights, from you under this License will not have their licenses
  4838. terminated so long as such parties remain in full compliance.
  4839. 9. You are not required to accept this License, since you have not
  4840. signed it. However, nothing else grants you permission to modify or
  4841. distribute the Library or its derivative works. These actions are
  4842. prohibited by law if you do not accept this License. Therefore, by
  4843. modifying or distributing the Library (or any work based on the
  4844. Library), you indicate your acceptance of this License to do so, and
  4845. all its terms and conditions for copying, distributing or modifying
  4846. the Library or works based on it.
  4847. 10. Each time you redistribute the Library (or any work based on the
  4848. Library), the recipient automatically receives a license from the
  4849. original licensor to copy, distribute, link with or modify the Library
  4850. subject to these terms and conditions. You may not impose any further
  4851. restrictions on the recipients' exercise of the rights granted herein.
  4852. You are not responsible for enforcing compliance by third parties to
  4853. this License.
  4854. 11. If, as a consequence of a court judgment or allegation of patent
  4855. infringement or for any other reason (not limited to patent issues),
  4856. conditions are imposed on you (whether by court order, agreement or
  4857. otherwise) that contradict the conditions of this License, they do not
  4858. excuse you from the conditions of this License. If you cannot
  4859. distribute so as to satisfy simultaneously your obligations under this
  4860. License and any other pertinent obligations, then as a consequence you
  4861. may not distribute the Library at all. For example, if a patent
  4862. license would not permit royalty-free redistribution of the Library by
  4863. all those who receive copies directly or indirectly through you, then
  4864. the only way you could satisfy both it and this License would be to
  4865. refrain entirely from distribution of the Library.
  4866. If any portion of this section is held invalid or unenforceable under any
  4867. particular circumstance, the balance of the section is intended to apply,
  4868. and the section as a whole is intended to apply in other circumstances.
  4869. It is not the purpose of this section to induce you to infringe any
  4870. patents or other property right claims or to contest validity of any
  4871. such claims; this section has the sole purpose of protecting the
  4872. integrity of the free software distribution system which is
  4873. implemented by public license practices. Many people have made
  4874. generous contributions to the wide range of software distributed
  4875. through that system in reliance on consistent application of that
  4876. system; it is up to the author/donor to decide if he or she is willing
  4877. to distribute software through any other system and a licensee cannot
  4878. impose that choice.
  4879. This section is intended to make thoroughly clear what is believed to
  4880. be a consequence of the rest of this License.
  4881. 12. If the distribution and/or use of the Library is restricted in
  4882. certain countries either by patents or by copyrighted interfaces, the
  4883. original copyright holder who places the Library under this License may add
  4884. an explicit geographical distribution limitation excluding those countries,
  4885. so that distribution is permitted only in or among countries not thus
  4886. excluded. In such case, this License incorporates the limitation as if
  4887. written in the body of this License.
  4888. 13. The Free Software Foundation may publish revised and/or new
  4889. versions of the Library General Public License from time to time.
  4890. Such new versions will be similar in spirit to the present version,
  4891. but may differ in detail to address new problems or concerns.
  4892. Each version is given a distinguishing version number. If the Library
  4893. specifies a version number of this License which applies to it and
  4894. "any later version", you have the option of following the terms and
  4895. conditions either of that version or of any later version published by
  4896. the Free Software Foundation. If the Library does not specify a
  4897. license version number, you may choose any version ever published by
  4898. the Free Software Foundation.
  4899. 14. If you wish to incorporate parts of the Library into other free
  4900. programs whose distribution conditions are incompatible with these,
  4901. write to the author to ask for permission. For software which is
  4902. copyrighted by the Free Software Foundation, write to the Free
  4903. Software Foundation; we sometimes make exceptions for this. Our
  4904. decision will be guided by the two goals of preserving the free status
  4905. of all derivatives of our free software and of promoting the sharing
  4906. and reuse of software generally.
  4907. NO WARRANTY
  4908. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  4909. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  4910. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  4911. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  4912. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  4913. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  4914. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  4915. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  4916. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  4917. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  4918. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  4919. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  4920. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  4921. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  4922. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  4923. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  4924. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  4925. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  4926. DAMAGES.
  4927. END OF TERMS AND CONDITIONS
  4928. How to Apply These Terms to Your New Libraries
  4929. If you develop a new library, and you want it to be of the greatest
  4930. possible use to the public, we recommend making it free software that
  4931. everyone can redistribute and change. You can do so by permitting
  4932. redistribution under these terms (or, alternatively, under the terms of the
  4933. ordinary General Public License).
  4934. To apply these terms, attach the following notices to the library. It is
  4935. safest to attach them to the start of each source file to most effectively
  4936. convey the exclusion of warranty; and each file should have at least the
  4937. "copyright" line and a pointer to where the full notice is found.
  4938. <one line to give the library's name and a brief idea of what it does.>
  4939. Copyright (C) <year> <name of author>
  4940. This library is free software; you can redistribute it and/or
  4941. modify it under the terms of the GNU Library General Public
  4942. License as published by the Free Software Foundation; either
  4943. version 2 of the License, or (at your option) any later version.
  4944. This library is distributed in the hope that it will be useful,
  4945. but WITHOUT ANY WARRANTY; without even the implied warranty of
  4946. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  4947. Library General Public License for more details.
  4948. You should have received a copy of the GNU Library General Public
  4949. License along with this library; if not, write to the
  4950. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  4951. Boston, MA 02111-1307 USA.
  4952. Also add information on how to contact you by electronic and paper mail.
  4953. You should also get your employer (if you work as a programmer) or your
  4954. school, if any, to sign a "copyright disclaimer" for the library, if
  4955. necessary. Here is a sample; alter the names:
  4956. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  4957. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  4958. <signature of Ty Coon>, 1 April 1990
  4959. Ty Coon, President of Vice
  4960. That's all there is to it!
  4961. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4962. [ pixman 0.42.2 ] copyright:
  4963. The following is the MIT license, agreed upon by most contributors.
  4964. Copyright holders of new code should use this license statement where
  4965. possible. They may also add themselves to the list below.
  4966. /*
  4967. * Copyright 1987, 1988, 1989, 1998 The Open Group
  4968. * Copyright 1987, 1988, 1989 Digital Equipment Corporation
  4969. * Copyright 1999, 2004, 2008 Keith Packard
  4970. * Copyright 2000 SuSE, Inc.
  4971. * Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
  4972. * Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.
  4973. * Copyright 2004 Nicholas Miell
  4974. * Copyright 2005 Lars Knoll & Zack Rusin, Trolltech
  4975. * Copyright 2005 Trolltech AS
  4976. * Copyright 2007 Luca Barbato
  4977. * Copyright 2008 Aaron Plattner, NVIDIA Corporation
  4978. * Copyright 2008 Rodrigo Kumpera
  4979. * Copyright 2008 André Tupinambá
  4980. * Copyright 2008 Mozilla Corporation
  4981. * Copyright 2008 Frederic Plourde
  4982. * Copyright 2009, Oracle and/or its affiliates. All rights reserved.
  4983. * Copyright 2009, 2010 Nokia Corporation
  4984. *
  4985. * Permission is hereby granted, free of charge, to any person obtaining a
  4986. * copy of this software and associated documentation files (the "Software"),
  4987. * to deal in the Software without restriction, including without limitation
  4988. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  4989. * and/or sell copies of the Software, and to permit persons to whom the
  4990. * Software is furnished to do so, subject to the following conditions:
  4991. *
  4992. * The above copyright notice and this permission notice (including the next
  4993. * paragraph) shall be included in all copies or substantial portions of the
  4994. * Software.
  4995. *
  4996. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4997. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4998. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  4999. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5000. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  5001. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  5002. * DEALINGS IN THE SOFTWARE.
  5003. */
  5004. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5005. [ png 1.6.40 ] copyright:
  5006. COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
  5007. =========================================
  5008. PNG Reference Library License version 2
  5009. ---------------------------------------
  5010. * Copyright (c) 1995-2023 The PNG Reference Library Authors.
  5011. * Copyright (c) 2018-2023 Cosmin Truta.
  5012. * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
  5013. * Copyright (c) 1996-1997 Andreas Dilger.
  5014. * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
  5015. The software is supplied "as is", without warranty of any kind,
  5016. express or implied, including, without limitation, the warranties
  5017. of merchantability, fitness for a particular purpose, title, and
  5018. non-infringement. In no event shall the Copyright owners, or
  5019. anyone distributing the software, be liable for any damages or
  5020. other liability, whether in contract, tort or otherwise, arising
  5021. from, out of, or in connection with the software, or the use or
  5022. other dealings in the software, even if advised of the possibility
  5023. of such damage.
  5024. Permission is hereby granted to use, copy, modify, and distribute
  5025. this software, or portions hereof, for any purpose, without fee,
  5026. subject to the following restrictions:
  5027. 1. The origin of this software must not be misrepresented; you
  5028. must not claim that you wrote the original software. If you
  5029. use this software in a product, an acknowledgment in the product
  5030. documentation would be appreciated, but is not required.
  5031. 2. Altered source versions must be plainly marked as such, and must
  5032. not be misrepresented as being the original software.
  5033. 3. This Copyright notice may not be removed or altered from any
  5034. source or altered source distribution.
  5035. PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35)
  5036. -----------------------------------------------------------------------
  5037. libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are
  5038. Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are
  5039. derived from libpng-1.0.6, and are distributed according to the same
  5040. disclaimer and license as libpng-1.0.6 with the following individuals
  5041. added to the list of Contributing Authors:
  5042. Simon-Pierre Cadieux
  5043. Eric S. Raymond
  5044. Mans Rullgard
  5045. Cosmin Truta
  5046. Gilles Vollant
  5047. James Yu
  5048. Mandar Sahastrabuddhe
  5049. Google Inc.
  5050. Vadim Barkov
  5051. and with the following additions to the disclaimer:
  5052. There is no warranty against interference with your enjoyment of
  5053. the library or against infringement. There is no warranty that our
  5054. efforts or the library will fulfill any of your particular purposes
  5055. or needs. This library is provided with all faults, and the entire
  5056. risk of satisfactory quality, performance, accuracy, and effort is
  5057. with the user.
  5058. Some files in the "contrib" directory and some configure-generated
  5059. files that are distributed with libpng have other copyright owners, and
  5060. are released under other open source licenses.
  5061. libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
  5062. Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
  5063. libpng-0.96, and are distributed according to the same disclaimer and
  5064. license as libpng-0.96, with the following individuals added to the
  5065. list of Contributing Authors:
  5066. Tom Lane
  5067. Glenn Randers-Pehrson
  5068. Willem van Schaik
  5069. libpng versions 0.89, June 1996, through 0.96, May 1997, are
  5070. Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
  5071. and are distributed according to the same disclaimer and license as
  5072. libpng-0.88, with the following individuals added to the list of
  5073. Contributing Authors:
  5074. John Bowler
  5075. Kevin Bracey
  5076. Sam Bushell
  5077. Magnus Holmgren
  5078. Greg Roelofs
  5079. Tom Tanner
  5080. Some files in the "scripts" directory have other copyright owners,
  5081. but are released under this license.
  5082. libpng versions 0.5, May 1995, through 0.88, January 1996, are
  5083. Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
  5084. For the purposes of this copyright and license, "Contributing Authors"
  5085. is defined as the following set of individuals:
  5086. Andreas Dilger
  5087. Dave Martindale
  5088. Guy Eric Schalnat
  5089. Paul Schmidt
  5090. Tim Wegner
  5091. The PNG Reference Library is supplied "AS IS". The Contributing
  5092. Authors and Group 42, Inc. disclaim all warranties, expressed or
  5093. implied, including, without limitation, the warranties of
  5094. merchantability and of fitness for any purpose. The Contributing
  5095. Authors and Group 42, Inc. assume no liability for direct, indirect,
  5096. incidental, special, exemplary, or consequential damages, which may
  5097. result from the use of the PNG Reference Library, even if advised of
  5098. the possibility of such damage.
  5099. Permission is hereby granted to use, copy, modify, and distribute this
  5100. source code, or portions hereof, for any purpose, without fee, subject
  5101. to the following restrictions:
  5102. 1. The origin of this source code must not be misrepresented.
  5103. 2. Altered versions must be plainly marked as such and must not
  5104. be misrepresented as being the original source.
  5105. 3. This Copyright notice may not be removed or altered from any
  5106. source or altered source distribution.
  5107. The Contributing Authors and Group 42, Inc. specifically permit,
  5108. without fee, and encourage the use of this source code as a component
  5109. to supporting the PNG file format in commercial products. If you use
  5110. this source code in a product, acknowledgment is not required but would
  5111. be appreciated.
  5112. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5113. [ raqm 0.10.1 ] copyright:
  5114. The MIT License (MIT)
  5115. Copyright © 2015 Information Technology Authority (ITA) <foss@ita.gov.om>
  5116. Copyright © 2016-2023 Khaled Hosny <khaled@aliftype.com>
  5117. Permission is hereby granted, free of charge, to any person obtaining a copy
  5118. of this software and associated documentation files (the "Software"), to deal
  5119. in the Software without restriction, including without limitation the rights
  5120. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5121. copies of the Software, and to permit persons to whom the Software is
  5122. furnished to do so, subject to the following conditions:
  5123. The above copyright notice and this permission notice shall be included in all
  5124. copies or substantial portions of the Software.
  5125. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5126. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  5127. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5128. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5129. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5130. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  5131. SOFTWARE.
  5132. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5133. [ raw 0.21.1 ] copyright:
  5134. ** LibRaw: Raw images processing library **
  5135. Copyright (C) 2008-2021 LibRaw LLC (http://www.libraw.org, info@libraw.org)
  5136. LibRaw is free software; you can redistribute it and/or modify
  5137. it under the terms of the one of two licenses as you choose:
  5138. 1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
  5139. (See file LICENSE.LGPL provided in LibRaw distribution archive for details).
  5140. 2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
  5141. (See file LICENSE.CDDL provided in LibRaw distribution archive for details).
  5142. LibRaw uses code from dcraw.c -- Dave Coffin's raw photo decoder,
  5143. dcraw.c is copyright 1997-2018 by Dave Coffin, dcoffin a cybercom o net.
  5144. LibRaw do not use RESTRICTED code from dcraw.c
  5145. LibRaw uses DCB demosaic and FBDD denoise licensed under BSD-like 3-clause license
  5146. DCB and FBDD are Copyright (C) 2010, Jacek Gozdz (cuniek@kft.umcs.lublin.pl)
  5147. LibRaw uses X3F library to unpack Foveon Files, licensed BSD-style license
  5148. Copyright (c) 2010, Roland Karlsson (roland@proxel.se)
  5149. All rights reserved.
  5150. LibRaw uses pieces of code from Adobe DNG SDK 1.4,
  5151. Copyright (c) 2005 Adobe Systems Incorporated, licensed under MIT license
  5152. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5153. [ rsvg 2.40.20 ] copyright:
  5154. GNU GENERAL PUBLIC LICENSE
  5155. Version 2, June 1991
  5156. Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  5157. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  5158. Everyone is permitted to copy and distribute verbatim copies
  5159. of this license document, but changing it is not allowed.
  5160. Preamble
  5161. The licenses for most software are designed to take away your
  5162. freedom to share and change it. By contrast, the GNU General Public
  5163. License is intended to guarantee your freedom to share and change free
  5164. software--to make sure the software is free for all its users. This
  5165. General Public License applies to most of the Free Software
  5166. Foundation's software and to any other program whose authors commit to
  5167. using it. (Some other Free Software Foundation software is covered by
  5168. the GNU Library General Public License instead.) You can apply it to
  5169. your programs, too.
  5170. When we speak of free software, we are referring to freedom, not
  5171. price. Our General Public Licenses are designed to make sure that you
  5172. have the freedom to distribute copies of free software (and charge for
  5173. this service if you wish), that you receive source code or can get it
  5174. if you want it, that you can change the software or use pieces of it
  5175. in new free programs; and that you know you can do these things.
  5176. To protect your rights, we need to make restrictions that forbid
  5177. anyone to deny you these rights or to ask you to surrender the rights.
  5178. These restrictions translate to certain responsibilities for you if you
  5179. distribute copies of the software, or if you modify it.
  5180. For example, if you distribute copies of such a program, whether
  5181. gratis or for a fee, you must give the recipients all the rights that
  5182. you have. You must make sure that they, too, receive or can get the
  5183. source code. And you must show them these terms so they know their
  5184. rights.
  5185. We protect your rights with two steps: (1) copyright the software, and
  5186. (2) offer you this license which gives you legal permission to copy,
  5187. distribute and/or modify the software.
  5188. Also, for each author's protection and ours, we want to make certain
  5189. that everyone understands that there is no warranty for this free
  5190. software. If the software is modified by someone else and passed on, we
  5191. want its recipients to know that what they have is not the original, so
  5192. that any problems introduced by others will not reflect on the original
  5193. authors' reputations.
  5194. Finally, any free program is threatened constantly by software
  5195. patents. We wish to avoid the danger that redistributors of a free
  5196. program will individually obtain patent licenses, in effect making the
  5197. program proprietary. To prevent this, we have made it clear that any
  5198. patent must be licensed for everyone's free use or not licensed at all.
  5199. The precise terms and conditions for copying, distribution and
  5200. modification follow.
  5201. GNU GENERAL PUBLIC LICENSE
  5202. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  5203. 0. This License applies to any program or other work which contains
  5204. a notice placed by the copyright holder saying it may be distributed
  5205. under the terms of this General Public License. The "Program", below,
  5206. refers to any such program or work, and a "work based on the Program"
  5207. means either the Program or any derivative work under copyright law:
  5208. that is to say, a work containing the Program or a portion of it,
  5209. either verbatim or with modifications and/or translated into another
  5210. language. (Hereinafter, translation is included without limitation in
  5211. the term "modification".) Each licensee is addressed as "you".
  5212. Activities other than copying, distribution and modification are not
  5213. covered by this License; they are outside its scope. The act of
  5214. running the Program is not restricted, and the output from the Program
  5215. is covered only if its contents constitute a work based on the
  5216. Program (independent of having been made by running the Program).
  5217. Whether that is true depends on what the Program does.
  5218. 1. You may copy and distribute verbatim copies of the Program's
  5219. source code as you receive it, in any medium, provided that you
  5220. conspicuously and appropriately publish on each copy an appropriate
  5221. copyright notice and disclaimer of warranty; keep intact all the
  5222. notices that refer to this License and to the absence of any warranty;
  5223. and give any other recipients of the Program a copy of this License
  5224. along with the Program.
  5225. You may charge a fee for the physical act of transferring a copy, and
  5226. you may at your option offer warranty protection in exchange for a fee.
  5227. 2. You may modify your copy or copies of the Program or any portion
  5228. of it, thus forming a work based on the Program, and copy and
  5229. distribute such modifications or work under the terms of Section 1
  5230. above, provided that you also meet all of these conditions:
  5231. a) You must cause the modified files to carry prominent notices
  5232. stating that you changed the files and the date of any change.
  5233. b) You must cause any work that you distribute or publish, that in
  5234. whole or in part contains or is derived from the Program or any
  5235. part thereof, to be licensed as a whole at no charge to all third
  5236. parties under the terms of this License.
  5237. c) If the modified program normally reads commands interactively
  5238. when run, you must cause it, when started running for such
  5239. interactive use in the most ordinary way, to print or display an
  5240. announcement including an appropriate copyright notice and a
  5241. notice that there is no warranty (or else, saying that you provide
  5242. a warranty) and that users may redistribute the program under
  5243. these conditions, and telling the user how to view a copy of this
  5244. License. (Exception: if the Program itself is interactive but
  5245. does not normally print such an announcement, your work based on
  5246. the Program is not required to print an announcement.)
  5247. These requirements apply to the modified work as a whole. If
  5248. identifiable sections of that work are not derived from the Program,
  5249. and can be reasonably considered independent and separate works in
  5250. themselves, then this License, and its terms, do not apply to those
  5251. sections when you distribute them as separate works. But when you
  5252. distribute the same sections as part of a whole which is a work based
  5253. on the Program, the distribution of the whole must be on the terms of
  5254. this License, whose permissions for other licensees extend to the
  5255. entire whole, and thus to each and every part regardless of who wrote it.
  5256. Thus, it is not the intent of this section to claim rights or contest
  5257. your rights to work written entirely by you; rather, the intent is to
  5258. exercise the right to control the distribution of derivative or
  5259. collective works based on the Program.
  5260. In addition, mere aggregation of another work not based on the Program
  5261. with the Program (or with a work based on the Program) on a volume of
  5262. a storage or distribution medium does not bring the other work under
  5263. the scope of this License.
  5264. 3. You may copy and distribute the Program (or a work based on it,
  5265. under Section 2) in object code or executable form under the terms of
  5266. Sections 1 and 2 above provided that you also do one of the following:
  5267. a) Accompany it with the complete corresponding machine-readable
  5268. source code, which must be distributed under the terms of Sections
  5269. 1 and 2 above on a medium customarily used for software interchange; or,
  5270. b) Accompany it with a written offer, valid for at least three
  5271. years, to give any third party, for a charge no more than your
  5272. cost of physically performing source distribution, a complete
  5273. machine-readable copy of the corresponding source code, to be
  5274. distributed under the terms of Sections 1 and 2 above on a medium
  5275. customarily used for software interchange; or,
  5276. c) Accompany it with the information you received as to the offer
  5277. to distribute corresponding source code. (This alternative is
  5278. allowed only for noncommercial distribution and only if you
  5279. received the program in object code or executable form with such
  5280. an offer, in accord with Subsection b above.)
  5281. The source code for a work means the preferred form of the work for
  5282. making modifications to it. For an executable work, complete source
  5283. code means all the source code for all modules it contains, plus any
  5284. associated interface definition files, plus the scripts used to
  5285. control compilation and installation of the executable. However, as a
  5286. special exception, the source code distributed need not include
  5287. anything that is normally distributed (in either source or binary
  5288. form) with the major components (compiler, kernel, and so on) of the
  5289. operating system on which the executable runs, unless that component
  5290. itself accompanies the executable.
  5291. If distribution of executable or object code is made by offering
  5292. access to copy from a designated place, then offering equivalent
  5293. access to copy the source code from the same place counts as
  5294. distribution of the source code, even though third parties are not
  5295. compelled to copy the source along with the object code.
  5296. 4. You may not copy, modify, sublicense, or distribute the Program
  5297. except as expressly provided under this License. Any attempt
  5298. otherwise to copy, modify, sublicense or distribute the Program is
  5299. void, and will automatically terminate your rights under this License.
  5300. However, parties who have received copies, or rights, from you under
  5301. this License will not have their licenses terminated so long as such
  5302. parties remain in full compliance.
  5303. 5. You are not required to accept this License, since you have not
  5304. signed it. However, nothing else grants you permission to modify or
  5305. distribute the Program or its derivative works. These actions are
  5306. prohibited by law if you do not accept this License. Therefore, by
  5307. modifying or distributing the Program (or any work based on the
  5308. Program), you indicate your acceptance of this License to do so, and
  5309. all its terms and conditions for copying, distributing or modifying
  5310. the Program or works based on it.
  5311. 6. Each time you redistribute the Program (or any work based on the
  5312. Program), the recipient automatically receives a license from the
  5313. original licensor to copy, distribute or modify the Program subject to
  5314. these terms and conditions. You may not impose any further
  5315. restrictions on the recipients' exercise of the rights granted herein.
  5316. You are not responsible for enforcing compliance by third parties to
  5317. this License.
  5318. 7. If, as a consequence of a court judgment or allegation of patent
  5319. infringement or for any other reason (not limited to patent issues),
  5320. conditions are imposed on you (whether by court order, agreement or
  5321. otherwise) that contradict the conditions of this License, they do not
  5322. excuse you from the conditions of this License. If you cannot
  5323. distribute so as to satisfy simultaneously your obligations under this
  5324. License and any other pertinent obligations, then as a consequence you
  5325. may not distribute the Program at all. For example, if a patent
  5326. license would not permit royalty-free redistribution of the Program by
  5327. all those who receive copies directly or indirectly through you, then
  5328. the only way you could satisfy both it and this License would be to
  5329. refrain entirely from distribution of the Program.
  5330. If any portion of this section is held invalid or unenforceable under
  5331. any particular circumstance, the balance of the section is intended to
  5332. apply and the section as a whole is intended to apply in other
  5333. circumstances.
  5334. It is not the purpose of this section to induce you to infringe any
  5335. patents or other property right claims or to contest validity of any
  5336. such claims; this section has the sole purpose of protecting the
  5337. integrity of the free software distribution system, which is
  5338. implemented by public license practices. Many people have made
  5339. generous contributions to the wide range of software distributed
  5340. through that system in reliance on consistent application of that
  5341. system; it is up to the author/donor to decide if he or she is willing
  5342. to distribute software through any other system and a licensee cannot
  5343. impose that choice.
  5344. This section is intended to make thoroughly clear what is believed to
  5345. be a consequence of the rest of this License.
  5346. 8. If the distribution and/or use of the Program is restricted in
  5347. certain countries either by patents or by copyrighted interfaces, the
  5348. original copyright holder who places the Program under this License
  5349. may add an explicit geographical distribution limitation excluding
  5350. those countries, so that distribution is permitted only in or among
  5351. countries not thus excluded. In such case, this License incorporates
  5352. the limitation as if written in the body of this License.
  5353. 9. The Free Software Foundation may publish revised and/or new versions
  5354. of the General Public License from time to time. Such new versions will
  5355. be similar in spirit to the present version, but may differ in detail to
  5356. address new problems or concerns.
  5357. Each version is given a distinguishing version number. If the Program
  5358. specifies a version number of this License which applies to it and "any
  5359. later version", you have the option of following the terms and conditions
  5360. either of that version or of any later version published by the Free
  5361. Software Foundation. If the Program does not specify a version number of
  5362. this License, you may choose any version ever published by the Free Software
  5363. Foundation.
  5364. 10. If you wish to incorporate parts of the Program into other free
  5365. programs whose distribution conditions are different, write to the author
  5366. to ask for permission. For software which is copyrighted by the Free
  5367. Software Foundation, write to the Free Software Foundation; we sometimes
  5368. make exceptions for this. Our decision will be guided by the two goals
  5369. of preserving the free status of all derivatives of our free software and
  5370. of promoting the sharing and reuse of software generally.
  5371. NO WARRANTY
  5372. 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
  5373. FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
  5374. OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
  5375. PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
  5376. OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  5377. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
  5378. TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
  5379. PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
  5380. REPAIR OR CORRECTION.
  5381. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  5382. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
  5383. REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
  5384. INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
  5385. OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
  5386. TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
  5387. YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
  5388. PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
  5389. POSSIBILITY OF SUCH DAMAGES.
  5390. END OF TERMS AND CONDITIONS
  5391. How to Apply These Terms to Your New Programs
  5392. If you develop a new program, and you want it to be of the greatest
  5393. possible use to the public, the best way to achieve this is to make it
  5394. free software which everyone can redistribute and change under these terms.
  5395. To do so, attach the following notices to the program. It is safest
  5396. to attach them to the start of each source file to most effectively
  5397. convey the exclusion of warranty; and each file should have at least
  5398. the "copyright" line and a pointer to where the full notice is found.
  5399. <one line to give the program's name and a brief idea of what it does.>
  5400. Copyright (C) <year> <name of author>
  5401. This program is free software; you can redistribute it and/or modify
  5402. it under the terms of the GNU General Public License as published by
  5403. the Free Software Foundation; either version 2 of the License, or
  5404. (at your option) any later version.
  5405. This program is distributed in the hope that it will be useful,
  5406. but WITHOUT ANY WARRANTY; without even the implied warranty of
  5407. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  5408. GNU General Public License for more details.
  5409. You should have received a copy of the GNU General Public License
  5410. along with this program; if not, write to the Free Software
  5411. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  5412. Also add information on how to contact you by electronic and paper mail.
  5413. If the program is interactive, make it output a short notice like this
  5414. when it starts in an interactive mode:
  5415. Gnomovision version 69, Copyright (C) year name of author
  5416. Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  5417. This is free software, and you are welcome to redistribute it
  5418. under certain conditions; type `show c' for details.
  5419. The hypothetical commands `show w' and `show c' should show the appropriate
  5420. parts of the General Public License. Of course, the commands you use may
  5421. be called something other than `show w' and `show c'; they could even be
  5422. mouse-clicks or menu items--whatever suits your program.
  5423. You should also get your employer (if you work as a programmer) or your
  5424. school, if any, to sign a "copyright disclaimer" for the program, if
  5425. necessary. Here is a sample; alter the names:
  5426. Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  5427. `Gnomovision' (which makes passes at compilers) written by James Hacker.
  5428. <signature of Ty Coon>, 1 April 1989
  5429. Ty Coon, President of Vice
  5430. This General Public License does not permit incorporating your program into
  5431. proprietary programs. If your program is a subroutine library, you may
  5432. consider it more useful to permit linking proprietary applications with the
  5433. library. If this is what you want to do, use the GNU Library General
  5434. Public License instead of this License.
  5435. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5436. [ tiff 4.6.0 ] copyright:
  5437. # LibTIFF license
  5438. Copyright © 1988-1997 Sam Leffler\
  5439. Copyright © 1991-1997 Silicon Graphics, Inc.
  5440. Permission to use, copy, modify, distribute, and sell this software and
  5441. its documentation for any purpose is hereby granted without fee, provided
  5442. that (i) the above copyright notices and this permission notice appear in
  5443. all copies of the software and related documentation, and (ii) the names of
  5444. Sam Leffler and Silicon Graphics may not be used in any advertising or
  5445. publicity relating to the software without the specific, prior written
  5446. permission of Sam Leffler and Silicon Graphics.
  5447. THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
  5448. EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  5449. WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  5450. IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  5451. ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  5452. OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  5453. WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  5454. LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  5455. OF THIS SOFTWARE.
  5456. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5457. [ webp 1.3.2 ] copyright:
  5458. Copyright (c) 2010, Google Inc. All rights reserved.
  5459. Redistribution and use in source and binary forms, with or without
  5460. modification, are permitted provided that the following conditions are
  5461. met:
  5462. * Redistributions of source code must retain the above copyright
  5463. notice, this list of conditions and the following disclaimer.
  5464. * Redistributions in binary form must reproduce the above copyright
  5465. notice, this list of conditions and the following disclaimer in
  5466. the documentation and/or other materials provided with the
  5467. distribution.
  5468. * Neither the name of Google nor the names of its contributors may
  5469. be used to endorse or promote products derived from this software
  5470. without specific prior written permission.
  5471. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  5472. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5473. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  5474. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  5475. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  5476. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  5477. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  5478. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  5479. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  5480. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  5481. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  5482. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5483. [ xml 2.11.5 ] copyright:
  5484. Except where otherwise noted in the source code (e.g. the files hash.c,
  5485. list.c and the trio files, which are covered by a similar licence but
  5486. with different Copyright notices) all the files are:
  5487. Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
  5488. Permission is hereby granted, free of charge, to any person obtaining a copy
  5489. of this software and associated documentation files (the "Software"), to deal
  5490. in the Software without restriction, including without limitation the rights
  5491. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5492. copies of the Software, and to permit persons to whom the Software is fur-
  5493. nished to do so, subject to the following conditions:
  5494. The above copyright notice and this permission notice shall be included in
  5495. all copies or substantial portions of the Software.
  5496. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5497. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
  5498. NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5499. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5500. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5501. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5502. THE SOFTWARE.
  5503. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5504. [ zip 1.10.1 ] copyright:
  5505. Copyright (C) 1999-2020 Dieter Baron and Thomas Klausner
  5506. The authors can be contacted at <info@libzip.org>
  5507. Redistribution and use in source and binary forms, with or without
  5508. modification, are permitted provided that the following conditions
  5509. are met:
  5510. 1. Redistributions of source code must retain the above copyright
  5511. notice, this list of conditions and the following disclaimer.
  5512. 2. Redistributions in binary form must reproduce the above copyright
  5513. notice, this list of conditions and the following disclaimer in
  5514. the documentation and/or other materials provided with the
  5515. distribution.
  5516. 3. The names of the authors may not be used to endorse or promote
  5517. products derived from this software without specific prior
  5518. written permission.
  5519. THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
  5520. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  5521. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  5522. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
  5523. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  5524. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  5525. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  5526. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  5527. IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  5528. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  5529. IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  5530. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5531. [ zlib 1.2.13 ] copyright:
  5532. Copyright notice:
  5533. (C) 1995-2022 Jean-loup Gailly and Mark Adler
  5534. This software is provided 'as-is', without any express or implied
  5535. warranty. In no event will the authors be held liable for any damages
  5536. arising from the use of this software.
  5537. Permission is granted to anyone to use this software for any purpose,
  5538. including commercial applications, and to alter it and redistribute it
  5539. freely, subject to the following restrictions:
  5540. 1. The origin of this software must not be misrepresented; you must not
  5541. claim that you wrote the original software. If you use this software
  5542. in a product, an acknowledgment in the product documentation would be
  5543. appreciated but is not required.
  5544. 2. Altered source versions must be plainly marked as such, and must not be
  5545. misrepresented as being the original software.
  5546. 3. This notice may not be removed or altered from any source distribution.
  5547. Jean-loup Gailly Mark Adler
  5548. jloup@gzip.org madler@alumni.caltech.edu
  5549. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *