NOTICE.txt 341 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659
  1. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2. [ Imagemagick 7.1.1-11] 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.6.1 ] 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.0.9 ] 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.17.8 ] 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.11 ] 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. [ exr 3.1.7 ] copyright:
  1675. Copyright (c) 2006-2019 OpenEXR a Series of LF Projects, LLC. All rights reserved.
  1676. Redistribution and use in source and binary forms, with or without modification,
  1677. are permitted provided that the following conditions are met:
  1678. - Redistributions of source code must retain the above copyright notice, this list of
  1679. conditions and the following disclaimer.
  1680. - Redistributions in binary form must reproduce the above copyright notice, this
  1681. list of conditions and the following disclaimer in the documentation and/or other
  1682. materials provided with the distribution.
  1683. - Neither the name of the copyright holder nor the names of its contributors may
  1684. be used to endorse or promote products derived from this software without
  1685. specific prior written permission.
  1686. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  1687. CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  1688. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  1689. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1690. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  1691. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1692. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  1693. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1694. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1695. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  1696. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  1697. OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  1698. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1699. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  1700. [ ffi 3.4.4 ] copyright:
  1701. libffi - Copyright (c) 1996-2022 Anthony Green, Red Hat, Inc and others.
  1702. See source files for details.
  1703. Permission is hereby granted, free of charge, to any person obtaining
  1704. a copy of this software and associated documentation files (the
  1705. ``Software''), to deal in the Software without restriction, including
  1706. without limitation the rights to use, copy, modify, merge, publish,
  1707. distribute, sublicense, and/or sell copies of the Software, and to
  1708. permit persons to whom the Software is furnished to do so, subject to
  1709. the following conditions:
  1710. The above copyright notice and this permission notice shall be
  1711. included in all copies or substantial portions of the Software.
  1712. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
  1713. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1714. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  1715. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  1716. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  1717. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  1718. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1719. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  1720. [ freetype 2.13.0 ] copyright:
  1721. The FreeType Project LICENSE
  1722. ----------------------------
  1723. 2006-Jan-27
  1724. Copyright 1996-2002, 2006 by
  1725. David Turner, Robert Wilhelm, and Werner Lemberg
  1726. Introduction
  1727. ============
  1728. The FreeType Project is distributed in several archive packages;
  1729. some of them may contain, in addition to the FreeType font engine,
  1730. various tools and contributions which rely on, or relate to, the
  1731. FreeType Project.
  1732. This license applies to all files found in such packages, and
  1733. which do not fall under their own explicit license. The license
  1734. affects thus the FreeType font engine, the test programs,
  1735. documentation and makefiles, at the very least.
  1736. This license was inspired by the BSD, Artistic, and IJG
  1737. (Independent JPEG Group) licenses, which all encourage inclusion
  1738. and use of free software in commercial and freeware products
  1739. alike. As a consequence, its main points are that:
  1740. o We don't promise that this software works. However, we will be
  1741. interested in any kind of bug reports. (`as is' distribution)
  1742. o You can use this software for whatever you want, in parts or
  1743. full form, without having to pay us. (`royalty-free' usage)
  1744. o You may not pretend that you wrote this software. If you use
  1745. it, or only parts of it, in a program, you must acknowledge
  1746. somewhere in your documentation that you have used the
  1747. FreeType code. (`credits')
  1748. We specifically permit and encourage the inclusion of this
  1749. software, with or without modifications, in commercial products.
  1750. We disclaim all warranties covering The FreeType Project and
  1751. assume no liability related to The FreeType Project.
  1752. Finally, many people asked us for a preferred form for a
  1753. credit/disclaimer to use in compliance with this license. We thus
  1754. encourage you to use the following text:
  1755. """
  1756. Portions of this software are copyright © <year> The FreeType
  1757. Project (www.freetype.org). All rights reserved.
  1758. """
  1759. Please replace <year> with the value from the FreeType version you
  1760. actually use.
  1761. Legal Terms
  1762. ===========
  1763. 0. Definitions
  1764. --------------
  1765. Throughout this license, the terms `package', `FreeType Project',
  1766. and `FreeType archive' refer to the set of files originally
  1767. distributed by the authors (David Turner, Robert Wilhelm, and
  1768. Werner Lemberg) as the `FreeType Project', be they named as alpha,
  1769. beta or final release.
  1770. `You' refers to the licensee, or person using the project, where
  1771. `using' is a generic term including compiling the project's source
  1772. code as well as linking it to form a `program' or `executable'.
  1773. This program is referred to as `a program using the FreeType
  1774. engine'.
  1775. This license applies to all files distributed in the original
  1776. FreeType Project, including all source code, binaries and
  1777. documentation, unless otherwise stated in the file in its
  1778. original, unmodified form as distributed in the original archive.
  1779. If you are unsure whether or not a particular file is covered by
  1780. this license, you must contact us to verify this.
  1781. The FreeType Project is copyright (C) 1996-2000 by David Turner,
  1782. Robert Wilhelm, and Werner Lemberg. All rights reserved except as
  1783. specified below.
  1784. 1. No Warranty
  1785. --------------
  1786. THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
  1787. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  1788. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1789. PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
  1790. BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
  1791. USE, OF THE FREETYPE PROJECT.
  1792. 2. Redistribution
  1793. -----------------
  1794. This license grants a worldwide, royalty-free, perpetual and
  1795. irrevocable right and license to use, execute, perform, compile,
  1796. display, copy, create derivative works of, distribute and
  1797. sublicense the FreeType Project (in both source and object code
  1798. forms) and derivative works thereof for any purpose; and to
  1799. authorize others to exercise some or all of the rights granted
  1800. herein, subject to the following conditions:
  1801. o Redistribution of source code must retain this license file
  1802. (`FTL.TXT') unaltered; any additions, deletions or changes to
  1803. the original files must be clearly indicated in accompanying
  1804. documentation. The copyright notices of the unaltered,
  1805. original files must be preserved in all copies of source
  1806. files.
  1807. o Redistribution in binary form must provide a disclaimer that
  1808. states that the software is based in part of the work of the
  1809. FreeType Team, in the distribution documentation. We also
  1810. encourage you to put an URL to the FreeType web page in your
  1811. documentation, though this isn't mandatory.
  1812. These conditions apply to any software derived from or based on
  1813. the FreeType Project, not just the unmodified files. If you use
  1814. our work, you must acknowledge us. However, no fee need be paid
  1815. to us.
  1816. 3. Advertising
  1817. --------------
  1818. Neither the FreeType authors and contributors nor you shall use
  1819. the name of the other for commercial, advertising, or promotional
  1820. purposes without specific prior written permission.
  1821. We suggest, but do not require, that you use one or more of the
  1822. following phrases to refer to this software in your documentation
  1823. or advertising materials: `FreeType Project', `FreeType Engine',
  1824. `FreeType library', or `FreeType Distribution'.
  1825. As you have not signed this license, you are not required to
  1826. accept it. However, as the FreeType Project is copyrighted
  1827. material, only this license, or another one contracted with the
  1828. authors, grants you the right to use, distribute, and modify it.
  1829. Therefore, by using, distributing, or modifying the FreeType
  1830. Project, you indicate that you understand and accept all the terms
  1831. of this license.
  1832. 4. Contacts
  1833. -----------
  1834. There are two mailing lists related to FreeType:
  1835. o freetype@nongnu.org
  1836. Discusses general use and applications of FreeType, as well as
  1837. future and wanted additions to the library and distribution.
  1838. If you are looking for support, start in this list if you
  1839. haven't found anything to help you in the documentation.
  1840. o freetype-devel@nongnu.org
  1841. Discusses bugs, as well as engine internals, design issues,
  1842. specific licenses, porting, etc.
  1843. Our home page can be found at
  1844. https://www.freetype.org
  1845. --- end of FTL.TXT ---
  1846. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  1847. [ fribidi 1.0.13 ] copyright:
  1848. GNU LESSER GENERAL PUBLIC LICENSE
  1849. Version 2.1, February 1999
  1850. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  1851. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  1852. Everyone is permitted to copy and distribute verbatim copies
  1853. of this license document, but changing it is not allowed.
  1854. [This is the first released version of the Lesser GPL. It also counts
  1855. as the successor of the GNU Library Public License, version 2, hence
  1856. the version number 2.1.]
  1857. Preamble
  1858. The licenses for most software are designed to take away your
  1859. freedom to share and change it. By contrast, the GNU General Public
  1860. Licenses are intended to guarantee your freedom to share and change
  1861. free software--to make sure the software is free for all its users.
  1862. This license, the Lesser General Public License, applies to some
  1863. specially designated software packages--typically libraries--of the
  1864. Free Software Foundation and other authors who decide to use it. You
  1865. can use it too, but we suggest you first think carefully about whether
  1866. this license or the ordinary General Public License is the better
  1867. strategy to use in any particular case, based on the explanations below.
  1868. When we speak of free software, we are referring to freedom of use,
  1869. not price. Our General Public Licenses are designed to make sure that
  1870. you have the freedom to distribute copies of free software (and charge
  1871. for this service if you wish); that you receive source code or can get
  1872. it if you want it; that you can change the software and use pieces of
  1873. it in new free programs; and that you are informed that you can do
  1874. these things.
  1875. To protect your rights, we need to make restrictions that forbid
  1876. distributors to deny you these rights or to ask you to surrender these
  1877. rights. These restrictions translate to certain responsibilities for
  1878. you if you distribute copies of the library or if you modify it.
  1879. For example, if you distribute copies of the library, whether gratis
  1880. or for a fee, you must give the recipients all the rights that we gave
  1881. you. You must make sure that they, too, receive or can get the source
  1882. code. If you link other code with the library, you must provide
  1883. complete object files to the recipients, so that they can relink them
  1884. with the library after making changes to the library and recompiling
  1885. it. And you must show them these terms so they know their rights.
  1886. We protect your rights with a two-step method: (1) we copyright the
  1887. library, and (2) we offer you this license, which gives you legal
  1888. permission to copy, distribute and/or modify the library.
  1889. To protect each distributor, we want to make it very clear that
  1890. there is no warranty for the free library. Also, if the library is
  1891. modified by someone else and passed on, the recipients should know
  1892. that what they have is not the original version, so that the original
  1893. author's reputation will not be affected by problems that might be
  1894. introduced by others.
  1895. Finally, software patents pose a constant threat to the existence of
  1896. any free program. We wish to make sure that a company cannot
  1897. effectively restrict the users of a free program by obtaining a
  1898. restrictive license from a patent holder. Therefore, we insist that
  1899. any patent license obtained for a version of the library must be
  1900. consistent with the full freedom of use specified in this license.
  1901. Most GNU software, including some libraries, is covered by the
  1902. ordinary GNU General Public License. This license, the GNU Lesser
  1903. General Public License, applies to certain designated libraries, and
  1904. is quite different from the ordinary General Public License. We use
  1905. this license for certain libraries in order to permit linking those
  1906. libraries into non-free programs.
  1907. When a program is linked with a library, whether statically or using
  1908. a shared library, the combination of the two is legally speaking a
  1909. combined work, a derivative of the original library. The ordinary
  1910. General Public License therefore permits such linking only if the
  1911. entire combination fits its criteria of freedom. The Lesser General
  1912. Public License permits more lax criteria for linking other code with
  1913. the library.
  1914. We call this license the "Lesser" General Public License because it
  1915. does Less to protect the user's freedom than the ordinary General
  1916. Public License. It also provides other free software developers Less
  1917. of an advantage over competing non-free programs. These disadvantages
  1918. are the reason we use the ordinary General Public License for many
  1919. libraries. However, the Lesser license provides advantages in certain
  1920. special circumstances.
  1921. For example, on rare occasions, there may be a special need to
  1922. encourage the widest possible use of a certain library, so that it becomes
  1923. a de-facto standard. To achieve this, non-free programs must be
  1924. allowed to use the library. A more frequent case is that a free
  1925. library does the same job as widely used non-free libraries. In this
  1926. case, there is little to gain by limiting the free library to free
  1927. software only, so we use the Lesser General Public License.
  1928. In other cases, permission to use a particular library in non-free
  1929. programs enables a greater number of people to use a large body of
  1930. free software. For example, permission to use the GNU C Library in
  1931. non-free programs enables many more people to use the whole GNU
  1932. operating system, as well as its variant, the GNU/Linux operating
  1933. system.
  1934. Although the Lesser General Public License is Less protective of the
  1935. users' freedom, it does ensure that the user of a program that is
  1936. linked with the Library has the freedom and the wherewithal to run
  1937. that program using a modified version of the Library.
  1938. The precise terms and conditions for copying, distribution and
  1939. modification follow. Pay close attention to the difference between a
  1940. "work based on the library" and a "work that uses the library". The
  1941. former contains code derived from the library, whereas the latter must
  1942. be combined with the library in order to run.
  1943. GNU LESSER GENERAL PUBLIC LICENSE
  1944. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  1945. 0. This License Agreement applies to any software library or other
  1946. program which contains a notice placed by the copyright holder or
  1947. other authorized party saying it may be distributed under the terms of
  1948. this Lesser General Public License (also called "this License").
  1949. Each licensee is addressed as "you".
  1950. A "library" means a collection of software functions and/or data
  1951. prepared so as to be conveniently linked with application programs
  1952. (which use some of those functions and data) to form executables.
  1953. The "Library", below, refers to any such software library or work
  1954. which has been distributed under these terms. A "work based on the
  1955. Library" means either the Library or any derivative work under
  1956. copyright law: that is to say, a work containing the Library or a
  1957. portion of it, either verbatim or with modifications and/or translated
  1958. straightforwardly into another language. (Hereinafter, translation is
  1959. included without limitation in the term "modification".)
  1960. "Source code" for a work means the preferred form of the work for
  1961. making modifications to it. For a library, complete source code means
  1962. all the source code for all modules it contains, plus any associated
  1963. interface definition files, plus the scripts used to control compilation
  1964. and installation of the library.
  1965. Activities other than copying, distribution and modification are not
  1966. covered by this License; they are outside its scope. The act of
  1967. running a program using the Library is not restricted, and output from
  1968. such a program is covered only if its contents constitute a work based
  1969. on the Library (independent of the use of the Library in a tool for
  1970. writing it). Whether that is true depends on what the Library does
  1971. and what the program that uses the Library does.
  1972. 1. You may copy and distribute verbatim copies of the Library's
  1973. complete source code as you receive it, in any medium, provided that
  1974. you conspicuously and appropriately publish on each copy an
  1975. appropriate copyright notice and disclaimer of warranty; keep intact
  1976. all the notices that refer to this License and to the absence of any
  1977. warranty; and distribute a copy of this License along with the
  1978. Library.
  1979. You may charge a fee for the physical act of transferring a copy,
  1980. and you may at your option offer warranty protection in exchange for a
  1981. fee.
  1982. 2. You may modify your copy or copies of the Library or any portion
  1983. of it, thus forming a work based on the Library, and copy and
  1984. distribute such modifications or work under the terms of Section 1
  1985. above, provided that you also meet all of these conditions:
  1986. a) The modified work must itself be a software library.
  1987. b) You must cause the files modified to carry prominent notices
  1988. stating that you changed the files and the date of any change.
  1989. c) You must cause the whole of the work to be licensed at no
  1990. charge to all third parties under the terms of this License.
  1991. d) If a facility in the modified Library refers to a function or a
  1992. table of data to be supplied by an application program that uses
  1993. the facility, other than as an argument passed when the facility
  1994. is invoked, then you must make a good faith effort to ensure that,
  1995. in the event an application does not supply such function or
  1996. table, the facility still operates, and performs whatever part of
  1997. its purpose remains meaningful.
  1998. (For example, a function in a library to compute square roots has
  1999. a purpose that is entirely well-defined independent of the
  2000. application. Therefore, Subsection 2d requires that any
  2001. application-supplied function or table used by this function must
  2002. be optional: if the application does not supply it, the square
  2003. root function must still compute square roots.)
  2004. These requirements apply to the modified work as a whole. If
  2005. identifiable sections of that work are not derived from the Library,
  2006. and can be reasonably considered independent and separate works in
  2007. themselves, then this License, and its terms, do not apply to those
  2008. sections when you distribute them as separate works. But when you
  2009. distribute the same sections as part of a whole which is a work based
  2010. on the Library, the distribution of the whole must be on the terms of
  2011. this License, whose permissions for other licensees extend to the
  2012. entire whole, and thus to each and every part regardless of who wrote
  2013. it.
  2014. Thus, it is not the intent of this section to claim rights or contest
  2015. your rights to work written entirely by you; rather, the intent is to
  2016. exercise the right to control the distribution of derivative or
  2017. collective works based on the Library.
  2018. In addition, mere aggregation of another work not based on the Library
  2019. with the Library (or with a work based on the Library) on a volume of
  2020. a storage or distribution medium does not bring the other work under
  2021. the scope of this License.
  2022. 3. You may opt to apply the terms of the ordinary GNU General Public
  2023. License instead of this License to a given copy of the Library. To do
  2024. this, you must alter all the notices that refer to this License, so
  2025. that they refer to the ordinary GNU General Public License, version 2,
  2026. instead of to this License. (If a newer version than version 2 of the
  2027. ordinary GNU General Public License has appeared, then you can specify
  2028. that version instead if you wish.) Do not make any other change in
  2029. these notices.
  2030. Once this change is made in a given copy, it is irreversible for
  2031. that copy, so the ordinary GNU General Public License applies to all
  2032. subsequent copies and derivative works made from that copy.
  2033. This option is useful when you wish to copy part of the code of
  2034. the Library into a program that is not a library.
  2035. 4. You may copy and distribute the Library (or a portion or
  2036. derivative of it, under Section 2) in object code or executable form
  2037. under the terms of Sections 1 and 2 above provided that you accompany
  2038. it with the complete corresponding machine-readable source code, which
  2039. must be distributed under the terms of Sections 1 and 2 above on a
  2040. medium customarily used for software interchange.
  2041. If distribution of object code is made by offering access to copy
  2042. from a designated place, then offering equivalent access to copy the
  2043. source code from the same place satisfies the requirement to
  2044. distribute the source code, even though third parties are not
  2045. compelled to copy the source along with the object code.
  2046. 5. A program that contains no derivative of any portion of the
  2047. Library, but is designed to work with the Library by being compiled or
  2048. linked with it, is called a "work that uses the Library". Such a
  2049. work, in isolation, is not a derivative work of the Library, and
  2050. therefore falls outside the scope of this License.
  2051. However, linking a "work that uses the Library" with the Library
  2052. creates an executable that is a derivative of the Library (because it
  2053. contains portions of the Library), rather than a "work that uses the
  2054. library". The executable is therefore covered by this License.
  2055. Section 6 states terms for distribution of such executables.
  2056. When a "work that uses the Library" uses material from a header file
  2057. that is part of the Library, the object code for the work may be a
  2058. derivative work of the Library even though the source code is not.
  2059. Whether this is true is especially significant if the work can be
  2060. linked without the Library, or if the work is itself a library. The
  2061. threshold for this to be true is not precisely defined by law.
  2062. If such an object file uses only numerical parameters, data
  2063. structure layouts and accessors, and small macros and small inline
  2064. functions (ten lines or less in length), then the use of the object
  2065. file is unrestricted, regardless of whether it is legally a derivative
  2066. work. (Executables containing this object code plus portions of the
  2067. Library will still fall under Section 6.)
  2068. Otherwise, if the work is a derivative of the Library, you may
  2069. distribute the object code for the work under the terms of Section 6.
  2070. Any executables containing that work also fall under Section 6,
  2071. whether or not they are linked directly with the Library itself.
  2072. 6. As an exception to the Sections above, you may also combine or
  2073. link a "work that uses the Library" with the Library to produce a
  2074. work containing portions of the Library, and distribute that work
  2075. under terms of your choice, provided that the terms permit
  2076. modification of the work for the customer's own use and reverse
  2077. engineering for debugging such modifications.
  2078. You must give prominent notice with each copy of the work that the
  2079. Library is used in it and that the Library and its use are covered by
  2080. this License. You must supply a copy of this License. If the work
  2081. during execution displays copyright notices, you must include the
  2082. copyright notice for the Library among them, as well as a reference
  2083. directing the user to the copy of this License. Also, you must do one
  2084. of these things:
  2085. a) Accompany the work with the complete corresponding
  2086. machine-readable source code for the Library including whatever
  2087. changes were used in the work (which must be distributed under
  2088. Sections 1 and 2 above); and, if the work is an executable linked
  2089. with the Library, with the complete machine-readable "work that
  2090. uses the Library", as object code and/or source code, so that the
  2091. user can modify the Library and then relink to produce a modified
  2092. executable containing the modified Library. (It is understood
  2093. that the user who changes the contents of definitions files in the
  2094. Library will not necessarily be able to recompile the application
  2095. to use the modified definitions.)
  2096. b) Use a suitable shared library mechanism for linking with the
  2097. Library. A suitable mechanism is one that (1) uses at run time a
  2098. copy of the library already present on the user's computer system,
  2099. rather than copying library functions into the executable, and (2)
  2100. will operate properly with a modified version of the library, if
  2101. the user installs one, as long as the modified version is
  2102. interface-compatible with the version that the work was made with.
  2103. c) Accompany the work with a written offer, valid for at
  2104. least three years, to give the same user the materials
  2105. specified in Subsection 6a, above, for a charge no more
  2106. than the cost of performing this distribution.
  2107. d) If distribution of the work is made by offering access to copy
  2108. from a designated place, offer equivalent access to copy the above
  2109. specified materials from the same place.
  2110. e) Verify that the user has already received a copy of these
  2111. materials or that you have already sent this user a copy.
  2112. For an executable, the required form of the "work that uses the
  2113. Library" must include any data and utility programs needed for
  2114. reproducing the executable from it. However, as a special exception,
  2115. the materials to be distributed need not include anything that is
  2116. normally distributed (in either source or binary form) with the major
  2117. components (compiler, kernel, and so on) of the operating system on
  2118. which the executable runs, unless that component itself accompanies
  2119. the executable.
  2120. It may happen that this requirement contradicts the license
  2121. restrictions of other proprietary libraries that do not normally
  2122. accompany the operating system. Such a contradiction means you cannot
  2123. use both them and the Library together in an executable that you
  2124. distribute.
  2125. 7. You may place library facilities that are a work based on the
  2126. Library side-by-side in a single library together with other library
  2127. facilities not covered by this License, and distribute such a combined
  2128. library, provided that the separate distribution of the work based on
  2129. the Library and of the other library facilities is otherwise
  2130. permitted, and provided that you do these two things:
  2131. a) Accompany the combined library with a copy of the same work
  2132. based on the Library, uncombined with any other library
  2133. facilities. This must be distributed under the terms of the
  2134. Sections above.
  2135. b) Give prominent notice with the combined library of the fact
  2136. that part of it is a work based on the Library, and explaining
  2137. where to find the accompanying uncombined form of the same work.
  2138. 8. You may not copy, modify, sublicense, link with, or distribute
  2139. the Library except as expressly provided under this License. Any
  2140. attempt otherwise to copy, modify, sublicense, link with, or
  2141. distribute the Library is void, and will automatically terminate your
  2142. rights under this License. However, parties who have received copies,
  2143. or rights, from you under this License will not have their licenses
  2144. terminated so long as such parties remain in full compliance.
  2145. 9. You are not required to accept this License, since you have not
  2146. signed it. However, nothing else grants you permission to modify or
  2147. distribute the Library or its derivative works. These actions are
  2148. prohibited by law if you do not accept this License. Therefore, by
  2149. modifying or distributing the Library (or any work based on the
  2150. Library), you indicate your acceptance of this License to do so, and
  2151. all its terms and conditions for copying, distributing or modifying
  2152. the Library or works based on it.
  2153. 10. Each time you redistribute the Library (or any work based on the
  2154. Library), the recipient automatically receives a license from the
  2155. original licensor to copy, distribute, link with or modify the Library
  2156. subject to these terms and conditions. You may not impose any further
  2157. restrictions on the recipients' exercise of the rights granted herein.
  2158. You are not responsible for enforcing compliance by third parties with
  2159. this License.
  2160. 11. If, as a consequence of a court judgment or allegation of patent
  2161. infringement or for any other reason (not limited to patent issues),
  2162. conditions are imposed on you (whether by court order, agreement or
  2163. otherwise) that contradict the conditions of this License, they do not
  2164. excuse you from the conditions of this License. If you cannot
  2165. distribute so as to satisfy simultaneously your obligations under this
  2166. License and any other pertinent obligations, then as a consequence you
  2167. may not distribute the Library at all. For example, if a patent
  2168. license would not permit royalty-free redistribution of the Library by
  2169. all those who receive copies directly or indirectly through you, then
  2170. the only way you could satisfy both it and this License would be to
  2171. refrain entirely from distribution of the Library.
  2172. If any portion of this section is held invalid or unenforceable under any
  2173. particular circumstance, the balance of the section is intended to apply,
  2174. and the section as a whole is intended to apply in other circumstances.
  2175. It is not the purpose of this section to induce you to infringe any
  2176. patents or other property right claims or to contest validity of any
  2177. such claims; this section has the sole purpose of protecting the
  2178. integrity of the free software distribution system which is
  2179. implemented by public license practices. Many people have made
  2180. generous contributions to the wide range of software distributed
  2181. through that system in reliance on consistent application of that
  2182. system; it is up to the author/donor to decide if he or she is willing
  2183. to distribute software through any other system and a licensee cannot
  2184. impose that choice.
  2185. This section is intended to make thoroughly clear what is believed to
  2186. be a consequence of the rest of this License.
  2187. 12. If the distribution and/or use of the Library is restricted in
  2188. certain countries either by patents or by copyrighted interfaces, the
  2189. original copyright holder who places the Library under this License may add
  2190. an explicit geographical distribution limitation excluding those countries,
  2191. so that distribution is permitted only in or among countries not thus
  2192. excluded. In such case, this License incorporates the limitation as if
  2193. written in the body of this License.
  2194. 13. The Free Software Foundation may publish revised and/or new
  2195. versions of the Lesser General Public License from time to time.
  2196. Such new versions will be similar in spirit to the present version,
  2197. but may differ in detail to address new problems or concerns.
  2198. Each version is given a distinguishing version number. If the Library
  2199. specifies a version number of this License which applies to it and
  2200. "any later version", you have the option of following the terms and
  2201. conditions either of that version or of any later version published by
  2202. the Free Software Foundation. If the Library does not specify a
  2203. license version number, you may choose any version ever published by
  2204. the Free Software Foundation.
  2205. 14. If you wish to incorporate parts of the Library into other free
  2206. programs whose distribution conditions are incompatible with these,
  2207. write to the author to ask for permission. For software which is
  2208. copyrighted by the Free Software Foundation, write to the Free
  2209. Software Foundation; we sometimes make exceptions for this. Our
  2210. decision will be guided by the two goals of preserving the free status
  2211. of all derivatives of our free software and of promoting the sharing
  2212. and reuse of software generally.
  2213. NO WARRANTY
  2214. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  2215. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  2216. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  2217. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  2218. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  2219. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  2220. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  2221. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  2222. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  2223. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  2224. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  2225. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  2226. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  2227. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  2228. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  2229. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  2230. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  2231. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  2232. DAMAGES.
  2233. END OF TERMS AND CONDITIONS
  2234. How to Apply These Terms to Your New Libraries
  2235. If you develop a new library, and you want it to be of the greatest
  2236. possible use to the public, we recommend making it free software that
  2237. everyone can redistribute and change. You can do so by permitting
  2238. redistribution under these terms (or, alternatively, under the terms of the
  2239. ordinary General Public License).
  2240. To apply these terms, attach the following notices to the library. It is
  2241. safest to attach them to the start of each source file to most effectively
  2242. convey the exclusion of warranty; and each file should have at least the
  2243. "copyright" line and a pointer to where the full notice is found.
  2244. <one line to give the library's name and a brief idea of what it does.>
  2245. Copyright (C) <year> <name of author>
  2246. This library is free software; you can redistribute it and/or
  2247. modify it under the terms of the GNU Lesser General Public
  2248. License as published by the Free Software Foundation; either
  2249. version 2.1 of the License, or (at your option) any later version.
  2250. This library is distributed in the hope that it will be useful,
  2251. but WITHOUT ANY WARRANTY; without even the implied warranty of
  2252. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  2253. Lesser General Public License for more details.
  2254. You should have received a copy of the GNU Lesser General Public
  2255. License along with this library; if not, write to the Free Software
  2256. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  2257. Also add information on how to contact you by electronic and paper mail.
  2258. You should also get your employer (if you work as a programmer) or your
  2259. school, if any, to sign a "copyright disclaimer" for the library, if
  2260. necessary. Here is a sample; alter the names:
  2261. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  2262. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  2263. <signature of Ty Coon>, 1 April 1990
  2264. Ty Coon, President of Vice
  2265. That's all there is to it!
  2266. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2267. [ glib 2.64.3 ] copyright:
  2268. GNU LESSER GENERAL PUBLIC LICENSE
  2269. Version 2.1, February 1999
  2270. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  2271. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  2272. Everyone is permitted to copy and distribute verbatim copies
  2273. of this license document, but changing it is not allowed.
  2274. [This is the first released version of the Lesser GPL. It also counts
  2275. as the successor of the GNU Library Public License, version 2, hence
  2276. the version number 2.1.]
  2277. Preamble
  2278. The licenses for most software are designed to take away your
  2279. freedom to share and change it. By contrast, the GNU General Public
  2280. Licenses are intended to guarantee your freedom to share and change
  2281. free software--to make sure the software is free for all its users.
  2282. This license, the Lesser General Public License, applies to some
  2283. specially designated software packages--typically libraries--of the
  2284. Free Software Foundation and other authors who decide to use it. You
  2285. can use it too, but we suggest you first think carefully about whether
  2286. this license or the ordinary General Public License is the better
  2287. strategy to use in any particular case, based on the explanations below.
  2288. When we speak of free software, we are referring to freedom of use,
  2289. not price. Our General Public Licenses are designed to make sure that
  2290. you have the freedom to distribute copies of free software (and charge
  2291. for this service if you wish); that you receive source code or can get
  2292. it if you want it; that you can change the software and use pieces of
  2293. it in new free programs; and that you are informed that you can do
  2294. these things.
  2295. To protect your rights, we need to make restrictions that forbid
  2296. distributors to deny you these rights or to ask you to surrender these
  2297. rights. These restrictions translate to certain responsibilities for
  2298. you if you distribute copies of the library or if you modify it.
  2299. For example, if you distribute copies of the library, whether gratis
  2300. or for a fee, you must give the recipients all the rights that we gave
  2301. you. You must make sure that they, too, receive or can get the source
  2302. code. If you link other code with the library, you must provide
  2303. complete object files to the recipients, so that they can relink them
  2304. with the library after making changes to the library and recompiling
  2305. it. And you must show them these terms so they know their rights.
  2306. We protect your rights with a two-step method: (1) we copyright the
  2307. library, and (2) we offer you this license, which gives you legal
  2308. permission to copy, distribute and/or modify the library.
  2309. To protect each distributor, we want to make it very clear that
  2310. there is no warranty for the free library. Also, if the library is
  2311. modified by someone else and passed on, the recipients should know
  2312. that what they have is not the original version, so that the original
  2313. author's reputation will not be affected by problems that might be
  2314. introduced by others.
  2315. Finally, software patents pose a constant threat to the existence of
  2316. any free program. We wish to make sure that a company cannot
  2317. effectively restrict the users of a free program by obtaining a
  2318. restrictive license from a patent holder. Therefore, we insist that
  2319. any patent license obtained for a version of the library must be
  2320. consistent with the full freedom of use specified in this license.
  2321. Most GNU software, including some libraries, is covered by the
  2322. ordinary GNU General Public License. This license, the GNU Lesser
  2323. General Public License, applies to certain designated libraries, and
  2324. is quite different from the ordinary General Public License. We use
  2325. this license for certain libraries in order to permit linking those
  2326. libraries into non-free programs.
  2327. When a program is linked with a library, whether statically or using
  2328. a shared library, the combination of the two is legally speaking a
  2329. combined work, a derivative of the original library. The ordinary
  2330. General Public License therefore permits such linking only if the
  2331. entire combination fits its criteria of freedom. The Lesser General
  2332. Public License permits more lax criteria for linking other code with
  2333. the library.
  2334. We call this license the "Lesser" General Public License because it
  2335. does Less to protect the user's freedom than the ordinary General
  2336. Public License. It also provides other free software developers Less
  2337. of an advantage over competing non-free programs. These disadvantages
  2338. are the reason we use the ordinary General Public License for many
  2339. libraries. However, the Lesser license provides advantages in certain
  2340. special circumstances.
  2341. For example, on rare occasions, there may be a special need to
  2342. encourage the widest possible use of a certain library, so that it becomes
  2343. a de-facto standard. To achieve this, non-free programs must be
  2344. allowed to use the library. A more frequent case is that a free
  2345. library does the same job as widely used non-free libraries. In this
  2346. case, there is little to gain by limiting the free library to free
  2347. software only, so we use the Lesser General Public License.
  2348. In other cases, permission to use a particular library in non-free
  2349. programs enables a greater number of people to use a large body of
  2350. free software. For example, permission to use the GNU C Library in
  2351. non-free programs enables many more people to use the whole GNU
  2352. operating system, as well as its variant, the GNU/Linux operating
  2353. system.
  2354. Although the Lesser General Public License is Less protective of the
  2355. users' freedom, it does ensure that the user of a program that is
  2356. linked with the Library has the freedom and the wherewithal to run
  2357. that program using a modified version of the Library.
  2358. The precise terms and conditions for copying, distribution and
  2359. modification follow. Pay close attention to the difference between a
  2360. "work based on the library" and a "work that uses the library". The
  2361. former contains code derived from the library, whereas the latter must
  2362. be combined with the library in order to run.
  2363. GNU LESSER GENERAL PUBLIC LICENSE
  2364. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  2365. 0. This License Agreement applies to any software library or other
  2366. program which contains a notice placed by the copyright holder or
  2367. other authorized party saying it may be distributed under the terms of
  2368. this Lesser General Public License (also called "this License").
  2369. Each licensee is addressed as "you".
  2370. A "library" means a collection of software functions and/or data
  2371. prepared so as to be conveniently linked with application programs
  2372. (which use some of those functions and data) to form executables.
  2373. The "Library", below, refers to any such software library or work
  2374. which has been distributed under these terms. A "work based on the
  2375. Library" means either the Library or any derivative work under
  2376. copyright law: that is to say, a work containing the Library or a
  2377. portion of it, either verbatim or with modifications and/or translated
  2378. straightforwardly into another language. (Hereinafter, translation is
  2379. included without limitation in the term "modification".)
  2380. "Source code" for a work means the preferred form of the work for
  2381. making modifications to it. For a library, complete source code means
  2382. all the source code for all modules it contains, plus any associated
  2383. interface definition files, plus the scripts used to control compilation
  2384. and installation of the library.
  2385. Activities other than copying, distribution and modification are not
  2386. covered by this License; they are outside its scope. The act of
  2387. running a program using the Library is not restricted, and output from
  2388. such a program is covered only if its contents constitute a work based
  2389. on the Library (independent of the use of the Library in a tool for
  2390. writing it). Whether that is true depends on what the Library does
  2391. and what the program that uses the Library does.
  2392. 1. You may copy and distribute verbatim copies of the Library's
  2393. complete source code as you receive it, in any medium, provided that
  2394. you conspicuously and appropriately publish on each copy an
  2395. appropriate copyright notice and disclaimer of warranty; keep intact
  2396. all the notices that refer to this License and to the absence of any
  2397. warranty; and distribute a copy of this License along with the
  2398. Library.
  2399. You may charge a fee for the physical act of transferring a copy,
  2400. and you may at your option offer warranty protection in exchange for a
  2401. fee.
  2402. 2. You may modify your copy or copies of the Library or any portion
  2403. of it, thus forming a work based on the Library, and copy and
  2404. distribute such modifications or work under the terms of Section 1
  2405. above, provided that you also meet all of these conditions:
  2406. a) The modified work must itself be a software library.
  2407. b) You must cause the files modified to carry prominent notices
  2408. stating that you changed the files and the date of any change.
  2409. c) You must cause the whole of the work to be licensed at no
  2410. charge to all third parties under the terms of this License.
  2411. d) If a facility in the modified Library refers to a function or a
  2412. table of data to be supplied by an application program that uses
  2413. the facility, other than as an argument passed when the facility
  2414. is invoked, then you must make a good faith effort to ensure that,
  2415. in the event an application does not supply such function or
  2416. table, the facility still operates, and performs whatever part of
  2417. its purpose remains meaningful.
  2418. (For example, a function in a library to compute square roots has
  2419. a purpose that is entirely well-defined independent of the
  2420. application. Therefore, Subsection 2d requires that any
  2421. application-supplied function or table used by this function must
  2422. be optional: if the application does not supply it, the square
  2423. root function must still compute square roots.)
  2424. These requirements apply to the modified work as a whole. If
  2425. identifiable sections of that work are not derived from the Library,
  2426. and can be reasonably considered independent and separate works in
  2427. themselves, then this License, and its terms, do not apply to those
  2428. sections when you distribute them as separate works. But when you
  2429. distribute the same sections as part of a whole which is a work based
  2430. on the Library, the distribution of the whole must be on the terms of
  2431. this License, whose permissions for other licensees extend to the
  2432. entire whole, and thus to each and every part regardless of who wrote
  2433. it.
  2434. Thus, it is not the intent of this section to claim rights or contest
  2435. your rights to work written entirely by you; rather, the intent is to
  2436. exercise the right to control the distribution of derivative or
  2437. collective works based on the Library.
  2438. In addition, mere aggregation of another work not based on the Library
  2439. with the Library (or with a work based on the Library) on a volume of
  2440. a storage or distribution medium does not bring the other work under
  2441. the scope of this License.
  2442. 3. You may opt to apply the terms of the ordinary GNU General Public
  2443. License instead of this License to a given copy of the Library. To do
  2444. this, you must alter all the notices that refer to this License, so
  2445. that they refer to the ordinary GNU General Public License, version 2,
  2446. instead of to this License. (If a newer version than version 2 of the
  2447. ordinary GNU General Public License has appeared, then you can specify
  2448. that version instead if you wish.) Do not make any other change in
  2449. these notices.
  2450. Once this change is made in a given copy, it is irreversible for
  2451. that copy, so the ordinary GNU General Public License applies to all
  2452. subsequent copies and derivative works made from that copy.
  2453. This option is useful when you wish to copy part of the code of
  2454. the Library into a program that is not a library.
  2455. 4. You may copy and distribute the Library (or a portion or
  2456. derivative of it, under Section 2) in object code or executable form
  2457. under the terms of Sections 1 and 2 above provided that you accompany
  2458. it with the complete corresponding machine-readable source code, which
  2459. must be distributed under the terms of Sections 1 and 2 above on a
  2460. medium customarily used for software interchange.
  2461. If distribution of object code is made by offering access to copy
  2462. from a designated place, then offering equivalent access to copy the
  2463. source code from the same place satisfies the requirement to
  2464. distribute the source code, even though third parties are not
  2465. compelled to copy the source along with the object code.
  2466. 5. A program that contains no derivative of any portion of the
  2467. Library, but is designed to work with the Library by being compiled or
  2468. linked with it, is called a "work that uses the Library". Such a
  2469. work, in isolation, is not a derivative work of the Library, and
  2470. therefore falls outside the scope of this License.
  2471. However, linking a "work that uses the Library" with the Library
  2472. creates an executable that is a derivative of the Library (because it
  2473. contains portions of the Library), rather than a "work that uses the
  2474. library". The executable is therefore covered by this License.
  2475. Section 6 states terms for distribution of such executables.
  2476. When a "work that uses the Library" uses material from a header file
  2477. that is part of the Library, the object code for the work may be a
  2478. derivative work of the Library even though the source code is not.
  2479. Whether this is true is especially significant if the work can be
  2480. linked without the Library, or if the work is itself a library. The
  2481. threshold for this to be true is not precisely defined by law.
  2482. If such an object file uses only numerical parameters, data
  2483. structure layouts and accessors, and small macros and small inline
  2484. functions (ten lines or less in length), then the use of the object
  2485. file is unrestricted, regardless of whether it is legally a derivative
  2486. work. (Executables containing this object code plus portions of the
  2487. Library will still fall under Section 6.)
  2488. Otherwise, if the work is a derivative of the Library, you may
  2489. distribute the object code for the work under the terms of Section 6.
  2490. Any executables containing that work also fall under Section 6,
  2491. whether or not they are linked directly with the Library itself.
  2492. 6. As an exception to the Sections above, you may also combine or
  2493. link a "work that uses the Library" with the Library to produce a
  2494. work containing portions of the Library, and distribute that work
  2495. under terms of your choice, provided that the terms permit
  2496. modification of the work for the customer's own use and reverse
  2497. engineering for debugging such modifications.
  2498. You must give prominent notice with each copy of the work that the
  2499. Library is used in it and that the Library and its use are covered by
  2500. this License. You must supply a copy of this License. If the work
  2501. during execution displays copyright notices, you must include the
  2502. copyright notice for the Library among them, as well as a reference
  2503. directing the user to the copy of this License. Also, you must do one
  2504. of these things:
  2505. a) Accompany the work with the complete corresponding
  2506. machine-readable source code for the Library including whatever
  2507. changes were used in the work (which must be distributed under
  2508. Sections 1 and 2 above); and, if the work is an executable linked
  2509. with the Library, with the complete machine-readable "work that
  2510. uses the Library", as object code and/or source code, so that the
  2511. user can modify the Library and then relink to produce a modified
  2512. executable containing the modified Library. (It is understood
  2513. that the user who changes the contents of definitions files in the
  2514. Library will not necessarily be able to recompile the application
  2515. to use the modified definitions.)
  2516. b) Use a suitable shared library mechanism for linking with the
  2517. Library. A suitable mechanism is one that (1) uses at run time a
  2518. copy of the library already present on the user's computer system,
  2519. rather than copying library functions into the executable, and (2)
  2520. will operate properly with a modified version of the library, if
  2521. the user installs one, as long as the modified version is
  2522. interface-compatible with the version that the work was made with.
  2523. c) Accompany the work with a written offer, valid for at
  2524. least three years, to give the same user the materials
  2525. specified in Subsection 6a, above, for a charge no more
  2526. than the cost of performing this distribution.
  2527. d) If distribution of the work is made by offering access to copy
  2528. from a designated place, offer equivalent access to copy the above
  2529. specified materials from the same place.
  2530. e) Verify that the user has already received a copy of these
  2531. materials or that you have already sent this user a copy.
  2532. For an executable, the required form of the "work that uses the
  2533. Library" must include any data and utility programs needed for
  2534. reproducing the executable from it. However, as a special exception,
  2535. the materials to be distributed need not include anything that is
  2536. normally distributed (in either source or binary form) with the major
  2537. components (compiler, kernel, and so on) of the operating system on
  2538. which the executable runs, unless that component itself accompanies
  2539. the executable.
  2540. It may happen that this requirement contradicts the license
  2541. restrictions of other proprietary libraries that do not normally
  2542. accompany the operating system. Such a contradiction means you cannot
  2543. use both them and the Library together in an executable that you
  2544. distribute.
  2545. 7. You may place library facilities that are a work based on the
  2546. Library side-by-side in a single library together with other library
  2547. facilities not covered by this License, and distribute such a combined
  2548. library, provided that the separate distribution of the work based on
  2549. the Library and of the other library facilities is otherwise
  2550. permitted, and provided that you do these two things:
  2551. a) Accompany the combined library with a copy of the same work
  2552. based on the Library, uncombined with any other library
  2553. facilities. This must be distributed under the terms of the
  2554. Sections above.
  2555. b) Give prominent notice with the combined library of the fact
  2556. that part of it is a work based on the Library, and explaining
  2557. where to find the accompanying uncombined form of the same work.
  2558. 8. You may not copy, modify, sublicense, link with, or distribute
  2559. the Library except as expressly provided under this License. Any
  2560. attempt otherwise to copy, modify, sublicense, link with, or
  2561. distribute the Library is void, and will automatically terminate your
  2562. rights under this License. However, parties who have received copies,
  2563. or rights, from you under this License will not have their licenses
  2564. terminated so long as such parties remain in full compliance.
  2565. 9. You are not required to accept this License, since you have not
  2566. signed it. However, nothing else grants you permission to modify or
  2567. distribute the Library or its derivative works. These actions are
  2568. prohibited by law if you do not accept this License. Therefore, by
  2569. modifying or distributing the Library (or any work based on the
  2570. Library), you indicate your acceptance of this License to do so, and
  2571. all its terms and conditions for copying, distributing or modifying
  2572. the Library or works based on it.
  2573. 10. Each time you redistribute the Library (or any work based on the
  2574. Library), the recipient automatically receives a license from the
  2575. original licensor to copy, distribute, link with or modify the Library
  2576. subject to these terms and conditions. You may not impose any further
  2577. restrictions on the recipients' exercise of the rights granted herein.
  2578. You are not responsible for enforcing compliance by third parties with
  2579. this License.
  2580. 11. If, as a consequence of a court judgment or allegation of patent
  2581. infringement or for any other reason (not limited to patent issues),
  2582. conditions are imposed on you (whether by court order, agreement or
  2583. otherwise) that contradict the conditions of this License, they do not
  2584. excuse you from the conditions of this License. If you cannot
  2585. distribute so as to satisfy simultaneously your obligations under this
  2586. License and any other pertinent obligations, then as a consequence you
  2587. may not distribute the Library at all. For example, if a patent
  2588. license would not permit royalty-free redistribution of the Library by
  2589. all those who receive copies directly or indirectly through you, then
  2590. the only way you could satisfy both it and this License would be to
  2591. refrain entirely from distribution of the Library.
  2592. If any portion of this section is held invalid or unenforceable under any
  2593. particular circumstance, the balance of the section is intended to apply,
  2594. and the section as a whole is intended to apply in other circumstances.
  2595. It is not the purpose of this section to induce you to infringe any
  2596. patents or other property right claims or to contest validity of any
  2597. such claims; this section has the sole purpose of protecting the
  2598. integrity of the free software distribution system which is
  2599. implemented by public license practices. Many people have made
  2600. generous contributions to the wide range of software distributed
  2601. through that system in reliance on consistent application of that
  2602. system; it is up to the author/donor to decide if he or she is willing
  2603. to distribute software through any other system and a licensee cannot
  2604. impose that choice.
  2605. This section is intended to make thoroughly clear what is believed to
  2606. be a consequence of the rest of this License.
  2607. 12. If the distribution and/or use of the Library is restricted in
  2608. certain countries either by patents or by copyrighted interfaces, the
  2609. original copyright holder who places the Library under this License may add
  2610. an explicit geographical distribution limitation excluding those countries,
  2611. so that distribution is permitted only in or among countries not thus
  2612. excluded. In such case, this License incorporates the limitation as if
  2613. written in the body of this License.
  2614. 13. The Free Software Foundation may publish revised and/or new
  2615. versions of the Lesser General Public License from time to time.
  2616. Such new versions will be similar in spirit to the present version,
  2617. but may differ in detail to address new problems or concerns.
  2618. Each version is given a distinguishing version number. If the Library
  2619. specifies a version number of this License which applies to it and
  2620. "any later version", you have the option of following the terms and
  2621. conditions either of that version or of any later version published by
  2622. the Free Software Foundation. If the Library does not specify a
  2623. license version number, you may choose any version ever published by
  2624. the Free Software Foundation.
  2625. 14. If you wish to incorporate parts of the Library into other free
  2626. programs whose distribution conditions are incompatible with these,
  2627. write to the author to ask for permission. For software which is
  2628. copyrighted by the Free Software Foundation, write to the Free
  2629. Software Foundation; we sometimes make exceptions for this. Our
  2630. decision will be guided by the two goals of preserving the free status
  2631. of all derivatives of our free software and of promoting the sharing
  2632. and reuse of software generally.
  2633. NO WARRANTY
  2634. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  2635. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  2636. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  2637. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  2638. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  2639. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  2640. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  2641. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  2642. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  2643. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  2644. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  2645. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  2646. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  2647. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  2648. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  2649. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  2650. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  2651. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  2652. DAMAGES.
  2653. END OF TERMS AND CONDITIONS
  2654. How to Apply These Terms to Your New Libraries
  2655. If you develop a new library, and you want it to be of the greatest
  2656. possible use to the public, we recommend making it free software that
  2657. everyone can redistribute and change. You can do so by permitting
  2658. redistribution under these terms (or, alternatively, under the terms of the
  2659. ordinary General Public License).
  2660. To apply these terms, attach the following notices to the library. It is
  2661. safest to attach them to the start of each source file to most effectively
  2662. convey the exclusion of warranty; and each file should have at least the
  2663. "copyright" line and a pointer to where the full notice is found.
  2664. <one line to give the library's name and a brief idea of what it does.>
  2665. Copyright (C) <year> <name of author>
  2666. This library is free software; you can redistribute it and/or
  2667. modify it under the terms of the GNU Lesser General Public
  2668. License as published by the Free Software Foundation; either
  2669. version 2.1 of the License, or (at your option) any later version.
  2670. This library is distributed in the hope that it will be useful,
  2671. but WITHOUT ANY WARRANTY; without even the implied warranty of
  2672. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  2673. Lesser General Public License for more details.
  2674. You should have received a copy of the GNU Lesser General Public
  2675. License along with this library; if not, write to the Free Software
  2676. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  2677. Also add information on how to contact you by electronic and paper mail.
  2678. You should also get your employer (if you work as a programmer) or your
  2679. school, if any, to sign a "copyright disclaimer" for the library, if
  2680. necessary. Here is a sample; alter the names:
  2681. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  2682. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  2683. <signature of Ty Coon>, 1 April 1990
  2684. Ty Coon, President of Vice
  2685. That's all there is to it!
  2686. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2687. [ harfbuzz 7.3.0 ] copyright:
  2688. HarfBuzz is licensed under the so-called "Old MIT" license. Details follow.
  2689. For parts of HarfBuzz that are licensed under different licenses see individual
  2690. files names COPYING in subdirectories where applicable.
  2691. Copyright © 2010-2022 Google, Inc.
  2692. Copyright © 2015-2020 Ebrahim Byagowi
  2693. Copyright © 2019,2020 Facebook, Inc.
  2694. Copyright © 2012,2015 Mozilla Foundation
  2695. Copyright © 2011 Codethink Limited
  2696. Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)
  2697. Copyright © 2009 Keith Stribley
  2698. Copyright © 2011 Martin Hosken and SIL International
  2699. Copyright © 2007 Chris Wilson
  2700. Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod
  2701. Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc.
  2702. Copyright © 1998-2005 David Turner and Werner Lemberg
  2703. Copyright © 2016 Igalia S.L.
  2704. Copyright © 2022 Matthias Clasen
  2705. Copyright © 2018,2021 Khaled Hosny
  2706. Copyright © 2018,2019,2020 Adobe, Inc
  2707. Copyright © 2013-2015 Alexei Podtelezhnikov
  2708. For full copyright notices consult the individual files in the package.
  2709. Permission is hereby granted, without written agreement and without
  2710. license or royalty fees, to use, copy, modify, and distribute this
  2711. software and its documentation for any purpose, provided that the
  2712. above copyright notice and the following two paragraphs appear in
  2713. all copies of this software.
  2714. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  2715. DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  2716. ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  2717. IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  2718. DAMAGE.
  2719. THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  2720. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  2721. FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  2722. ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  2723. PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  2724. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2725. [ heif 1.16.1 ] copyright:
  2726. * The library `libheif` is distributed under the terms of the GNU Lesser General Public License.
  2727. * The sample applications are distributed under the terms of the MIT License.
  2728. License texts below and in the `COPYING` files of the corresponding subfolders.
  2729. ----------------------------------------------------------------------
  2730. GNU LESSER GENERAL PUBLIC LICENSE
  2731. Version 3, 29 June 2007
  2732. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  2733. Everyone is permitted to copy and distribute verbatim copies
  2734. of this license document, but changing it is not allowed.
  2735. This version of the GNU Lesser General Public License incorporates
  2736. the terms and conditions of version 3 of the GNU General Public
  2737. License, supplemented by the additional permissions listed below.
  2738. 0. Additional Definitions.
  2739. As used herein, "this License" refers to version 3 of the GNU Lesser
  2740. General Public License, and the "GNU GPL" refers to version 3 of the GNU
  2741. General Public License.
  2742. "The Library" refers to a covered work governed by this License,
  2743. other than an Application or a Combined Work as defined below.
  2744. An "Application" is any work that makes use of an interface provided
  2745. by the Library, but which is not otherwise based on the Library.
  2746. Defining a subclass of a class defined by the Library is deemed a mode
  2747. of using an interface provided by the Library.
  2748. A "Combined Work" is a work produced by combining or linking an
  2749. Application with the Library. The particular version of the Library
  2750. with which the Combined Work was made is also called the "Linked
  2751. Version".
  2752. The "Minimal Corresponding Source" for a Combined Work means the
  2753. Corresponding Source for the Combined Work, excluding any source code
  2754. for portions of the Combined Work that, considered in isolation, are
  2755. based on the Application, and not on the Linked Version.
  2756. The "Corresponding Application Code" for a Combined Work means the
  2757. object code and/or source code for the Application, including any data
  2758. and utility programs needed for reproducing the Combined Work from the
  2759. Application, but excluding the System Libraries of the Combined Work.
  2760. 1. Exception to Section 3 of the GNU GPL.
  2761. You may convey a covered work under sections 3 and 4 of this License
  2762. without being bound by section 3 of the GNU GPL.
  2763. 2. Conveying Modified Versions.
  2764. If you modify a copy of the Library, and, in your modifications, a
  2765. facility refers to a function or data to be supplied by an Application
  2766. that uses the facility (other than as an argument passed when the
  2767. facility is invoked), then you may convey a copy of the modified
  2768. version:
  2769. a) under this License, provided that you make a good faith effort to
  2770. ensure that, in the event an Application does not supply the
  2771. function or data, the facility still operates, and performs
  2772. whatever part of its purpose remains meaningful, or
  2773. b) under the GNU GPL, with none of the additional permissions of
  2774. this License applicable to that copy.
  2775. 3. Object Code Incorporating Material from Library Header Files.
  2776. The object code form of an Application may incorporate material from
  2777. a header file that is part of the Library. You may convey such object
  2778. code under terms of your choice, provided that, if the incorporated
  2779. material is not limited to numerical parameters, data structure
  2780. layouts and accessors, or small macros, inline functions and templates
  2781. (ten or fewer lines in length), you do both of the following:
  2782. a) Give prominent notice with each copy of the object code that the
  2783. Library is used in it and that the Library and its use are
  2784. covered by this License.
  2785. b) Accompany the object code with a copy of the GNU GPL and this license
  2786. document.
  2787. 4. Combined Works.
  2788. You may convey a Combined Work under terms of your choice that,
  2789. taken together, effectively do not restrict modification of the
  2790. portions of the Library contained in the Combined Work and reverse
  2791. engineering for debugging such modifications, if you also do each of
  2792. the following:
  2793. a) Give prominent notice with each copy of the Combined Work that
  2794. the Library is used in it and that the Library and its use are
  2795. covered by this License.
  2796. b) Accompany the Combined Work with a copy of the GNU GPL and this license
  2797. document.
  2798. c) For a Combined Work that displays copyright notices during
  2799. execution, include the copyright notice for the Library among
  2800. these notices, as well as a reference directing the user to the
  2801. copies of the GNU GPL and this license document.
  2802. d) Do one of the following:
  2803. 0) Convey the Minimal Corresponding Source under the terms of this
  2804. License, and the Corresponding Application Code in a form
  2805. suitable for, and under terms that permit, the user to
  2806. recombine or relink the Application with a modified version of
  2807. the Linked Version to produce a modified Combined Work, in the
  2808. manner specified by section 6 of the GNU GPL for conveying
  2809. Corresponding Source.
  2810. 1) Use a suitable shared library mechanism for linking with the
  2811. Library. A suitable mechanism is one that (a) uses at run time
  2812. a copy of the Library already present on the user's computer
  2813. system, and (b) will operate properly with a modified version
  2814. of the Library that is interface-compatible with the Linked
  2815. Version.
  2816. e) Provide Installation Information, but only if you would otherwise
  2817. be required to provide such information under section 6 of the
  2818. GNU GPL, and only to the extent that such information is
  2819. necessary to install and execute a modified version of the
  2820. Combined Work produced by recombining or relinking the
  2821. Application with a modified version of the Linked Version. (If
  2822. you use option 4d0, the Installation Information must accompany
  2823. the Minimal Corresponding Source and Corresponding Application
  2824. Code. If you use option 4d1, you must provide the Installation
  2825. Information in the manner specified by section 6 of the GNU GPL
  2826. for conveying Corresponding Source.)
  2827. 5. Combined Libraries.
  2828. You may place library facilities that are a work based on the
  2829. Library side by side in a single library together with other library
  2830. facilities that are not Applications and are not covered by this
  2831. License, and convey such a combined library under terms of your
  2832. choice, if you do both of the following:
  2833. a) Accompany the combined library with a copy of the same work based
  2834. on the Library, uncombined with any other library facilities,
  2835. conveyed under the terms of this License.
  2836. b) Give prominent notice with the combined library that part of it
  2837. is a work based on the Library, and explaining where to find the
  2838. accompanying uncombined form of the same work.
  2839. 6. Revised Versions of the GNU Lesser General Public License.
  2840. The Free Software Foundation may publish revised and/or new versions
  2841. of the GNU Lesser General Public License from time to time. Such new
  2842. versions will be similar in spirit to the present version, but may
  2843. differ in detail to address new problems or concerns.
  2844. Each version is given a distinguishing version number. If the
  2845. Library as you received it specifies that a certain numbered version
  2846. of the GNU Lesser General Public License "or any later version"
  2847. applies to it, you have the option of following the terms and
  2848. conditions either of that published version or of any later version
  2849. published by the Free Software Foundation. If the Library as you
  2850. received it does not specify a version number of the GNU Lesser
  2851. General Public License, you may choose any version of the GNU Lesser
  2852. General Public License ever published by the Free Software Foundation.
  2853. If the Library as you received it specifies that a proxy can decide
  2854. whether future versions of the GNU Lesser General Public License shall
  2855. apply, that proxy's public statement of acceptance of any version is
  2856. permanent authorization for you to choose that version for the
  2857. Library.
  2858. ----------------------------------------------------------------------
  2859. GNU GENERAL PUBLIC LICENSE
  2860. Version 3, 29 June 2007
  2861. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  2862. Everyone is permitted to copy and distribute verbatim copies
  2863. of this license document, but changing it is not allowed.
  2864. Preamble
  2865. The GNU General Public License is a free, copyleft license for
  2866. software and other kinds of works.
  2867. The licenses for most software and other practical works are designed
  2868. to take away your freedom to share and change the works. By contrast,
  2869. the GNU General Public License is intended to guarantee your freedom to
  2870. share and change all versions of a program--to make sure it remains free
  2871. software for all its users. We, the Free Software Foundation, use the
  2872. GNU General Public License for most of our software; it applies also to
  2873. any other work released this way by its authors. You can apply it to
  2874. your programs, too.
  2875. When we speak of free software, we are referring to freedom, not
  2876. price. Our General Public Licenses are designed to make sure that you
  2877. have the freedom to distribute copies of free software (and charge for
  2878. them if you wish), that you receive source code or can get it if you
  2879. want it, that you can change the software or use pieces of it in new
  2880. free programs, and that you know you can do these things.
  2881. To protect your rights, we need to prevent others from denying you
  2882. these rights or asking you to surrender the rights. Therefore, you have
  2883. certain responsibilities if you distribute copies of the software, or if
  2884. you modify it: responsibilities to respect the freedom of others.
  2885. For example, if you distribute copies of such a program, whether
  2886. gratis or for a fee, you must pass on to the recipients the same
  2887. freedoms that you received. You must make sure that they, too, receive
  2888. or can get the source code. And you must show them these terms so they
  2889. know their rights.
  2890. Developers that use the GNU GPL protect your rights with two steps:
  2891. (1) assert copyright on the software, and (2) offer you this License
  2892. giving you legal permission to copy, distribute and/or modify it.
  2893. For the developers' and authors' protection, the GPL clearly explains
  2894. that there is no warranty for this free software. For both users' and
  2895. authors' sake, the GPL requires that modified versions be marked as
  2896. changed, so that their problems will not be attributed erroneously to
  2897. authors of previous versions.
  2898. Some devices are designed to deny users access to install or run
  2899. modified versions of the software inside them, although the manufacturer
  2900. can do so. This is fundamentally incompatible with the aim of
  2901. protecting users' freedom to change the software. The systematic
  2902. pattern of such abuse occurs in the area of products for individuals to
  2903. use, which is precisely where it is most unacceptable. Therefore, we
  2904. have designed this version of the GPL to prohibit the practice for those
  2905. products. If such problems arise substantially in other domains, we
  2906. stand ready to extend this provision to those domains in future versions
  2907. of the GPL, as needed to protect the freedom of users.
  2908. Finally, every program is threatened constantly by software patents.
  2909. States should not allow patents to restrict development and use of
  2910. software on general-purpose computers, but in those that do, we wish to
  2911. avoid the special danger that patents applied to a free program could
  2912. make it effectively proprietary. To prevent this, the GPL assures that
  2913. patents cannot be used to render the program non-free.
  2914. The precise terms and conditions for copying, distribution and
  2915. modification follow.
  2916. TERMS AND CONDITIONS
  2917. 0. Definitions.
  2918. "This License" refers to version 3 of the GNU General Public License.
  2919. "Copyright" also means copyright-like laws that apply to other kinds of
  2920. works, such as semiconductor masks.
  2921. "The Program" refers to any copyrightable work licensed under this
  2922. License. Each licensee is addressed as "you". "Licensees" and
  2923. "recipients" may be individuals or organizations.
  2924. To "modify" a work means to copy from or adapt all or part of the work
  2925. in a fashion requiring copyright permission, other than the making of an
  2926. exact copy. The resulting work is called a "modified version" of the
  2927. earlier work or a work "based on" the earlier work.
  2928. A "covered work" means either the unmodified Program or a work based
  2929. on the Program.
  2930. To "propagate" a work means to do anything with it that, without
  2931. permission, would make you directly or secondarily liable for
  2932. infringement under applicable copyright law, except executing it on a
  2933. computer or modifying a private copy. Propagation includes copying,
  2934. distribution (with or without modification), making available to the
  2935. public, and in some countries other activities as well.
  2936. To "convey" a work means any kind of propagation that enables other
  2937. parties to make or receive copies. Mere interaction with a user through
  2938. a computer network, with no transfer of a copy, is not conveying.
  2939. An interactive user interface displays "Appropriate Legal Notices"
  2940. to the extent that it includes a convenient and prominently visible
  2941. feature that (1) displays an appropriate copyright notice, and (2)
  2942. tells the user that there is no warranty for the work (except to the
  2943. extent that warranties are provided), that licensees may convey the
  2944. work under this License, and how to view a copy of this License. If
  2945. the interface presents a list of user commands or options, such as a
  2946. menu, a prominent item in the list meets this criterion.
  2947. 1. Source Code.
  2948. The "source code" for a work means the preferred form of the work
  2949. for making modifications to it. "Object code" means any non-source
  2950. form of a work.
  2951. A "Standard Interface" means an interface that either is an official
  2952. standard defined by a recognized standards body, or, in the case of
  2953. interfaces specified for a particular programming language, one that
  2954. is widely used among developers working in that language.
  2955. The "System Libraries" of an executable work include anything, other
  2956. than the work as a whole, that (a) is included in the normal form of
  2957. packaging a Major Component, but which is not part of that Major
  2958. Component, and (b) serves only to enable use of the work with that
  2959. Major Component, or to implement a Standard Interface for which an
  2960. implementation is available to the public in source code form. A
  2961. "Major Component", in this context, means a major essential component
  2962. (kernel, window system, and so on) of the specific operating system
  2963. (if any) on which the executable work runs, or a compiler used to
  2964. produce the work, or an object code interpreter used to run it.
  2965. The "Corresponding Source" for a work in object code form means all
  2966. the source code needed to generate, install, and (for an executable
  2967. work) run the object code and to modify the work, including scripts to
  2968. control those activities. However, it does not include the work's
  2969. System Libraries, or general-purpose tools or generally available free
  2970. programs which are used unmodified in performing those activities but
  2971. which are not part of the work. For example, Corresponding Source
  2972. includes interface definition files associated with source files for
  2973. the work, and the source code for shared libraries and dynamically
  2974. linked subprograms that the work is specifically designed to require,
  2975. such as by intimate data communication or control flow between those
  2976. subprograms and other parts of the work.
  2977. The Corresponding Source need not include anything that users
  2978. can regenerate automatically from other parts of the Corresponding
  2979. Source.
  2980. The Corresponding Source for a work in source code form is that
  2981. same work.
  2982. 2. Basic Permissions.
  2983. All rights granted under this License are granted for the term of
  2984. copyright on the Program, and are irrevocable provided the stated
  2985. conditions are met. This License explicitly affirms your unlimited
  2986. permission to run the unmodified Program. The output from running a
  2987. covered work is covered by this License only if the output, given its
  2988. content, constitutes a covered work. This License acknowledges your
  2989. rights of fair use or other equivalent, as provided by copyright law.
  2990. You may make, run and propagate covered works that you do not
  2991. convey, without conditions so long as your license otherwise remains
  2992. in force. You may convey covered works to others for the sole purpose
  2993. of having them make modifications exclusively for you, or provide you
  2994. with facilities for running those works, provided that you comply with
  2995. the terms of this License in conveying all material for which you do
  2996. not control copyright. Those thus making or running the covered works
  2997. for you must do so exclusively on your behalf, under your direction
  2998. and control, on terms that prohibit them from making any copies of
  2999. your copyrighted material outside their relationship with you.
  3000. Conveying under any other circumstances is permitted solely under
  3001. the conditions stated below. Sublicensing is not allowed; section 10
  3002. makes it unnecessary.
  3003. 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
  3004. No covered work shall be deemed part of an effective technological
  3005. measure under any applicable law fulfilling obligations under article
  3006. 11 of the WIPO copyright treaty adopted on 20 December 1996, or
  3007. similar laws prohibiting or restricting circumvention of such
  3008. measures.
  3009. When you convey a covered work, you waive any legal power to forbid
  3010. circumvention of technological measures to the extent such circumvention
  3011. is effected by exercising rights under this License with respect to
  3012. the covered work, and you disclaim any intention to limit operation or
  3013. modification of the work as a means of enforcing, against the work's
  3014. users, your or third parties' legal rights to forbid circumvention of
  3015. technological measures.
  3016. 4. Conveying Verbatim Copies.
  3017. You may convey verbatim copies of the Program's source code as you
  3018. receive it, in any medium, provided that you conspicuously and
  3019. appropriately publish on each copy an appropriate copyright notice;
  3020. keep intact all notices stating that this License and any
  3021. non-permissive terms added in accord with section 7 apply to the code;
  3022. keep intact all notices of the absence of any warranty; and give all
  3023. recipients a copy of this License along with the Program.
  3024. You may charge any price or no price for each copy that you convey,
  3025. and you may offer support or warranty protection for a fee.
  3026. 5. Conveying Modified Source Versions.
  3027. You may convey a work based on the Program, or the modifications to
  3028. produce it from the Program, in the form of source code under the
  3029. terms of section 4, provided that you also meet all of these conditions:
  3030. a) The work must carry prominent notices stating that you modified
  3031. it, and giving a relevant date.
  3032. b) The work must carry prominent notices stating that it is
  3033. released under this License and any conditions added under section
  3034. 7. This requirement modifies the requirement in section 4 to
  3035. "keep intact all notices".
  3036. c) You must license the entire work, as a whole, under this
  3037. License to anyone who comes into possession of a copy. This
  3038. License will therefore apply, along with any applicable section 7
  3039. additional terms, to the whole of the work, and all its parts,
  3040. regardless of how they are packaged. This License gives no
  3041. permission to license the work in any other way, but it does not
  3042. invalidate such permission if you have separately received it.
  3043. d) If the work has interactive user interfaces, each must display
  3044. Appropriate Legal Notices; however, if the Program has interactive
  3045. interfaces that do not display Appropriate Legal Notices, your
  3046. work need not make them do so.
  3047. A compilation of a covered work with other separate and independent
  3048. works, which are not by their nature extensions of the covered work,
  3049. and which are not combined with it such as to form a larger program,
  3050. in or on a volume of a storage or distribution medium, is called an
  3051. "aggregate" if the compilation and its resulting copyright are not
  3052. used to limit the access or legal rights of the compilation's users
  3053. beyond what the individual works permit. Inclusion of a covered work
  3054. in an aggregate does not cause this License to apply to the other
  3055. parts of the aggregate.
  3056. 6. Conveying Non-Source Forms.
  3057. You may convey a covered work in object code form under the terms
  3058. of sections 4 and 5, provided that you also convey the
  3059. machine-readable Corresponding Source under the terms of this License,
  3060. in one of these ways:
  3061. a) Convey the object code in, or embodied in, a physical product
  3062. (including a physical distribution medium), accompanied by the
  3063. Corresponding Source fixed on a durable physical medium
  3064. customarily used for software interchange.
  3065. b) Convey the object code in, or embodied in, a physical product
  3066. (including a physical distribution medium), accompanied by a
  3067. written offer, valid for at least three years and valid for as
  3068. long as you offer spare parts or customer support for that product
  3069. model, to give anyone who possesses the object code either (1) a
  3070. copy of the Corresponding Source for all the software in the
  3071. product that is covered by this License, on a durable physical
  3072. medium customarily used for software interchange, for a price no
  3073. more than your reasonable cost of physically performing this
  3074. conveying of source, or (2) access to copy the
  3075. Corresponding Source from a network server at no charge.
  3076. c) Convey individual copies of the object code with a copy of the
  3077. written offer to provide the Corresponding Source. This
  3078. alternative is allowed only occasionally and noncommercially, and
  3079. only if you received the object code with such an offer, in accord
  3080. with subsection 6b.
  3081. d) Convey the object code by offering access from a designated
  3082. place (gratis or for a charge), and offer equivalent access to the
  3083. Corresponding Source in the same way through the same place at no
  3084. further charge. You need not require recipients to copy the
  3085. Corresponding Source along with the object code. If the place to
  3086. copy the object code is a network server, the Corresponding Source
  3087. may be on a different server (operated by you or a third party)
  3088. that supports equivalent copying facilities, provided you maintain
  3089. clear directions next to the object code saying where to find the
  3090. Corresponding Source. Regardless of what server hosts the
  3091. Corresponding Source, you remain obligated to ensure that it is
  3092. available for as long as needed to satisfy these requirements.
  3093. e) Convey the object code using peer-to-peer transmission, provided
  3094. you inform other peers where the object code and Corresponding
  3095. Source of the work are being offered to the general public at no
  3096. charge under subsection 6d.
  3097. A separable portion of the object code, whose source code is excluded
  3098. from the Corresponding Source as a System Library, need not be
  3099. included in conveying the object code work.
  3100. A "User Product" is either (1) a "consumer product", which means any
  3101. tangible personal property which is normally used for personal, family,
  3102. or household purposes, or (2) anything designed or sold for incorporation
  3103. into a dwelling. In determining whether a product is a consumer product,
  3104. doubtful cases shall be resolved in favor of coverage. For a particular
  3105. product received by a particular user, "normally used" refers to a
  3106. typical or common use of that class of product, regardless of the status
  3107. of the particular user or of the way in which the particular user
  3108. actually uses, or expects or is expected to use, the product. A product
  3109. is a consumer product regardless of whether the product has substantial
  3110. commercial, industrial or non-consumer uses, unless such uses represent
  3111. the only significant mode of use of the product.
  3112. "Installation Information" for a User Product means any methods,
  3113. procedures, authorization keys, or other information required to install
  3114. and execute modified versions of a covered work in that User Product from
  3115. a modified version of its Corresponding Source. The information must
  3116. suffice to ensure that the continued functioning of the modified object
  3117. code is in no case prevented or interfered with solely because
  3118. modification has been made.
  3119. If you convey an object code work under this section in, or with, or
  3120. specifically for use in, a User Product, and the conveying occurs as
  3121. part of a transaction in which the right of possession and use of the
  3122. User Product is transferred to the recipient in perpetuity or for a
  3123. fixed term (regardless of how the transaction is characterized), the
  3124. Corresponding Source conveyed under this section must be accompanied
  3125. by the Installation Information. But this requirement does not apply
  3126. if neither you nor any third party retains the ability to install
  3127. modified object code on the User Product (for example, the work has
  3128. been installed in ROM).
  3129. The requirement to provide Installation Information does not include a
  3130. requirement to continue to provide support service, warranty, or updates
  3131. for a work that has been modified or installed by the recipient, or for
  3132. the User Product in which it has been modified or installed. Access to a
  3133. network may be denied when the modification itself materially and
  3134. adversely affects the operation of the network or violates the rules and
  3135. protocols for communication across the network.
  3136. Corresponding Source conveyed, and Installation Information provided,
  3137. in accord with this section must be in a format that is publicly
  3138. documented (and with an implementation available to the public in
  3139. source code form), and must require no special password or key for
  3140. unpacking, reading or copying.
  3141. 7. Additional Terms.
  3142. "Additional permissions" are terms that supplement the terms of this
  3143. License by making exceptions from one or more of its conditions.
  3144. Additional permissions that are applicable to the entire Program shall
  3145. be treated as though they were included in this License, to the extent
  3146. that they are valid under applicable law. If additional permissions
  3147. apply only to part of the Program, that part may be used separately
  3148. under those permissions, but the entire Program remains governed by
  3149. this License without regard to the additional permissions.
  3150. When you convey a copy of a covered work, you may at your option
  3151. remove any additional permissions from that copy, or from any part of
  3152. it. (Additional permissions may be written to require their own
  3153. removal in certain cases when you modify the work.) You may place
  3154. additional permissions on material, added by you to a covered work,
  3155. for which you have or can give appropriate copyright permission.
  3156. Notwithstanding any other provision of this License, for material you
  3157. add to a covered work, you may (if authorized by the copyright holders of
  3158. that material) supplement the terms of this License with terms:
  3159. a) Disclaiming warranty or limiting liability differently from the
  3160. terms of sections 15 and 16 of this License; or
  3161. b) Requiring preservation of specified reasonable legal notices or
  3162. author attributions in that material or in the Appropriate Legal
  3163. Notices displayed by works containing it; or
  3164. c) Prohibiting misrepresentation of the origin of that material, or
  3165. requiring that modified versions of such material be marked in
  3166. reasonable ways as different from the original version; or
  3167. d) Limiting the use for publicity purposes of names of licensors or
  3168. authors of the material; or
  3169. e) Declining to grant rights under trademark law for use of some
  3170. trade names, trademarks, or service marks; or
  3171. f) Requiring indemnification of licensors and authors of that
  3172. material by anyone who conveys the material (or modified versions of
  3173. it) with contractual assumptions of liability to the recipient, for
  3174. any liability that these contractual assumptions directly impose on
  3175. those licensors and authors.
  3176. All other non-permissive additional terms are considered "further
  3177. restrictions" within the meaning of section 10. If the Program as you
  3178. received it, or any part of it, contains a notice stating that it is
  3179. governed by this License along with a term that is a further
  3180. restriction, you may remove that term. If a license document contains
  3181. a further restriction but permits relicensing or conveying under this
  3182. License, you may add to a covered work material governed by the terms
  3183. of that license document, provided that the further restriction does
  3184. not survive such relicensing or conveying.
  3185. If you add terms to a covered work in accord with this section, you
  3186. must place, in the relevant source files, a statement of the
  3187. additional terms that apply to those files, or a notice indicating
  3188. where to find the applicable terms.
  3189. Additional terms, permissive or non-permissive, may be stated in the
  3190. form of a separately written license, or stated as exceptions;
  3191. the above requirements apply either way.
  3192. 8. Termination.
  3193. You may not propagate or modify a covered work except as expressly
  3194. provided under this License. Any attempt otherwise to propagate or
  3195. modify it is void, and will automatically terminate your rights under
  3196. this License (including any patent licenses granted under the third
  3197. paragraph of section 11).
  3198. However, if you cease all violation of this License, then your
  3199. license from a particular copyright holder is reinstated (a)
  3200. provisionally, unless and until the copyright holder explicitly and
  3201. finally terminates your license, and (b) permanently, if the copyright
  3202. holder fails to notify you of the violation by some reasonable means
  3203. prior to 60 days after the cessation.
  3204. Moreover, your license from a particular copyright holder is
  3205. reinstated permanently if the copyright holder notifies you of the
  3206. violation by some reasonable means, this is the first time you have
  3207. received notice of violation of this License (for any work) from that
  3208. copyright holder, and you cure the violation prior to 30 days after
  3209. your receipt of the notice.
  3210. Termination of your rights under this section does not terminate the
  3211. licenses of parties who have received copies or rights from you under
  3212. this License. If your rights have been terminated and not permanently
  3213. reinstated, you do not qualify to receive new licenses for the same
  3214. material under section 10.
  3215. 9. Acceptance Not Required for Having Copies.
  3216. You are not required to accept this License in order to receive or
  3217. run a copy of the Program. Ancillary propagation of a covered work
  3218. occurring solely as a consequence of using peer-to-peer transmission
  3219. to receive a copy likewise does not require acceptance. However,
  3220. nothing other than this License grants you permission to propagate or
  3221. modify any covered work. These actions infringe copyright if you do
  3222. not accept this License. Therefore, by modifying or propagating a
  3223. covered work, you indicate your acceptance of this License to do so.
  3224. 10. Automatic Licensing of Downstream Recipients.
  3225. Each time you convey a covered work, the recipient automatically
  3226. receives a license from the original licensors, to run, modify and
  3227. propagate that work, subject to this License. You are not responsible
  3228. for enforcing compliance by third parties with this License.
  3229. An "entity transaction" is a transaction transferring control of an
  3230. organization, or substantially all assets of one, or subdividing an
  3231. organization, or merging organizations. If propagation of a covered
  3232. work results from an entity transaction, each party to that
  3233. transaction who receives a copy of the work also receives whatever
  3234. licenses to the work the party's predecessor in interest had or could
  3235. give under the previous paragraph, plus a right to possession of the
  3236. Corresponding Source of the work from the predecessor in interest, if
  3237. the predecessor has it or can get it with reasonable efforts.
  3238. You may not impose any further restrictions on the exercise of the
  3239. rights granted or affirmed under this License. For example, you may
  3240. not impose a license fee, royalty, or other charge for exercise of
  3241. rights granted under this License, and you may not initiate litigation
  3242. (including a cross-claim or counterclaim in a lawsuit) alleging that
  3243. any patent claim is infringed by making, using, selling, offering for
  3244. sale, or importing the Program or any portion of it.
  3245. 11. Patents.
  3246. A "contributor" is a copyright holder who authorizes use under this
  3247. License of the Program or a work on which the Program is based. The
  3248. work thus licensed is called the contributor's "contributor version".
  3249. A contributor's "essential patent claims" are all patent claims
  3250. owned or controlled by the contributor, whether already acquired or
  3251. hereafter acquired, that would be infringed by some manner, permitted
  3252. by this License, of making, using, or selling its contributor version,
  3253. but do not include claims that would be infringed only as a
  3254. consequence of further modification of the contributor version. For
  3255. purposes of this definition, "control" includes the right to grant
  3256. patent sublicenses in a manner consistent with the requirements of
  3257. this License.
  3258. Each contributor grants you a non-exclusive, worldwide, royalty-free
  3259. patent license under the contributor's essential patent claims, to
  3260. make, use, sell, offer for sale, import and otherwise run, modify and
  3261. propagate the contents of its contributor version.
  3262. In the following three paragraphs, a "patent license" is any express
  3263. agreement or commitment, however denominated, not to enforce a patent
  3264. (such as an express permission to practice a patent or covenant not to
  3265. sue for patent infringement). To "grant" such a patent license to a
  3266. party means to make such an agreement or commitment not to enforce a
  3267. patent against the party.
  3268. If you convey a covered work, knowingly relying on a patent license,
  3269. and the Corresponding Source of the work is not available for anyone
  3270. to copy, free of charge and under the terms of this License, through a
  3271. publicly available network server or other readily accessible means,
  3272. then you must either (1) cause the Corresponding Source to be so
  3273. available, or (2) arrange to deprive yourself of the benefit of the
  3274. patent license for this particular work, or (3) arrange, in a manner
  3275. consistent with the requirements of this License, to extend the patent
  3276. license to downstream recipients. "Knowingly relying" means you have
  3277. actual knowledge that, but for the patent license, your conveying the
  3278. covered work in a country, or your recipient's use of the covered work
  3279. in a country, would infringe one or more identifiable patents in that
  3280. country that you have reason to believe are valid.
  3281. If, pursuant to or in connection with a single transaction or
  3282. arrangement, you convey, or propagate by procuring conveyance of, a
  3283. covered work, and grant a patent license to some of the parties
  3284. receiving the covered work authorizing them to use, propagate, modify
  3285. or convey a specific copy of the covered work, then the patent license
  3286. you grant is automatically extended to all recipients of the covered
  3287. work and works based on it.
  3288. A patent license is "discriminatory" if it does not include within
  3289. the scope of its coverage, prohibits the exercise of, or is
  3290. conditioned on the non-exercise of one or more of the rights that are
  3291. specifically granted under this License. You may not convey a covered
  3292. work if you are a party to an arrangement with a third party that is
  3293. in the business of distributing software, under which you make payment
  3294. to the third party based on the extent of your activity of conveying
  3295. the work, and under which the third party grants, to any of the
  3296. parties who would receive the covered work from you, a discriminatory
  3297. patent license (a) in connection with copies of the covered work
  3298. conveyed by you (or copies made from those copies), or (b) primarily
  3299. for and in connection with specific products or compilations that
  3300. contain the covered work, unless you entered into that arrangement,
  3301. or that patent license was granted, prior to 28 March 2007.
  3302. Nothing in this License shall be construed as excluding or limiting
  3303. any implied license or other defenses to infringement that may
  3304. otherwise be available to you under applicable patent law.
  3305. 12. No Surrender of Others' Freedom.
  3306. If conditions are imposed on you (whether by court order, agreement or
  3307. otherwise) that contradict the conditions of this License, they do not
  3308. excuse you from the conditions of this License. If you cannot convey a
  3309. covered work so as to satisfy simultaneously your obligations under this
  3310. License and any other pertinent obligations, then as a consequence you may
  3311. not convey it at all. For example, if you agree to terms that obligate you
  3312. to collect a royalty for further conveying from those to whom you convey
  3313. the Program, the only way you could satisfy both those terms and this
  3314. License would be to refrain entirely from conveying the Program.
  3315. 13. Use with the GNU Affero General Public License.
  3316. Notwithstanding any other provision of this License, you have
  3317. permission to link or combine any covered work with a work licensed
  3318. under version 3 of the GNU Affero General Public License into a single
  3319. combined work, and to convey the resulting work. The terms of this
  3320. License will continue to apply to the part which is the covered work,
  3321. but the special requirements of the GNU Affero General Public License,
  3322. section 13, concerning interaction through a network will apply to the
  3323. combination as such.
  3324. 14. Revised Versions of this License.
  3325. The Free Software Foundation may publish revised and/or new versions of
  3326. the GNU General Public License from time to time. Such new versions will
  3327. be similar in spirit to the present version, but may differ in detail to
  3328. address new problems or concerns.
  3329. Each version is given a distinguishing version number. If the
  3330. Program specifies that a certain numbered version of the GNU General
  3331. Public License "or any later version" applies to it, you have the
  3332. option of following the terms and conditions either of that numbered
  3333. version or of any later version published by the Free Software
  3334. Foundation. If the Program does not specify a version number of the
  3335. GNU General Public License, you may choose any version ever published
  3336. by the Free Software Foundation.
  3337. If the Program specifies that a proxy can decide which future
  3338. versions of the GNU General Public License can be used, that proxy's
  3339. public statement of acceptance of a version permanently authorizes you
  3340. to choose that version for the Program.
  3341. Later license versions may give you additional or different
  3342. permissions. However, no additional obligations are imposed on any
  3343. author or copyright holder as a result of your choosing to follow a
  3344. later version.
  3345. 15. Disclaimer of Warranty.
  3346. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
  3347. APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  3348. HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
  3349. OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  3350. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  3351. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
  3352. IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
  3353. ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  3354. 16. Limitation of Liability.
  3355. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  3356. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
  3357. THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
  3358. GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  3359. USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  3360. DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
  3361. PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
  3362. EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
  3363. SUCH DAMAGES.
  3364. 17. Interpretation of Sections 15 and 16.
  3365. If the disclaimer of warranty and limitation of liability provided
  3366. above cannot be given local legal effect according to their terms,
  3367. reviewing courts shall apply local law that most closely approximates
  3368. an absolute waiver of all civil liability in connection with the
  3369. Program, unless a warranty or assumption of liability accompanies a
  3370. copy of the Program in return for a fee.
  3371. END OF TERMS AND CONDITIONS
  3372. How to Apply These Terms to Your New Programs
  3373. If you develop a new program, and you want it to be of the greatest
  3374. possible use to the public, the best way to achieve this is to make it
  3375. free software which everyone can redistribute and change under these terms.
  3376. To do so, attach the following notices to the program. It is safest
  3377. to attach them to the start of each source file to most effectively
  3378. state the exclusion of warranty; and each file should have at least
  3379. the "copyright" line and a pointer to where the full notice is found.
  3380. <one line to give the program's name and a brief idea of what it does.>
  3381. Copyright (C) <year> <name of author>
  3382. This program is free software: you can redistribute it and/or modify
  3383. it under the terms of the GNU General Public License as published by
  3384. the Free Software Foundation, either version 3 of the License, or
  3385. (at your option) any later version.
  3386. This program is distributed in the hope that it will be useful,
  3387. but WITHOUT ANY WARRANTY; without even the implied warranty of
  3388. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  3389. GNU General Public License for more details.
  3390. You should have received a copy of the GNU General Public License
  3391. along with this program. If not, see <http://www.gnu.org/licenses/>.
  3392. Also add information on how to contact you by electronic and paper mail.
  3393. If the program does terminal interaction, make it output a short
  3394. notice like this when it starts in an interactive mode:
  3395. <program> Copyright (C) <year> <name of author>
  3396. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  3397. This is free software, and you are welcome to redistribute it
  3398. under certain conditions; type `show c' for details.
  3399. The hypothetical commands `show w' and `show c' should show the appropriate
  3400. parts of the General Public License. Of course, your program's commands
  3401. might be different; for a GUI interface, you would use an "about box".
  3402. You should also get your employer (if you work as a programmer) or school,
  3403. if any, to sign a "copyright disclaimer" for the program, if necessary.
  3404. For more information on this, and how to apply and follow the GNU GPL, see
  3405. <http://www.gnu.org/licenses/>.
  3406. The GNU General Public License does not permit incorporating your program
  3407. into proprietary programs. If your program is a subroutine library, you
  3408. may consider it more useful to permit linking proprietary applications with
  3409. the library. If this is what you want to do, use the GNU Lesser General
  3410. Public License instead of this License. But first, please read
  3411. <http://www.gnu.org/philosophy/why-not-lgpl.html>.
  3412. ----------------------------------------------------------------------
  3413. MIT License
  3414. Permission is hereby granted, free of charge, to any person obtaining a copy
  3415. of this software and associated documentation files (the "Software"), to deal
  3416. in the Software without restriction, including without limitation the rights
  3417. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3418. copies of the Software, and to permit persons to whom the Software is
  3419. furnished to do so, subject to the following conditions:
  3420. The above copyright notice and this permission notice shall be included in all
  3421. copies or substantial portions of the Software.
  3422. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3423. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3424. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3425. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3426. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3427. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  3428. SOFTWARE.
  3429. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3430. [ highway 1.0.4 ] copyright:
  3431. Apache License
  3432. Version 2.0, January 2004
  3433. http://www.apache.org/licenses/
  3434. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  3435. 1. Definitions.
  3436. "License" shall mean the terms and conditions for use, reproduction,
  3437. and distribution as defined by Sections 1 through 9 of this document.
  3438. "Licensor" shall mean the copyright owner or entity authorized by
  3439. the copyright owner that is granting the License.
  3440. "Legal Entity" shall mean the union of the acting entity and all
  3441. other entities that control, are controlled by, or are under common
  3442. control with that entity. For the purposes of this definition,
  3443. "control" means (i) the power, direct or indirect, to cause the
  3444. direction or management of such entity, whether by contract or
  3445. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  3446. outstanding shares, or (iii) beneficial ownership of such entity.
  3447. "You" (or "Your") shall mean an individual or Legal Entity
  3448. exercising permissions granted by this License.
  3449. "Source" form shall mean the preferred form for making modifications,
  3450. including but not limited to software source code, documentation
  3451. source, and configuration files.
  3452. "Object" form shall mean any form resulting from mechanical
  3453. transformation or translation of a Source form, including but
  3454. not limited to compiled object code, generated documentation,
  3455. and conversions to other media types.
  3456. "Work" shall mean the work of authorship, whether in Source or
  3457. Object form, made available under the License, as indicated by a
  3458. copyright notice that is included in or attached to the work
  3459. (an example is provided in the Appendix below).
  3460. "Derivative Works" shall mean any work, whether in Source or Object
  3461. form, that is based on (or derived from) the Work and for which the
  3462. editorial revisions, annotations, elaborations, or other modifications
  3463. represent, as a whole, an original work of authorship. For the purposes
  3464. of this License, Derivative Works shall not include works that remain
  3465. separable from, or merely link (or bind by name) to the interfaces of,
  3466. the Work and Derivative Works thereof.
  3467. "Contribution" shall mean any work of authorship, including
  3468. the original version of the Work and any modifications or additions
  3469. to that Work or Derivative Works thereof, that is intentionally
  3470. submitted to Licensor for inclusion in the Work by the copyright owner
  3471. or by an individual or Legal Entity authorized to submit on behalf of
  3472. the copyright owner. For the purposes of this definition, "submitted"
  3473. means any form of electronic, verbal, or written communication sent
  3474. to the Licensor or its representatives, including but not limited to
  3475. communication on electronic mailing lists, source code control systems,
  3476. and issue tracking systems that are managed by, or on behalf of, the
  3477. Licensor for the purpose of discussing and improving the Work, but
  3478. excluding communication that is conspicuously marked or otherwise
  3479. designated in writing by the copyright owner as "Not a Contribution."
  3480. "Contributor" shall mean Licensor and any individual or Legal Entity
  3481. on behalf of whom a Contribution has been received by Licensor and
  3482. subsequently incorporated within the Work.
  3483. 2. Grant of Copyright License. Subject to the terms and conditions of
  3484. this License, each Contributor hereby grants to You a perpetual,
  3485. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  3486. copyright license to reproduce, prepare Derivative Works of,
  3487. publicly display, publicly perform, sublicense, and distribute the
  3488. Work and such Derivative Works in Source or Object form.
  3489. 3. Grant of Patent License. Subject to the terms and conditions of
  3490. this License, each Contributor hereby grants to You a perpetual,
  3491. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  3492. (except as stated in this section) patent license to make, have made,
  3493. use, offer to sell, sell, import, and otherwise transfer the Work,
  3494. where such license applies only to those patent claims licensable
  3495. by such Contributor that are necessarily infringed by their
  3496. Contribution(s) alone or by combination of their Contribution(s)
  3497. with the Work to which such Contribution(s) was submitted. If You
  3498. institute patent litigation against any entity (including a
  3499. cross-claim or counterclaim in a lawsuit) alleging that the Work
  3500. or a Contribution incorporated within the Work constitutes direct
  3501. or contributory patent infringement, then any patent licenses
  3502. granted to You under this License for that Work shall terminate
  3503. as of the date such litigation is filed.
  3504. 4. Redistribution. You may reproduce and distribute copies of the
  3505. Work or Derivative Works thereof in any medium, with or without
  3506. modifications, and in Source or Object form, provided that You
  3507. meet the following conditions:
  3508. (a) You must give any other recipients of the Work or
  3509. Derivative Works a copy of this License; and
  3510. (b) You must cause any modified files to carry prominent notices
  3511. stating that You changed the files; and
  3512. (c) You must retain, in the Source form of any Derivative Works
  3513. that You distribute, all copyright, patent, trademark, and
  3514. attribution notices from the Source form of the Work,
  3515. excluding those notices that do not pertain to any part of
  3516. the Derivative Works; and
  3517. (d) If the Work includes a "NOTICE" text file as part of its
  3518. distribution, then any Derivative Works that You distribute must
  3519. include a readable copy of the attribution notices contained
  3520. within such NOTICE file, excluding those notices that do not
  3521. pertain to any part of the Derivative Works, in at least one
  3522. of the following places: within a NOTICE text file distributed
  3523. as part of the Derivative Works; within the Source form or
  3524. documentation, if provided along with the Derivative Works; or,
  3525. within a display generated by the Derivative Works, if and
  3526. wherever such third-party notices normally appear. The contents
  3527. of the NOTICE file are for informational purposes only and
  3528. do not modify the License. You may add Your own attribution
  3529. notices within Derivative Works that You distribute, alongside
  3530. or as an addendum to the NOTICE text from the Work, provided
  3531. that such additional attribution notices cannot be construed
  3532. as modifying the License.
  3533. You may add Your own copyright statement to Your modifications and
  3534. may provide additional or different license terms and conditions
  3535. for use, reproduction, or distribution of Your modifications, or
  3536. for any such Derivative Works as a whole, provided Your use,
  3537. reproduction, and distribution of the Work otherwise complies with
  3538. the conditions stated in this License.
  3539. 5. Submission of Contributions. Unless You explicitly state otherwise,
  3540. any Contribution intentionally submitted for inclusion in the Work
  3541. by You to the Licensor shall be under the terms and conditions of
  3542. this License, without any additional terms or conditions.
  3543. Notwithstanding the above, nothing herein shall supersede or modify
  3544. the terms of any separate license agreement you may have executed
  3545. with Licensor regarding such Contributions.
  3546. 6. Trademarks. This License does not grant permission to use the trade
  3547. names, trademarks, service marks, or product names of the Licensor,
  3548. except as required for reasonable and customary use in describing the
  3549. origin of the Work and reproducing the content of the NOTICE file.
  3550. 7. Disclaimer of Warranty. Unless required by applicable law or
  3551. agreed to in writing, Licensor provides the Work (and each
  3552. Contributor provides its Contributions) on an "AS IS" BASIS,
  3553. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  3554. implied, including, without limitation, any warranties or conditions
  3555. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  3556. PARTICULAR PURPOSE. You are solely responsible for determining the
  3557. appropriateness of using or redistributing the Work and assume any
  3558. risks associated with Your exercise of permissions under this License.
  3559. 8. Limitation of Liability. In no event and under no legal theory,
  3560. whether in tort (including negligence), contract, or otherwise,
  3561. unless required by applicable law (such as deliberate and grossly
  3562. negligent acts) or agreed to in writing, shall any Contributor be
  3563. liable to You for damages, including any direct, indirect, special,
  3564. incidental, or consequential damages of any character arising as a
  3565. result of this License or out of the use or inability to use the
  3566. Work (including but not limited to damages for loss of goodwill,
  3567. work stoppage, computer failure or malfunction, or any and all
  3568. other commercial damages or losses), even if such Contributor
  3569. has been advised of the possibility of such damages.
  3570. 9. Accepting Warranty or Additional Liability. While redistributing
  3571. the Work or Derivative Works thereof, You may choose to offer,
  3572. and charge a fee for, acceptance of support, warranty, indemnity,
  3573. or other liability obligations and/or rights consistent with this
  3574. License. However, in accepting such obligations, You may act only
  3575. on Your own behalf and on Your sole responsibility, not on behalf
  3576. of any other Contributor, and only if You agree to indemnify,
  3577. defend, and hold each Contributor harmless for any liability
  3578. incurred by, or claims asserted against, such Contributor by reason
  3579. of your accepting any such warranty or additional liability.
  3580. END OF TERMS AND CONDITIONS
  3581. APPENDIX: How to apply the Apache License to your work.
  3582. To apply the Apache License to your work, attach the following
  3583. boilerplate notice, with the fields enclosed by brackets "[]"
  3584. replaced with your own identifying information. (Don't include
  3585. the brackets!) The text should be enclosed in the appropriate
  3586. comment syntax for the file format. We also recommend that a
  3587. file or class name and description of purpose be included on the
  3588. same "printed page" as the copyright notice for easier
  3589. identification within third-party archives.
  3590. Copyright [yyyy] [name of copyright owner]
  3591. Licensed under the Apache License, Version 2.0 (the "License");
  3592. you may not use this file except in compliance with the License.
  3593. You may obtain a copy of the License at
  3594. http://www.apache.org/licenses/LICENSE-2.0
  3595. Unless required by applicable law or agreed to in writing, software
  3596. distributed under the License is distributed on an "AS IS" BASIS,
  3597. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  3598. See the License for the specific language governing permissions and
  3599. limitations under the License.
  3600. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3601. [ jasper 4.0.0 ] copyright:
  3602. JasPer License Version 2.0
  3603. Copyright (c) 2001-2016 Michael David Adams
  3604. Copyright (c) 1999-2000 Image Power, Inc.
  3605. Copyright (c) 1999-2000 The University of British Columbia
  3606. All rights reserved.
  3607. Permission is hereby granted, free of charge, to any person (the
  3608. "User") obtaining a copy of this software and associated documentation
  3609. files (the "Software"), to deal in the Software without restriction,
  3610. including without limitation the rights to use, copy, modify, merge,
  3611. publish, distribute, and/or sell copies of the Software, and to permit
  3612. persons to whom the Software is furnished to do so, subject to the
  3613. following conditions:
  3614. 1. The above copyright notices and this permission notice (which
  3615. includes the disclaimer below) shall be included in all copies or
  3616. substantial portions of the Software.
  3617. 2. The name of a copyright holder shall not be used to endorse or
  3618. promote products derived from the Software without specific prior
  3619. written permission.
  3620. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
  3621. LICENSE. NO USE OF THE SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  3622. THIS DISCLAIMER. THE SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS
  3623. "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
  3624. BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  3625. PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO
  3626. EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
  3627. INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
  3628. FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  3629. NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
  3630. WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. NO ASSURANCES ARE
  3631. PROVIDED BY THE COPYRIGHT HOLDERS THAT THE SOFTWARE DOES NOT INFRINGE
  3632. THE PATENT OR OTHER INTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY.
  3633. EACH COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY TO THE USER FOR CLAIMS
  3634. BROUGHT BY ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL
  3635. PROPERTY RIGHTS OR OTHERWISE. AS A CONDITION TO EXERCISING THE RIGHTS
  3636. GRANTED HEREUNDER, EACH USER HEREBY ASSUMES SOLE RESPONSIBILITY TO SECURE
  3637. ANY OTHER INTELLECTUAL PROPERTY RIGHTS NEEDED, IF ANY. THE SOFTWARE
  3638. IS NOT FAULT-TOLERANT AND IS NOT INTENDED FOR USE IN MISSION-CRITICAL
  3639. SYSTEMS, SUCH AS THOSE USED IN THE OPERATION OF NUCLEAR FACILITIES,
  3640. AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL
  3641. SYSTEMS, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH
  3642. THE FAILURE OF THE SOFTWARE OR SYSTEM COULD LEAD DIRECTLY TO DEATH,
  3643. PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH
  3644. RISK ACTIVITIES"). THE COPYRIGHT HOLDERS SPECIFICALLY DISCLAIM ANY
  3645. EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES.
  3646. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3647. [ jpeg-turbo 2.1.91 ] copyright:
  3648. libjpeg-turbo Licenses
  3649. ======================
  3650. libjpeg-turbo is covered by three compatible BSD-style open source licenses:
  3651. - The IJG (Independent JPEG Group) License, which is listed in
  3652. [README.ijg](README.ijg)
  3653. This license applies to the libjpeg API library and associated programs
  3654. (any code inherited from libjpeg, and any modifications to that code.)
  3655. - The Modified (3-clause) BSD License, which is listed below
  3656. This license covers the TurboJPEG API library and associated programs, as
  3657. well as the build system.
  3658. - The [zlib License](https://opensource.org/licenses/Zlib)
  3659. This license is a subset of the other two, and it covers the libjpeg-turbo
  3660. SIMD extensions.
  3661. Complying with the libjpeg-turbo Licenses
  3662. =========================================
  3663. This section provides a roll-up of the libjpeg-turbo licensing terms, to the
  3664. best of our understanding.
  3665. 1. If you are distributing a modified version of the libjpeg-turbo source,
  3666. then:
  3667. 1. You cannot alter or remove any existing copyright or license notices
  3668. from the source.
  3669. **Origin**
  3670. - Clause 1 of the IJG License
  3671. - Clause 1 of the Modified BSD License
  3672. - Clauses 1 and 3 of the zlib License
  3673. 2. You must add your own copyright notice to the header of each source
  3674. file you modified, so others can tell that you modified that file (if
  3675. there is not an existing copyright header in that file, then you can
  3676. simply add a notice stating that you modified the file.)
  3677. **Origin**
  3678. - Clause 1 of the IJG License
  3679. - Clause 2 of the zlib License
  3680. 3. You must include the IJG README file, and you must not alter any of the
  3681. copyright or license text in that file.
  3682. **Origin**
  3683. - Clause 1 of the IJG License
  3684. 2. If you are distributing only libjpeg-turbo binaries without the source, or
  3685. if you are distributing an application that statically links with
  3686. libjpeg-turbo, then:
  3687. 1. Your product documentation must include a message stating:
  3688. This software is based in part on the work of the Independent JPEG
  3689. Group.
  3690. **Origin**
  3691. - Clause 2 of the IJG license
  3692. 2. If your binary distribution includes or uses the TurboJPEG API, then
  3693. your product documentation must include the text of the Modified BSD
  3694. License (see below.)
  3695. **Origin**
  3696. - Clause 2 of the Modified BSD License
  3697. 3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
  3698. contributors thereof in advertising, publicity, etc.
  3699. **Origin**
  3700. - IJG License
  3701. - Clause 3 of the Modified BSD License
  3702. 4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be
  3703. free of defects, nor do we accept any liability for undesirable
  3704. consequences resulting from your use of the software.
  3705. **Origin**
  3706. - IJG License
  3707. - Modified BSD License
  3708. - zlib License
  3709. The Modified (3-clause) BSD License
  3710. ===================================
  3711. Copyright (C)2009-2023 D. R. Commander. All Rights Reserved.<br>
  3712. Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
  3713. Redistribution and use in source and binary forms, with or without
  3714. modification, are permitted provided that the following conditions are met:
  3715. - Redistributions of source code must retain the above copyright notice,
  3716. this list of conditions and the following disclaimer.
  3717. - Redistributions in binary form must reproduce the above copyright notice,
  3718. this list of conditions and the following disclaimer in the documentation
  3719. and/or other materials provided with the distribution.
  3720. - Neither the name of the libjpeg-turbo Project nor the names of its
  3721. contributors may be used to endorse or promote products derived from this
  3722. software without specific prior written permission.
  3723. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
  3724. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  3725. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  3726. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
  3727. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  3728. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  3729. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  3730. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  3731. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  3732. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  3733. POSSIBILITY OF SUCH DAMAGE.
  3734. Why Three Licenses?
  3735. ===================
  3736. The zlib License could have been used instead of the Modified (3-clause) BSD
  3737. License, and since the IJG License effectively subsumes the distribution
  3738. conditions of the zlib License, this would have effectively placed
  3739. libjpeg-turbo binary distributions under the IJG License. However, the IJG
  3740. License specifically refers to the Independent JPEG Group and does not extend
  3741. attribution and endorsement protections to other entities. Thus, it was
  3742. desirable to choose a license that granted us the same protections for new code
  3743. that were granted to the IJG for code derived from their software.
  3744. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3745. [ jpeg-xl 0.8.1 ] copyright:
  3746. Copyright (c) the JPEG XL Project Authors.
  3747. All rights reserved.
  3748. Redistribution and use in source and binary forms, with or without
  3749. modification, are permitted provided that the following conditions are met:
  3750. 1. Redistributions of source code must retain the above copyright notice, this
  3751. list of conditions and the following disclaimer.
  3752. 2. Redistributions in binary form must reproduce the above copyright notice,
  3753. this list of conditions and the following disclaimer in the documentation
  3754. and/or other materials provided with the distribution.
  3755. 3. Neither the name of the copyright holder nor the names of its
  3756. contributors may be used to endorse or promote products derived from
  3757. this software without specific prior written permission.
  3758. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  3759. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  3760. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  3761. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  3762. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  3763. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  3764. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  3765. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  3766. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  3767. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  3768. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3769. [ lcms 2.15.0 ] copyright:
  3770. Little CMS
  3771. Copyright (c) 1998-2020 Marti Maria Saguer
  3772. Permission is hereby granted, free of charge, to any person obtaining
  3773. a copy of this software and associated documentation files (the
  3774. "Software"), to deal in the Software without restriction, including
  3775. without limitation the rights to use, copy, modify, merge, publish,
  3776. distribute, sublicense, and/or sell copies of the Software, and to
  3777. permit persons to whom the Software is furnished to do so, subject
  3778. to the following conditions:
  3779. The above copyright notice and this permission notice shall be
  3780. included in all copies or substantial portions of the Software.
  3781. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  3782. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  3783. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  3784. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  3785. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  3786. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  3787. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  3788. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3789. [ lqr 0.4.2 ] copyright:
  3790. GNU LESSER GENERAL PUBLIC LICENSE
  3791. Version 3, 29 June 2007
  3792. Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  3793. Everyone is permitted to copy and distribute verbatim copies
  3794. of this license document, but changing it is not allowed.
  3795. This version of the GNU Lesser General Public License incorporates
  3796. the terms and conditions of version 3 of the GNU General Public
  3797. License, supplemented by the additional permissions listed below.
  3798. 0. Additional Definitions.
  3799. As used herein, "this License" refers to version 3 of the GNU Lesser
  3800. General Public License, and the "GNU GPL" refers to version 3 of the GNU
  3801. General Public License.
  3802. "The Library" refers to a covered work governed by this License,
  3803. other than an Application or a Combined Work as defined below.
  3804. An "Application" is any work that makes use of an interface provided
  3805. by the Library, but which is not otherwise based on the Library.
  3806. Defining a subclass of a class defined by the Library is deemed a mode
  3807. of using an interface provided by the Library.
  3808. A "Combined Work" is a work produced by combining or linking an
  3809. Application with the Library. The particular version of the Library
  3810. with which the Combined Work was made is also called the "Linked
  3811. Version".
  3812. The "Minimal Corresponding Source" for a Combined Work means the
  3813. Corresponding Source for the Combined Work, excluding any source code
  3814. for portions of the Combined Work that, considered in isolation, are
  3815. based on the Application, and not on the Linked Version.
  3816. The "Corresponding Application Code" for a Combined Work means the
  3817. object code and/or source code for the Application, including any data
  3818. and utility programs needed for reproducing the Combined Work from the
  3819. Application, but excluding the System Libraries of the Combined Work.
  3820. 1. Exception to Section 3 of the GNU GPL.
  3821. You may convey a covered work under sections 3 and 4 of this License
  3822. without being bound by section 3 of the GNU GPL.
  3823. 2. Conveying Modified Versions.
  3824. If you modify a copy of the Library, and, in your modifications, a
  3825. facility refers to a function or data to be supplied by an Application
  3826. that uses the facility (other than as an argument passed when the
  3827. facility is invoked), then you may convey a copy of the modified
  3828. version:
  3829. a) under this License, provided that you make a good faith effort to
  3830. ensure that, in the event an Application does not supply the
  3831. function or data, the facility still operates, and performs
  3832. whatever part of its purpose remains meaningful, or
  3833. b) under the GNU GPL, with none of the additional permissions of
  3834. this License applicable to that copy.
  3835. 3. Object Code Incorporating Material from Library Header Files.
  3836. The object code form of an Application may incorporate material from
  3837. a header file that is part of the Library. You may convey such object
  3838. code under terms of your choice, provided that, if the incorporated
  3839. material is not limited to numerical parameters, data structure
  3840. layouts and accessors, or small macros, inline functions and templates
  3841. (ten or fewer lines in length), you do both of the following:
  3842. a) Give prominent notice with each copy of the object code that the
  3843. Library is used in it and that the Library and its use are
  3844. covered by this License.
  3845. b) Accompany the object code with a copy of the GNU GPL and this license
  3846. document.
  3847. 4. Combined Works.
  3848. You may convey a Combined Work under terms of your choice that,
  3849. taken together, effectively do not restrict modification of the
  3850. portions of the Library contained in the Combined Work and reverse
  3851. engineering for debugging such modifications, if you also do each of
  3852. the following:
  3853. a) Give prominent notice with each copy of the Combined Work that
  3854. the Library is used in it and that the Library and its use are
  3855. covered by this License.
  3856. b) Accompany the Combined Work with a copy of the GNU GPL and this license
  3857. document.
  3858. c) For a Combined Work that displays copyright notices during
  3859. execution, include the copyright notice for the Library among
  3860. these notices, as well as a reference directing the user to the
  3861. copies of the GNU GPL and this license document.
  3862. d) Do one of the following:
  3863. 0) Convey the Minimal Corresponding Source under the terms of this
  3864. License, and the Corresponding Application Code in a form
  3865. suitable for, and under terms that permit, the user to
  3866. recombine or relink the Application with a modified version of
  3867. the Linked Version to produce a modified Combined Work, in the
  3868. manner specified by section 6 of the GNU GPL for conveying
  3869. Corresponding Source.
  3870. 1) Use a suitable shared library mechanism for linking with the
  3871. Library. A suitable mechanism is one that (a) uses at run time
  3872. a copy of the Library already present on the user's computer
  3873. system, and (b) will operate properly with a modified version
  3874. of the Library that is interface-compatible with the Linked
  3875. Version.
  3876. e) Provide Installation Information, but only if you would otherwise
  3877. be required to provide such information under section 6 of the
  3878. GNU GPL, and only to the extent that such information is
  3879. necessary to install and execute a modified version of the
  3880. Combined Work produced by recombining or relinking the
  3881. Application with a modified version of the Linked Version. (If
  3882. you use option 4d0, the Installation Information must accompany
  3883. the Minimal Corresponding Source and Corresponding Application
  3884. Code. If you use option 4d1, you must provide the Installation
  3885. Information in the manner specified by section 6 of the GNU GPL
  3886. for conveying Corresponding Source.)
  3887. 5. Combined Libraries.
  3888. You may place library facilities that are a work based on the
  3889. Library side by side in a single library together with other library
  3890. facilities that are not Applications and are not covered by this
  3891. License, and convey such a combined library under terms of your
  3892. choice, if you do both of the following:
  3893. a) Accompany the combined library with a copy of the same work based
  3894. on the Library, uncombined with any other library facilities,
  3895. conveyed under the terms of this License.
  3896. b) Give prominent notice with the combined library that part of it
  3897. is a work based on the Library, and explaining where to find the
  3898. accompanying uncombined form of the same work.
  3899. 6. Revised Versions of the GNU Lesser General Public License.
  3900. The Free Software Foundation may publish revised and/or new versions
  3901. of the GNU Lesser General Public License from time to time. Such new
  3902. versions will be similar in spirit to the present version, but may
  3903. differ in detail to address new problems or concerns.
  3904. Each version is given a distinguishing version number. If the
  3905. Library as you received it specifies that a certain numbered version
  3906. of the GNU Lesser General Public License "or any later version"
  3907. applies to it, you have the option of following the terms and
  3908. conditions either of that published version or of any later version
  3909. published by the Free Software Foundation. If the Library as you
  3910. received it does not specify a version number of the GNU Lesser
  3911. General Public License, you may choose any version of the GNU Lesser
  3912. General Public License ever published by the Free Software Foundation.
  3913. If the Library as you received it specifies that a proxy can decide
  3914. whether future versions of the GNU Lesser General Public License shall
  3915. apply, that proxy's public statement of acceptance of any version is
  3916. permanent authorization for you to choose that version for the
  3917. Library.
  3918. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  3919. [ lzma 5.4.3 ] copyright:
  3920. GNU LESSER GENERAL PUBLIC LICENSE
  3921. Version 2.1, February 1999
  3922. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  3923. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  3924. Everyone is permitted to copy and distribute verbatim copies
  3925. of this license document, but changing it is not allowed.
  3926. [This is the first released version of the Lesser GPL. It also counts
  3927. as the successor of the GNU Library Public License, version 2, hence
  3928. the version number 2.1.]
  3929. Preamble
  3930. The licenses for most software are designed to take away your
  3931. freedom to share and change it. By contrast, the GNU General Public
  3932. Licenses are intended to guarantee your freedom to share and change
  3933. free software--to make sure the software is free for all its users.
  3934. This license, the Lesser General Public License, applies to some
  3935. specially designated software packages--typically libraries--of the
  3936. Free Software Foundation and other authors who decide to use it. You
  3937. can use it too, but we suggest you first think carefully about whether
  3938. this license or the ordinary General Public License is the better
  3939. strategy to use in any particular case, based on the explanations below.
  3940. When we speak of free software, we are referring to freedom of use,
  3941. not price. Our General Public Licenses are designed to make sure that
  3942. you have the freedom to distribute copies of free software (and charge
  3943. for this service if you wish); that you receive source code or can get
  3944. it if you want it; that you can change the software and use pieces of
  3945. it in new free programs; and that you are informed that you can do
  3946. these things.
  3947. To protect your rights, we need to make restrictions that forbid
  3948. distributors to deny you these rights or to ask you to surrender these
  3949. rights. These restrictions translate to certain responsibilities for
  3950. you if you distribute copies of the library or if you modify it.
  3951. For example, if you distribute copies of the library, whether gratis
  3952. or for a fee, you must give the recipients all the rights that we gave
  3953. you. You must make sure that they, too, receive or can get the source
  3954. code. If you link other code with the library, you must provide
  3955. complete object files to the recipients, so that they can relink them
  3956. with the library after making changes to the library and recompiling
  3957. it. And you must show them these terms so they know their rights.
  3958. We protect your rights with a two-step method: (1) we copyright the
  3959. library, and (2) we offer you this license, which gives you legal
  3960. permission to copy, distribute and/or modify the library.
  3961. To protect each distributor, we want to make it very clear that
  3962. there is no warranty for the free library. Also, if the library is
  3963. modified by someone else and passed on, the recipients should know
  3964. that what they have is not the original version, so that the original
  3965. author's reputation will not be affected by problems that might be
  3966. introduced by others.
  3967. Finally, software patents pose a constant threat to the existence of
  3968. any free program. We wish to make sure that a company cannot
  3969. effectively restrict the users of a free program by obtaining a
  3970. restrictive license from a patent holder. Therefore, we insist that
  3971. any patent license obtained for a version of the library must be
  3972. consistent with the full freedom of use specified in this license.
  3973. Most GNU software, including some libraries, is covered by the
  3974. ordinary GNU General Public License. This license, the GNU Lesser
  3975. General Public License, applies to certain designated libraries, and
  3976. is quite different from the ordinary General Public License. We use
  3977. this license for certain libraries in order to permit linking those
  3978. libraries into non-free programs.
  3979. When a program is linked with a library, whether statically or using
  3980. a shared library, the combination of the two is legally speaking a
  3981. combined work, a derivative of the original library. The ordinary
  3982. General Public License therefore permits such linking only if the
  3983. entire combination fits its criteria of freedom. The Lesser General
  3984. Public License permits more lax criteria for linking other code with
  3985. the library.
  3986. We call this license the "Lesser" General Public License because it
  3987. does Less to protect the user's freedom than the ordinary General
  3988. Public License. It also provides other free software developers Less
  3989. of an advantage over competing non-free programs. These disadvantages
  3990. are the reason we use the ordinary General Public License for many
  3991. libraries. However, the Lesser license provides advantages in certain
  3992. special circumstances.
  3993. For example, on rare occasions, there may be a special need to
  3994. encourage the widest possible use of a certain library, so that it becomes
  3995. a de-facto standard. To achieve this, non-free programs must be
  3996. allowed to use the library. A more frequent case is that a free
  3997. library does the same job as widely used non-free libraries. In this
  3998. case, there is little to gain by limiting the free library to free
  3999. software only, so we use the Lesser General Public License.
  4000. In other cases, permission to use a particular library in non-free
  4001. programs enables a greater number of people to use a large body of
  4002. free software. For example, permission to use the GNU C Library in
  4003. non-free programs enables many more people to use the whole GNU
  4004. operating system, as well as its variant, the GNU/Linux operating
  4005. system.
  4006. Although the Lesser General Public License is Less protective of the
  4007. users' freedom, it does ensure that the user of a program that is
  4008. linked with the Library has the freedom and the wherewithal to run
  4009. that program using a modified version of the Library.
  4010. The precise terms and conditions for copying, distribution and
  4011. modification follow. Pay close attention to the difference between a
  4012. "work based on the library" and a "work that uses the library". The
  4013. former contains code derived from the library, whereas the latter must
  4014. be combined with the library in order to run.
  4015. GNU LESSER GENERAL PUBLIC LICENSE
  4016. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  4017. 0. This License Agreement applies to any software library or other
  4018. program which contains a notice placed by the copyright holder or
  4019. other authorized party saying it may be distributed under the terms of
  4020. this Lesser General Public License (also called "this License").
  4021. Each licensee is addressed as "you".
  4022. A "library" means a collection of software functions and/or data
  4023. prepared so as to be conveniently linked with application programs
  4024. (which use some of those functions and data) to form executables.
  4025. The "Library", below, refers to any such software library or work
  4026. which has been distributed under these terms. A "work based on the
  4027. Library" means either the Library or any derivative work under
  4028. copyright law: that is to say, a work containing the Library or a
  4029. portion of it, either verbatim or with modifications and/or translated
  4030. straightforwardly into another language. (Hereinafter, translation is
  4031. included without limitation in the term "modification".)
  4032. "Source code" for a work means the preferred form of the work for
  4033. making modifications to it. For a library, complete source code means
  4034. all the source code for all modules it contains, plus any associated
  4035. interface definition files, plus the scripts used to control compilation
  4036. and installation of the library.
  4037. Activities other than copying, distribution and modification are not
  4038. covered by this License; they are outside its scope. The act of
  4039. running a program using the Library is not restricted, and output from
  4040. such a program is covered only if its contents constitute a work based
  4041. on the Library (independent of the use of the Library in a tool for
  4042. writing it). Whether that is true depends on what the Library does
  4043. and what the program that uses the Library does.
  4044. 1. You may copy and distribute verbatim copies of the Library's
  4045. complete source code as you receive it, in any medium, provided that
  4046. you conspicuously and appropriately publish on each copy an
  4047. appropriate copyright notice and disclaimer of warranty; keep intact
  4048. all the notices that refer to this License and to the absence of any
  4049. warranty; and distribute a copy of this License along with the
  4050. Library.
  4051. You may charge a fee for the physical act of transferring a copy,
  4052. and you may at your option offer warranty protection in exchange for a
  4053. fee.
  4054. 2. You may modify your copy or copies of the Library or any portion
  4055. of it, thus forming a work based on the Library, and copy and
  4056. distribute such modifications or work under the terms of Section 1
  4057. above, provided that you also meet all of these conditions:
  4058. a) The modified work must itself be a software library.
  4059. b) You must cause the files modified to carry prominent notices
  4060. stating that you changed the files and the date of any change.
  4061. c) You must cause the whole of the work to be licensed at no
  4062. charge to all third parties under the terms of this License.
  4063. d) If a facility in the modified Library refers to a function or a
  4064. table of data to be supplied by an application program that uses
  4065. the facility, other than as an argument passed when the facility
  4066. is invoked, then you must make a good faith effort to ensure that,
  4067. in the event an application does not supply such function or
  4068. table, the facility still operates, and performs whatever part of
  4069. its purpose remains meaningful.
  4070. (For example, a function in a library to compute square roots has
  4071. a purpose that is entirely well-defined independent of the
  4072. application. Therefore, Subsection 2d requires that any
  4073. application-supplied function or table used by this function must
  4074. be optional: if the application does not supply it, the square
  4075. root function must still compute square roots.)
  4076. These requirements apply to the modified work as a whole. If
  4077. identifiable sections of that work are not derived from the Library,
  4078. and can be reasonably considered independent and separate works in
  4079. themselves, then this License, and its terms, do not apply to those
  4080. sections when you distribute them as separate works. But when you
  4081. distribute the same sections as part of a whole which is a work based
  4082. on the Library, the distribution of the whole must be on the terms of
  4083. this License, whose permissions for other licensees extend to the
  4084. entire whole, and thus to each and every part regardless of who wrote
  4085. it.
  4086. Thus, it is not the intent of this section to claim rights or contest
  4087. your rights to work written entirely by you; rather, the intent is to
  4088. exercise the right to control the distribution of derivative or
  4089. collective works based on the Library.
  4090. In addition, mere aggregation of another work not based on the Library
  4091. with the Library (or with a work based on the Library) on a volume of
  4092. a storage or distribution medium does not bring the other work under
  4093. the scope of this License.
  4094. 3. You may opt to apply the terms of the ordinary GNU General Public
  4095. License instead of this License to a given copy of the Library. To do
  4096. this, you must alter all the notices that refer to this License, so
  4097. that they refer to the ordinary GNU General Public License, version 2,
  4098. instead of to this License. (If a newer version than version 2 of the
  4099. ordinary GNU General Public License has appeared, then you can specify
  4100. that version instead if you wish.) Do not make any other change in
  4101. these notices.
  4102. Once this change is made in a given copy, it is irreversible for
  4103. that copy, so the ordinary GNU General Public License applies to all
  4104. subsequent copies and derivative works made from that copy.
  4105. This option is useful when you wish to copy part of the code of
  4106. the Library into a program that is not a library.
  4107. 4. You may copy and distribute the Library (or a portion or
  4108. derivative of it, under Section 2) in object code or executable form
  4109. under the terms of Sections 1 and 2 above provided that you accompany
  4110. it with the complete corresponding machine-readable source code, which
  4111. must be distributed under the terms of Sections 1 and 2 above on a
  4112. medium customarily used for software interchange.
  4113. If distribution of object code is made by offering access to copy
  4114. from a designated place, then offering equivalent access to copy the
  4115. source code from the same place satisfies the requirement to
  4116. distribute the source code, even though third parties are not
  4117. compelled to copy the source along with the object code.
  4118. 5. A program that contains no derivative of any portion of the
  4119. Library, but is designed to work with the Library by being compiled or
  4120. linked with it, is called a "work that uses the Library". Such a
  4121. work, in isolation, is not a derivative work of the Library, and
  4122. therefore falls outside the scope of this License.
  4123. However, linking a "work that uses the Library" with the Library
  4124. creates an executable that is a derivative of the Library (because it
  4125. contains portions of the Library), rather than a "work that uses the
  4126. library". The executable is therefore covered by this License.
  4127. Section 6 states terms for distribution of such executables.
  4128. When a "work that uses the Library" uses material from a header file
  4129. that is part of the Library, the object code for the work may be a
  4130. derivative work of the Library even though the source code is not.
  4131. Whether this is true is especially significant if the work can be
  4132. linked without the Library, or if the work is itself a library. The
  4133. threshold for this to be true is not precisely defined by law.
  4134. If such an object file uses only numerical parameters, data
  4135. structure layouts and accessors, and small macros and small inline
  4136. functions (ten lines or less in length), then the use of the object
  4137. file is unrestricted, regardless of whether it is legally a derivative
  4138. work. (Executables containing this object code plus portions of the
  4139. Library will still fall under Section 6.)
  4140. Otherwise, if the work is a derivative of the Library, you may
  4141. distribute the object code for the work under the terms of Section 6.
  4142. Any executables containing that work also fall under Section 6,
  4143. whether or not they are linked directly with the Library itself.
  4144. 6. As an exception to the Sections above, you may also combine or
  4145. link a "work that uses the Library" with the Library to produce a
  4146. work containing portions of the Library, and distribute that work
  4147. under terms of your choice, provided that the terms permit
  4148. modification of the work for the customer's own use and reverse
  4149. engineering for debugging such modifications.
  4150. You must give prominent notice with each copy of the work that the
  4151. Library is used in it and that the Library and its use are covered by
  4152. this License. You must supply a copy of this License. If the work
  4153. during execution displays copyright notices, you must include the
  4154. copyright notice for the Library among them, as well as a reference
  4155. directing the user to the copy of this License. Also, you must do one
  4156. of these things:
  4157. a) Accompany the work with the complete corresponding
  4158. machine-readable source code for the Library including whatever
  4159. changes were used in the work (which must be distributed under
  4160. Sections 1 and 2 above); and, if the work is an executable linked
  4161. with the Library, with the complete machine-readable "work that
  4162. uses the Library", as object code and/or source code, so that the
  4163. user can modify the Library and then relink to produce a modified
  4164. executable containing the modified Library. (It is understood
  4165. that the user who changes the contents of definitions files in the
  4166. Library will not necessarily be able to recompile the application
  4167. to use the modified definitions.)
  4168. b) Use a suitable shared library mechanism for linking with the
  4169. Library. A suitable mechanism is one that (1) uses at run time a
  4170. copy of the library already present on the user's computer system,
  4171. rather than copying library functions into the executable, and (2)
  4172. will operate properly with a modified version of the library, if
  4173. the user installs one, as long as the modified version is
  4174. interface-compatible with the version that the work was made with.
  4175. c) Accompany the work with a written offer, valid for at
  4176. least three years, to give the same user the materials
  4177. specified in Subsection 6a, above, for a charge no more
  4178. than the cost of performing this distribution.
  4179. d) If distribution of the work is made by offering access to copy
  4180. from a designated place, offer equivalent access to copy the above
  4181. specified materials from the same place.
  4182. e) Verify that the user has already received a copy of these
  4183. materials or that you have already sent this user a copy.
  4184. For an executable, the required form of the "work that uses the
  4185. Library" must include any data and utility programs needed for
  4186. reproducing the executable from it. However, as a special exception,
  4187. the materials to be distributed need not include anything that is
  4188. normally distributed (in either source or binary form) with the major
  4189. components (compiler, kernel, and so on) of the operating system on
  4190. which the executable runs, unless that component itself accompanies
  4191. the executable.
  4192. It may happen that this requirement contradicts the license
  4193. restrictions of other proprietary libraries that do not normally
  4194. accompany the operating system. Such a contradiction means you cannot
  4195. use both them and the Library together in an executable that you
  4196. distribute.
  4197. 7. You may place library facilities that are a work based on the
  4198. Library side-by-side in a single library together with other library
  4199. facilities not covered by this License, and distribute such a combined
  4200. library, provided that the separate distribution of the work based on
  4201. the Library and of the other library facilities is otherwise
  4202. permitted, and provided that you do these two things:
  4203. a) Accompany the combined library with a copy of the same work
  4204. based on the Library, uncombined with any other library
  4205. facilities. This must be distributed under the terms of the
  4206. Sections above.
  4207. b) Give prominent notice with the combined library of the fact
  4208. that part of it is a work based on the Library, and explaining
  4209. where to find the accompanying uncombined form of the same work.
  4210. 8. You may not copy, modify, sublicense, link with, or distribute
  4211. the Library except as expressly provided under this License. Any
  4212. attempt otherwise to copy, modify, sublicense, link with, or
  4213. distribute the Library is void, and will automatically terminate your
  4214. rights under this License. However, parties who have received copies,
  4215. or rights, from you under this License will not have their licenses
  4216. terminated so long as such parties remain in full compliance.
  4217. 9. You are not required to accept this License, since you have not
  4218. signed it. However, nothing else grants you permission to modify or
  4219. distribute the Library or its derivative works. These actions are
  4220. prohibited by law if you do not accept this License. Therefore, by
  4221. modifying or distributing the Library (or any work based on the
  4222. Library), you indicate your acceptance of this License to do so, and
  4223. all its terms and conditions for copying, distributing or modifying
  4224. the Library or works based on it.
  4225. 10. Each time you redistribute the Library (or any work based on the
  4226. Library), the recipient automatically receives a license from the
  4227. original licensor to copy, distribute, link with or modify the Library
  4228. subject to these terms and conditions. You may not impose any further
  4229. restrictions on the recipients' exercise of the rights granted herein.
  4230. You are not responsible for enforcing compliance by third parties with
  4231. this License.
  4232. 11. If, as a consequence of a court judgment or allegation of patent
  4233. infringement or for any other reason (not limited to patent issues),
  4234. conditions are imposed on you (whether by court order, agreement or
  4235. otherwise) that contradict the conditions of this License, they do not
  4236. excuse you from the conditions of this License. If you cannot
  4237. distribute so as to satisfy simultaneously your obligations under this
  4238. License and any other pertinent obligations, then as a consequence you
  4239. may not distribute the Library at all. For example, if a patent
  4240. license would not permit royalty-free redistribution of the Library by
  4241. all those who receive copies directly or indirectly through you, then
  4242. the only way you could satisfy both it and this License would be to
  4243. refrain entirely from distribution of the Library.
  4244. If any portion of this section is held invalid or unenforceable under any
  4245. particular circumstance, the balance of the section is intended to apply,
  4246. and the section as a whole is intended to apply in other circumstances.
  4247. It is not the purpose of this section to induce you to infringe any
  4248. patents or other property right claims or to contest validity of any
  4249. such claims; this section has the sole purpose of protecting the
  4250. integrity of the free software distribution system which is
  4251. implemented by public license practices. Many people have made
  4252. generous contributions to the wide range of software distributed
  4253. through that system in reliance on consistent application of that
  4254. system; it is up to the author/donor to decide if he or she is willing
  4255. to distribute software through any other system and a licensee cannot
  4256. impose that choice.
  4257. This section is intended to make thoroughly clear what is believed to
  4258. be a consequence of the rest of this License.
  4259. 12. If the distribution and/or use of the Library is restricted in
  4260. certain countries either by patents or by copyrighted interfaces, the
  4261. original copyright holder who places the Library under this License may add
  4262. an explicit geographical distribution limitation excluding those countries,
  4263. so that distribution is permitted only in or among countries not thus
  4264. excluded. In such case, this License incorporates the limitation as if
  4265. written in the body of this License.
  4266. 13. The Free Software Foundation may publish revised and/or new
  4267. versions of the Lesser General Public License from time to time.
  4268. Such new versions will be similar in spirit to the present version,
  4269. but may differ in detail to address new problems or concerns.
  4270. Each version is given a distinguishing version number. If the Library
  4271. specifies a version number of this License which applies to it and
  4272. "any later version", you have the option of following the terms and
  4273. conditions either of that version or of any later version published by
  4274. the Free Software Foundation. If the Library does not specify a
  4275. license version number, you may choose any version ever published by
  4276. the Free Software Foundation.
  4277. 14. If you wish to incorporate parts of the Library into other free
  4278. programs whose distribution conditions are incompatible with these,
  4279. write to the author to ask for permission. For software which is
  4280. copyrighted by the Free Software Foundation, write to the Free
  4281. Software Foundation; we sometimes make exceptions for this. Our
  4282. decision will be guided by the two goals of preserving the free status
  4283. of all derivatives of our free software and of promoting the sharing
  4284. and reuse of software generally.
  4285. NO WARRANTY
  4286. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  4287. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  4288. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  4289. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  4290. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  4291. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  4292. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  4293. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  4294. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  4295. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  4296. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  4297. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  4298. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  4299. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  4300. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  4301. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  4302. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  4303. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  4304. DAMAGES.
  4305. END OF TERMS AND CONDITIONS
  4306. How to Apply These Terms to Your New Libraries
  4307. If you develop a new library, and you want it to be of the greatest
  4308. possible use to the public, we recommend making it free software that
  4309. everyone can redistribute and change. You can do so by permitting
  4310. redistribution under these terms (or, alternatively, under the terms of the
  4311. ordinary General Public License).
  4312. To apply these terms, attach the following notices to the library. It is
  4313. safest to attach them to the start of each source file to most effectively
  4314. convey the exclusion of warranty; and each file should have at least the
  4315. "copyright" line and a pointer to where the full notice is found.
  4316. <one line to give the library's name and a brief idea of what it does.>
  4317. Copyright (C) <year> <name of author>
  4318. This library is free software; you can redistribute it and/or
  4319. modify it under the terms of the GNU Lesser General Public
  4320. License as published by the Free Software Foundation; either
  4321. version 2.1 of the License, or (at your option) any later version.
  4322. This library is distributed in the hope that it will be useful,
  4323. but WITHOUT ANY WARRANTY; without even the implied warranty of
  4324. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  4325. Lesser General Public License for more details.
  4326. You should have received a copy of the GNU Lesser General Public
  4327. License along with this library; if not, write to the Free Software
  4328. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  4329. Also add information on how to contact you by electronic and paper mail.
  4330. You should also get your employer (if you work as a programmer) or your
  4331. school, if any, to sign a "copyright disclaimer" for the library, if
  4332. necessary. Here is a sample; alter the names:
  4333. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  4334. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  4335. <signature of Ty Coon>, 1 April 1990
  4336. Ty Coon, President of Vice
  4337. That's all there is to it!
  4338. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4339. [ openjpeg 2.5.0 ] copyright:
  4340. /*
  4341. * The copyright in this software is being made available under the 2-clauses
  4342. * BSD License, included below. This software may be subject to other third
  4343. * party and contributor rights, including patent rights, and no such rights
  4344. * are granted under this license.
  4345. *
  4346. * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
  4347. * Copyright (c) 2002-2014, Professor Benoit Macq
  4348. * Copyright (c) 2003-2014, Antonin Descampe
  4349. * Copyright (c) 2003-2009, Francois-Olivier Devaux
  4350. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  4351. * Copyright (c) 2002-2003, Yannick Verschueren
  4352. * Copyright (c) 2001-2003, David Janssens
  4353. * Copyright (c) 2011-2012, Centre National d'Etudes Spatiales (CNES), France
  4354. * Copyright (c) 2012, CS Systemes d'Information, France
  4355. *
  4356. * All rights reserved.
  4357. *
  4358. * Redistribution and use in source and binary forms, with or without
  4359. * modification, are permitted provided that the following conditions
  4360. * are met:
  4361. * 1. Redistributions of source code must retain the above copyright
  4362. * notice, this list of conditions and the following disclaimer.
  4363. * 2. Redistributions in binary form must reproduce the above copyright
  4364. * notice, this list of conditions and the following disclaimer in the
  4365. * documentation and/or other materials provided with the distribution.
  4366. *
  4367. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  4368. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  4369. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  4370. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  4371. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  4372. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  4373. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  4374. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  4375. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  4376. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  4377. * POSSIBILITY OF SUCH DAMAGE.
  4378. */
  4379. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4380. [ pango 1.45.3 ] copyright:
  4381. GNU LIBRARY GENERAL PUBLIC LICENSE
  4382. Version 2, June 1991
  4383. Copyright (C) 1991 Free Software Foundation, Inc.
  4384. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  4385. Everyone is permitted to copy and distribute verbatim copies
  4386. of this license document, but changing it is not allowed.
  4387. [This is the first released version of the library GPL. It is
  4388. numbered 2 because it goes with version 2 of the ordinary GPL.]
  4389. Preamble
  4390. The licenses for most software are designed to take away your
  4391. freedom to share and change it. By contrast, the GNU General Public
  4392. Licenses are intended to guarantee your freedom to share and change
  4393. free software--to make sure the software is free for all its users.
  4394. This license, the Library General Public License, applies to some
  4395. specially designated Free Software Foundation software, and to any
  4396. other libraries whose authors decide to use it. You can use it for
  4397. your libraries, too.
  4398. When we speak of free software, we are referring to freedom, not
  4399. price. Our General Public Licenses are designed to make sure that you
  4400. have the freedom to distribute copies of free software (and charge for
  4401. this service if you wish), that you receive source code or can get it
  4402. if you want it, that you can change the software or use pieces of it
  4403. in new free programs; and that you know you can do these things.
  4404. To protect your rights, we need to make restrictions that forbid
  4405. anyone to deny you these rights or to ask you to surrender the rights.
  4406. These restrictions translate to certain responsibilities for you if
  4407. you distribute copies of the library, or if you modify it.
  4408. For example, if you distribute copies of the library, whether gratis
  4409. or for a fee, you must give the recipients all the rights that we gave
  4410. you. You must make sure that they, too, receive or can get the source
  4411. code. If you link a program with the library, you must provide
  4412. complete object files to the recipients so that they can relink them
  4413. with the library, after making changes to the library and recompiling
  4414. it. And you must show them these terms so they know their rights.
  4415. Our method of protecting your rights has two steps: (1) copyright
  4416. the library, and (2) offer you this license which gives you legal
  4417. permission to copy, distribute and/or modify the library.
  4418. Also, for each distributor's protection, we want to make certain
  4419. that everyone understands that there is no warranty for this free
  4420. library. If the library is modified by someone else and passed on, we
  4421. want its recipients to know that what they have is not the original
  4422. version, so that any problems introduced by others will not reflect on
  4423. the original authors' reputations.
  4424. Finally, any free program is threatened constantly by software
  4425. patents. We wish to avoid the danger that companies distributing free
  4426. software will individually obtain patent licenses, thus in effect
  4427. transforming the program into proprietary software. To prevent this,
  4428. we have made it clear that any patent must be licensed for everyone's
  4429. free use or not licensed at all.
  4430. Most GNU software, including some libraries, is covered by the ordinary
  4431. GNU General Public License, which was designed for utility programs. This
  4432. license, the GNU Library General Public License, applies to certain
  4433. designated libraries. This license is quite different from the ordinary
  4434. one; be sure to read it in full, and don't assume that anything in it is
  4435. the same as in the ordinary license.
  4436. The reason we have a separate public license for some libraries is that
  4437. they blur the distinction we usually make between modifying or adding to a
  4438. program and simply using it. Linking a program with a library, without
  4439. changing the library, is in some sense simply using the library, and is
  4440. analogous to running a utility program or application program. However, in
  4441. a textual and legal sense, the linked executable is a combined work, a
  4442. derivative of the original library, and the ordinary General Public License
  4443. treats it as such.
  4444. Because of this blurred distinction, using the ordinary General
  4445. Public License for libraries did not effectively promote software
  4446. sharing, because most developers did not use the libraries. We
  4447. concluded that weaker conditions might promote sharing better.
  4448. However, unrestricted linking of non-free programs would deprive the
  4449. users of those programs of all benefit from the free status of the
  4450. libraries themselves. This Library General Public License is intended to
  4451. permit developers of non-free programs to use free libraries, while
  4452. preserving your freedom as a user of such programs to change the free
  4453. libraries that are incorporated in them. (We have not seen how to achieve
  4454. this as regards changes in header files, but we have achieved it as regards
  4455. changes in the actual functions of the Library.) The hope is that this
  4456. will lead to faster development of free libraries.
  4457. The precise terms and conditions for copying, distribution and
  4458. modification follow. Pay close attention to the difference between a
  4459. "work based on the library" and a "work that uses the library". The
  4460. former contains code derived from the library, while the latter only
  4461. works together with the library.
  4462. Note that it is possible for a library to be covered by the ordinary
  4463. General Public License rather than by this special one.
  4464. GNU LIBRARY GENERAL PUBLIC LICENSE
  4465. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  4466. 0. This License Agreement applies to any software library which
  4467. contains a notice placed by the copyright holder or other authorized
  4468. party saying it may be distributed under the terms of this Library
  4469. General Public License (also called "this License"). Each licensee is
  4470. addressed as "you".
  4471. A "library" means a collection of software functions and/or data
  4472. prepared so as to be conveniently linked with application programs
  4473. (which use some of those functions and data) to form executables.
  4474. The "Library", below, refers to any such software library or work
  4475. which has been distributed under these terms. A "work based on the
  4476. Library" means either the Library or any derivative work under
  4477. copyright law: that is to say, a work containing the Library or a
  4478. portion of it, either verbatim or with modifications and/or translated
  4479. straightforwardly into another language. (Hereinafter, translation is
  4480. included without limitation in the term "modification".)
  4481. "Source code" for a work means the preferred form of the work for
  4482. making modifications to it. For a library, complete source code means
  4483. all the source code for all modules it contains, plus any associated
  4484. interface definition files, plus the scripts used to control compilation
  4485. and installation of the library.
  4486. Activities other than copying, distribution and modification are not
  4487. covered by this License; they are outside its scope. The act of
  4488. running a program using the Library is not restricted, and output from
  4489. such a program is covered only if its contents constitute a work based
  4490. on the Library (independent of the use of the Library in a tool for
  4491. writing it). Whether that is true depends on what the Library does
  4492. and what the program that uses the Library does.
  4493. 1. You may copy and distribute verbatim copies of the Library's
  4494. complete source code as you receive it, in any medium, provided that
  4495. you conspicuously and appropriately publish on each copy an
  4496. appropriate copyright notice and disclaimer of warranty; keep intact
  4497. all the notices that refer to this License and to the absence of any
  4498. warranty; and distribute a copy of this License along with the
  4499. Library.
  4500. You may charge a fee for the physical act of transferring a copy,
  4501. and you may at your option offer warranty protection in exchange for a
  4502. fee.
  4503. 2. You may modify your copy or copies of the Library or any portion
  4504. of it, thus forming a work based on the Library, and copy and
  4505. distribute such modifications or work under the terms of Section 1
  4506. above, provided that you also meet all of these conditions:
  4507. a) The modified work must itself be a software library.
  4508. b) You must cause the files modified to carry prominent notices
  4509. stating that you changed the files and the date of any change.
  4510. c) You must cause the whole of the work to be licensed at no
  4511. charge to all third parties under the terms of this License.
  4512. d) If a facility in the modified Library refers to a function or a
  4513. table of data to be supplied by an application program that uses
  4514. the facility, other than as an argument passed when the facility
  4515. is invoked, then you must make a good faith effort to ensure that,
  4516. in the event an application does not supply such function or
  4517. table, the facility still operates, and performs whatever part of
  4518. its purpose remains meaningful.
  4519. (For example, a function in a library to compute square roots has
  4520. a purpose that is entirely well-defined independent of the
  4521. application. Therefore, Subsection 2d requires that any
  4522. application-supplied function or table used by this function must
  4523. be optional: if the application does not supply it, the square
  4524. root function must still compute square roots.)
  4525. These requirements apply to the modified work as a whole. If
  4526. identifiable sections of that work are not derived from the Library,
  4527. and can be reasonably considered independent and separate works in
  4528. themselves, then this License, and its terms, do not apply to those
  4529. sections when you distribute them as separate works. But when you
  4530. distribute the same sections as part of a whole which is a work based
  4531. on the Library, the distribution of the whole must be on the terms of
  4532. this License, whose permissions for other licensees extend to the
  4533. entire whole, and thus to each and every part regardless of who wrote
  4534. it.
  4535. Thus, it is not the intent of this section to claim rights or contest
  4536. your rights to work written entirely by you; rather, the intent is to
  4537. exercise the right to control the distribution of derivative or
  4538. collective works based on the Library.
  4539. In addition, mere aggregation of another work not based on the Library
  4540. with the Library (or with a work based on the Library) on a volume of
  4541. a storage or distribution medium does not bring the other work under
  4542. the scope of this License.
  4543. 3. You may opt to apply the terms of the ordinary GNU General Public
  4544. License instead of this License to a given copy of the Library. To do
  4545. this, you must alter all the notices that refer to this License, so
  4546. that they refer to the ordinary GNU General Public License, version 2,
  4547. instead of to this License. (If a newer version than version 2 of the
  4548. ordinary GNU General Public License has appeared, then you can specify
  4549. that version instead if you wish.) Do not make any other change in
  4550. these notices.
  4551. Once this change is made in a given copy, it is irreversible for
  4552. that copy, so the ordinary GNU General Public License applies to all
  4553. subsequent copies and derivative works made from that copy.
  4554. This option is useful when you wish to copy part of the code of
  4555. the Library into a program that is not a library.
  4556. 4. You may copy and distribute the Library (or a portion or
  4557. derivative of it, under Section 2) in object code or executable form
  4558. under the terms of Sections 1 and 2 above provided that you accompany
  4559. it with the complete corresponding machine-readable source code, which
  4560. must be distributed under the terms of Sections 1 and 2 above on a
  4561. medium customarily used for software interchange.
  4562. If distribution of object code is made by offering access to copy
  4563. from a designated place, then offering equivalent access to copy the
  4564. source code from the same place satisfies the requirement to
  4565. distribute the source code, even though third parties are not
  4566. compelled to copy the source along with the object code.
  4567. 5. A program that contains no derivative of any portion of the
  4568. Library, but is designed to work with the Library by being compiled or
  4569. linked with it, is called a "work that uses the Library". Such a
  4570. work, in isolation, is not a derivative work of the Library, and
  4571. therefore falls outside the scope of this License.
  4572. However, linking a "work that uses the Library" with the Library
  4573. creates an executable that is a derivative of the Library (because it
  4574. contains portions of the Library), rather than a "work that uses the
  4575. library". The executable is therefore covered by this License.
  4576. Section 6 states terms for distribution of such executables.
  4577. When a "work that uses the Library" uses material from a header file
  4578. that is part of the Library, the object code for the work may be a
  4579. derivative work of the Library even though the source code is not.
  4580. Whether this is true is especially significant if the work can be
  4581. linked without the Library, or if the work is itself a library. The
  4582. threshold for this to be true is not precisely defined by law.
  4583. If such an object file uses only numerical parameters, data
  4584. structure layouts and accessors, and small macros and small inline
  4585. functions (ten lines or less in length), then the use of the object
  4586. file is unrestricted, regardless of whether it is legally a derivative
  4587. work. (Executables containing this object code plus portions of the
  4588. Library will still fall under Section 6.)
  4589. Otherwise, if the work is a derivative of the Library, you may
  4590. distribute the object code for the work under the terms of Section 6.
  4591. Any executables containing that work also fall under Section 6,
  4592. whether or not they are linked directly with the Library itself.
  4593. 6. As an exception to the Sections above, you may also compile or
  4594. link a "work that uses the Library" with the Library to produce a
  4595. work containing portions of the Library, and distribute that work
  4596. under terms of your choice, provided that the terms permit
  4597. modification of the work for the customer's own use and reverse
  4598. engineering for debugging such modifications.
  4599. You must give prominent notice with each copy of the work that the
  4600. Library is used in it and that the Library and its use are covered by
  4601. this License. You must supply a copy of this License. If the work
  4602. during execution displays copyright notices, you must include the
  4603. copyright notice for the Library among them, as well as a reference
  4604. directing the user to the copy of this License. Also, you must do one
  4605. of these things:
  4606. a) Accompany the work with the complete corresponding
  4607. machine-readable source code for the Library including whatever
  4608. changes were used in the work (which must be distributed under
  4609. Sections 1 and 2 above); and, if the work is an executable linked
  4610. with the Library, with the complete machine-readable "work that
  4611. uses the Library", as object code and/or source code, so that the
  4612. user can modify the Library and then relink to produce a modified
  4613. executable containing the modified Library. (It is understood
  4614. that the user who changes the contents of definitions files in the
  4615. Library will not necessarily be able to recompile the application
  4616. to use the modified definitions.)
  4617. b) Accompany the work with a written offer, valid for at
  4618. least three years, to give the same user the materials
  4619. specified in Subsection 6a, above, for a charge no more
  4620. than the cost of performing this distribution.
  4621. c) If distribution of the work is made by offering access to copy
  4622. from a designated place, offer equivalent access to copy the above
  4623. specified materials from the same place.
  4624. d) Verify that the user has already received a copy of these
  4625. materials or that you have already sent this user a copy.
  4626. For an executable, the required form of the "work that uses the
  4627. Library" must include any data and utility programs needed for
  4628. reproducing the executable from it. However, as a special exception,
  4629. the source code distributed need not include anything that is normally
  4630. distributed (in either source or binary form) with the major
  4631. components (compiler, kernel, and so on) of the operating system on
  4632. which the executable runs, unless that component itself accompanies
  4633. the executable.
  4634. It may happen that this requirement contradicts the license
  4635. restrictions of other proprietary libraries that do not normally
  4636. accompany the operating system. Such a contradiction means you cannot
  4637. use both them and the Library together in an executable that you
  4638. distribute.
  4639. 7. You may place library facilities that are a work based on the
  4640. Library side-by-side in a single library together with other library
  4641. facilities not covered by this License, and distribute such a combined
  4642. library, provided that the separate distribution of the work based on
  4643. the Library and of the other library facilities is otherwise
  4644. permitted, and provided that you do these two things:
  4645. a) Accompany the combined library with a copy of the same work
  4646. based on the Library, uncombined with any other library
  4647. facilities. This must be distributed under the terms of the
  4648. Sections above.
  4649. b) Give prominent notice with the combined library of the fact
  4650. that part of it is a work based on the Library, and explaining
  4651. where to find the accompanying uncombined form of the same work.
  4652. 8. You may not copy, modify, sublicense, link with, or distribute
  4653. the Library except as expressly provided under this License. Any
  4654. attempt otherwise to copy, modify, sublicense, link with, or
  4655. distribute the Library is void, and will automatically terminate your
  4656. rights under this License. However, parties who have received copies,
  4657. or rights, from you under this License will not have their licenses
  4658. terminated so long as such parties remain in full compliance.
  4659. 9. You are not required to accept this License, since you have not
  4660. signed it. However, nothing else grants you permission to modify or
  4661. distribute the Library or its derivative works. These actions are
  4662. prohibited by law if you do not accept this License. Therefore, by
  4663. modifying or distributing the Library (or any work based on the
  4664. Library), you indicate your acceptance of this License to do so, and
  4665. all its terms and conditions for copying, distributing or modifying
  4666. the Library or works based on it.
  4667. 10. Each time you redistribute the Library (or any work based on the
  4668. Library), the recipient automatically receives a license from the
  4669. original licensor to copy, distribute, link with or modify the Library
  4670. subject to these terms and conditions. You may not impose any further
  4671. restrictions on the recipients' exercise of the rights granted herein.
  4672. You are not responsible for enforcing compliance by third parties to
  4673. this License.
  4674. 11. If, as a consequence of a court judgment or allegation of patent
  4675. infringement or for any other reason (not limited to patent issues),
  4676. conditions are imposed on you (whether by court order, agreement or
  4677. otherwise) that contradict the conditions of this License, they do not
  4678. excuse you from the conditions of this License. If you cannot
  4679. distribute so as to satisfy simultaneously your obligations under this
  4680. License and any other pertinent obligations, then as a consequence you
  4681. may not distribute the Library at all. For example, if a patent
  4682. license would not permit royalty-free redistribution of the Library by
  4683. all those who receive copies directly or indirectly through you, then
  4684. the only way you could satisfy both it and this License would be to
  4685. refrain entirely from distribution of the Library.
  4686. If any portion of this section is held invalid or unenforceable under any
  4687. particular circumstance, the balance of the section is intended to apply,
  4688. and the section as a whole is intended to apply in other circumstances.
  4689. It is not the purpose of this section to induce you to infringe any
  4690. patents or other property right claims or to contest validity of any
  4691. such claims; this section has the sole purpose of protecting the
  4692. integrity of the free software distribution system which is
  4693. implemented by public license practices. Many people have made
  4694. generous contributions to the wide range of software distributed
  4695. through that system in reliance on consistent application of that
  4696. system; it is up to the author/donor to decide if he or she is willing
  4697. to distribute software through any other system and a licensee cannot
  4698. impose that choice.
  4699. This section is intended to make thoroughly clear what is believed to
  4700. be a consequence of the rest of this License.
  4701. 12. If the distribution and/or use of the Library is restricted in
  4702. certain countries either by patents or by copyrighted interfaces, the
  4703. original copyright holder who places the Library under this License may add
  4704. an explicit geographical distribution limitation excluding those countries,
  4705. so that distribution is permitted only in or among countries not thus
  4706. excluded. In such case, this License incorporates the limitation as if
  4707. written in the body of this License.
  4708. 13. The Free Software Foundation may publish revised and/or new
  4709. versions of the Library General Public License from time to time.
  4710. Such new versions will be similar in spirit to the present version,
  4711. but may differ in detail to address new problems or concerns.
  4712. Each version is given a distinguishing version number. If the Library
  4713. specifies a version number of this License which applies to it and
  4714. "any later version", you have the option of following the terms and
  4715. conditions either of that version or of any later version published by
  4716. the Free Software Foundation. If the Library does not specify a
  4717. license version number, you may choose any version ever published by
  4718. the Free Software Foundation.
  4719. 14. If you wish to incorporate parts of the Library into other free
  4720. programs whose distribution conditions are incompatible with these,
  4721. write to the author to ask for permission. For software which is
  4722. copyrighted by the Free Software Foundation, write to the Free
  4723. Software Foundation; we sometimes make exceptions for this. Our
  4724. decision will be guided by the two goals of preserving the free status
  4725. of all derivatives of our free software and of promoting the sharing
  4726. and reuse of software generally.
  4727. NO WARRANTY
  4728. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  4729. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  4730. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  4731. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  4732. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  4733. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  4734. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  4735. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  4736. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  4737. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  4738. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  4739. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  4740. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  4741. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  4742. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  4743. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  4744. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  4745. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  4746. DAMAGES.
  4747. END OF TERMS AND CONDITIONS
  4748. How to Apply These Terms to Your New Libraries
  4749. If you develop a new library, and you want it to be of the greatest
  4750. possible use to the public, we recommend making it free software that
  4751. everyone can redistribute and change. You can do so by permitting
  4752. redistribution under these terms (or, alternatively, under the terms of the
  4753. ordinary General Public License).
  4754. To apply these terms, attach the following notices to the library. It is
  4755. safest to attach them to the start of each source file to most effectively
  4756. convey the exclusion of warranty; and each file should have at least the
  4757. "copyright" line and a pointer to where the full notice is found.
  4758. <one line to give the library's name and a brief idea of what it does.>
  4759. Copyright (C) <year> <name of author>
  4760. This library is free software; you can redistribute it and/or
  4761. modify it under the terms of the GNU Library General Public
  4762. License as published by the Free Software Foundation; either
  4763. version 2 of the License, or (at your option) any later version.
  4764. This library is distributed in the hope that it will be useful,
  4765. but WITHOUT ANY WARRANTY; without even the implied warranty of
  4766. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  4767. Library General Public License for more details.
  4768. You should have received a copy of the GNU Library General Public
  4769. License along with this library; if not, write to the
  4770. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  4771. Boston, MA 02111-1307 USA.
  4772. Also add information on how to contact you by electronic and paper mail.
  4773. You should also get your employer (if you work as a programmer) or your
  4774. school, if any, to sign a "copyright disclaimer" for the library, if
  4775. necessary. Here is a sample; alter the names:
  4776. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  4777. library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  4778. <signature of Ty Coon>, 1 April 1990
  4779. Ty Coon, President of Vice
  4780. That's all there is to it!
  4781. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4782. [ pixman 0.42.2 ] copyright:
  4783. The following is the MIT license, agreed upon by most contributors.
  4784. Copyright holders of new code should use this license statement where
  4785. possible. They may also add themselves to the list below.
  4786. /*
  4787. * Copyright 1987, 1988, 1989, 1998 The Open Group
  4788. * Copyright 1987, 1988, 1989 Digital Equipment Corporation
  4789. * Copyright 1999, 2004, 2008 Keith Packard
  4790. * Copyright 2000 SuSE, Inc.
  4791. * Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
  4792. * Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.
  4793. * Copyright 2004 Nicholas Miell
  4794. * Copyright 2005 Lars Knoll & Zack Rusin, Trolltech
  4795. * Copyright 2005 Trolltech AS
  4796. * Copyright 2007 Luca Barbato
  4797. * Copyright 2008 Aaron Plattner, NVIDIA Corporation
  4798. * Copyright 2008 Rodrigo Kumpera
  4799. * Copyright 2008 André Tupinambá
  4800. * Copyright 2008 Mozilla Corporation
  4801. * Copyright 2008 Frederic Plourde
  4802. * Copyright 2009, Oracle and/or its affiliates. All rights reserved.
  4803. * Copyright 2009, 2010 Nokia Corporation
  4804. *
  4805. * Permission is hereby granted, free of charge, to any person obtaining a
  4806. * copy of this software and associated documentation files (the "Software"),
  4807. * to deal in the Software without restriction, including without limitation
  4808. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  4809. * and/or sell copies of the Software, and to permit persons to whom the
  4810. * Software is furnished to do so, subject to the following conditions:
  4811. *
  4812. * The above copyright notice and this permission notice (including the next
  4813. * paragraph) shall be included in all copies or substantial portions of the
  4814. * Software.
  4815. *
  4816. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4817. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4818. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  4819. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4820. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  4821. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  4822. * DEALINGS IN THE SOFTWARE.
  4823. */
  4824. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4825. [ png 1.6.39 ] copyright:
  4826. COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
  4827. =========================================
  4828. PNG Reference Library License version 2
  4829. ---------------------------------------
  4830. * Copyright (c) 1995-2022 The PNG Reference Library Authors.
  4831. * Copyright (c) 2018-2022 Cosmin Truta.
  4832. * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
  4833. * Copyright (c) 1996-1997 Andreas Dilger.
  4834. * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
  4835. The software is supplied "as is", without warranty of any kind,
  4836. express or implied, including, without limitation, the warranties
  4837. of merchantability, fitness for a particular purpose, title, and
  4838. non-infringement. In no event shall the Copyright owners, or
  4839. anyone distributing the software, be liable for any damages or
  4840. other liability, whether in contract, tort or otherwise, arising
  4841. from, out of, or in connection with the software, or the use or
  4842. other dealings in the software, even if advised of the possibility
  4843. of such damage.
  4844. Permission is hereby granted to use, copy, modify, and distribute
  4845. this software, or portions hereof, for any purpose, without fee,
  4846. subject to the following restrictions:
  4847. 1. The origin of this software must not be misrepresented; you
  4848. must not claim that you wrote the original software. If you
  4849. use this software in a product, an acknowledgment in the product
  4850. documentation would be appreciated, but is not required.
  4851. 2. Altered source versions must be plainly marked as such, and must
  4852. not be misrepresented as being the original software.
  4853. 3. This Copyright notice may not be removed or altered from any
  4854. source or altered source distribution.
  4855. PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35)
  4856. -----------------------------------------------------------------------
  4857. libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are
  4858. Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are
  4859. derived from libpng-1.0.6, and are distributed according to the same
  4860. disclaimer and license as libpng-1.0.6 with the following individuals
  4861. added to the list of Contributing Authors:
  4862. Simon-Pierre Cadieux
  4863. Eric S. Raymond
  4864. Mans Rullgard
  4865. Cosmin Truta
  4866. Gilles Vollant
  4867. James Yu
  4868. Mandar Sahastrabuddhe
  4869. Google Inc.
  4870. Vadim Barkov
  4871. and with the following additions to the disclaimer:
  4872. There is no warranty against interference with your enjoyment of
  4873. the library or against infringement. There is no warranty that our
  4874. efforts or the library will fulfill any of your particular purposes
  4875. or needs. This library is provided with all faults, and the entire
  4876. risk of satisfactory quality, performance, accuracy, and effort is
  4877. with the user.
  4878. Some files in the "contrib" directory and some configure-generated
  4879. files that are distributed with libpng have other copyright owners, and
  4880. are released under other open source licenses.
  4881. libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
  4882. Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
  4883. libpng-0.96, and are distributed according to the same disclaimer and
  4884. license as libpng-0.96, with the following individuals added to the
  4885. list of Contributing Authors:
  4886. Tom Lane
  4887. Glenn Randers-Pehrson
  4888. Willem van Schaik
  4889. libpng versions 0.89, June 1996, through 0.96, May 1997, are
  4890. Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
  4891. and are distributed according to the same disclaimer and license as
  4892. libpng-0.88, with the following individuals added to the list of
  4893. Contributing Authors:
  4894. John Bowler
  4895. Kevin Bracey
  4896. Sam Bushell
  4897. Magnus Holmgren
  4898. Greg Roelofs
  4899. Tom Tanner
  4900. Some files in the "scripts" directory have other copyright owners,
  4901. but are released under this license.
  4902. libpng versions 0.5, May 1995, through 0.88, January 1996, are
  4903. Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
  4904. For the purposes of this copyright and license, "Contributing Authors"
  4905. is defined as the following set of individuals:
  4906. Andreas Dilger
  4907. Dave Martindale
  4908. Guy Eric Schalnat
  4909. Paul Schmidt
  4910. Tim Wegner
  4911. The PNG Reference Library is supplied "AS IS". The Contributing
  4912. Authors and Group 42, Inc. disclaim all warranties, expressed or
  4913. implied, including, without limitation, the warranties of
  4914. merchantability and of fitness for any purpose. The Contributing
  4915. Authors and Group 42, Inc. assume no liability for direct, indirect,
  4916. incidental, special, exemplary, or consequential damages, which may
  4917. result from the use of the PNG Reference Library, even if advised of
  4918. the possibility of such damage.
  4919. Permission is hereby granted to use, copy, modify, and distribute this
  4920. source code, or portions hereof, for any purpose, without fee, subject
  4921. to the following restrictions:
  4922. 1. The origin of this source code must not be misrepresented.
  4923. 2. Altered versions must be plainly marked as such and must not
  4924. be misrepresented as being the original source.
  4925. 3. This Copyright notice may not be removed or altered from any
  4926. source or altered source distribution.
  4927. The Contributing Authors and Group 42, Inc. specifically permit,
  4928. without fee, and encourage the use of this source code as a component
  4929. to supporting the PNG file format in commercial products. If you use
  4930. this source code in a product, acknowledgment is not required but would
  4931. be appreciated.
  4932. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4933. [ raqm 0.10.1 ] copyright:
  4934. The MIT License (MIT)
  4935. Copyright © 2015 Information Technology Authority (ITA) <foss@ita.gov.om>
  4936. Copyright © 2016-2023 Khaled Hosny <khaled@aliftype.com>
  4937. Permission is hereby granted, free of charge, to any person obtaining a copy
  4938. of this software and associated documentation files (the "Software"), to deal
  4939. in the Software without restriction, including without limitation the rights
  4940. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  4941. copies of the Software, and to permit persons to whom the Software is
  4942. furnished to do so, subject to the following conditions:
  4943. The above copyright notice and this permission notice shall be included in all
  4944. copies or substantial portions of the Software.
  4945. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4946. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4947. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4948. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4949. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4950. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  4951. SOFTWARE.
  4952. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4953. [ raw 0.21.1 ] copyright:
  4954. ** LibRaw: Raw images processing library **
  4955. Copyright (C) 2008-2021 LibRaw LLC (http://www.libraw.org, info@libraw.org)
  4956. LibRaw is free software; you can redistribute it and/or modify
  4957. it under the terms of the one of two licenses as you choose:
  4958. 1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
  4959. (See file LICENSE.LGPL provided in LibRaw distribution archive for details).
  4960. 2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
  4961. (See file LICENSE.CDDL provided in LibRaw distribution archive for details).
  4962. LibRaw uses code from dcraw.c -- Dave Coffin's raw photo decoder,
  4963. dcraw.c is copyright 1997-2018 by Dave Coffin, dcoffin a cybercom o net.
  4964. LibRaw do not use RESTRICTED code from dcraw.c
  4965. LibRaw uses DCB demosaic and FBDD denoise licensed under BSD-like 3-clause license
  4966. DCB and FBDD are Copyright (C) 2010, Jacek Gozdz (cuniek@kft.umcs.lublin.pl)
  4967. LibRaw uses X3F library to unpack Foveon Files, licensed BSD-style license
  4968. Copyright (c) 2010, Roland Karlsson (roland@proxel.se)
  4969. All rights reserved.
  4970. LibRaw uses pieces of code from Adobe DNG SDK 1.4,
  4971. Copyright (c) 2005 Adobe Systems Incorporated, licensed under MIT license
  4972. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  4973. [ rsvg 2.40.20 ] copyright:
  4974. GNU GENERAL PUBLIC LICENSE
  4975. Version 2, June 1991
  4976. Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  4977. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  4978. Everyone is permitted to copy and distribute verbatim copies
  4979. of this license document, but changing it is not allowed.
  4980. Preamble
  4981. The licenses for most software are designed to take away your
  4982. freedom to share and change it. By contrast, the GNU General Public
  4983. License is intended to guarantee your freedom to share and change free
  4984. software--to make sure the software is free for all its users. This
  4985. General Public License applies to most of the Free Software
  4986. Foundation's software and to any other program whose authors commit to
  4987. using it. (Some other Free Software Foundation software is covered by
  4988. the GNU Library General Public License instead.) You can apply it to
  4989. your programs, too.
  4990. When we speak of free software, we are referring to freedom, not
  4991. price. Our General Public Licenses are designed to make sure that you
  4992. have the freedom to distribute copies of free software (and charge for
  4993. this service if you wish), that you receive source code or can get it
  4994. if you want it, that you can change the software or use pieces of it
  4995. in new free programs; and that you know you can do these things.
  4996. To protect your rights, we need to make restrictions that forbid
  4997. anyone to deny you these rights or to ask you to surrender the rights.
  4998. These restrictions translate to certain responsibilities for you if you
  4999. distribute copies of the software, or if you modify it.
  5000. For example, if you distribute copies of such a program, whether
  5001. gratis or for a fee, you must give the recipients all the rights that
  5002. you have. You must make sure that they, too, receive or can get the
  5003. source code. And you must show them these terms so they know their
  5004. rights.
  5005. We protect your rights with two steps: (1) copyright the software, and
  5006. (2) offer you this license which gives you legal permission to copy,
  5007. distribute and/or modify the software.
  5008. Also, for each author's protection and ours, we want to make certain
  5009. that everyone understands that there is no warranty for this free
  5010. software. If the software is modified by someone else and passed on, we
  5011. want its recipients to know that what they have is not the original, so
  5012. that any problems introduced by others will not reflect on the original
  5013. authors' reputations.
  5014. Finally, any free program is threatened constantly by software
  5015. patents. We wish to avoid the danger that redistributors of a free
  5016. program will individually obtain patent licenses, in effect making the
  5017. program proprietary. To prevent this, we have made it clear that any
  5018. patent must be licensed for everyone's free use or not licensed at all.
  5019. The precise terms and conditions for copying, distribution and
  5020. modification follow.
  5021. GNU GENERAL PUBLIC LICENSE
  5022. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  5023. 0. This License applies to any program or other work which contains
  5024. a notice placed by the copyright holder saying it may be distributed
  5025. under the terms of this General Public License. The "Program", below,
  5026. refers to any such program or work, and a "work based on the Program"
  5027. means either the Program or any derivative work under copyright law:
  5028. that is to say, a work containing the Program or a portion of it,
  5029. either verbatim or with modifications and/or translated into another
  5030. language. (Hereinafter, translation is included without limitation in
  5031. the term "modification".) Each licensee is addressed as "you".
  5032. Activities other than copying, distribution and modification are not
  5033. covered by this License; they are outside its scope. The act of
  5034. running the Program is not restricted, and the output from the Program
  5035. is covered only if its contents constitute a work based on the
  5036. Program (independent of having been made by running the Program).
  5037. Whether that is true depends on what the Program does.
  5038. 1. You may copy and distribute verbatim copies of the Program's
  5039. source code as you receive it, in any medium, provided that you
  5040. conspicuously and appropriately publish on each copy an appropriate
  5041. copyright notice and disclaimer of warranty; keep intact all the
  5042. notices that refer to this License and to the absence of any warranty;
  5043. and give any other recipients of the Program a copy of this License
  5044. along with the Program.
  5045. You may charge a fee for the physical act of transferring a copy, and
  5046. you may at your option offer warranty protection in exchange for a fee.
  5047. 2. You may modify your copy or copies of the Program or any portion
  5048. of it, thus forming a work based on the Program, and copy and
  5049. distribute such modifications or work under the terms of Section 1
  5050. above, provided that you also meet all of these conditions:
  5051. a) You must cause the modified files to carry prominent notices
  5052. stating that you changed the files and the date of any change.
  5053. b) You must cause any work that you distribute or publish, that in
  5054. whole or in part contains or is derived from the Program or any
  5055. part thereof, to be licensed as a whole at no charge to all third
  5056. parties under the terms of this License.
  5057. c) If the modified program normally reads commands interactively
  5058. when run, you must cause it, when started running for such
  5059. interactive use in the most ordinary way, to print or display an
  5060. announcement including an appropriate copyright notice and a
  5061. notice that there is no warranty (or else, saying that you provide
  5062. a warranty) and that users may redistribute the program under
  5063. these conditions, and telling the user how to view a copy of this
  5064. License. (Exception: if the Program itself is interactive but
  5065. does not normally print such an announcement, your work based on
  5066. the Program is not required to print an announcement.)
  5067. These requirements apply to the modified work as a whole. If
  5068. identifiable sections of that work are not derived from the Program,
  5069. and can be reasonably considered independent and separate works in
  5070. themselves, then this License, and its terms, do not apply to those
  5071. sections when you distribute them as separate works. But when you
  5072. distribute the same sections as part of a whole which is a work based
  5073. on the Program, the distribution of the whole must be on the terms of
  5074. this License, whose permissions for other licensees extend to the
  5075. entire whole, and thus to each and every part regardless of who wrote it.
  5076. Thus, it is not the intent of this section to claim rights or contest
  5077. your rights to work written entirely by you; rather, the intent is to
  5078. exercise the right to control the distribution of derivative or
  5079. collective works based on the Program.
  5080. In addition, mere aggregation of another work not based on the Program
  5081. with the Program (or with a work based on the Program) on a volume of
  5082. a storage or distribution medium does not bring the other work under
  5083. the scope of this License.
  5084. 3. You may copy and distribute the Program (or a work based on it,
  5085. under Section 2) in object code or executable form under the terms of
  5086. Sections 1 and 2 above provided that you also do one of the following:
  5087. a) Accompany it with the complete corresponding machine-readable
  5088. source code, which must be distributed under the terms of Sections
  5089. 1 and 2 above on a medium customarily used for software interchange; or,
  5090. b) Accompany it with a written offer, valid for at least three
  5091. years, to give any third party, for a charge no more than your
  5092. cost of physically performing source distribution, a complete
  5093. machine-readable copy of the corresponding source code, to be
  5094. distributed under the terms of Sections 1 and 2 above on a medium
  5095. customarily used for software interchange; or,
  5096. c) Accompany it with the information you received as to the offer
  5097. to distribute corresponding source code. (This alternative is
  5098. allowed only for noncommercial distribution and only if you
  5099. received the program in object code or executable form with such
  5100. an offer, in accord with Subsection b above.)
  5101. The source code for a work means the preferred form of the work for
  5102. making modifications to it. For an executable work, complete source
  5103. code means all the source code for all modules it contains, plus any
  5104. associated interface definition files, plus the scripts used to
  5105. control compilation and installation of the executable. However, as a
  5106. special exception, the source code distributed need not include
  5107. anything that is normally distributed (in either source or binary
  5108. form) with the major components (compiler, kernel, and so on) of the
  5109. operating system on which the executable runs, unless that component
  5110. itself accompanies the executable.
  5111. If distribution of executable or object code is made by offering
  5112. access to copy from a designated place, then offering equivalent
  5113. access to copy the source code from the same place counts as
  5114. distribution of the source code, even though third parties are not
  5115. compelled to copy the source along with the object code.
  5116. 4. You may not copy, modify, sublicense, or distribute the Program
  5117. except as expressly provided under this License. Any attempt
  5118. otherwise to copy, modify, sublicense or distribute the Program is
  5119. void, and will automatically terminate your rights under this License.
  5120. However, parties who have received copies, or rights, from you under
  5121. this License will not have their licenses terminated so long as such
  5122. parties remain in full compliance.
  5123. 5. You are not required to accept this License, since you have not
  5124. signed it. However, nothing else grants you permission to modify or
  5125. distribute the Program or its derivative works. These actions are
  5126. prohibited by law if you do not accept this License. Therefore, by
  5127. modifying or distributing the Program (or any work based on the
  5128. Program), you indicate your acceptance of this License to do so, and
  5129. all its terms and conditions for copying, distributing or modifying
  5130. the Program or works based on it.
  5131. 6. Each time you redistribute the Program (or any work based on the
  5132. Program), the recipient automatically receives a license from the
  5133. original licensor to copy, distribute or modify the Program subject to
  5134. these terms and conditions. You may not impose any further
  5135. restrictions on the recipients' exercise of the rights granted herein.
  5136. You are not responsible for enforcing compliance by third parties to
  5137. this License.
  5138. 7. If, as a consequence of a court judgment or allegation of patent
  5139. infringement or for any other reason (not limited to patent issues),
  5140. conditions are imposed on you (whether by court order, agreement or
  5141. otherwise) that contradict the conditions of this License, they do not
  5142. excuse you from the conditions of this License. If you cannot
  5143. distribute so as to satisfy simultaneously your obligations under this
  5144. License and any other pertinent obligations, then as a consequence you
  5145. may not distribute the Program at all. For example, if a patent
  5146. license would not permit royalty-free redistribution of the Program by
  5147. all those who receive copies directly or indirectly through you, then
  5148. the only way you could satisfy both it and this License would be to
  5149. refrain entirely from distribution of the Program.
  5150. If any portion of this section is held invalid or unenforceable under
  5151. any particular circumstance, the balance of the section is intended to
  5152. apply and the section as a whole is intended to apply in other
  5153. circumstances.
  5154. It is not the purpose of this section to induce you to infringe any
  5155. patents or other property right claims or to contest validity of any
  5156. such claims; this section has the sole purpose of protecting the
  5157. integrity of the free software distribution system, which is
  5158. implemented by public license practices. Many people have made
  5159. generous contributions to the wide range of software distributed
  5160. through that system in reliance on consistent application of that
  5161. system; it is up to the author/donor to decide if he or she is willing
  5162. to distribute software through any other system and a licensee cannot
  5163. impose that choice.
  5164. This section is intended to make thoroughly clear what is believed to
  5165. be a consequence of the rest of this License.
  5166. 8. If the distribution and/or use of the Program is restricted in
  5167. certain countries either by patents or by copyrighted interfaces, the
  5168. original copyright holder who places the Program under this License
  5169. may add an explicit geographical distribution limitation excluding
  5170. those countries, so that distribution is permitted only in or among
  5171. countries not thus excluded. In such case, this License incorporates
  5172. the limitation as if written in the body of this License.
  5173. 9. The Free Software Foundation may publish revised and/or new versions
  5174. of the General Public License from time to time. Such new versions will
  5175. be similar in spirit to the present version, but may differ in detail to
  5176. address new problems or concerns.
  5177. Each version is given a distinguishing version number. If the Program
  5178. specifies a version number of this License which applies to it and "any
  5179. later version", you have the option of following the terms and conditions
  5180. either of that version or of any later version published by the Free
  5181. Software Foundation. If the Program does not specify a version number of
  5182. this License, you may choose any version ever published by the Free Software
  5183. Foundation.
  5184. 10. If you wish to incorporate parts of the Program into other free
  5185. programs whose distribution conditions are different, write to the author
  5186. to ask for permission. For software which is copyrighted by the Free
  5187. Software Foundation, write to the Free Software Foundation; we sometimes
  5188. make exceptions for this. Our decision will be guided by the two goals
  5189. of preserving the free status of all derivatives of our free software and
  5190. of promoting the sharing and reuse of software generally.
  5191. NO WARRANTY
  5192. 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
  5193. FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
  5194. OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
  5195. PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
  5196. OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  5197. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
  5198. TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
  5199. PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
  5200. REPAIR OR CORRECTION.
  5201. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  5202. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
  5203. REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
  5204. INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
  5205. OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
  5206. TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
  5207. YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
  5208. PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
  5209. POSSIBILITY OF SUCH DAMAGES.
  5210. END OF TERMS AND CONDITIONS
  5211. How to Apply These Terms to Your New Programs
  5212. If you develop a new program, and you want it to be of the greatest
  5213. possible use to the public, the best way to achieve this is to make it
  5214. free software which everyone can redistribute and change under these terms.
  5215. To do so, attach the following notices to the program. It is safest
  5216. to attach them to the start of each source file to most effectively
  5217. convey the exclusion of warranty; and each file should have at least
  5218. the "copyright" line and a pointer to where the full notice is found.
  5219. <one line to give the program's name and a brief idea of what it does.>
  5220. Copyright (C) <year> <name of author>
  5221. This program is free software; you can redistribute it and/or modify
  5222. it under the terms of the GNU General Public License as published by
  5223. the Free Software Foundation; either version 2 of the License, or
  5224. (at your option) any later version.
  5225. This program is distributed in the hope that it will be useful,
  5226. but WITHOUT ANY WARRANTY; without even the implied warranty of
  5227. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  5228. GNU General Public License for more details.
  5229. You should have received a copy of the GNU General Public License
  5230. along with this program; if not, write to the Free Software
  5231. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  5232. Also add information on how to contact you by electronic and paper mail.
  5233. If the program is interactive, make it output a short notice like this
  5234. when it starts in an interactive mode:
  5235. Gnomovision version 69, Copyright (C) year name of author
  5236. Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  5237. This is free software, and you are welcome to redistribute it
  5238. under certain conditions; type `show c' for details.
  5239. The hypothetical commands `show w' and `show c' should show the appropriate
  5240. parts of the General Public License. Of course, the commands you use may
  5241. be called something other than `show w' and `show c'; they could even be
  5242. mouse-clicks or menu items--whatever suits your program.
  5243. You should also get your employer (if you work as a programmer) or your
  5244. school, if any, to sign a "copyright disclaimer" for the program, if
  5245. necessary. Here is a sample; alter the names:
  5246. Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  5247. `Gnomovision' (which makes passes at compilers) written by James Hacker.
  5248. <signature of Ty Coon>, 1 April 1989
  5249. Ty Coon, President of Vice
  5250. This General Public License does not permit incorporating your program into
  5251. proprietary programs. If your program is a subroutine library, you may
  5252. consider it more useful to permit linking proprietary applications with the
  5253. library. If this is what you want to do, use the GNU Library General
  5254. Public License instead of this License.
  5255. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5256. [ tiff 4.5.0 ] copyright:
  5257. # LibTIFF license
  5258. Copyright © 1988-1997 Sam Leffler\
  5259. Copyright © 1991-1997 Silicon Graphics, Inc.
  5260. Permission to use, copy, modify, distribute, and sell this software and
  5261. its documentation for any purpose is hereby granted without fee, provided
  5262. that (i) the above copyright notices and this permission notice appear in
  5263. all copies of the software and related documentation, and (ii) the names of
  5264. Sam Leffler and Silicon Graphics may not be used in any advertising or
  5265. publicity relating to the software without the specific, prior written
  5266. permission of Sam Leffler and Silicon Graphics.
  5267. THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
  5268. EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  5269. WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  5270. IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  5271. ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  5272. OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  5273. WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  5274. LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  5275. OF THIS SOFTWARE.
  5276. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5277. [ webp 1.3.0 ] copyright:
  5278. Copyright (c) 2010, Google Inc. All rights reserved.
  5279. Redistribution and use in source and binary forms, with or without
  5280. modification, are permitted provided that the following conditions are
  5281. met:
  5282. * Redistributions of source code must retain the above copyright
  5283. notice, this list of conditions and the following disclaimer.
  5284. * Redistributions in binary form must reproduce the above copyright
  5285. notice, this list of conditions and the following disclaimer in
  5286. the documentation and/or other materials provided with the
  5287. distribution.
  5288. * Neither the name of Google nor the names of its contributors may
  5289. be used to endorse or promote products derived from this software
  5290. without specific prior written permission.
  5291. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  5292. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5293. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  5294. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  5295. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  5296. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  5297. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  5298. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  5299. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  5300. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  5301. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  5302. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5303. [ xml 2.11.3 ] copyright:
  5304. Except where otherwise noted in the source code (e.g. the files hash.c,
  5305. list.c and the trio files, which are covered by a similar licence but
  5306. with different Copyright notices) all the files are:
  5307. Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
  5308. Permission is hereby granted, free of charge, to any person obtaining a copy
  5309. of this software and associated documentation files (the "Software"), to deal
  5310. in the Software without restriction, including without limitation the rights
  5311. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  5312. copies of the Software, and to permit persons to whom the Software is fur-
  5313. nished to do so, subject to the following conditions:
  5314. The above copyright notice and this permission notice shall be included in
  5315. all copies or substantial portions of the Software.
  5316. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  5317. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
  5318. NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  5319. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  5320. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  5321. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  5322. THE SOFTWARE.
  5323. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5324. [ zip 1.9.2 ] copyright:
  5325. Copyright (C) 1999-2020 Dieter Baron and Thomas Klausner
  5326. The authors can be contacted at <info@libzip.org>
  5327. Redistribution and use in source and binary forms, with or without
  5328. modification, are permitted provided that the following conditions
  5329. are met:
  5330. 1. Redistributions of source code must retain the above copyright
  5331. notice, this list of conditions and the following disclaimer.
  5332. 2. Redistributions in binary form must reproduce the above copyright
  5333. notice, this list of conditions and the following disclaimer in
  5334. the documentation and/or other materials provided with the
  5335. distribution.
  5336. 3. The names of the authors may not be used to endorse or promote
  5337. products derived from this software without specific prior
  5338. written permission.
  5339. THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
  5340. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  5341. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  5342. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
  5343. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  5344. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  5345. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  5346. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  5347. IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  5348. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  5349. IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  5350. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  5351. [ zlib 1.2.13 ] copyright:
  5352. Copyright notice:
  5353. (C) 1995-2022 Jean-loup Gailly and Mark Adler
  5354. This software is provided 'as-is', without any express or implied
  5355. warranty. In no event will the authors be held liable for any damages
  5356. arising from the use of this software.
  5357. Permission is granted to anyone to use this software for any purpose,
  5358. including commercial applications, and to alter it and redistribute it
  5359. freely, subject to the following restrictions:
  5360. 1. The origin of this software must not be misrepresented; you must not
  5361. claim that you wrote the original software. If you use this software
  5362. in a product, an acknowledgment in the product documentation would be
  5363. appreciated but is not required.
  5364. 2. Altered source versions must be plainly marked as such, and must not be
  5365. misrepresented as being the original software.
  5366. 3. This notice may not be removed or altered from any source distribution.
  5367. Jean-loup Gailly Mark Adler
  5368. jloup@gzip.org madler@alumni.caltech.edu
  5369. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *