texlive-collection-latexextra-vl.spec 274 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107
  1. ## -*- coding: utf-8-unix -*-
  2. ## NOTE: This spec file is generated by tlpdb2rpmspec 2016-2:
  3. ## tlpdb2rpmspec collection-latexextra
  4. %global _use_internal_dependency_generator 0
  5. %global __find_provides %{nil}
  6. %global __find_requires %{nil}
  7. Summary: TeX Live: LaTeX additional packages
  8. Summary(ja): TeX Live: LaTeX additional packages
  9. Name: texlive-collection-latexextra
  10. Version: 2016
  11. Release: 2%{?_dist_release}
  12. License: LPPL, LPPL 1.3, Public Domain, GPL+, GPLv3+, LPPL 1.2, Freely redistributable without restriction, GPLv2+, LGPLv2+, ASL 2.0, BSD, Artistic
  13. Group: Applications/Publishing
  14. URL:http://www.tug.org/texlive/
  15. Source0: 2up.doc.tar.xz
  16. Source1: 2up.tar.xz
  17. Source2: ESIEEcv.doc.tar.xz
  18. Source3: ESIEEcv.source.tar.xz
  19. Source4: ESIEEcv.tar.xz
  20. Source5: GS1.doc.tar.xz
  21. Source6: GS1.source.tar.xz
  22. Source7: GS1.tar.xz
  23. Source8: HA-prosper.doc.tar.xz
  24. Source9: HA-prosper.source.tar.xz
  25. Source10: HA-prosper.tar.xz
  26. Source11: Tabbing.doc.tar.xz
  27. Source12: Tabbing.source.tar.xz
  28. Source13: Tabbing.tar.xz
  29. Source14: a0poster.doc.tar.xz
  30. Source15: a0poster.tar.xz
  31. Source16: a4wide.doc.tar.xz
  32. Source17: a4wide.tar.xz
  33. Source18: a5comb.doc.tar.xz
  34. Source19: a5comb.tar.xz
  35. Source20: abraces.doc.tar.xz
  36. Source21: abraces.tar.xz
  37. Source22: abstract.doc.tar.xz
  38. Source23: abstract.source.tar.xz
  39. Source24: abstract.tar.xz
  40. Source25: achemso.doc.tar.xz
  41. Source26: achemso.source.tar.xz
  42. Source27: achemso.tar.xz
  43. Source28: acro.doc.tar.xz
  44. Source29: acro.tar.xz
  45. Source30: acronym.doc.tar.xz
  46. Source31: acronym.source.tar.xz
  47. Source32: acronym.tar.xz
  48. Source33: acroterm.doc.tar.xz
  49. Source34: acroterm.source.tar.xz
  50. Source35: acroterm.tar.xz
  51. Source36: actuarialangle.doc.tar.xz
  52. Source37: actuarialangle.tar.xz
  53. Source38: addlines.doc.tar.xz
  54. Source39: addlines.source.tar.xz
  55. Source40: addlines.tar.xz
  56. Source41: adjmulticol.doc.tar.xz
  57. Source42: adjmulticol.source.tar.xz
  58. Source43: adjmulticol.tar.xz
  59. Source44: adjustbox.doc.tar.xz
  60. Source45: adjustbox.source.tar.xz
  61. Source46: adjustbox.tar.xz
  62. Source47: adrconv.doc.tar.xz
  63. Source48: adrconv.source.tar.xz
  64. Source49: adrconv.tar.xz
  65. Source50: advdate.doc.tar.xz
  66. Source51: advdate.tar.xz
  67. Source52: akktex.doc.tar.xz
  68. Source53: akktex.tar.xz
  69. Source54: akletter.doc.tar.xz
  70. Source55: akletter.tar.xz
  71. Source56: alertmessage.doc.tar.xz
  72. Source57: alertmessage.source.tar.xz
  73. Source58: alertmessage.tar.xz
  74. Source59: alnumsec.doc.tar.xz
  75. Source60: alnumsec.source.tar.xz
  76. Source61: alnumsec.tar.xz
  77. Source62: alterqcm.doc.tar.xz
  78. Source63: alterqcm.tar.xz
  79. Source64: altfont.doc.tar.xz
  80. Source65: altfont.source.tar.xz
  81. Source66: altfont.tar.xz
  82. Source67: amsaddr.doc.tar.xz
  83. Source68: amsaddr.source.tar.xz
  84. Source69: amsaddr.tar.xz
  85. Source70: animate.doc.tar.xz
  86. Source71: animate.source.tar.xz
  87. Source72: animate.tar.xz
  88. Source73: anonchap.doc.tar.xz
  89. Source74: anonchap.tar.xz
  90. Source75: answers.doc.tar.xz
  91. Source76: answers.source.tar.xz
  92. Source77: answers.tar.xz
  93. Source78: anyfontsize.doc.tar.xz
  94. Source79: anyfontsize.tar.xz
  95. Source80: appendix.doc.tar.xz
  96. Source81: appendix.source.tar.xz
  97. Source82: appendix.tar.xz
  98. Source83: appendixnumberbeamer.doc.tar.xz
  99. Source84: appendixnumberbeamer.tar.xz
  100. Source85: apptools.doc.tar.xz
  101. Source86: apptools.source.tar.xz
  102. Source87: apptools.tar.xz
  103. Source88: arcs.doc.tar.xz
  104. Source89: arcs.source.tar.xz
  105. Source90: arcs.tar.xz
  106. Source91: arrayjobx.doc.tar.xz
  107. Source92: arrayjobx.tar.xz
  108. Source93: arraysort.doc.tar.xz
  109. Source94: arraysort.source.tar.xz
  110. Source95: arraysort.tar.xz
  111. Source96: arydshln.doc.tar.xz
  112. Source97: arydshln.source.tar.xz
  113. Source98: arydshln.tar.xz
  114. Source99: asciilist.doc.tar.xz
  115. Source100: asciilist.source.tar.xz
  116. Source101: asciilist.tar.xz
  117. Source102: assignment.doc.tar.xz
  118. Source103: assignment.tar.xz
  119. Source104: assoccnt.doc.tar.xz
  120. Source105: assoccnt.tar.xz
  121. Source106: attachfile.doc.tar.xz
  122. Source107: attachfile.source.tar.xz
  123. Source108: attachfile.tar.xz
  124. Source109: authoraftertitle.doc.tar.xz
  125. Source110: authoraftertitle.tar.xz
  126. Source111: authorindex.doc.tar.xz
  127. Source112: authorindex.tar.xz
  128. Source113: autonum.doc.tar.xz
  129. Source114: autonum.source.tar.xz
  130. Source115: autonum.tar.xz
  131. Source116: autopdf.doc.tar.xz
  132. Source117: autopdf.source.tar.xz
  133. Source118: autopdf.tar.xz
  134. Source119: avremu.doc.tar.xz
  135. Source120: avremu.source.tar.xz
  136. Source121: avremu.tar.xz
  137. Source122: background.doc.tar.xz
  138. Source123: background.source.tar.xz
  139. Source124: background.tar.xz
  140. Source125: bankstatement.doc.tar.xz
  141. Source126: bankstatement.tar.xz
  142. Source127: bashful.doc.tar.xz
  143. Source128: bashful.tar.xz
  144. Source129: basicarith.doc.tar.xz
  145. Source130: basicarith.source.tar.xz
  146. Source131: basicarith.tar.xz
  147. Source132: bchart.doc.tar.xz
  148. Source133: bchart.tar.xz
  149. Source134: beamer2thesis.doc.tar.xz
  150. Source135: beamer2thesis.tar.xz
  151. Source136: beameraudience.doc.tar.xz
  152. Source137: beameraudience.tar.xz
  153. Source138: beamercolorthemeowl.doc.tar.xz
  154. Source139: beamercolorthemeowl.source.tar.xz
  155. Source140: beamercolorthemeowl.tar.xz
  156. Source141: beamerdarkthemes.doc.tar.xz
  157. Source142: beamerdarkthemes.tar.xz
  158. Source143: beamerposter.doc.tar.xz
  159. Source144: beamerposter.tar.xz
  160. Source145: beamersubframe.doc.tar.xz
  161. Source146: beamersubframe.source.tar.xz
  162. Source147: beamersubframe.tar.xz
  163. Source148: beamertheme-detlevcm.doc.tar.xz
  164. Source149: beamertheme-detlevcm.tar.xz
  165. Source150: beamertheme-metropolis.doc.tar.xz
  166. Source151: beamertheme-metropolis.source.tar.xz
  167. Source152: beamertheme-metropolis.tar.xz
  168. Source153: beamertheme-phnompenh.doc.tar.xz
  169. Source154: beamertheme-phnompenh.tar.xz
  170. Source155: beamertheme-upenn-bc.doc.tar.xz
  171. Source156: beamertheme-upenn-bc.tar.xz
  172. Source157: beamerthemejltree.tar.xz
  173. Source158: beamerthemenirma.doc.tar.xz
  174. Source159: beamerthemenirma.tar.xz
  175. Source160: beton.doc.tar.xz
  176. Source161: beton.source.tar.xz
  177. Source162: beton.tar.xz
  178. Source163: bewerbung.doc.tar.xz
  179. Source164: bewerbung.source.tar.xz
  180. Source165: bewerbung.tar.xz
  181. Source166: bez123.doc.tar.xz
  182. Source167: bez123.source.tar.xz
  183. Source168: bez123.tar.xz
  184. Source169: bezos.doc.tar.xz
  185. Source170: bezos.tar.xz
  186. Source171: bhcexam.doc.tar.xz
  187. Source172: bhcexam.source.tar.xz
  188. Source173: bhcexam.tar.xz
  189. Source174: bibletext.doc.tar.xz
  190. Source175: bibletext.tar.xz
  191. Source176: bigfoot.doc.tar.xz
  192. Source177: bigfoot.source.tar.xz
  193. Source178: bigfoot.tar.xz
  194. Source179: bigints.doc.tar.xz
  195. Source180: bigints.tar.xz
  196. Source181: bizcard.doc.tar.xz
  197. Source182: bizcard.source.tar.xz
  198. Source183: bizcard.tar.xz
  199. Source184: blindtext.doc.tar.xz
  200. Source185: blindtext.source.tar.xz
  201. Source186: blindtext.tar.xz
  202. Source187: blkarray.doc.tar.xz
  203. Source188: blkarray.tar.xz
  204. Source189: block.doc.tar.xz
  205. Source190: block.tar.xz
  206. Source191: bnumexpr.doc.tar.xz
  207. Source192: bnumexpr.source.tar.xz
  208. Source193: bnumexpr.tar.xz
  209. Source194: boites.doc.tar.xz
  210. Source195: boites.source.tar.xz
  211. Source196: boites.tar.xz
  212. Source197: bold-extra.doc.tar.xz
  213. Source198: bold-extra.tar.xz
  214. Source199: bookcover.doc.tar.xz
  215. Source200: bookcover.source.tar.xz
  216. Source201: bookcover.tar.xz
  217. Source202: bookest.doc.tar.xz
  218. Source203: bookest.tar.xz
  219. Source204: booklet.doc.tar.xz
  220. Source205: booklet.source.tar.xz
  221. Source206: booklet.tar.xz
  222. Source207: boolexpr.doc.tar.xz
  223. Source208: boolexpr.source.tar.xz
  224. Source209: boolexpr.tar.xz
  225. Source210: bophook.doc.tar.xz
  226. Source211: bophook.source.tar.xz
  227. Source212: bophook.tar.xz
  228. Source213: boxedminipage.doc.tar.xz
  229. Source214: boxedminipage.tar.xz
  230. Source215: boxedminipage2e.doc.tar.xz
  231. Source216: boxedminipage2e.source.tar.xz
  232. Source217: boxedminipage2e.tar.xz
  233. Source218: boxhandler.doc.tar.xz
  234. Source219: boxhandler.source.tar.xz
  235. Source220: boxhandler.tar.xz
  236. Source221: bracketkey.doc.tar.xz
  237. Source222: bracketkey.tar.xz
  238. Source223: braket.doc.tar.xz
  239. Source224: braket.tar.xz
  240. Source225: breakurl.doc.tar.xz
  241. Source226: breakurl.source.tar.xz
  242. Source227: breakurl.tar.xz
  243. Source228: bullcntr.doc.tar.xz
  244. Source229: bullcntr.source.tar.xz
  245. Source230: bullcntr.tar.xz
  246. Source231: bussproofs.doc.tar.xz
  247. Source232: bussproofs.tar.xz
  248. Source233: bxdpx-beamer.doc.tar.xz
  249. Source234: bxdpx-beamer.tar.xz
  250. Source235: bxdvidriver.doc.tar.xz
  251. Source236: bxdvidriver.tar.xz
  252. Source237: bxenclose.doc.tar.xz
  253. Source238: bxenclose.tar.xz
  254. Source239: bxnewfont.doc.tar.xz
  255. Source240: bxnewfont.tar.xz
  256. Source241: bxpapersize.doc.tar.xz
  257. Source242: bxpapersize.tar.xz
  258. Source243: bxpdfver.doc.tar.xz
  259. Source244: bxpdfver.tar.xz
  260. Source245: calcage.doc.tar.xz
  261. Source246: calcage.source.tar.xz
  262. Source247: calcage.tar.xz
  263. Source248: calctab.doc.tar.xz
  264. Source249: calctab.tar.xz
  265. Source250: calculator.doc.tar.xz
  266. Source251: calculator.source.tar.xz
  267. Source252: calculator.tar.xz
  268. Source253: calrsfs.doc.tar.xz
  269. Source254: calrsfs.tar.xz
  270. Source255: cals.doc.tar.xz
  271. Source256: cals.source.tar.xz
  272. Source257: cals.tar.xz
  273. Source258: calxxxx-yyyy.doc.tar.xz
  274. Source259: calxxxx-yyyy.tar.xz
  275. Source260: cancel.doc.tar.xz
  276. Source261: cancel.tar.xz
  277. Source262: canoniclayout.doc.tar.xz
  278. Source263: canoniclayout.source.tar.xz
  279. Source264: canoniclayout.tar.xz
  280. Source265: capt-of.doc.tar.xz
  281. Source266: capt-of.source.tar.xz
  282. Source267: capt-of.tar.xz
  283. Source268: captcont.doc.tar.xz
  284. Source269: captcont.source.tar.xz
  285. Source270: captcont.tar.xz
  286. Source271: captdef.doc.tar.xz
  287. Source272: captdef.tar.xz
  288. Source273: carbohydrates.doc.tar.xz
  289. Source274: carbohydrates.tar.xz
  290. Source275: cases.doc.tar.xz
  291. Source276: cases.tar.xz
  292. Source277: casyl.doc.tar.xz
  293. Source278: casyl.tar.xz
  294. Source279: catchfilebetweentags.doc.tar.xz
  295. Source280: catchfilebetweentags.source.tar.xz
  296. Source281: catchfilebetweentags.tar.xz
  297. Source282: catechis.doc.tar.xz
  298. Source283: catechis.source.tar.xz
  299. Source284: catechis.tar.xz
  300. Source285: catoptions.doc.tar.xz
  301. Source286: catoptions.tar.xz
  302. Source287: cbcoptic.doc.tar.xz
  303. Source288: cbcoptic.tar.xz
  304. Source289: ccaption.doc.tar.xz
  305. Source290: ccaption.source.tar.xz
  306. Source291: ccaption.tar.xz
  307. Source292: cclicenses.doc.tar.xz
  308. Source293: cclicenses.source.tar.xz
  309. Source294: cclicenses.tar.xz
  310. Source295: cd.doc.tar.xz
  311. Source296: cd.source.tar.xz
  312. Source297: cd.tar.xz
  313. Source298: cd-cover.doc.tar.xz
  314. Source299: cd-cover.source.tar.xz
  315. Source300: cd-cover.tar.xz
  316. Source301: cdpbundl.doc.tar.xz
  317. Source302: cdpbundl.source.tar.xz
  318. Source303: cdpbundl.tar.xz
  319. Source304: cellspace.doc.tar.xz
  320. Source305: cellspace.tar.xz
  321. Source306: censor.doc.tar.xz
  322. Source307: censor.tar.xz
  323. Source308: changebar.doc.tar.xz
  324. Source309: changebar.source.tar.xz
  325. Source310: changebar.tar.xz
  326. Source311: changelayout.doc.tar.xz
  327. Source312: changelayout.tar.xz
  328. Source313: changepage.doc.tar.xz
  329. Source314: changepage.source.tar.xz
  330. Source315: changepage.tar.xz
  331. Source316: changes.doc.tar.xz
  332. Source317: changes.source.tar.xz
  333. Source318: changes.tar.xz
  334. Source319: chappg.doc.tar.xz
  335. Source320: chappg.source.tar.xz
  336. Source321: chappg.tar.xz
  337. Source322: chapterfolder.doc.tar.xz
  338. Source323: chapterfolder.source.tar.xz
  339. Source324: chapterfolder.tar.xz
  340. Source325: chet.doc.tar.xz
  341. Source326: chet.tar.xz
  342. Source327: chextras.doc.tar.xz
  343. Source328: chextras.source.tar.xz
  344. Source329: chextras.tar.xz
  345. Source330: chkfloat.doc.tar.xz
  346. Source331: chkfloat.tar.xz
  347. Source332: chletter.doc.tar.xz
  348. Source333: chletter.source.tar.xz
  349. Source334: chletter.tar.xz
  350. Source335: chngcntr.doc.tar.xz
  351. Source336: chngcntr.tar.xz
  352. Source337: chronology.doc.tar.xz
  353. Source338: chronology.tar.xz
  354. Source339: circ.doc.tar.xz
  355. Source340: circ.source.tar.xz
  356. Source341: circ.tar.xz
  357. Source342: classics.doc.tar.xz
  358. Source343: classics.tar.xz
  359. Source344: clefval.doc.tar.xz
  360. Source345: clefval.source.tar.xz
  361. Source346: clefval.tar.xz
  362. Source347: cleveref.doc.tar.xz
  363. Source348: cleveref.source.tar.xz
  364. Source349: cleveref.tar.xz
  365. Source350: clipboard.doc.tar.xz
  366. Source351: clipboard.tar.xz
  367. Source352: clock.doc.tar.xz
  368. Source353: clock.tar.xz
  369. Source354: cmdstring.doc.tar.xz
  370. Source355: cmdstring.tar.xz
  371. Source356: cmdtrack.doc.tar.xz
  372. Source357: cmdtrack.source.tar.xz
  373. Source358: cmdtrack.tar.xz
  374. Source359: cmsd.doc.tar.xz
  375. Source360: cmsd.tar.xz
  376. Source361: cnltx.doc.tar.xz
  377. Source362: cnltx.tar.xz
  378. Source363: cntformats.doc.tar.xz
  379. Source364: cntformats.tar.xz
  380. Source365: cntperchap.doc.tar.xz
  381. Source366: cntperchap.tar.xz
  382. Source367: codedoc.doc.tar.xz
  383. Source368: codedoc.tar.xz
  384. Source369: codepage.doc.tar.xz
  385. Source370: codepage.source.tar.xz
  386. Source371: codepage.tar.xz
  387. Source372: codesection.doc.tar.xz
  388. Source373: codesection.source.tar.xz
  389. Source374: codesection.tar.xz
  390. Source375: collcell.doc.tar.xz
  391. Source376: collcell.source.tar.xz
  392. Source377: collcell.tar.xz
  393. Source378: collectbox.doc.tar.xz
  394. Source379: collectbox.source.tar.xz
  395. Source380: collectbox.tar.xz
  396. Source381: colordoc.doc.tar.xz
  397. Source382: colordoc.source.tar.xz
  398. Source383: colordoc.tar.xz
  399. Source384: colorinfo.doc.tar.xz
  400. Source385: colorinfo.tar.xz
  401. Source386: colorspace.doc.tar.xz
  402. Source387: colorspace.tar.xz
  403. Source388: colortab.doc.tar.xz
  404. Source389: colortab.tar.xz
  405. Source390: colorwav.doc.tar.xz
  406. Source391: colorwav.source.tar.xz
  407. Source392: colorwav.tar.xz
  408. Source393: colorweb.doc.tar.xz
  409. Source394: colorweb.source.tar.xz
  410. Source395: colorweb.tar.xz
  411. Source396: colourchange.doc.tar.xz
  412. Source397: colourchange.tar.xz
  413. Source398: combelow.doc.tar.xz
  414. Source399: combelow.tar.xz
  415. Source400: combine.doc.tar.xz
  416. Source401: combine.source.tar.xz
  417. Source402: combine.tar.xz
  418. Source403: comma.doc.tar.xz
  419. Source404: comma.tar.xz
  420. Source405: commado.doc.tar.xz
  421. Source406: commado.source.tar.xz
  422. Source407: commado.tar.xz
  423. Source408: comment.doc.tar.xz
  424. Source409: comment.tar.xz
  425. Source410: concepts.doc.tar.xz
  426. Source411: concepts.tar.xz
  427. Source412: concprog.doc.tar.xz
  428. Source413: concprog.tar.xz
  429. Source414: constants.doc.tar.xz
  430. Source415: constants.source.tar.xz
  431. Source416: constants.tar.xz
  432. Source417: continue.doc.tar.xz
  433. Source418: continue.source.tar.xz
  434. Source419: continue.tar.xz
  435. Source420: contour.doc.tar.xz
  436. Source421: contour.source.tar.xz
  437. Source422: contour.tar.xz
  438. Source423: contracard.doc.tar.xz
  439. Source424: contracard.source.tar.xz
  440. Source425: contracard.tar.xz
  441. Source426: cooking.doc.tar.xz
  442. Source427: cooking.source.tar.xz
  443. Source428: cooking.tar.xz
  444. Source429: cool.doc.tar.xz
  445. Source430: cool.source.tar.xz
  446. Source431: cool.tar.xz
  447. Source432: coollist.doc.tar.xz
  448. Source433: coollist.source.tar.xz
  449. Source434: coollist.tar.xz
  450. Source435: coolstr.doc.tar.xz
  451. Source436: coolstr.source.tar.xz
  452. Source437: coolstr.tar.xz
  453. Source438: coolthms.doc.tar.xz
  454. Source439: coolthms.source.tar.xz
  455. Source440: coolthms.tar.xz
  456. Source441: cooltooltips.doc.tar.xz
  457. Source442: cooltooltips.source.tar.xz
  458. Source443: cooltooltips.tar.xz
  459. Source444: coordsys.doc.tar.xz
  460. Source445: coordsys.source.tar.xz
  461. Source446: coordsys.tar.xz
  462. Source447: copyedit.doc.tar.xz
  463. Source448: copyedit.source.tar.xz
  464. Source449: copyedit.tar.xz
  465. Source450: copyrightbox.doc.tar.xz
  466. Source451: copyrightbox.tar.xz
  467. Source452: coseoul.doc.tar.xz
  468. Source453: coseoul.tar.xz
  469. Source454: counttexruns.doc.tar.xz
  470. Source455: counttexruns.source.tar.xz
  471. Source456: counttexruns.tar.xz
  472. Source457: courseoutline.doc.tar.xz
  473. Source458: courseoutline.tar.xz
  474. Source459: coursepaper.doc.tar.xz
  475. Source460: coursepaper.tar.xz
  476. Source461: coverpage.doc.tar.xz
  477. Source462: coverpage.source.tar.xz
  478. Source463: coverpage.tar.xz
  479. Source464: cprotect.doc.tar.xz
  480. Source465: cprotect.source.tar.xz
  481. Source466: cprotect.tar.xz
  482. Source467: crbox.doc.tar.xz
  483. Source468: crbox.tar.xz
  484. Source469: crossreference.doc.tar.xz
  485. Source470: crossreference.source.tar.xz
  486. Source471: crossreference.tar.xz
  487. Source472: csquotes.doc.tar.xz
  488. Source473: csquotes.tar.xz
  489. Source474: csvsimple.doc.tar.xz
  490. Source475: csvsimple.tar.xz
  491. Source476: cuisine.doc.tar.xz
  492. Source477: cuisine.source.tar.xz
  493. Source478: cuisine.tar.xz
  494. Source479: currfile.doc.tar.xz
  495. Source480: currfile.source.tar.xz
  496. Source481: currfile.tar.xz
  497. Source482: currvita.doc.tar.xz
  498. Source483: currvita.source.tar.xz
  499. Source484: currvita.tar.xz
  500. Source485: cutwin.doc.tar.xz
  501. Source486: cutwin.source.tar.xz
  502. Source487: cutwin.tar.xz
  503. Source488: cv.doc.tar.xz
  504. Source489: cv.tar.xz
  505. Source490: cv4tw.doc.tar.xz
  506. Source491: cv4tw.tar.xz
  507. Source492: cweb-latex.doc.tar.xz
  508. Source493: cweb-latex.tar.xz
  509. Source494: cyber.doc.tar.xz
  510. Source495: cyber.source.tar.xz
  511. Source496: cyber.tar.xz
  512. Source497: cybercic.doc.tar.xz
  513. Source498: cybercic.source.tar.xz
  514. Source499: cybercic.tar.xz
  515. Source500: dashbox.doc.tar.xz
  516. Source501: dashbox.source.tar.xz
  517. Source502: dashbox.tar.xz
  518. Source503: dashrule.doc.tar.xz
  519. Source504: dashrule.source.tar.xz
  520. Source505: dashrule.tar.xz
  521. Source506: dashundergaps.doc.tar.xz
  522. Source507: dashundergaps.tar.xz
  523. Source508: dataref.doc.tar.xz
  524. Source509: dataref.source.tar.xz
  525. Source510: dataref.tar.xz
  526. Source511: datatool.doc.tar.xz
  527. Source512: datatool.source.tar.xz
  528. Source513: datatool.tar.xz
  529. Source514: dateiliste.doc.tar.xz
  530. Source515: dateiliste.source.tar.xz
  531. Source516: dateiliste.tar.xz
  532. Source517: datenumber.doc.tar.xz
  533. Source518: datenumber.source.tar.xz
  534. Source519: datenumber.tar.xz
  535. Source520: datetime.doc.tar.xz
  536. Source521: datetime.source.tar.xz
  537. Source522: datetime.tar.xz
  538. Source523: datetime2.doc.tar.xz
  539. Source524: datetime2.source.tar.xz
  540. Source525: datetime2.tar.xz
  541. Source526: datetime2-bahasai.doc.tar.xz
  542. Source527: datetime2-bahasai.source.tar.xz
  543. Source528: datetime2-bahasai.tar.xz
  544. Source529: datetime2-basque.doc.tar.xz
  545. Source530: datetime2-basque.source.tar.xz
  546. Source531: datetime2-basque.tar.xz
  547. Source532: datetime2-breton.doc.tar.xz
  548. Source533: datetime2-breton.source.tar.xz
  549. Source534: datetime2-breton.tar.xz
  550. Source535: datetime2-bulgarian.doc.tar.xz
  551. Source536: datetime2-bulgarian.source.tar.xz
  552. Source537: datetime2-bulgarian.tar.xz
  553. Source538: datetime2-catalan.doc.tar.xz
  554. Source539: datetime2-catalan.source.tar.xz
  555. Source540: datetime2-catalan.tar.xz
  556. Source541: datetime2-croatian.doc.tar.xz
  557. Source542: datetime2-croatian.source.tar.xz
  558. Source543: datetime2-croatian.tar.xz
  559. Source544: datetime2-czech.doc.tar.xz
  560. Source545: datetime2-czech.source.tar.xz
  561. Source546: datetime2-czech.tar.xz
  562. Source547: datetime2-danish.doc.tar.xz
  563. Source548: datetime2-danish.source.tar.xz
  564. Source549: datetime2-danish.tar.xz
  565. Source550: datetime2-dutch.doc.tar.xz
  566. Source551: datetime2-dutch.source.tar.xz
  567. Source552: datetime2-dutch.tar.xz
  568. Source553: datetime2-en-fulltext.doc.tar.xz
  569. Source554: datetime2-en-fulltext.source.tar.xz
  570. Source555: datetime2-en-fulltext.tar.xz
  571. Source556: datetime2-english.doc.tar.xz
  572. Source557: datetime2-english.source.tar.xz
  573. Source558: datetime2-english.tar.xz
  574. Source559: datetime2-esperanto.doc.tar.xz
  575. Source560: datetime2-esperanto.source.tar.xz
  576. Source561: datetime2-esperanto.tar.xz
  577. Source562: datetime2-estonian.doc.tar.xz
  578. Source563: datetime2-estonian.source.tar.xz
  579. Source564: datetime2-estonian.tar.xz
  580. Source565: datetime2-finnish.doc.tar.xz
  581. Source566: datetime2-finnish.source.tar.xz
  582. Source567: datetime2-finnish.tar.xz
  583. Source568: datetime2-french.doc.tar.xz
  584. Source569: datetime2-french.source.tar.xz
  585. Source570: datetime2-french.tar.xz
  586. Source571: datetime2-galician.doc.tar.xz
  587. Source572: datetime2-galician.source.tar.xz
  588. Source573: datetime2-galician.tar.xz
  589. Source574: datetime2-german.doc.tar.xz
  590. Source575: datetime2-german.source.tar.xz
  591. Source576: datetime2-german.tar.xz
  592. Source577: datetime2-greek.doc.tar.xz
  593. Source578: datetime2-greek.source.tar.xz
  594. Source579: datetime2-greek.tar.xz
  595. Source580: datetime2-hebrew.doc.tar.xz
  596. Source581: datetime2-hebrew.source.tar.xz
  597. Source582: datetime2-hebrew.tar.xz
  598. Source583: datetime2-icelandic.doc.tar.xz
  599. Source584: datetime2-icelandic.source.tar.xz
  600. Source585: datetime2-icelandic.tar.xz
  601. Source586: datetime2-irish.doc.tar.xz
  602. Source587: datetime2-irish.source.tar.xz
  603. Source588: datetime2-irish.tar.xz
  604. Source589: datetime2-italian.doc.tar.xz
  605. Source590: datetime2-italian.source.tar.xz
  606. Source591: datetime2-italian.tar.xz
  607. Source592: datetime2-it-fulltext.doc.tar.xz
  608. Source593: datetime2-it-fulltext.source.tar.xz
  609. Source594: datetime2-it-fulltext.tar.xz
  610. Source595: datetime2-latin.doc.tar.xz
  611. Source596: datetime2-latin.source.tar.xz
  612. Source597: datetime2-latin.tar.xz
  613. Source598: datetime2-lsorbian.doc.tar.xz
  614. Source599: datetime2-lsorbian.source.tar.xz
  615. Source600: datetime2-lsorbian.tar.xz
  616. Source601: datetime2-magyar.doc.tar.xz
  617. Source602: datetime2-magyar.source.tar.xz
  618. Source603: datetime2-magyar.tar.xz
  619. Source604: datetime2-norsk.doc.tar.xz
  620. Source605: datetime2-norsk.source.tar.xz
  621. Source606: datetime2-norsk.tar.xz
  622. Source607: datetime2-polish.doc.tar.xz
  623. Source608: datetime2-polish.source.tar.xz
  624. Source609: datetime2-polish.tar.xz
  625. Source610: datetime2-portuges.doc.tar.xz
  626. Source611: datetime2-portuges.source.tar.xz
  627. Source612: datetime2-portuges.tar.xz
  628. Source613: datetime2-romanian.doc.tar.xz
  629. Source614: datetime2-romanian.source.tar.xz
  630. Source615: datetime2-romanian.tar.xz
  631. Source616: datetime2-russian.doc.tar.xz
  632. Source617: datetime2-russian.source.tar.xz
  633. Source618: datetime2-russian.tar.xz
  634. Source619: datetime2-samin.doc.tar.xz
  635. Source620: datetime2-samin.source.tar.xz
  636. Source621: datetime2-samin.tar.xz
  637. Source622: datetime2-scottish.doc.tar.xz
  638. Source623: datetime2-scottish.source.tar.xz
  639. Source624: datetime2-scottish.tar.xz
  640. Source625: datetime2-serbian.doc.tar.xz
  641. Source626: datetime2-serbian.source.tar.xz
  642. Source627: datetime2-serbian.tar.xz
  643. Source628: datetime2-slovak.doc.tar.xz
  644. Source629: datetime2-slovak.source.tar.xz
  645. Source630: datetime2-slovak.tar.xz
  646. Source631: datetime2-slovene.doc.tar.xz
  647. Source632: datetime2-slovene.source.tar.xz
  648. Source633: datetime2-slovene.tar.xz
  649. Source634: datetime2-spanish.doc.tar.xz
  650. Source635: datetime2-spanish.source.tar.xz
  651. Source636: datetime2-spanish.tar.xz
  652. Source637: datetime2-swedish.doc.tar.xz
  653. Source638: datetime2-swedish.source.tar.xz
  654. Source639: datetime2-swedish.tar.xz
  655. Source640: datetime2-turkish.doc.tar.xz
  656. Source641: datetime2-turkish.source.tar.xz
  657. Source642: datetime2-turkish.tar.xz
  658. Source643: datetime2-ukrainian.doc.tar.xz
  659. Source644: datetime2-ukrainian.source.tar.xz
  660. Source645: datetime2-ukrainian.tar.xz
  661. Source646: datetime2-usorbian.doc.tar.xz
  662. Source647: datetime2-usorbian.source.tar.xz
  663. Source648: datetime2-usorbian.tar.xz
  664. Source649: datetime2-welsh.doc.tar.xz
  665. Source650: datetime2-welsh.source.tar.xz
  666. Source651: datetime2-welsh.tar.xz
  667. Source652: dblfloatfix.doc.tar.xz
  668. Source653: dblfloatfix.tar.xz
  669. Source654: decimal.doc.tar.xz
  670. Source655: decimal.source.tar.xz
  671. Source656: decimal.tar.xz
  672. Source657: decorule.doc.tar.xz
  673. Source658: decorule.source.tar.xz
  674. Source659: decorule.tar.xz
  675. Source660: delimtxt.doc.tar.xz
  676. Source661: delimtxt.source.tar.xz
  677. Source662: delimtxt.tar.xz
  678. Source663: denisbdoc.doc.tar.xz
  679. Source664: denisbdoc.source.tar.xz
  680. Source665: denisbdoc.tar.xz
  681. Source666: diagbox.doc.tar.xz
  682. Source667: diagbox.source.tar.xz
  683. Source668: diagbox.tar.xz
  684. Source669: diagnose.doc.tar.xz
  685. Source670: diagnose.tar.xz
  686. Source671: dialogl.doc.tar.xz
  687. Source672: dialogl.source.tar.xz
  688. Source673: dialogl.tar.xz
  689. Source674: dichokey.doc.tar.xz
  690. Source675: dichokey.tar.xz
  691. Source676: dinbrief.doc.tar.xz
  692. Source677: dinbrief.source.tar.xz
  693. Source678: dinbrief.tar.xz
  694. Source679: directory.doc.tar.xz
  695. Source680: directory.tar.xz
  696. Source681: dirtytalk.doc.tar.xz
  697. Source682: dirtytalk.source.tar.xz
  698. Source683: dirtytalk.tar.xz
  699. Source684: dlfltxb.doc.tar.xz
  700. Source685: dlfltxb.tar.xz
  701. Source686: dnaseq.doc.tar.xz
  702. Source687: dnaseq.source.tar.xz
  703. Source688: dnaseq.tar.xz
  704. Source689: doclicense.doc.tar.xz
  705. Source690: doclicense.source.tar.xz
  706. Source691: doclicense.tar.xz
  707. Source692: docmfp.doc.tar.xz
  708. Source693: docmfp.source.tar.xz
  709. Source694: docmfp.tar.xz
  710. Source695: docmute.doc.tar.xz
  711. Source696: docmute.source.tar.xz
  712. Source697: docmute.tar.xz
  713. Source698: doctools.doc.tar.xz
  714. Source699: doctools.source.tar.xz
  715. Source700: doctools.tar.xz
  716. Source701: documentation.doc.tar.xz
  717. Source702: documentation.source.tar.xz
  718. Source703: documentation.tar.xz
  719. Source704: doi.doc.tar.xz
  720. Source705: doi.tar.xz
  721. Source706: dotarrow.doc.tar.xz
  722. Source707: dotarrow.source.tar.xz
  723. Source708: dotarrow.tar.xz
  724. Source709: dotseqn.doc.tar.xz
  725. Source710: dotseqn.source.tar.xz
  726. Source711: dotseqn.tar.xz
  727. Source712: download.doc.tar.xz
  728. Source713: download.source.tar.xz
  729. Source714: download.tar.xz
  730. Source715: dox.doc.tar.xz
  731. Source716: dox.source.tar.xz
  732. Source717: dox.tar.xz
  733. Source718: dpfloat.doc.tar.xz
  734. Source719: dpfloat.tar.xz
  735. Source720: dprogress.doc.tar.xz
  736. Source721: dprogress.source.tar.xz
  737. Source722: dprogress.tar.xz
  738. Source723: drac.doc.tar.xz
  739. Source724: drac.source.tar.xz
  740. Source725: drac.tar.xz
  741. Source726: draftcopy.doc.tar.xz
  742. Source727: draftcopy.source.tar.xz
  743. Source728: draftcopy.tar.xz
  744. Source729: draftwatermark.doc.tar.xz
  745. Source730: draftwatermark.source.tar.xz
  746. Source731: draftwatermark.tar.xz
  747. Source732: dtk.doc.tar.xz
  748. Source733: dtk.tar.xz
  749. Source734: dtxgallery.doc.tar.xz
  750. Source735: dtxgallery.source.tar.xz
  751. Source736: dtxgallery.tar.xz
  752. Source737: dvdcoll.doc.tar.xz
  753. Source738: dvdcoll.tar.xz
  754. Source739: dynamicnumber.doc.tar.xz
  755. Source740: dynamicnumber.source.tar.xz
  756. Source741: dynamicnumber.tar.xz
  757. Source742: dynblocks.doc.tar.xz
  758. Source743: dynblocks.tar.xz
  759. Source744: ean13isbn.doc.tar.xz
  760. Source745: ean13isbn.tar.xz
  761. Source746: easy.doc.tar.xz
  762. Source747: easy.tar.xz
  763. Source748: easy-todo.doc.tar.xz
  764. Source749: easy-todo.tar.xz
  765. Source750: easyfig.doc.tar.xz
  766. Source751: easyfig.source.tar.xz
  767. Source752: easyfig.tar.xz
  768. Source753: easylist.doc.tar.xz
  769. Source754: easylist.tar.xz
  770. Source755: easyreview.doc.tar.xz
  771. Source756: easyreview.source.tar.xz
  772. Source757: easyreview.tar.xz
  773. Source758: ebezier.doc.tar.xz
  774. Source759: ebezier.source.tar.xz
  775. Source760: ebezier.tar.xz
  776. Source761: ecclesiastic.doc.tar.xz
  777. Source762: ecclesiastic.source.tar.xz
  778. Source763: ecclesiastic.tar.xz
  779. Source764: ecv.doc.tar.xz
  780. Source765: ecv.source.tar.xz
  781. Source766: ecv.tar.xz
  782. Source767: ed.doc.tar.xz
  783. Source768: ed.source.tar.xz
  784. Source769: ed.tar.xz
  785. Source770: edmargin.doc.tar.xz
  786. Source771: edmargin.source.tar.xz
  787. Source772: edmargin.tar.xz
  788. Source773: eemeir.doc.tar.xz
  789. Source774: eemeir.source.tar.xz
  790. Source775: eemeir.tar.xz
  791. Source776: efbox.doc.tar.xz
  792. Source777: efbox.source.tar.xz
  793. Source778: efbox.tar.xz
  794. Source779: egplot.doc.tar.xz
  795. Source780: egplot.source.tar.xz
  796. Source781: egplot.tar.xz
  797. Source782: elements.doc.tar.xz
  798. Source783: elements.tar.xz
  799. Source784: ellipsis.doc.tar.xz
  800. Source785: ellipsis.source.tar.xz
  801. Source786: ellipsis.tar.xz
  802. Source787: elmath.doc.tar.xz
  803. Source788: elmath.source.tar.xz
  804. Source789: elmath.tar.xz
  805. Source790: elocalloc.doc.tar.xz
  806. Source791: elocalloc.source.tar.xz
  807. Source792: elocalloc.tar.xz
  808. Source793: elpres.doc.tar.xz
  809. Source794: elpres.tar.xz
  810. Source795: elzcards.doc.tar.xz
  811. Source796: elzcards.source.tar.xz
  812. Source797: elzcards.tar.xz
  813. Source798: emarks.doc.tar.xz
  814. Source799: emarks.source.tar.xz
  815. Source800: emarks.tar.xz
  816. Source801: embedall.doc.tar.xz
  817. Source802: embedall.source.tar.xz
  818. Source803: embedall.tar.xz
  819. Source804: embrac.doc.tar.xz
  820. Source805: embrac.tar.xz
  821. Source806: emptypage.doc.tar.xz
  822. Source807: emptypage.source.tar.xz
  823. Source808: emptypage.tar.xz
  824. Source809: emulateapj.doc.tar.xz
  825. Source810: emulateapj.tar.xz
  826. Source811: endfloat.doc.tar.xz
  827. Source812: endfloat.source.tar.xz
  828. Source813: endfloat.tar.xz
  829. Source814: endheads.doc.tar.xz
  830. Source815: endheads.source.tar.xz
  831. Source816: endheads.tar.xz
  832. Source817: endnotes.doc.tar.xz
  833. Source818: endnotes.tar.xz
  834. Source819: engpron.doc.tar.xz
  835. Source820: engpron.source.tar.xz
  836. Source821: engpron.tar.xz
  837. Source822: engrec.doc.tar.xz
  838. Source823: engrec.source.tar.xz
  839. Source824: engrec.tar.xz
  840. Source825: enotez.doc.tar.xz
  841. Source826: enotez.tar.xz
  842. Source827: enumitem.doc.tar.xz
  843. Source828: enumitem.tar.xz
  844. Source829: enumitem-zref.doc.tar.xz
  845. Source830: enumitem-zref.source.tar.xz
  846. Source831: enumitem-zref.tar.xz
  847. Source832: envbig.doc.tar.xz
  848. Source833: envbig.tar.xz
  849. Source834: environ.doc.tar.xz
  850. Source835: environ.source.tar.xz
  851. Source836: environ.tar.xz
  852. Source837: envlab.doc.tar.xz
  853. Source838: envlab.source.tar.xz
  854. Source839: envlab.tar.xz
  855. Source840: epigraph.doc.tar.xz
  856. Source841: epigraph.source.tar.xz
  857. Source842: epigraph.tar.xz
  858. Source843: epiolmec.doc.tar.xz
  859. Source844: epiolmec.source.tar.xz
  860. Source845: epiolmec.tar.xz
  861. Source846: epyt.doc.tar.xz
  862. Source847: epyt.tar.xz
  863. Source848: eqell.doc.tar.xz
  864. Source849: eqell.tar.xz
  865. Source850: eqlist.doc.tar.xz
  866. Source851: eqlist.source.tar.xz
  867. Source852: eqlist.tar.xz
  868. Source853: eqname.tar.xz
  869. Source854: eqparbox.doc.tar.xz
  870. Source855: eqparbox.source.tar.xz
  871. Source856: eqparbox.tar.xz
  872. Source857: errata.doc.tar.xz
  873. Source858: errata.source.tar.xz
  874. Source859: errata.tar.xz
  875. Source860: esami.doc.tar.xz
  876. Source861: esami.tar.xz
  877. Source862: esdiff.doc.tar.xz
  878. Source863: esdiff.source.tar.xz
  879. Source864: esdiff.tar.xz
  880. Source865: esint.doc.tar.xz
  881. Source866: esint.source.tar.xz
  882. Source867: esint.tar.xz
  883. Source868: esint-type1.doc.tar.xz
  884. Source869: esint-type1.tar.xz
  885. Source870: etaremune.doc.tar.xz
  886. Source871: etaremune.source.tar.xz
  887. Source872: etaremune.tar.xz
  888. Source873: etextools.doc.tar.xz
  889. Source874: etextools.source.tar.xz
  890. Source875: etextools.tar.xz
  891. Source876: etoc.doc.tar.xz
  892. Source877: etoc.source.tar.xz
  893. Source878: etoc.tar.xz
  894. Source879: etoolbox.doc.tar.xz
  895. Source880: etoolbox.tar.xz
  896. Source881: eukdate.doc.tar.xz
  897. Source882: eukdate.source.tar.xz
  898. Source883: eukdate.tar.xz
  899. Source884: europasscv.doc.tar.xz
  900. Source885: europasscv.tar.xz
  901. Source886: europecv.doc.tar.xz
  902. Source887: europecv.tar.xz
  903. Source888: everyhook.doc.tar.xz
  904. Source889: everyhook.source.tar.xz
  905. Source890: everyhook.tar.xz
  906. Source891: everypage.doc.tar.xz
  907. Source892: everypage.source.tar.xz
  908. Source893: everypage.tar.xz
  909. Source894: exam.doc.tar.xz
  910. Source895: exam.tar.xz
  911. Source896: exam-n.doc.tar.xz
  912. Source897: exam-n.source.tar.xz
  913. Source898: exam-n.tar.xz
  914. Source899: examdesign.doc.tar.xz
  915. Source900: examdesign.source.tar.xz
  916. Source901: examdesign.tar.xz
  917. Source902: example.tar.xz
  918. Source903: examplep.doc.tar.xz
  919. Source904: examplep.tar.xz
  920. Source905: exceltex.doc.tar.xz
  921. Source906: exceltex.tar.xz
  922. Source907: excludeonly.doc.tar.xz
  923. Source908: excludeonly.tar.xz
  924. Source909: exercise.doc.tar.xz
  925. Source910: exercise.source.tar.xz
  926. Source911: exercise.tar.xz
  927. Source912: exercises.doc.tar.xz
  928. Source913: exercises.source.tar.xz
  929. Source914: exercises.tar.xz
  930. Source915: exp-testopt.doc.tar.xz
  931. Source916: exp-testopt.source.tar.xz
  932. Source917: exp-testopt.tar.xz
  933. Source918: expdlist.doc.tar.xz
  934. Source919: expdlist.source.tar.xz
  935. Source920: expdlist.tar.xz
  936. Source921: export.doc.tar.xz
  937. Source922: export.source.tar.xz
  938. Source923: export.tar.xz
  939. Source924: exsheets.doc.tar.xz
  940. Source925: exsheets.tar.xz
  941. Source926: exsol.doc.tar.xz
  942. Source927: exsol.source.tar.xz
  943. Source928: exsol.tar.xz
  944. Source929: extract.doc.tar.xz
  945. Source930: extract.source.tar.xz
  946. Source931: extract.tar.xz
  947. Source932: facsimile.doc.tar.xz
  948. Source933: facsimile.source.tar.xz
  949. Source934: facsimile.tar.xz
  950. Source935: factura.doc.tar.xz
  951. Source936: factura.source.tar.xz
  952. Source937: factura.tar.xz
  953. Source938: fancylabel.doc.tar.xz
  954. Source939: fancylabel.source.tar.xz
  955. Source940: fancylabel.tar.xz
  956. Source941: fancynum.doc.tar.xz
  957. Source942: fancynum.source.tar.xz
  958. Source943: fancynum.tar.xz
  959. Source944: fancypar.doc.tar.xz
  960. Source945: fancypar.source.tar.xz
  961. Source946: fancypar.tar.xz
  962. Source947: fancyslides.doc.tar.xz
  963. Source948: fancyslides.tar.xz
  964. Source949: fancytabs.doc.tar.xz
  965. Source950: fancytabs.source.tar.xz
  966. Source951: fancytabs.tar.xz
  967. Source952: fancytooltips.doc.tar.xz
  968. Source953: fancytooltips.source.tar.xz
  969. Source954: fancytooltips.tar.xz
  970. Source955: fcolumn.doc.tar.xz
  971. Source956: fcolumn.source.tar.xz
  972. Source957: fcolumn.tar.xz
  973. Source958: ffslides.doc.tar.xz
  974. Source959: ffslides.tar.xz
  975. Source960: fibeamer.doc.tar.xz
  976. Source961: fibeamer.source.tar.xz
  977. Source962: fibeamer.tar.xz
  978. Source963: fifo-stack.doc.tar.xz
  979. Source964: fifo-stack.source.tar.xz
  980. Source965: fifo-stack.tar.xz
  981. Source966: figsize.doc.tar.xz
  982. Source967: figsize.tar.xz
  983. Source968: filecontents.doc.tar.xz
  984. Source969: filecontents.source.tar.xz
  985. Source970: filecontents.tar.xz
  986. Source971: filedate.doc.tar.xz
  987. Source972: filedate.source.tar.xz
  988. Source973: filedate.tar.xz
  989. Source974: filehook.doc.tar.xz
  990. Source975: filehook.source.tar.xz
  991. Source976: filehook.tar.xz
  992. Source977: fileinfo.doc.tar.xz
  993. Source978: fileinfo.source.tar.xz
  994. Source979: fileinfo.tar.xz
  995. Source980: filemod.doc.tar.xz
  996. Source981: filemod.tar.xz
  997. Source982: fink.doc.tar.xz
  998. Source983: fink.source.tar.xz
  999. Source984: fink.tar.xz
  1000. Source985: finstrut.doc.tar.xz
  1001. Source986: finstrut.source.tar.xz
  1002. Source987: finstrut.tar.xz
  1003. Source988: fithesis.doc.tar.xz
  1004. Source989: fithesis.source.tar.xz
  1005. Source990: fithesis.tar.xz
  1006. Source991: fixcmex.doc.tar.xz
  1007. Source992: fixcmex.source.tar.xz
  1008. Source993: fixcmex.tar.xz
  1009. Source994: fixfoot.doc.tar.xz
  1010. Source995: fixfoot.tar.xz
  1011. Source996: fixme.doc.tar.xz
  1012. Source997: fixme.source.tar.xz
  1013. Source998: fixme.tar.xz
  1014. Source999: fixmetodonotes.doc.tar.xz
  1015. Source1000: fixmetodonotes.source.tar.xz
  1016. Source1001: fixmetodonotes.tar.xz
  1017. Source1002: fjodor.doc.tar.xz
  1018. Source1003: fjodor.tar.xz
  1019. Source1004: flabels.doc.tar.xz
  1020. Source1005: flabels.source.tar.xz
  1021. Source1006: flabels.tar.xz
  1022. Source1007: flacards.doc.tar.xz
  1023. Source1008: flacards.tar.xz
  1024. Source1009: flagderiv.doc.tar.xz
  1025. Source1010: flagderiv.source.tar.xz
  1026. Source1011: flagderiv.tar.xz
  1027. Source1012: flashcards.doc.tar.xz
  1028. Source1013: flashcards.source.tar.xz
  1029. Source1014: flashcards.tar.xz
  1030. Source1015: flashmovie.doc.tar.xz
  1031. Source1016: flashmovie.tar.xz
  1032. Source1017: flipbook.doc.tar.xz
  1033. Source1018: flipbook.tar.xz
  1034. Source1019: flippdf.doc.tar.xz
  1035. Source1020: flippdf.source.tar.xz
  1036. Source1021: flippdf.tar.xz
  1037. Source1022: floatflt.doc.tar.xz
  1038. Source1023: floatflt.source.tar.xz
  1039. Source1024: floatflt.tar.xz
  1040. Source1025: floatrow.doc.tar.xz
  1041. Source1026: floatrow.source.tar.xz
  1042. Source1027: floatrow.tar.xz
  1043. Source1028: flowfram.doc.tar.xz
  1044. Source1029: flowfram.source.tar.xz
  1045. Source1030: flowfram.tar.xz
  1046. Source1031: fmp.doc.tar.xz
  1047. Source1032: fmp.source.tar.xz
  1048. Source1033: fmp.tar.xz
  1049. Source1034: fmtcount.doc.tar.xz
  1050. Source1035: fmtcount.source.tar.xz
  1051. Source1036: fmtcount.tar.xz
  1052. Source1037: fn2end.doc.tar.xz
  1053. Source1038: fn2end.tar.xz
  1054. Source1039: fnbreak.doc.tar.xz
  1055. Source1040: fnbreak.source.tar.xz
  1056. Source1041: fnbreak.tar.xz
  1057. Source1042: fncychap.doc.tar.xz
  1058. Source1043: fncychap.tar.xz
  1059. Source1044: fncylab.doc.tar.xz
  1060. Source1045: fncylab.tar.xz
  1061. Source1046: fnpara.doc.tar.xz
  1062. Source1047: fnpara.tar.xz
  1063. Source1048: fnpct.doc.tar.xz
  1064. Source1049: fnpct.tar.xz
  1065. Source1050: fnumprint.doc.tar.xz
  1066. Source1051: fnumprint.source.tar.xz
  1067. Source1052: fnumprint.tar.xz
  1068. Source1053: foilhtml.doc.tar.xz
  1069. Source1054: foilhtml.source.tar.xz
  1070. Source1055: foilhtml.tar.xz
  1071. Source1056: fontaxes.doc.tar.xz
  1072. Source1057: fontaxes.source.tar.xz
  1073. Source1058: fontaxes.tar.xz
  1074. Source1059: fonttable.doc.tar.xz
  1075. Source1060: fonttable.source.tar.xz
  1076. Source1061: fonttable.tar.xz
  1077. Source1062: footmisc.doc.tar.xz
  1078. Source1063: footmisc.source.tar.xz
  1079. Source1064: footmisc.tar.xz
  1080. Source1065: footnotebackref.doc.tar.xz
  1081. Source1066: footnotebackref.tar.xz
  1082. Source1067: footnotehyper.doc.tar.xz
  1083. Source1068: footnotehyper.source.tar.xz
  1084. Source1069: footnotehyper.tar.xz
  1085. Source1070: footnoterange.doc.tar.xz
  1086. Source1071: footnoterange.source.tar.xz
  1087. Source1072: footnoterange.tar.xz
  1088. Source1073: footnpag.doc.tar.xz
  1089. Source1074: footnpag.source.tar.xz
  1090. Source1075: footnpag.tar.xz
  1091. Source1076: forarray.doc.tar.xz
  1092. Source1077: forarray.source.tar.xz
  1093. Source1078: forarray.tar.xz
  1094. Source1079: foreign.doc.tar.xz
  1095. Source1080: foreign.source.tar.xz
  1096. Source1081: foreign.tar.xz
  1097. Source1082: forloop.doc.tar.xz
  1098. Source1083: forloop.source.tar.xz
  1099. Source1084: forloop.tar.xz
  1100. Source1085: formlett.doc.tar.xz
  1101. Source1086: formlett.tar.xz
  1102. Source1087: formular.doc.tar.xz
  1103. Source1088: formular.source.tar.xz
  1104. Source1089: formular.tar.xz
  1105. Source1090: fragments.doc.tar.xz
  1106. Source1091: fragments.tar.xz
  1107. Source1092: frame.doc.tar.xz
  1108. Source1093: frame.tar.xz
  1109. Source1094: framed.doc.tar.xz
  1110. Source1095: framed.tar.xz
  1111. Source1096: frankenstein.doc.tar.xz
  1112. Source1097: frankenstein.source.tar.xz
  1113. Source1098: frankenstein.tar.xz
  1114. Source1099: frege.doc.tar.xz
  1115. Source1100: frege.tar.xz
  1116. Source1101: ftcap.doc.tar.xz
  1117. Source1102: ftcap.tar.xz
  1118. Source1103: ftnxtra.doc.tar.xz
  1119. Source1104: ftnxtra.source.tar.xz
  1120. Source1105: ftnxtra.tar.xz
  1121. Source1106: fullblck.doc.tar.xz
  1122. Source1107: fullblck.source.tar.xz
  1123. Source1108: fullblck.tar.xz
  1124. Source1109: fullminipage.doc.tar.xz
  1125. Source1110: fullminipage.source.tar.xz
  1126. Source1111: fullminipage.tar.xz
  1127. Source1112: fullwidth.doc.tar.xz
  1128. Source1113: fullwidth.tar.xz
  1129. Source1114: fundus-calligra.doc.tar.xz
  1130. Source1115: fundus-calligra.source.tar.xz
  1131. Source1116: fundus-calligra.tar.xz
  1132. Source1117: fundus-cyr.tar.xz
  1133. Source1118: fundus-sueterlin.doc.tar.xz
  1134. Source1119: fundus-sueterlin.source.tar.xz
  1135. Source1120: fundus-sueterlin.tar.xz
  1136. Source1121: fwlw.doc.tar.xz
  1137. Source1122: fwlw.tar.xz
  1138. Source1123: g-brief.doc.tar.xz
  1139. Source1124: g-brief.source.tar.xz
  1140. Source1125: g-brief.tar.xz
  1141. Source1126: gauss.doc.tar.xz
  1142. Source1127: gauss.tar.xz
  1143. Source1128: gcard.doc.tar.xz
  1144. Source1129: gcard.tar.xz
  1145. Source1130: gcite.doc.tar.xz
  1146. Source1131: gcite.source.tar.xz
  1147. Source1132: gcite.tar.xz
  1148. Source1133: gender.doc.tar.xz
  1149. Source1134: gender.source.tar.xz
  1150. Source1135: gender.tar.xz
  1151. Source1136: genmpage.doc.tar.xz
  1152. Source1137: genmpage.source.tar.xz
  1153. Source1138: genmpage.tar.xz
  1154. Source1139: getfiledate.doc.tar.xz
  1155. Source1140: getfiledate.tar.xz
  1156. Source1141: getitems.doc.tar.xz
  1157. Source1142: getitems.source.tar.xz
  1158. Source1143: getitems.tar.xz
  1159. Source1144: ginpenc.doc.tar.xz
  1160. Source1145: ginpenc.source.tar.xz
  1161. Source1146: ginpenc.tar.xz
  1162. Source1147: gitinfo.doc.tar.xz
  1163. Source1148: gitinfo.tar.xz
  1164. Source1149: gitinfo2.doc.tar.xz
  1165. Source1150: gitinfo2.tar.xz
  1166. Source1151: gitlog.doc.tar.xz
  1167. Source1152: gitlog.tar.xz
  1168. Source1153: gloss.doc.tar.xz
  1169. Source1154: gloss.tar.xz
  1170. Source1155: glossaries.doc.tar.xz
  1171. Source1156: glossaries.source.tar.xz
  1172. Source1157: glossaries.tar.xz
  1173. Source1158: glossaries-danish.doc.tar.xz
  1174. Source1159: glossaries-danish.source.tar.xz
  1175. Source1160: glossaries-danish.tar.xz
  1176. Source1161: glossaries-dutch.doc.tar.xz
  1177. Source1162: glossaries-dutch.source.tar.xz
  1178. Source1163: glossaries-dutch.tar.xz
  1179. Source1164: glossaries-english.doc.tar.xz
  1180. Source1165: glossaries-english.source.tar.xz
  1181. Source1166: glossaries-english.tar.xz
  1182. Source1167: glossaries-extra.doc.tar.xz
  1183. Source1168: glossaries-extra.source.tar.xz
  1184. Source1169: glossaries-extra.tar.xz
  1185. Source1170: glossaries-french.doc.tar.xz
  1186. Source1171: glossaries-french.source.tar.xz
  1187. Source1172: glossaries-french.tar.xz
  1188. Source1173: glossaries-german.doc.tar.xz
  1189. Source1174: glossaries-german.source.tar.xz
  1190. Source1175: glossaries-german.tar.xz
  1191. Source1176: glossaries-irish.doc.tar.xz
  1192. Source1177: glossaries-irish.source.tar.xz
  1193. Source1178: glossaries-irish.tar.xz
  1194. Source1179: glossaries-italian.doc.tar.xz
  1195. Source1180: glossaries-italian.source.tar.xz
  1196. Source1181: glossaries-italian.tar.xz
  1197. Source1182: glossaries-magyar.doc.tar.xz
  1198. Source1183: glossaries-magyar.source.tar.xz
  1199. Source1184: glossaries-magyar.tar.xz
  1200. Source1185: glossaries-polish.doc.tar.xz
  1201. Source1186: glossaries-polish.source.tar.xz
  1202. Source1187: glossaries-polish.tar.xz
  1203. Source1188: glossaries-portuges.doc.tar.xz
  1204. Source1189: glossaries-portuges.source.tar.xz
  1205. Source1190: glossaries-portuges.tar.xz
  1206. Source1191: glossaries-serbian.doc.tar.xz
  1207. Source1192: glossaries-serbian.source.tar.xz
  1208. Source1193: glossaries-serbian.tar.xz
  1209. Source1194: glossaries-spanish.doc.tar.xz
  1210. Source1195: glossaries-spanish.source.tar.xz
  1211. Source1196: glossaries-spanish.tar.xz
  1212. Source1197: gmdoc.doc.tar.xz
  1213. Source1198: gmdoc.tar.xz
  1214. Source1199: gmdoc-enhance.doc.tar.xz
  1215. Source1200: gmdoc-enhance.source.tar.xz
  1216. Source1201: gmdoc-enhance.tar.xz
  1217. Source1202: gmiflink.doc.tar.xz
  1218. Source1203: gmiflink.tar.xz
  1219. Source1204: gmutils.doc.tar.xz
  1220. Source1205: gmutils.tar.xz
  1221. Source1206: gmverb.doc.tar.xz
  1222. Source1207: gmverb.tar.xz
  1223. Source1208: graphbox.doc.tar.xz
  1224. Source1209: graphbox.source.tar.xz
  1225. Source1210: graphbox.tar.xz
  1226. Source1211: graphicx-psmin.doc.tar.xz
  1227. Source1212: graphicx-psmin.source.tar.xz
  1228. Source1213: graphicx-psmin.tar.xz
  1229. Source1214: graphicxbox.doc.tar.xz
  1230. Source1215: graphicxbox.source.tar.xz
  1231. Source1216: graphicxbox.tar.xz
  1232. Source1217: grfpaste.doc.tar.xz
  1233. Source1218: grfpaste.tar.xz
  1234. Source1219: grid.doc.tar.xz
  1235. Source1220: grid.source.tar.xz
  1236. Source1221: grid.tar.xz
  1237. Source1222: grid-system.doc.tar.xz
  1238. Source1223: grid-system.tar.xz
  1239. Source1224: gridset.doc.tar.xz
  1240. Source1225: gridset.source.tar.xz
  1241. Source1226: gridset.tar.xz
  1242. Source1227: guitlogo.doc.tar.xz
  1243. Source1228: guitlogo.source.tar.xz
  1244. Source1229: guitlogo.tar.xz
  1245. Source1230: handout.doc.tar.xz
  1246. Source1231: handout.tar.xz
  1247. Source1232: hang.doc.tar.xz
  1248. Source1233: hang.tar.xz
  1249. Source1234: hanging.doc.tar.xz
  1250. Source1235: hanging.source.tar.xz
  1251. Source1236: hanging.tar.xz
  1252. Source1237: hardwrap.doc.tar.xz
  1253. Source1238: hardwrap.source.tar.xz
  1254. Source1239: hardwrap.tar.xz
  1255. Source1240: harnon-cv.doc.tar.xz
  1256. Source1241: harnon-cv.tar.xz
  1257. Source1242: harpoon.doc.tar.xz
  1258. Source1243: harpoon.tar.xz
  1259. Source1244: hc.doc.tar.xz
  1260. Source1245: hc.source.tar.xz
  1261. Source1246: hc.tar.xz
  1262. Source1247: he-she.doc.tar.xz
  1263. Source1248: he-she.tar.xz
  1264. Source1249: hhtensor.doc.tar.xz
  1265. Source1250: hhtensor.source.tar.xz
  1266. Source1251: hhtensor.tar.xz
  1267. Source1252: histogr.doc.tar.xz
  1268. Source1253: histogr.source.tar.xz
  1269. Source1254: histogr.tar.xz
  1270. Source1255: hitec.doc.tar.xz
  1271. Source1256: hitec.tar.xz
  1272. Source1257: hletter.doc.tar.xz
  1273. Source1258: hletter.tar.xz
  1274. Source1259: hpsdiss.doc.tar.xz
  1275. Source1260: hpsdiss.source.tar.xz
  1276. Source1261: hpsdiss.tar.xz
  1277. Source1262: hrefhide.doc.tar.xz
  1278. Source1263: hrefhide.source.tar.xz
  1279. Source1264: hrefhide.tar.xz
  1280. Source1265: hvindex.doc.tar.xz
  1281. Source1266: hvindex.tar.xz
  1282. Source1267: hypdvips.doc.tar.xz
  1283. Source1268: hypdvips.tar.xz
  1284. Source1269: hyper.doc.tar.xz
  1285. Source1270: hyper.source.tar.xz
  1286. Source1271: hyper.tar.xz
  1287. Source1272: hypernat.doc.tar.xz
  1288. Source1273: hypernat.tar.xz
  1289. Source1274: hyperref-docsrc.doc.tar.xz
  1290. Source1275: hyperref-docsrc.tar.xz
  1291. Source1276: hyperxmp.doc.tar.xz
  1292. Source1277: hyperxmp.source.tar.xz
  1293. Source1278: hyperxmp.tar.xz
  1294. Source1279: hyphenat.doc.tar.xz
  1295. Source1280: hyphenat.source.tar.xz
  1296. Source1281: hyphenat.tar.xz
  1297. Source1282: idxcmds.doc.tar.xz
  1298. Source1283: idxcmds.tar.xz
  1299. Source1284: idxlayout.doc.tar.xz
  1300. Source1285: idxlayout.source.tar.xz
  1301. Source1286: idxlayout.tar.xz
  1302. Source1287: iffont.doc.tar.xz
  1303. Source1288: iffont.source.tar.xz
  1304. Source1289: iffont.tar.xz
  1305. Source1290: ifmslide.doc.tar.xz
  1306. Source1291: ifmslide.tar.xz
  1307. Source1292: ifmtarg.doc.tar.xz
  1308. Source1293: ifmtarg.source.tar.xz
  1309. Source1294: ifmtarg.tar.xz
  1310. Source1295: ifnextok.doc.tar.xz
  1311. Source1296: ifnextok.source.tar.xz
  1312. Source1297: ifnextok.tar.xz
  1313. Source1298: ifoddpage.doc.tar.xz
  1314. Source1299: ifoddpage.source.tar.xz
  1315. Source1300: ifoddpage.tar.xz
  1316. Source1301: ifplatform.doc.tar.xz
  1317. Source1302: ifplatform.source.tar.xz
  1318. Source1303: ifplatform.tar.xz
  1319. Source1304: ifthenx.doc.tar.xz
  1320. Source1305: ifthenx.tar.xz
  1321. Source1306: iitem.doc.tar.xz
  1322. Source1307: iitem.source.tar.xz
  1323. Source1308: iitem.tar.xz
  1324. Source1309: image-gallery.doc.tar.xz
  1325. Source1310: image-gallery.tar.xz
  1326. Source1311: imakeidx.doc.tar.xz
  1327. Source1312: imakeidx.source.tar.xz
  1328. Source1313: imakeidx.tar.xz
  1329. Source1314: import.doc.tar.xz
  1330. Source1315: import.tar.xz
  1331. Source1316: incgraph.doc.tar.xz
  1332. Source1317: incgraph.tar.xz
  1333. Source1318: indextools.doc.tar.xz
  1334. Source1319: indextools.source.tar.xz
  1335. Source1320: indextools.tar.xz
  1336. Source1321: inlinedef.doc.tar.xz
  1337. Source1322: inlinedef.source.tar.xz
  1338. Source1323: inlinedef.tar.xz
  1339. Source1324: inputtrc.doc.tar.xz
  1340. Source1325: inputtrc.source.tar.xz
  1341. Source1326: inputtrc.tar.xz
  1342. Source1327: interactiveworkbook.doc.tar.xz
  1343. Source1328: interactiveworkbook.tar.xz
  1344. Source1329: interfaces.doc.tar.xz
  1345. Source1330: interfaces.source.tar.xz
  1346. Source1331: interfaces.tar.xz
  1347. Source1332: inversepath.doc.tar.xz
  1348. Source1333: inversepath.source.tar.xz
  1349. Source1334: inversepath.tar.xz
  1350. Source1335: invoice.doc.tar.xz
  1351. Source1336: invoice.tar.xz
  1352. Source1337: iso.doc.tar.xz
  1353. Source1338: iso.source.tar.xz
  1354. Source1339: iso.tar.xz
  1355. Source1340: iso10303.doc.tar.xz
  1356. Source1341: iso10303.source.tar.xz
  1357. Source1342: iso10303.tar.xz
  1358. Source1343: isodate.doc.tar.xz
  1359. Source1344: isodate.source.tar.xz
  1360. Source1345: isodate.tar.xz
  1361. Source1346: isodoc.doc.tar.xz
  1362. Source1347: isodoc.source.tar.xz
  1363. Source1348: isodoc.tar.xz
  1364. Source1349: isonums.doc.tar.xz
  1365. Source1350: isonums.tar.xz
  1366. Source1351: isorot.doc.tar.xz
  1367. Source1352: isorot.source.tar.xz
  1368. Source1353: isorot.tar.xz
  1369. Source1354: isotope.doc.tar.xz
  1370. Source1355: isotope.source.tar.xz
  1371. Source1356: isotope.tar.xz
  1372. Source1357: issuulinks.doc.tar.xz
  1373. Source1358: issuulinks.source.tar.xz
  1374. Source1359: issuulinks.tar.xz
  1375. Source1360: iwhdp.doc.tar.xz
  1376. Source1361: iwhdp.tar.xz
  1377. Source1362: jlabels.doc.tar.xz
  1378. Source1363: jlabels.tar.xz
  1379. Source1364: jslectureplanner.doc.tar.xz
  1380. Source1365: jslectureplanner.tar.xz
  1381. Source1366: jumplines.doc.tar.xz
  1382. Source1367: jumplines.tar.xz
  1383. Source1368: jvlisting.doc.tar.xz
  1384. Source1369: jvlisting.source.tar.xz
  1385. Source1370: jvlisting.tar.xz
  1386. Source1371: kantlipsum.doc.tar.xz
  1387. Source1372: kantlipsum.source.tar.xz
  1388. Source1373: kantlipsum.tar.xz
  1389. Source1374: kerntest.doc.tar.xz
  1390. Source1375: kerntest.source.tar.xz
  1391. Source1376: kerntest.tar.xz
  1392. Source1377: keycommand.doc.tar.xz
  1393. Source1378: keycommand.source.tar.xz
  1394. Source1379: keycommand.tar.xz
  1395. Source1380: keyreader.doc.tar.xz
  1396. Source1381: keyreader.tar.xz
  1397. Source1382: keystroke.doc.tar.xz
  1398. Source1383: keystroke.tar.xz
  1399. Source1384: keyval2e.doc.tar.xz
  1400. Source1385: keyval2e.tar.xz
  1401. Source1386: keyvaltable.doc.tar.xz
  1402. Source1387: keyvaltable.source.tar.xz
  1403. Source1388: keyvaltable.tar.xz
  1404. Source1389: kix.doc.tar.xz
  1405. Source1390: kix.tar.xz
  1406. Source1391: koma-moderncvclassic.doc.tar.xz
  1407. Source1392: koma-moderncvclassic.tar.xz
  1408. Source1393: koma-script-sfs.doc.tar.xz
  1409. Source1394: koma-script-sfs.tar.xz
  1410. Source1395: komacv.doc.tar.xz
  1411. Source1396: komacv.source.tar.xz
  1412. Source1397: komacv.tar.xz
  1413. Source1398: ktv-texdata.doc.tar.xz
  1414. Source1399: ktv-texdata.source.tar.xz
  1415. Source1400: ktv-texdata.tar.xz
  1416. Source1401: l3build.doc.tar.xz
  1417. Source1402: l3build.source.tar.xz
  1418. Source1403: l3build.tar.xz
  1419. Source1404: labbook.doc.tar.xz
  1420. Source1405: labbook.source.tar.xz
  1421. Source1406: labbook.tar.xz
  1422. Source1407: labels.doc.tar.xz
  1423. Source1408: labels.source.tar.xz
  1424. Source1409: labels.tar.xz
  1425. Source1410: lastpackage.doc.tar.xz
  1426. Source1411: lastpackage.source.tar.xz
  1427. Source1412: lastpackage.tar.xz
  1428. Source1413: lastpage.doc.tar.xz
  1429. Source1414: lastpage.source.tar.xz
  1430. Source1415: lastpage.tar.xz
  1431. Source1416: latex-tds.doc.tar.xz
  1432. Source1417: latex-tds.source.tar.xz
  1433. Source1418: latex-tds.tar.xz
  1434. Source1419: latexdemo.doc.tar.xz
  1435. Source1420: latexdemo.source.tar.xz
  1436. Source1421: latexdemo.tar.xz
  1437. Source1422: layouts.doc.tar.xz
  1438. Source1423: layouts.source.tar.xz
  1439. Source1424: layouts.tar.xz
  1440. Source1425: lazylist.doc.tar.xz
  1441. Source1426: lazylist.tar.xz
  1442. Source1427: lcd.doc.tar.xz
  1443. Source1428: lcd.source.tar.xz
  1444. Source1429: lcd.tar.xz
  1445. Source1430: lcg.doc.tar.xz
  1446. Source1431: lcg.source.tar.xz
  1447. Source1432: lcg.tar.xz
  1448. Source1433: leading.doc.tar.xz
  1449. Source1434: leading.source.tar.xz
  1450. Source1435: leading.tar.xz
  1451. Source1436: leaflet.doc.tar.xz
  1452. Source1437: leaflet.source.tar.xz
  1453. Source1438: leaflet.tar.xz
  1454. Source1439: leftidx.doc.tar.xz
  1455. Source1440: leftidx.source.tar.xz
  1456. Source1441: leftidx.tar.xz
  1457. Source1442: lengthconvert.doc.tar.xz
  1458. Source1443: lengthconvert.source.tar.xz
  1459. Source1444: lengthconvert.tar.xz
  1460. Source1445: lettre.doc.tar.xz
  1461. Source1446: lettre.tar.xz
  1462. Source1447: lettrine.doc.tar.xz
  1463. Source1448: lettrine.source.tar.xz
  1464. Source1449: lettrine.tar.xz
  1465. Source1450: lewis.doc.tar.xz
  1466. Source1451: lewis.tar.xz
  1467. Source1452: lhelp.doc.tar.xz
  1468. Source1453: lhelp.source.tar.xz
  1469. Source1454: lhelp.tar.xz
  1470. Source1455: libgreek.doc.tar.xz
  1471. Source1456: libgreek.source.tar.xz
  1472. Source1457: libgreek.tar.xz
  1473. Source1458: limap.source.tar.xz
  1474. Source1459: limap.tar.xz
  1475. Source1460: linegoal.doc.tar.xz
  1476. Source1461: linegoal.source.tar.xz
  1477. Source1462: linegoal.tar.xz
  1478. Source1463: lipsum.doc.tar.xz
  1479. Source1464: lipsum.source.tar.xz
  1480. Source1465: lipsum.tar.xz
  1481. Source1466: lisp-on-tex.doc.tar.xz
  1482. Source1467: lisp-on-tex.tar.xz
  1483. Source1468: listing.doc.tar.xz
  1484. Source1469: listing.tar.xz
  1485. Source1470: listlbls.doc.tar.xz
  1486. Source1471: listlbls.source.tar.xz
  1487. Source1472: listlbls.tar.xz
  1488. Source1473: listliketab.doc.tar.xz
  1489. Source1474: listliketab.source.tar.xz
  1490. Source1475: listliketab.tar.xz
  1491. Source1476: listofsymbols.doc.tar.xz
  1492. Source1477: listofsymbols.source.tar.xz
  1493. Source1478: listofsymbols.tar.xz
  1494. Source1479: lkproof.doc.tar.xz
  1495. Source1480: lkproof.tar.xz
  1496. Source1481: lmake.doc.tar.xz
  1497. Source1482: lmake.source.tar.xz
  1498. Source1483: lmake.tar.xz
  1499. Source1484: locality.doc.tar.xz
  1500. Source1485: locality.source.tar.xz
  1501. Source1486: locality.tar.xz
  1502. Source1487: localloc.doc.tar.xz
  1503. Source1488: localloc.source.tar.xz
  1504. Source1489: localloc.tar.xz
  1505. Source1490: logbox.doc.tar.xz
  1506. Source1491: logbox.source.tar.xz
  1507. Source1492: logbox.tar.xz
  1508. Source1493: logical-markup-utils.doc.tar.xz
  1509. Source1494: logical-markup-utils.tar.xz
  1510. Source1495: logpap.doc.tar.xz
  1511. Source1496: logpap.source.tar.xz
  1512. Source1497: logpap.tar.xz
  1513. Source1498: longfbox.doc.tar.xz
  1514. Source1499: longfbox.tar.xz
  1515. Source1500: longfigure.doc.tar.xz
  1516. Source1501: longfigure.source.tar.xz
  1517. Source1502: longfigure.tar.xz
  1518. Source1503: longnamefilelist.doc.tar.xz
  1519. Source1504: longnamefilelist.source.tar.xz
  1520. Source1505: longnamefilelist.tar.xz
  1521. Source1506: loops.doc.tar.xz
  1522. Source1507: loops.tar.xz
  1523. Source1508: lsc.doc.tar.xz
  1524. Source1509: lsc.tar.xz
  1525. Source1510: lstaddons.doc.tar.xz
  1526. Source1511: lstaddons.source.tar.xz
  1527. Source1512: lstaddons.tar.xz
  1528. Source1513: lt3graph.doc.tar.xz
  1529. Source1514: lt3graph.tar.xz
  1530. Source1515: ltablex.doc.tar.xz
  1531. Source1516: ltablex.tar.xz
  1532. Source1517: ltabptch.doc.tar.xz
  1533. Source1518: ltabptch.tar.xz
  1534. Source1519: ltxdockit.doc.tar.xz
  1535. Source1520: ltxdockit.tar.xz
  1536. Source1521: ltxindex.doc.tar.xz
  1537. Source1522: ltxindex.source.tar.xz
  1538. Source1523: ltxindex.tar.xz
  1539. Source1524: ltxkeys.doc.tar.xz
  1540. Source1525: ltxkeys.tar.xz
  1541. Source1526: ltxnew.doc.tar.xz
  1542. Source1527: ltxnew.source.tar.xz
  1543. Source1528: ltxnew.tar.xz
  1544. Source1529: ltxtools.doc.tar.xz
  1545. Source1530: ltxtools.tar.xz
  1546. Source1531: macroswap.doc.tar.xz
  1547. Source1532: macroswap.source.tar.xz
  1548. Source1533: macroswap.tar.xz
  1549. Source1534: magaz.doc.tar.xz
  1550. Source1535: magaz.tar.xz
  1551. Source1536: mailing.doc.tar.xz
  1552. Source1537: mailing.source.tar.xz
  1553. Source1538: mailing.tar.xz
  1554. Source1539: mailmerge.doc.tar.xz
  1555. Source1540: mailmerge.source.tar.xz
  1556. Source1541: mailmerge.tar.xz
  1557. Source1542: makebarcode.doc.tar.xz
  1558. Source1543: makebarcode.tar.xz
  1559. Source1544: makebox.doc.tar.xz
  1560. Source1545: makebox.source.tar.xz
  1561. Source1546: makebox.tar.xz
  1562. Source1547: makecell.doc.tar.xz
  1563. Source1548: makecell.source.tar.xz
  1564. Source1549: makecell.tar.xz
  1565. Source1550: makecirc.doc.tar.xz
  1566. Source1551: makecirc.tar.xz
  1567. Source1552: makecmds.doc.tar.xz
  1568. Source1553: makecmds.source.tar.xz
  1569. Source1554: makecmds.tar.xz
  1570. Source1555: makedtx.doc.tar.xz
  1571. Source1556: makedtx.source.tar.xz
  1572. Source1557: makedtx.tar.xz
  1573. Source1558: makeglos.doc.tar.xz
  1574. Source1559: makeglos.tar.xz
  1575. Source1560: mandi.doc.tar.xz
  1576. Source1561: mandi.source.tar.xz
  1577. Source1562: mandi.tar.xz
  1578. Source1563: manfnt.source.tar.xz
  1579. Source1564: manfnt.tar.xz
  1580. Source1565: manuscript.doc.tar.xz
  1581. Source1566: manuscript.source.tar.xz
  1582. Source1567: manuscript.tar.xz
  1583. Source1568: marginfix.doc.tar.xz
  1584. Source1569: marginfix.source.tar.xz
  1585. Source1570: marginfix.tar.xz
  1586. Source1571: marginnote.doc.tar.xz
  1587. Source1572: marginnote.source.tar.xz
  1588. Source1573: marginnote.tar.xz
  1589. Source1574: mathalfa.doc.tar.xz
  1590. Source1575: mathalfa.tar.xz
  1591. Source1576: mathastext.doc.tar.xz
  1592. Source1577: mathastext.source.tar.xz
  1593. Source1578: mathastext.tar.xz
  1594. Source1579: mathexam.doc.tar.xz
  1595. Source1580: mathexam.source.tar.xz
  1596. Source1581: mathexam.tar.xz
  1597. Source1582: maybemath.doc.tar.xz
  1598. Source1583: maybemath.tar.xz
  1599. Source1584: mbenotes.doc.tar.xz
  1600. Source1585: mbenotes.tar.xz
  1601. Source1586: mcaption.doc.tar.xz
  1602. Source1587: mcaption.source.tar.xz
  1603. Source1588: mcaption.tar.xz
  1604. Source1589: mceinleger.doc.tar.xz
  1605. Source1590: mceinleger.tar.xz
  1606. Source1591: mcite.doc.tar.xz
  1607. Source1592: mcite.source.tar.xz
  1608. Source1593: mcite.tar.xz
  1609. Source1594: mciteplus.doc.tar.xz
  1610. Source1595: mciteplus.tar.xz
  1611. Source1596: mdframed.doc.tar.xz
  1612. Source1597: mdframed.source.tar.xz
  1613. Source1598: mdframed.tar.xz
  1614. Source1599: media9.doc.tar.xz
  1615. Source1600: media9.source.tar.xz
  1616. Source1601: media9.tar.xz
  1617. Source1602: medstarbeamer.doc.tar.xz
  1618. Source1603: medstarbeamer.tar.xz
  1619. Source1604: meetingmins.doc.tar.xz
  1620. Source1605: meetingmins.source.tar.xz
  1621. Source1606: meetingmins.tar.xz
  1622. Source1607: memexsupp.doc.tar.xz
  1623. Source1608: memexsupp.tar.xz
  1624. Source1609: memory.doc.tar.xz
  1625. Source1610: memory.source.tar.xz
  1626. Source1611: memory.tar.xz
  1627. Source1612: menu.doc.tar.xz
  1628. Source1613: menu.source.tar.xz
  1629. Source1614: menu.tar.xz
  1630. Source1615: menukeys.doc.tar.xz
  1631. Source1616: menukeys.source.tar.xz
  1632. Source1617: menukeys.tar.xz
  1633. Source1618: method.doc.tar.xz
  1634. Source1619: method.source.tar.xz
  1635. Source1620: method.tar.xz
  1636. Source1621: metre.doc.tar.xz
  1637. Source1622: metre.source.tar.xz
  1638. Source1623: metre.tar.xz
  1639. Source1624: mfirstuc.doc.tar.xz
  1640. Source1625: mfirstuc.source.tar.xz
  1641. Source1626: mfirstuc.tar.xz
  1642. Source1627: mftinc.doc.tar.xz
  1643. Source1628: mftinc.source.tar.xz
  1644. Source1629: mftinc.tar.xz
  1645. Source1630: midpage.doc.tar.xz
  1646. Source1631: midpage.tar.xz
  1647. Source1632: minibox.doc.tar.xz
  1648. Source1633: minibox.source.tar.xz
  1649. Source1634: minibox.tar.xz
  1650. Source1635: minifp.doc.tar.xz
  1651. Source1636: minifp.source.tar.xz
  1652. Source1637: minifp.tar.xz
  1653. Source1638: minipage-marginpar.doc.tar.xz
  1654. Source1639: minipage-marginpar.source.tar.xz
  1655. Source1640: minipage-marginpar.tar.xz
  1656. Source1641: minitoc.doc.tar.xz
  1657. Source1642: minitoc.tar.xz
  1658. Source1643: minorrevision.doc.tar.xz
  1659. Source1644: minorrevision.tar.xz
  1660. Source1645: minted.doc.tar.xz
  1661. Source1646: minted.source.tar.xz
  1662. Source1647: minted.tar.xz
  1663. Source1648: minutes.doc.tar.xz
  1664. Source1649: minutes.source.tar.xz
  1665. Source1650: minutes.tar.xz
  1666. Source1651: mla-paper.doc.tar.xz
  1667. Source1652: mla-paper.tar.xz
  1668. Source1653: mlist.doc.tar.xz
  1669. Source1654: mlist.source.tar.xz
  1670. Source1655: mlist.tar.xz
  1671. Source1656: mmap.doc.tar.xz
  1672. Source1657: mmap.tar.xz
  1673. Source1658: mnotes.doc.tar.xz
  1674. Source1659: mnotes.source.tar.xz
  1675. Source1660: mnotes.tar.xz
  1676. Source1661: moderncv.doc.tar.xz
  1677. Source1662: moderncv.tar.xz
  1678. Source1663: moderntimeline.doc.tar.xz
  1679. Source1664: moderntimeline.source.tar.xz
  1680. Source1665: moderntimeline.tar.xz
  1681. Source1666: modref.doc.tar.xz
  1682. Source1667: modref.source.tar.xz
  1683. Source1668: modref.tar.xz
  1684. Source1669: modroman.doc.tar.xz
  1685. Source1670: modroman.source.tar.xz
  1686. Source1671: modroman.tar.xz
  1687. Source1672: monofill.doc.tar.xz
  1688. Source1673: monofill.source.tar.xz
  1689. Source1674: monofill.tar.xz
  1690. Source1675: moodle.doc.tar.xz
  1691. Source1676: moodle.source.tar.xz
  1692. Source1677: moodle.tar.xz
  1693. Source1678: moreenum.doc.tar.xz
  1694. Source1679: moreenum.tar.xz
  1695. Source1680: morefloats.doc.tar.xz
  1696. Source1681: morefloats.source.tar.xz
  1697. Source1682: morefloats.tar.xz
  1698. Source1683: morehype.doc.tar.xz
  1699. Source1684: morehype.source.tar.xz
  1700. Source1685: morehype.tar.xz
  1701. Source1686: moresize.doc.tar.xz
  1702. Source1687: moresize.source.tar.xz
  1703. Source1688: moresize.tar.xz
  1704. Source1689: moreverb.doc.tar.xz
  1705. Source1690: moreverb.source.tar.xz
  1706. Source1691: moreverb.tar.xz
  1707. Source1692: morewrites.doc.tar.xz
  1708. Source1693: morewrites.source.tar.xz
  1709. Source1694: morewrites.tar.xz
  1710. Source1695: movie15.doc.tar.xz
  1711. Source1696: movie15.tar.xz
  1712. Source1697: mparhack.doc.tar.xz
  1713. Source1698: mparhack.source.tar.xz
  1714. Source1699: mparhack.tar.xz
  1715. Source1700: msc.doc.tar.xz
  1716. Source1701: msc.tar.xz
  1717. Source1702: msg.doc.tar.xz
  1718. Source1703: msg.source.tar.xz
  1719. Source1704: msg.tar.xz
  1720. Source1705: mslapa.doc.tar.xz
  1721. Source1706: mslapa.tar.xz
  1722. Source1707: mtgreek.doc.tar.xz
  1723. Source1708: mtgreek.source.tar.xz
  1724. Source1709: mtgreek.tar.xz
  1725. Source1710: multenum.doc.tar.xz
  1726. Source1711: multenum.tar.xz
  1727. Source1712: multiaudience.doc.tar.xz
  1728. Source1713: multiaudience.source.tar.xz
  1729. Source1714: multiaudience.tar.xz
  1730. Source1715: multibbl.doc.tar.xz
  1731. Source1716: multibbl.source.tar.xz
  1732. Source1717: multibbl.tar.xz
  1733. Source1718: multicap.doc.tar.xz
  1734. Source1719: multicap.source.tar.xz
  1735. Source1720: multicap.tar.xz
  1736. Source1721: multidef.doc.tar.xz
  1737. Source1722: multidef.source.tar.xz
  1738. Source1723: multidef.tar.xz
  1739. Source1724: multienv.doc.tar.xz
  1740. Source1725: multienv.source.tar.xz
  1741. Source1726: multienv.tar.xz
  1742. Source1727: multiexpand.doc.tar.xz
  1743. Source1728: multiexpand.source.tar.xz
  1744. Source1729: multiexpand.tar.xz
  1745. Source1730: multirow.doc.tar.xz
  1746. Source1731: multirow.tar.xz
  1747. Source1732: mversion.doc.tar.xz
  1748. Source1733: mversion.source.tar.xz
  1749. Source1734: mversion.tar.xz
  1750. Source1735: mwe.doc.tar.xz
  1751. Source1736: mwe.source.tar.xz
  1752. Source1737: mwe.tar.xz
  1753. Source1738: mycv.doc.tar.xz
  1754. Source1739: mycv.source.tar.xz
  1755. Source1740: mycv.tar.xz
  1756. Source1741: mylatexformat.doc.tar.xz
  1757. Source1742: mylatexformat.source.tar.xz
  1758. Source1743: mylatexformat.tar.xz
  1759. Source1744: nag.doc.tar.xz
  1760. Source1745: nag.source.tar.xz
  1761. Source1746: nag.tar.xz
  1762. Source1747: nameauth.doc.tar.xz
  1763. Source1748: nameauth.source.tar.xz
  1764. Source1749: nameauth.tar.xz
  1765. Source1750: namespc.doc.tar.xz
  1766. Source1751: namespc.source.tar.xz
  1767. Source1752: namespc.tar.xz
  1768. Source1753: ncclatex.doc.tar.xz
  1769. Source1754: ncclatex.tar.xz
  1770. Source1755: ncctools.doc.tar.xz
  1771. Source1756: ncctools.source.tar.xz
  1772. Source1757: ncctools.tar.xz
  1773. Source1758: needspace.doc.tar.xz
  1774. Source1759: needspace.source.tar.xz
  1775. Source1760: needspace.tar.xz
  1776. Source1761: nestquot.tar.xz
  1777. Source1762: newcommand.doc.tar.xz
  1778. Source1763: newcommand.tar.xz
  1779. Source1764: newenviron.doc.tar.xz
  1780. Source1765: newenviron.tar.xz
  1781. Source1766: newfile.doc.tar.xz
  1782. Source1767: newfile.source.tar.xz
  1783. Source1768: newfile.tar.xz
  1784. Source1769: newlfm.doc.tar.xz
  1785. Source1770: newlfm.source.tar.xz
  1786. Source1771: newlfm.tar.xz
  1787. Source1772: newspaper.doc.tar.xz
  1788. Source1773: newspaper.source.tar.xz
  1789. Source1774: newspaper.tar.xz
  1790. Source1775: newunicodechar.doc.tar.xz
  1791. Source1776: newunicodechar.source.tar.xz
  1792. Source1777: newunicodechar.tar.xz
  1793. Source1778: newvbtm.doc.tar.xz
  1794. Source1779: newvbtm.source.tar.xz
  1795. Source1780: newvbtm.tar.xz
  1796. Source1781: newverbs.doc.tar.xz
  1797. Source1782: newverbs.source.tar.xz
  1798. Source1783: newverbs.tar.xz
  1799. Source1784: nextpage.tar.xz
  1800. Source1785: nfssext-cfr.doc.tar.xz
  1801. Source1786: nfssext-cfr.tar.xz
  1802. Source1787: nicefilelist.doc.tar.xz
  1803. Source1788: nicefilelist.source.tar.xz
  1804. Source1789: nicefilelist.tar.xz
  1805. Source1790: niceframe.doc.tar.xz
  1806. Source1791: niceframe.source.tar.xz
  1807. Source1792: niceframe.tar.xz
  1808. Source1793: nicetext.doc.tar.xz
  1809. Source1794: nicetext.source.tar.xz
  1810. Source1795: nicetext.tar.xz
  1811. Source1796: nlctdoc.doc.tar.xz
  1812. Source1797: nlctdoc.tar.xz
  1813. Source1798: noconflict.doc.tar.xz
  1814. Source1799: noconflict.tar.xz
  1815. Source1800: noindentafter.doc.tar.xz
  1816. Source1801: noindentafter.tar.xz
  1817. Source1802: noitcrul.doc.tar.xz
  1818. Source1803: noitcrul.source.tar.xz
  1819. Source1804: noitcrul.tar.xz
  1820. Source1805: nolbreaks.doc.tar.xz
  1821. Source1806: nolbreaks.tar.xz
  1822. Source1807: nomencl.doc.tar.xz
  1823. Source1808: nomencl.source.tar.xz
  1824. Source1809: nomencl.tar.xz
  1825. Source1810: nomentbl.doc.tar.xz
  1826. Source1811: nomentbl.source.tar.xz
  1827. Source1812: nomentbl.tar.xz
  1828. Source1813: nonfloat.doc.tar.xz
  1829. Source1814: nonfloat.source.tar.xz
  1830. Source1815: nonfloat.tar.xz
  1831. Source1816: nonumonpart.doc.tar.xz
  1832. Source1817: nonumonpart.source.tar.xz
  1833. Source1818: nonumonpart.tar.xz
  1834. Source1819: nopageno.doc.tar.xz
  1835. Source1820: nopageno.tar.xz
  1836. Source1821: normalcolor.doc.tar.xz
  1837. Source1822: normalcolor.source.tar.xz
  1838. Source1823: normalcolor.tar.xz
  1839. Source1824: notes.doc.tar.xz
  1840. Source1825: notes.source.tar.xz
  1841. Source1826: notes.tar.xz
  1842. Source1827: notoccite.doc.tar.xz
  1843. Source1828: notoccite.tar.xz
  1844. Source1829: nowidow.doc.tar.xz
  1845. Source1830: nowidow.source.tar.xz
  1846. Source1831: nowidow.tar.xz
  1847. Source1832: nox.doc.tar.xz
  1848. Source1833: nox.tar.xz
  1849. Source1834: ntheorem.doc.tar.xz
  1850. Source1835: ntheorem.source.tar.xz
  1851. Source1836: ntheorem.tar.xz
  1852. Source1837: numberedblock.doc.tar.xz
  1853. Source1838: numberedblock.tar.xz
  1854. Source1839: numname.doc.tar.xz
  1855. Source1840: numname.tar.xz
  1856. Source1841: numprint.doc.tar.xz
  1857. Source1842: numprint.source.tar.xz
  1858. Source1843: numprint.tar.xz
  1859. Source1844: ocg-p.doc.tar.xz
  1860. Source1845: ocg-p.tar.xz
  1861. Source1846: ocgx.doc.tar.xz
  1862. Source1847: ocgx.source.tar.xz
  1863. Source1848: ocgx.tar.xz
  1864. Source1849: ocgx2.doc.tar.xz
  1865. Source1850: ocgx2.tar.xz
  1866. Source1851: ocr-latex.doc.tar.xz
  1867. Source1852: ocr-latex.tar.xz
  1868. Source1853: octavo.doc.tar.xz
  1869. Source1854: octavo.source.tar.xz
  1870. Source1855: octavo.tar.xz
  1871. Source1856: oldstyle.doc.tar.xz
  1872. Source1857: oldstyle.source.tar.xz
  1873. Source1858: oldstyle.tar.xz
  1874. Source1859: onlyamsmath.doc.tar.xz
  1875. Source1860: onlyamsmath.source.tar.xz
  1876. Source1861: onlyamsmath.tar.xz
  1877. Source1862: opcit.doc.tar.xz
  1878. Source1863: opcit.source.tar.xz
  1879. Source1864: opcit.tar.xz
  1880. Source1865: optional.doc.tar.xz
  1881. Source1866: optional.tar.xz
  1882. Source1867: options.doc.tar.xz
  1883. Source1868: options.tar.xz
  1884. Source1869: outline.doc.tar.xz
  1885. Source1870: outline.tar.xz
  1886. Source1871: outliner.doc.tar.xz
  1887. Source1872: outliner.tar.xz
  1888. Source1873: outlines.doc.tar.xz
  1889. Source1874: outlines.tar.xz
  1890. Source1875: overpic.doc.tar.xz
  1891. Source1876: overpic.tar.xz
  1892. Source1877: pagecolor.doc.tar.xz
  1893. Source1878: pagecolor.source.tar.xz
  1894. Source1879: pagecolor.tar.xz
  1895. Source1880: pagecont.doc.tar.xz
  1896. Source1881: pagecont.source.tar.xz
  1897. Source1882: pagecont.tar.xz
  1898. Source1883: pagenote.doc.tar.xz
  1899. Source1884: pagenote.source.tar.xz
  1900. Source1885: pagenote.tar.xz
  1901. Source1886: pagerange.doc.tar.xz
  1902. Source1887: pagerange.tar.xz
  1903. Source1888: pageslts.doc.tar.xz
  1904. Source1889: pageslts.source.tar.xz
  1905. Source1890: pageslts.tar.xz
  1906. Source1891: paper.doc.tar.xz
  1907. Source1892: paper.source.tar.xz
  1908. Source1893: paper.tar.xz
  1909. Source1894: papercdcase.doc.tar.xz
  1910. Source1895: papercdcase.source.tar.xz
  1911. Source1896: papercdcase.tar.xz
  1912. Source1897: papermas.doc.tar.xz
  1913. Source1898: papermas.source.tar.xz
  1914. Source1899: papermas.tar.xz
  1915. Source1900: papertex.doc.tar.xz
  1916. Source1901: papertex.source.tar.xz
  1917. Source1902: papertex.tar.xz
  1918. Source1903: paracol.doc.tar.xz
  1919. Source1904: paracol.source.tar.xz
  1920. Source1905: paracol.tar.xz
  1921. Source1906: parades.doc.tar.xz
  1922. Source1907: parades.tar.xz
  1923. Source1908: paralist.doc.tar.xz
  1924. Source1909: paralist.source.tar.xz
  1925. Source1910: paralist.tar.xz
  1926. Source1911: paresse.doc.tar.xz
  1927. Source1912: paresse.source.tar.xz
  1928. Source1913: paresse.tar.xz
  1929. Source1914: parnotes.doc.tar.xz
  1930. Source1915: parnotes.tar.xz
  1931. Source1916: parselines.doc.tar.xz
  1932. Source1917: parselines.source.tar.xz
  1933. Source1918: parselines.tar.xz
  1934. Source1919: pas-cours.doc.tar.xz
  1935. Source1920: pas-cours.tar.xz
  1936. Source1921: pas-cv.doc.tar.xz
  1937. Source1922: pas-cv.tar.xz
  1938. Source1923: pas-tableur.doc.tar.xz
  1939. Source1924: pas-tableur.tar.xz
  1940. Source1925: patch.source.tar.xz
  1941. Source1926: patch.tar.xz
  1942. Source1927: patchcmd.doc.tar.xz
  1943. Source1928: patchcmd.source.tar.xz
  1944. Source1929: patchcmd.tar.xz
  1945. Source1930: pauldoc.doc.tar.xz
  1946. Source1931: pauldoc.source.tar.xz
  1947. Source1932: pauldoc.tar.xz
  1948. Source1933: pawpict.doc.tar.xz
  1949. Source1934: pawpict.source.tar.xz
  1950. Source1935: pawpict.tar.xz
  1951. Source1936: pax.doc.tar.xz
  1952. Source1937: pax.source.tar.xz
  1953. Source1938: pax.tar.xz
  1954. Source1939: pbox.doc.tar.xz
  1955. Source1940: pbox.source.tar.xz
  1956. Source1941: pbox.tar.xz
  1957. Source1942: pbsheet.doc.tar.xz
  1958. Source1943: pbsheet.source.tar.xz
  1959. Source1944: pbsheet.tar.xz
  1960. Source1945: pdf14.doc.tar.xz
  1961. Source1946: pdf14.source.tar.xz
  1962. Source1947: pdf14.tar.xz
  1963. Source1948: pdfcomment.doc.tar.xz
  1964. Source1949: pdfcomment.tar.xz
  1965. Source1950: pdfcprot.doc.tar.xz
  1966. Source1951: pdfcprot.source.tar.xz
  1967. Source1952: pdfcprot.tar.xz
  1968. Source1953: pdfmarginpar.doc.tar.xz
  1969. Source1954: pdfmarginpar.tar.xz
  1970. Source1955: pdfpagediff.doc.tar.xz
  1971. Source1956: pdfpagediff.tar.xz
  1972. Source1957: pdfscreen.doc.tar.xz
  1973. Source1958: pdfscreen.tar.xz
  1974. Source1959: pdfslide.doc.tar.xz
  1975. Source1960: pdfslide.tar.xz
  1976. Source1961: pdfsync.doc.tar.xz
  1977. Source1962: pdfsync.tar.xz
  1978. Source1963: pdfwin.doc.tar.xz
  1979. Source1964: pdfwin.tar.xz
  1980. Source1965: pdfx.doc.tar.xz
  1981. Source1966: pdfx.source.tar.xz
  1982. Source1967: pdfx.tar.xz
  1983. Source1968: pecha.doc.tar.xz
  1984. Source1969: pecha.tar.xz
  1985. Source1970: perltex.doc.tar.xz
  1986. Source1971: perltex.source.tar.xz
  1987. Source1972: perltex.tar.xz
  1988. Source1973: permute.doc.tar.xz
  1989. Source1974: permute.source.tar.xz
  1990. Source1975: permute.tar.xz
  1991. Source1976: petiteannonce.doc.tar.xz
  1992. Source1977: petiteannonce.tar.xz
  1993. Source1978: philex.doc.tar.xz
  1994. Source1979: philex.tar.xz
  1995. Source1980: photo.doc.tar.xz
  1996. Source1981: photo.source.tar.xz
  1997. Source1982: photo.tar.xz
  1998. Source1983: piff.doc.tar.xz
  1999. Source1984: piff.tar.xz
  2000. Source1985: pkgloader.doc.tar.xz
  2001. Source1986: pkgloader.tar.xz
  2002. Source1987: placeins.doc.tar.xz
  2003. Source1988: placeins.tar.xz
  2004. Source1989: plantslabels.doc.tar.xz
  2005. Source1990: plantslabels.tar.xz
  2006. Source1991: plates.doc.tar.xz
  2007. Source1992: plates.tar.xz
  2008. Source1993: plweb.doc.tar.xz
  2009. Source1994: plweb.source.tar.xz
  2010. Source1995: plweb.tar.xz
  2011. Source1996: polynom.doc.tar.xz
  2012. Source1997: polynom.source.tar.xz
  2013. Source1998: polynom.tar.xz
  2014. Source1999: polynomial.doc.tar.xz
  2015. Source2000: polynomial.source.tar.xz
  2016. Source2001: polynomial.tar.xz
  2017. Source2002: polytable.doc.tar.xz
  2018. Source2003: polytable.source.tar.xz
  2019. Source2004: polytable.tar.xz
  2020. Source2005: postcards.doc.tar.xz
  2021. Source2006: postcards.tar.xz
  2022. Source2007: poster-mac.doc.tar.xz
  2023. Source2008: poster-mac.tar.xz
  2024. Source2009: ppr-prv.doc.tar.xz
  2025. Source2010: ppr-prv.source.tar.xz
  2026. Source2011: ppr-prv.tar.xz
  2027. Source2012: preprint.doc.tar.xz
  2028. Source2013: preprint.source.tar.xz
  2029. Source2014: preprint.tar.xz
  2030. Source2015: pressrelease.doc.tar.xz
  2031. Source2016: pressrelease.source.tar.xz
  2032. Source2017: pressrelease.tar.xz
  2033. Source2018: prettyref.doc.tar.xz
  2034. Source2019: prettyref.source.tar.xz
  2035. Source2020: prettyref.tar.xz
  2036. Source2021: preview.doc.tar.xz
  2037. Source2022: preview.source.tar.xz
  2038. Source2023: preview.tar.xz
  2039. Source2024: printlen.doc.tar.xz
  2040. Source2025: printlen.tar.xz
  2041. Source2026: probsoln.doc.tar.xz
  2042. Source2027: probsoln.source.tar.xz
  2043. Source2028: probsoln.tar.xz
  2044. Source2029: program.doc.tar.xz
  2045. Source2030: program.tar.xz
  2046. Source2031: progress.doc.tar.xz
  2047. Source2032: progress.tar.xz
  2048. Source2033: progressbar.doc.tar.xz
  2049. Source2034: progressbar.tar.xz
  2050. Source2035: proofread.doc.tar.xz
  2051. Source2036: proofread.source.tar.xz
  2052. Source2037: proofread.tar.xz
  2053. Source2038: properties.doc.tar.xz
  2054. Source2039: properties.tar.xz
  2055. Source2040: prosper.doc.tar.xz
  2056. Source2041: prosper.tar.xz
  2057. Source2042: protex.doc.tar.xz
  2058. Source2043: protex.tar.xz
  2059. Source2044: protocol.doc.tar.xz
  2060. Source2045: protocol.source.tar.xz
  2061. Source2046: protocol.tar.xz
  2062. Source2047: psfragx.doc.tar.xz
  2063. Source2048: psfragx.source.tar.xz
  2064. Source2049: psfragx.tar.xz
  2065. Source2050: pst-pdf.doc.tar.xz
  2066. Source2051: pst-pdf.source.tar.xz
  2067. Source2052: pst-pdf.tar.xz
  2068. Source2053: pstool.doc.tar.xz
  2069. Source2054: pstool.source.tar.xz
  2070. Source2055: pstool.tar.xz
  2071. Source2056: pxgreeks.doc.tar.xz
  2072. Source2057: pxgreeks.source.tar.xz
  2073. Source2058: pxgreeks.tar.xz
  2074. Source2059: python.doc.tar.xz
  2075. Source2060: python.tar.xz
  2076. Source2061: qcm.doc.tar.xz
  2077. Source2062: qcm.source.tar.xz
  2078. Source2063: qcm.tar.xz
  2079. Source2064: qstest.doc.tar.xz
  2080. Source2065: qstest.source.tar.xz
  2081. Source2066: qstest.tar.xz
  2082. Source2067: qsymbols.doc.tar.xz
  2083. Source2068: qsymbols.source.tar.xz
  2084. Source2069: qsymbols.tar.xz
  2085. Source2070: quotchap.doc.tar.xz
  2086. Source2071: quotchap.source.tar.xz
  2087. Source2072: quotchap.tar.xz
  2088. Source2073: quoting.doc.tar.xz
  2089. Source2074: quoting.source.tar.xz
  2090. Source2075: quoting.tar.xz
  2091. Source2076: quotmark.doc.tar.xz
  2092. Source2077: quotmark.source.tar.xz
  2093. Source2078: quotmark.tar.xz
  2094. Source2079: ran_toks.doc.tar.xz
  2095. Source2080: ran_toks.source.tar.xz
  2096. Source2081: ran_toks.tar.xz
  2097. Source2082: randtext.doc.tar.xz
  2098. Source2083: randtext.tar.xz
  2099. Source2084: rccol.doc.tar.xz
  2100. Source2085: rccol.source.tar.xz
  2101. Source2086: rccol.tar.xz
  2102. Source2087: rcs-multi.doc.tar.xz
  2103. Source2088: rcs-multi.source.tar.xz
  2104. Source2089: rcs-multi.tar.xz
  2105. Source2090: rcsinfo.doc.tar.xz
  2106. Source2091: rcsinfo.source.tar.xz
  2107. Source2092: rcsinfo.tar.xz
  2108. Source2093: readarray.doc.tar.xz
  2109. Source2094: readarray.tar.xz
  2110. Source2095: realboxes.doc.tar.xz
  2111. Source2096: realboxes.source.tar.xz
  2112. Source2097: realboxes.tar.xz
  2113. Source2098: recipe.doc.tar.xz
  2114. Source2099: recipe.tar.xz
  2115. Source2100: recipebook.doc.tar.xz
  2116. Source2101: recipebook.tar.xz
  2117. Source2102: recipecard.doc.tar.xz
  2118. Source2103: recipecard.source.tar.xz
  2119. Source2104: recipecard.tar.xz
  2120. Source2105: rectopma.doc.tar.xz
  2121. Source2106: rectopma.tar.xz
  2122. Source2107: refcheck.doc.tar.xz
  2123. Source2108: refcheck.tar.xz
  2124. Source2109: refenums.doc.tar.xz
  2125. Source2110: refenums.tar.xz
  2126. Source2111: reflectgraphics.doc.tar.xz
  2127. Source2112: reflectgraphics.source.tar.xz
  2128. Source2113: reflectgraphics.tar.xz
  2129. Source2114: refman.doc.tar.xz
  2130. Source2115: refman.source.tar.xz
  2131. Source2116: refman.tar.xz
  2132. Source2117: refstyle.doc.tar.xz
  2133. Source2118: refstyle.source.tar.xz
  2134. Source2119: refstyle.tar.xz
  2135. Source2120: regcount.doc.tar.xz
  2136. Source2121: regcount.source.tar.xz
  2137. Source2122: regcount.tar.xz
  2138. Source2123: regexpatch.doc.tar.xz
  2139. Source2124: regexpatch.source.tar.xz
  2140. Source2125: regexpatch.tar.xz
  2141. Source2126: register.doc.tar.xz
  2142. Source2127: register.source.tar.xz
  2143. Source2128: register.tar.xz
  2144. Source2129: regstats.doc.tar.xz
  2145. Source2130: regstats.source.tar.xz
  2146. Source2131: regstats.tar.xz
  2147. Source2132: relenc.doc.tar.xz
  2148. Source2133: relenc.source.tar.xz
  2149. Source2134: relenc.tar.xz
  2150. Source2135: relsize.doc.tar.xz
  2151. Source2136: relsize.tar.xz
  2152. Source2137: repeatindex.doc.tar.xz
  2153. Source2138: repeatindex.tar.xz
  2154. Source2139: repltext.doc.tar.xz
  2155. Source2140: repltext.source.tar.xz
  2156. Source2141: repltext.tar.xz
  2157. Source2142: rjlparshap.doc.tar.xz
  2158. Source2143: rjlparshap.source.tar.xz
  2159. Source2144: rjlparshap.tar.xz
  2160. Source2145: rlepsf.doc.tar.xz
  2161. Source2146: rlepsf.tar.xz
  2162. Source2147: rmpage.doc.tar.xz
  2163. Source2148: rmpage.tar.xz
  2164. Source2149: robustcommand.doc.tar.xz
  2165. Source2150: robustcommand.source.tar.xz
  2166. Source2151: robustcommand.tar.xz
  2167. Source2152: robustindex.doc.tar.xz
  2168. Source2153: robustindex.tar.xz
  2169. Source2154: romanbar.doc.tar.xz
  2170. Source2155: romanbar.source.tar.xz
  2171. Source2156: romanbar.tar.xz
  2172. Source2157: romanbarpagenumber.doc.tar.xz
  2173. Source2158: romanbarpagenumber.source.tar.xz
  2174. Source2159: romanbarpagenumber.tar.xz
  2175. Source2160: romanneg.doc.tar.xz
  2176. Source2161: romanneg.tar.xz
  2177. Source2162: romannum.doc.tar.xz
  2178. Source2163: romannum.source.tar.xz
  2179. Source2164: romannum.tar.xz
  2180. Source2165: rotfloat.doc.tar.xz
  2181. Source2166: rotfloat.source.tar.xz
  2182. Source2167: rotfloat.tar.xz
  2183. Source2168: rotpages.doc.tar.xz
  2184. Source2169: rotpages.tar.xz
  2185. Source2170: roundbox.doc.tar.xz
  2186. Source2171: roundbox.tar.xz
  2187. Source2172: rterface.doc.tar.xz
  2188. Source2173: rterface.tar.xz
  2189. Source2174: rtkinenc.doc.tar.xz
  2190. Source2175: rtkinenc.source.tar.xz
  2191. Source2176: rtkinenc.tar.xz
  2192. Source2177: rulercompass.doc.tar.xz
  2193. Source2178: rulercompass.source.tar.xz
  2194. Source2179: rulercompass.tar.xz
  2195. Source2180: rvwrite.doc.tar.xz
  2196. Source2181: rvwrite.tar.xz
  2197. Source2182: sauerj.doc.tar.xz
  2198. Source2183: sauerj.source.tar.xz
  2199. Source2184: sauerj.tar.xz
  2200. Source2185: savefnmark.doc.tar.xz
  2201. Source2186: savefnmark.source.tar.xz
  2202. Source2187: savefnmark.tar.xz
  2203. Source2188: savesym.tar.xz
  2204. Source2189: savetrees.doc.tar.xz
  2205. Source2190: savetrees.source.tar.xz
  2206. Source2191: savetrees.tar.xz
  2207. Source2192: scale.doc.tar.xz
  2208. Source2193: scale.source.tar.xz
  2209. Source2194: scale.tar.xz
  2210. Source2195: scalebar.doc.tar.xz
  2211. Source2196: scalebar.source.tar.xz
  2212. Source2197: scalebar.tar.xz
  2213. Source2198: scalerel.doc.tar.xz
  2214. Source2199: scalerel.tar.xz
  2215. Source2200: scanpages.doc.tar.xz
  2216. Source2201: scanpages.tar.xz
  2217. Source2202: scrlttr2copy.doc.tar.xz
  2218. Source2203: scrlttr2copy.tar.xz
  2219. Source2204: sdrt.doc.tar.xz
  2220. Source2205: sdrt.tar.xz
  2221. Source2206: secdot.doc.tar.xz
  2222. Source2207: secdot.tar.xz
  2223. Source2208: sectionbox.doc.tar.xz
  2224. Source2209: sectionbox.tar.xz
  2225. Source2210: sectsty.doc.tar.xz
  2226. Source2211: sectsty.source.tar.xz
  2227. Source2212: sectsty.tar.xz
  2228. Source2213: seealso.doc.tar.xz
  2229. Source2214: seealso.source.tar.xz
  2230. Source2215: seealso.tar.xz
  2231. Source2216: selectp.doc.tar.xz
  2232. Source2217: selectp.tar.xz
  2233. Source2218: semantic.doc.tar.xz
  2234. Source2219: semantic.source.tar.xz
  2235. Source2220: semantic.tar.xz
  2236. Source2221: semioneside.doc.tar.xz
  2237. Source2222: semioneside.source.tar.xz
  2238. Source2223: semioneside.tar.xz
  2239. Source2224: semproc.doc.tar.xz
  2240. Source2225: semproc.source.tar.xz
  2241. Source2226: semproc.tar.xz
  2242. Source2227: sepfootnotes.doc.tar.xz
  2243. Source2228: sepfootnotes.tar.xz
  2244. Source2229: seqsplit.doc.tar.xz
  2245. Source2230: seqsplit.source.tar.xz
  2246. Source2231: seqsplit.tar.xz
  2247. Source2232: sf298.doc.tar.xz
  2248. Source2233: sf298.source.tar.xz
  2249. Source2234: sf298.tar.xz
  2250. Source2235: sffms.doc.tar.xz
  2251. Source2236: sffms.source.tar.xz
  2252. Source2237: sffms.tar.xz
  2253. Source2238: sfmath.tar.xz
  2254. Source2239: shadethm.doc.tar.xz
  2255. Source2240: shadethm.tar.xz
  2256. Source2241: shadow.doc.tar.xz
  2257. Source2242: shadow.tar.xz
  2258. Source2243: shadowtext.doc.tar.xz
  2259. Source2244: shadowtext.tar.xz
  2260. Source2245: shapepar.doc.tar.xz
  2261. Source2246: shapepar.tar.xz
  2262. Source2247: shdoc.doc.tar.xz
  2263. Source2248: shdoc.source.tar.xz
  2264. Source2249: shdoc.tar.xz
  2265. Source2250: shipunov.doc.tar.xz
  2266. Source2251: shipunov.tar.xz
  2267. Source2252: shorttoc.doc.tar.xz
  2268. Source2253: shorttoc.source.tar.xz
  2269. Source2254: shorttoc.tar.xz
  2270. Source2255: show2e.doc.tar.xz
  2271. Source2256: show2e.source.tar.xz
  2272. Source2257: show2e.tar.xz
  2273. Source2258: showcharinbox.doc.tar.xz
  2274. Source2259: showcharinbox.source.tar.xz
  2275. Source2260: showcharinbox.tar.xz
  2276. Source2261: showdim.doc.tar.xz
  2277. Source2262: showdim.tar.xz
  2278. Source2263: showexpl.doc.tar.xz
  2279. Source2264: showexpl.source.tar.xz
  2280. Source2265: showexpl.tar.xz
  2281. Source2266: showlabels.doc.tar.xz
  2282. Source2267: showlabels.source.tar.xz
  2283. Source2268: showlabels.tar.xz
  2284. Source2269: sidecap.doc.tar.xz
  2285. Source2270: sidecap.source.tar.xz
  2286. Source2271: sidecap.tar.xz
  2287. Source2272: sidenotes.doc.tar.xz
  2288. Source2273: sidenotes.source.tar.xz
  2289. Source2274: sidenotes.tar.xz
  2290. Source2275: silence.doc.tar.xz
  2291. Source2276: silence.source.tar.xz
  2292. Source2277: silence.tar.xz
  2293. Source2278: simplecd.doc.tar.xz
  2294. Source2279: simplecd.source.tar.xz
  2295. Source2280: simplecd.tar.xz
  2296. Source2281: simplecv.doc.tar.xz
  2297. Source2282: simplecv.source.tar.xz
  2298. Source2283: simplecv.tar.xz
  2299. Source2284: sitem.doc.tar.xz
  2300. Source2285: sitem.source.tar.xz
  2301. Source2286: sitem.tar.xz
  2302. Source2287: skb.doc.tar.xz
  2303. Source2288: skb.source.tar.xz
  2304. Source2289: skb.tar.xz
  2305. Source2290: skdoc.doc.tar.xz
  2306. Source2291: skdoc.source.tar.xz
  2307. Source2292: skdoc.tar.xz
  2308. Source2293: skeycommand.doc.tar.xz
  2309. Source2294: skeycommand.tar.xz
  2310. Source2295: skeyval.doc.tar.xz
  2311. Source2296: skeyval.tar.xz
  2312. Source2297: skrapport.doc.tar.xz
  2313. Source2298: skrapport.source.tar.xz
  2314. Source2299: skrapport.tar.xz
  2315. Source2300: slantsc.doc.tar.xz
  2316. Source2301: slantsc.source.tar.xz
  2317. Source2302: slantsc.tar.xz
  2318. Source2303: smalltableof.doc.tar.xz
  2319. Source2304: smalltableof.tar.xz
  2320. Source2305: smartunits.doc.tar.xz
  2321. Source2306: smartunits.tar.xz
  2322. Source2307: smartref.doc.tar.xz
  2323. Source2308: smartref.tar.xz
  2324. Source2309: snapshot.doc.tar.xz
  2325. Source2310: snapshot.source.tar.xz
  2326. Source2311: snapshot.tar.xz
  2327. Source2312: snotez.doc.tar.xz
  2328. Source2313: snotez.tar.xz
  2329. Source2314: soul.doc.tar.xz
  2330. Source2315: soul.source.tar.xz
  2331. Source2316: soul.tar.xz
  2332. Source2317: sparklines.doc.tar.xz
  2333. Source2318: sparklines.tar.xz
  2334. Source2319: sphack.doc.tar.xz
  2335. Source2320: sphack.tar.xz
  2336. Source2321: splitindex.doc.tar.xz
  2337. Source2322: splitindex.source.tar.xz
  2338. Source2323: splitindex.tar.xz
  2339. Source2324: spot.doc.tar.xz
  2340. Source2325: spot.source.tar.xz
  2341. Source2326: spot.tar.xz
  2342. Source2327: spotcolor.doc.tar.xz
  2343. Source2328: spotcolor.tar.xz
  2344. Source2329: spreadtab.doc.tar.xz
  2345. Source2330: spreadtab.tar.xz
  2346. Source2331: spverbatim.doc.tar.xz
  2347. Source2332: spverbatim.source.tar.xz
  2348. Source2333: spverbatim.tar.xz
  2349. Source2334: srbook-mem.doc.tar.xz
  2350. Source2335: srbook-mem.tar.xz
  2351. Source2336: srcltx.doc.tar.xz
  2352. Source2337: srcltx.source.tar.xz
  2353. Source2338: srcltx.tar.xz
  2354. Source2339: sseq.doc.tar.xz
  2355. Source2340: sseq.source.tar.xz
  2356. Source2341: sseq.tar.xz
  2357. Source2342: sslides.doc.tar.xz
  2358. Source2343: sslides.tar.xz
  2359. Source2344: stack.source.tar.xz
  2360. Source2345: stack.tar.xz
  2361. Source2346: stackengine.doc.tar.xz
  2362. Source2347: stackengine.tar.xz
  2363. Source2348: standalone.doc.tar.xz
  2364. Source2349: standalone.source.tar.xz
  2365. Source2350: standalone.tar.xz
  2366. Source2351: statistik.doc.tar.xz
  2367. Source2352: statistik.source.tar.xz
  2368. Source2353: statistik.tar.xz
  2369. Source2354: stdclsdv.doc.tar.xz
  2370. Source2355: stdclsdv.source.tar.xz
  2371. Source2356: stdclsdv.tar.xz
  2372. Source2357: stdpage.doc.tar.xz
  2373. Source2358: stdpage.source.tar.xz
  2374. Source2359: stdpage.tar.xz
  2375. Source2360: stex.doc.tar.xz
  2376. Source2361: stex.source.tar.xz
  2377. Source2362: stex.tar.xz
  2378. Source2363: storebox.doc.tar.xz
  2379. Source2364: storebox.source.tar.xz
  2380. Source2365: storebox.tar.xz
  2381. Source2366: storecmd.doc.tar.xz
  2382. Source2367: storecmd.tar.xz
  2383. Source2368: stringstrings.doc.tar.xz
  2384. Source2369: stringstrings.source.tar.xz
  2385. Source2370: stringstrings.tar.xz
  2386. Source2371: sttools.doc.tar.xz
  2387. Source2372: sttools.source.tar.xz
  2388. Source2373: sttools.tar.xz
  2389. Source2374: stubs.doc.tar.xz
  2390. Source2375: stubs.tar.xz
  2391. Source2376: subdepth.doc.tar.xz
  2392. Source2377: subdepth.source.tar.xz
  2393. Source2378: subdepth.tar.xz
  2394. Source2379: subeqn.doc.tar.xz
  2395. Source2380: subeqn.source.tar.xz
  2396. Source2381: subeqn.tar.xz
  2397. Source2382: subeqnarray.doc.tar.xz
  2398. Source2383: subeqnarray.source.tar.xz
  2399. Source2384: subeqnarray.tar.xz
  2400. Source2385: subfigmat.doc.tar.xz
  2401. Source2386: subfigmat.tar.xz
  2402. Source2387: subfigure.doc.tar.xz
  2403. Source2388: subfigure.source.tar.xz
  2404. Source2389: subfigure.tar.xz
  2405. Source2390: subfiles.doc.tar.xz
  2406. Source2391: subfiles.source.tar.xz
  2407. Source2392: subfiles.tar.xz
  2408. Source2393: subfloat.doc.tar.xz
  2409. Source2394: subfloat.source.tar.xz
  2410. Source2395: subfloat.tar.xz
  2411. Source2396: substitutefont.doc.tar.xz
  2412. Source2397: substitutefont.tar.xz
  2413. Source2398: substr.doc.tar.xz
  2414. Source2399: substr.tar.xz
  2415. Source2400: supertabular.doc.tar.xz
  2416. Source2401: supertabular.source.tar.xz
  2417. Source2402: supertabular.tar.xz
  2418. Source2403: svg.doc.tar.xz
  2419. Source2404: svg.source.tar.xz
  2420. Source2405: svg.tar.xz
  2421. Source2406: svgcolor.doc.tar.xz
  2422. Source2407: svgcolor.tar.xz
  2423. Source2408: svn.doc.tar.xz
  2424. Source2409: svn.source.tar.xz
  2425. Source2410: svn.tar.xz
  2426. Source2411: svn-multi.doc.tar.xz
  2427. Source2412: svn-multi.source.tar.xz
  2428. Source2413: svn-multi.tar.xz
  2429. Source2414: svn-prov.doc.tar.xz
  2430. Source2415: svn-prov.source.tar.xz
  2431. Source2416: svn-prov.tar.xz
  2432. Source2417: svninfo.doc.tar.xz
  2433. Source2418: svninfo.source.tar.xz
  2434. Source2419: svninfo.tar.xz
  2435. Source2420: syntax.doc.tar.xz
  2436. Source2421: syntax.tar.xz
  2437. Source2422: syntrace.doc.tar.xz
  2438. Source2423: syntrace.source.tar.xz
  2439. Source2424: syntrace.tar.xz
  2440. Source2425: synttree.doc.tar.xz
  2441. Source2426: synttree.source.tar.xz
  2442. Source2427: synttree.tar.xz
  2443. Source2428: tabfigures.doc.tar.xz
  2444. Source2429: tabfigures.source.tar.xz
  2445. Source2430: tabfigures.tar.xz
  2446. Source2431: tableaux.doc.tar.xz
  2447. Source2432: tableaux.tar.xz
  2448. Source2433: tablefootnote.doc.tar.xz
  2449. Source2434: tablefootnote.source.tar.xz
  2450. Source2435: tablefootnote.tar.xz
  2451. Source2436: tableof.doc.tar.xz
  2452. Source2437: tableof.source.tar.xz
  2453. Source2438: tableof.tar.xz
  2454. Source2439: tablestyles.doc.tar.xz
  2455. Source2440: tablestyles.source.tar.xz
  2456. Source2441: tablestyles.tar.xz
  2457. Source2442: tablists.doc.tar.xz
  2458. Source2443: tablists.source.tar.xz
  2459. Source2444: tablists.tar.xz
  2460. Source2445: tabls.doc.tar.xz
  2461. Source2446: tabls.tar.xz
  2462. Source2447: tabstackengine.doc.tar.xz
  2463. Source2448: tabstackengine.tar.xz
  2464. Source2449: tabto-ltx.doc.tar.xz
  2465. Source2450: tabto-ltx.tar.xz
  2466. Source2451: tabu.doc.tar.xz
  2467. Source2452: tabu.source.tar.xz
  2468. Source2453: tabu.tar.xz
  2469. Source2454: tabularborder.doc.tar.xz
  2470. Source2455: tabularborder.source.tar.xz
  2471. Source2456: tabularborder.tar.xz
  2472. Source2457: tabularcalc.doc.tar.xz
  2473. Source2458: tabularcalc.tar.xz
  2474. Source2459: tabularew.doc.tar.xz
  2475. Source2460: tabularew.source.tar.xz
  2476. Source2461: tabularew.tar.xz
  2477. Source2462: tabulary.doc.tar.xz
  2478. Source2463: tabulary.source.tar.xz
  2479. Source2464: tabulary.tar.xz
  2480. Source2465: tagging.doc.tar.xz
  2481. Source2466: tagging.tar.xz
  2482. Source2467: tagpair.doc.tar.xz
  2483. Source2468: tagpair.tar.xz
  2484. Source2469: talk.doc.tar.xz
  2485. Source2470: talk.source.tar.xz
  2486. Source2471: talk.tar.xz
  2487. Source2472: tamefloats.doc.tar.xz
  2488. Source2473: tamefloats.tar.xz
  2489. Source2474: tasks.doc.tar.xz
  2490. Source2475: tasks.tar.xz
  2491. Source2476: tcldoc.doc.tar.xz
  2492. Source2477: tcldoc.source.tar.xz
  2493. Source2478: tcldoc.tar.xz
  2494. Source2479: tcolorbox.doc.tar.xz
  2495. Source2480: tcolorbox.tar.xz
  2496. Source2481: tdclock.doc.tar.xz
  2497. Source2482: tdclock.tar.xz
  2498. Source2483: technics.doc.tar.xz
  2499. Source2484: technics.tar.xz
  2500. Source2485: ted.doc.tar.xz
  2501. Source2486: ted.source.tar.xz
  2502. Source2487: ted.tar.xz
  2503. Source2488: templatetools.doc.tar.xz
  2504. Source2489: templatetools.source.tar.xz
  2505. Source2490: templatetools.tar.xz
  2506. Source2491: termcal.doc.tar.xz
  2507. Source2492: termcal.source.tar.xz
  2508. Source2493: termcal.tar.xz
  2509. Source2494: termlist.doc.tar.xz
  2510. Source2495: termlist.source.tar.xz
  2511. Source2496: termlist.tar.xz
  2512. Source2497: testhyphens.doc.tar.xz
  2513. Source2498: testhyphens.source.tar.xz
  2514. Source2499: testhyphens.tar.xz
  2515. Source2500: tex-label.doc.tar.xz
  2516. Source2501: tex-label.source.tar.xz
  2517. Source2502: tex-label.tar.xz
  2518. Source2503: texlogos.tar.xz
  2519. Source2504: texmate.doc.tar.xz
  2520. Source2505: texmate.source.tar.xz
  2521. Source2506: texmate.tar.xz
  2522. Source2507: texments.doc.tar.xz
  2523. Source2508: texments.source.tar.xz
  2524. Source2509: texments.tar.xz
  2525. Source2510: texpower.doc.tar.xz
  2526. Source2511: texpower.source.tar.xz
  2527. Source2512: texpower.tar.xz
  2528. Source2513: texshade.doc.tar.xz
  2529. Source2514: texshade.source.tar.xz
  2530. Source2515: texshade.tar.xz
  2531. Source2516: texvc.doc.tar.xz
  2532. Source2517: texvc.source.tar.xz
  2533. Source2518: texvc.tar.xz
  2534. Source2519: textfit.doc.tar.xz
  2535. Source2520: textfit.source.tar.xz
  2536. Source2521: textfit.tar.xz
  2537. Source2522: textgreek.doc.tar.xz
  2538. Source2523: textgreek.source.tar.xz
  2539. Source2524: textgreek.tar.xz
  2540. Source2525: textmerg.doc.tar.xz
  2541. Source2526: textmerg.source.tar.xz
  2542. Source2527: textmerg.tar.xz
  2543. Source2528: textpos.doc.tar.xz
  2544. Source2529: textpos.source.tar.xz
  2545. Source2530: textpos.tar.xz
  2546. Source2531: theoremref.doc.tar.xz
  2547. Source2532: theoremref.tar.xz
  2548. Source2533: thinsp.doc.tar.xz
  2549. Source2534: thinsp.tar.xz
  2550. Source2535: thmtools.doc.tar.xz
  2551. Source2536: thmtools.source.tar.xz
  2552. Source2537: thmtools.tar.xz
  2553. Source2538: threadcol.doc.tar.xz
  2554. Source2539: threadcol.source.tar.xz
  2555. Source2540: threadcol.tar.xz
  2556. Source2541: threeparttable.doc.tar.xz
  2557. Source2542: threeparttable.tar.xz
  2558. Source2543: threeparttablex.doc.tar.xz
  2559. Source2544: threeparttablex.tar.xz
  2560. Source2545: thumb.doc.tar.xz
  2561. Source2546: thumb.source.tar.xz
  2562. Source2547: thumb.tar.xz
  2563. Source2548: thumbs.doc.tar.xz
  2564. Source2549: thumbs.source.tar.xz
  2565. Source2550: thumbs.tar.xz
  2566. Source2551: thumby.doc.tar.xz
  2567. Source2552: thumby.tar.xz
  2568. Source2553: ticket.doc.tar.xz
  2569. Source2554: ticket.tar.xz
  2570. Source2555: titlecaps.doc.tar.xz
  2571. Source2556: titlecaps.tar.xz
  2572. Source2557: titlefoot.tar.xz
  2573. Source2558: titlepic.doc.tar.xz
  2574. Source2559: titlepic.tar.xz
  2575. Source2560: titleref.doc.tar.xz
  2576. Source2561: titleref.tar.xz
  2577. Source2562: titlesec.doc.tar.xz
  2578. Source2563: titlesec.tar.xz
  2579. Source2564: titling.doc.tar.xz
  2580. Source2565: titling.source.tar.xz
  2581. Source2566: titling.tar.xz
  2582. Source2567: tocbibind.doc.tar.xz
  2583. Source2568: tocbibind.source.tar.xz
  2584. Source2569: tocbibind.tar.xz
  2585. Source2570: tocloft.doc.tar.xz
  2586. Source2571: tocloft.source.tar.xz
  2587. Source2572: tocloft.tar.xz
  2588. Source2573: tocvsec2.doc.tar.xz
  2589. Source2574: tocvsec2.source.tar.xz
  2590. Source2575: tocvsec2.tar.xz
  2591. Source2576: todo.doc.tar.xz
  2592. Source2577: todo.source.tar.xz
  2593. Source2578: todo.tar.xz
  2594. Source2579: todonotes.doc.tar.xz
  2595. Source2580: todonotes.source.tar.xz
  2596. Source2581: todonotes.tar.xz
  2597. Source2582: tokenizer.doc.tar.xz
  2598. Source2583: tokenizer.tar.xz
  2599. Source2584: toolbox.doc.tar.xz
  2600. Source2585: toolbox.source.tar.xz
  2601. Source2586: toolbox.tar.xz
  2602. Source2587: topfloat.doc.tar.xz
  2603. Source2588: topfloat.tar.xz
  2604. Source2589: totcount.doc.tar.xz
  2605. Source2590: totcount.source.tar.xz
  2606. Source2591: totcount.tar.xz
  2607. Source2592: totpages.doc.tar.xz
  2608. Source2593: totpages.source.tar.xz
  2609. Source2594: totpages.tar.xz
  2610. Source2595: translations.doc.tar.xz
  2611. Source2596: translations.tar.xz
  2612. Source2597: trfsigns.doc.tar.xz
  2613. Source2598: trfsigns.source.tar.xz
  2614. Source2599: trfsigns.tar.xz
  2615. Source2600: trimspaces.doc.tar.xz
  2616. Source2601: trimspaces.source.tar.xz
  2617. Source2602: trimspaces.tar.xz
  2618. Source2603: trivfloat.doc.tar.xz
  2619. Source2604: trivfloat.source.tar.xz
  2620. Source2605: trivfloat.tar.xz
  2621. Source2606: trsym.doc.tar.xz
  2622. Source2607: trsym.source.tar.xz
  2623. Source2608: trsym.tar.xz
  2624. Source2609: truncate.doc.tar.xz
  2625. Source2610: truncate.tar.xz
  2626. Source2611: tucv.doc.tar.xz
  2627. Source2612: tucv.source.tar.xz
  2628. Source2613: tucv.tar.xz
  2629. Source2614: turnthepage.doc.tar.xz
  2630. Source2615: turnthepage.tar.xz
  2631. Source2616: twoinone.doc.tar.xz
  2632. Source2617: twoinone.tar.xz
  2633. Source2618: twoup.doc.tar.xz
  2634. Source2619: twoup.source.tar.xz
  2635. Source2620: twoup.tar.xz
  2636. Source2621: txgreeks.doc.tar.xz
  2637. Source2622: txgreeks.source.tar.xz
  2638. Source2623: txgreeks.tar.xz
  2639. Source2624: type1cm.doc.tar.xz
  2640. Source2625: type1cm.source.tar.xz
  2641. Source2626: type1cm.tar.xz
  2642. Source2627: typed-checklist.doc.tar.xz
  2643. Source2628: typed-checklist.source.tar.xz
  2644. Source2629: typed-checklist.tar.xz
  2645. Source2630: typeface.doc.tar.xz
  2646. Source2631: typeface.source.tar.xz
  2647. Source2632: typeface.tar.xz
  2648. Source2633: typogrid.doc.tar.xz
  2649. Source2634: typogrid.source.tar.xz
  2650. Source2635: typogrid.tar.xz
  2651. Source2636: uassign.doc.tar.xz
  2652. Source2637: uassign.tar.xz
  2653. Source2638: ucs.doc.tar.xz
  2654. Source2639: ucs.tar.xz
  2655. Source2640: uebungsblatt.doc.tar.xz
  2656. Source2641: uebungsblatt.tar.xz
  2657. Source2642: umoline.doc.tar.xz
  2658. Source2643: umoline.source.tar.xz
  2659. Source2644: umoline.tar.xz
  2660. Source2645: underlin.doc.tar.xz
  2661. Source2646: underlin.source.tar.xz
  2662. Source2647: underlin.tar.xz
  2663. Source2648: underoverlap.doc.tar.xz
  2664. Source2649: underoverlap.tar.xz
  2665. Source2650: undolabl.doc.tar.xz
  2666. Source2651: undolabl.source.tar.xz
  2667. Source2652: undolabl.tar.xz
  2668. Source2653: units.doc.tar.xz
  2669. Source2654: units.source.tar.xz
  2670. Source2655: units.tar.xz
  2671. Source2656: unravel.doc.tar.xz
  2672. Source2657: unravel.source.tar.xz
  2673. Source2658: unravel.tar.xz
  2674. Source2659: upmethodology.doc.tar.xz
  2675. Source2660: upmethodology.tar.xz
  2676. Source2661: upquote.doc.tar.xz
  2677. Source2662: upquote.source.tar.xz
  2678. Source2663: upquote.tar.xz
  2679. Source2664: uri.doc.tar.xz
  2680. Source2665: uri.source.tar.xz
  2681. Source2666: uri.tar.xz
  2682. Source2667: ushort.doc.tar.xz
  2683. Source2668: ushort.source.tar.xz
  2684. Source2669: ushort.tar.xz
  2685. Source2670: uwmslide.doc.tar.xz
  2686. Source2671: uwmslide.tar.xz
  2687. Source2672: varindex.doc.tar.xz
  2688. Source2673: varindex.source.tar.xz
  2689. Source2674: varindex.tar.xz
  2690. Source2675: varsfromjobname.doc.tar.xz
  2691. Source2676: varsfromjobname.tar.xz
  2692. Source2677: varwidth.doc.tar.xz
  2693. Source2678: varwidth.tar.xz
  2694. Source2679: vdmlisting.doc.tar.xz
  2695. Source2680: vdmlisting.tar.xz
  2696. Source2681: verbasef.doc.tar.xz
  2697. Source2682: verbasef.tar.xz
  2698. Source2683: verbatimbox.doc.tar.xz
  2699. Source2684: verbatimbox.tar.xz
  2700. Source2685: verbatimcopy.doc.tar.xz
  2701. Source2686: verbatimcopy.tar.xz
  2702. Source2687: verbdef.doc.tar.xz
  2703. Source2688: verbdef.tar.xz
  2704. Source2689: verbments.doc.tar.xz
  2705. Source2690: verbments.tar.xz
  2706. Source2691: version.doc.tar.xz
  2707. Source2692: version.tar.xz
  2708. Source2693: versions.doc.tar.xz
  2709. Source2694: versions.tar.xz
  2710. Source2695: versonotes.doc.tar.xz
  2711. Source2696: versonotes.source.tar.xz
  2712. Source2697: versonotes.tar.xz
  2713. Source2698: vertbars.doc.tar.xz
  2714. Source2699: vertbars.source.tar.xz
  2715. Source2700: vertbars.tar.xz
  2716. Source2701: vgrid.doc.tar.xz
  2717. Source2702: vgrid.source.tar.xz
  2718. Source2703: vgrid.tar.xz
  2719. Source2704: vhistory.doc.tar.xz
  2720. Source2705: vhistory.tar.xz
  2721. Source2706: vmargin.doc.tar.xz
  2722. Source2707: vmargin.source.tar.xz
  2723. Source2708: vmargin.tar.xz
  2724. Source2709: volumes.doc.tar.xz
  2725. Source2710: volumes.source.tar.xz
  2726. Source2711: volumes.tar.xz
  2727. Source2712: vpe.doc.tar.xz
  2728. Source2713: vpe.tar.xz
  2729. Source2714: vruler.doc.tar.xz
  2730. Source2715: vruler.tar.xz
  2731. Source2716: vwcol.doc.tar.xz
  2732. Source2717: vwcol.source.tar.xz
  2733. Source2718: vwcol.tar.xz
  2734. Source2719: wallpaper.doc.tar.xz
  2735. Source2720: wallpaper.tar.xz
  2736. Source2721: warning.doc.tar.xz
  2737. Source2722: warning.tar.xz
  2738. Source2723: warpcol.doc.tar.xz
  2739. Source2724: warpcol.source.tar.xz
  2740. Source2725: warpcol.tar.xz
  2741. Source2726: was.doc.tar.xz
  2742. Source2727: was.source.tar.xz
  2743. Source2728: was.tar.xz
  2744. Source2729: widetable.doc.tar.xz
  2745. Source2730: widetable.source.tar.xz
  2746. Source2731: widetable.tar.xz
  2747. Source2732: williams.doc.tar.xz
  2748. Source2733: williams.tar.xz
  2749. Source2734: withargs.doc.tar.xz
  2750. Source2735: withargs.tar.xz
  2751. Source2736: wordlike.doc.tar.xz
  2752. Source2737: wordlike.source.tar.xz
  2753. Source2738: wordlike.tar.xz
  2754. Source2739: wrapfig.doc.tar.xz
  2755. Source2740: wrapfig.tar.xz
  2756. Source2741: xargs.doc.tar.xz
  2757. Source2742: xargs.source.tar.xz
  2758. Source2743: xargs.tar.xz
  2759. Source2744: xassoccnt.doc.tar.xz
  2760. Source2745: xassoccnt.tar.xz
  2761. Source2746: xcolor-solarized.doc.tar.xz
  2762. Source2747: xcolor-solarized.source.tar.xz
  2763. Source2748: xcolor-solarized.tar.xz
  2764. Source2749: xcomment.doc.tar.xz
  2765. Source2750: xcomment.tar.xz
  2766. Source2751: xdoc.doc.tar.xz
  2767. Source2752: xdoc.source.tar.xz
  2768. Source2753: xdoc.tar.xz
  2769. Source2754: xellipsis.doc.tar.xz
  2770. Source2755: xellipsis.source.tar.xz
  2771. Source2756: xellipsis.tar.xz
  2772. Source2757: xfor.doc.tar.xz
  2773. Source2758: xfor.source.tar.xz
  2774. Source2759: xfor.tar.xz
  2775. Source2760: xhfill.doc.tar.xz
  2776. Source2761: xhfill.tar.xz
  2777. Source2762: xifthen.doc.tar.xz
  2778. Source2763: xifthen.tar.xz
  2779. Source2764: xint.doc.tar.xz
  2780. Source2765: xint.source.tar.xz
  2781. Source2766: xint.tar.xz
  2782. Source2767: xmpincl.doc.tar.xz
  2783. Source2768: xmpincl.source.tar.xz
  2784. Source2769: xmpincl.tar.xz
  2785. Source2770: xnewcommand.doc.tar.xz
  2786. Source2771: xnewcommand.tar.xz
  2787. Source2772: xoptarg.doc.tar.xz
  2788. Source2773: xoptarg.tar.xz
  2789. Source2774: xpatch.doc.tar.xz
  2790. Source2775: xpatch.source.tar.xz
  2791. Source2776: xpatch.tar.xz
  2792. Source2777: xpeek.doc.tar.xz
  2793. Source2778: xpeek.source.tar.xz
  2794. Source2779: xpeek.tar.xz
  2795. Source2780: xprintlen.doc.tar.xz
  2796. Source2781: xprintlen.tar.xz
  2797. Source2782: xpunctuate.doc.tar.xz
  2798. Source2783: xpunctuate.source.tar.xz
  2799. Source2784: xpunctuate.tar.xz
  2800. Source2785: xsavebox.doc.tar.xz
  2801. Source2786: xsavebox.source.tar.xz
  2802. Source2787: xsavebox.tar.xz
  2803. Source2788: xstring.doc.tar.xz
  2804. Source2789: xstring.tar.xz
  2805. Source2790: xtab.doc.tar.xz
  2806. Source2791: xtab.source.tar.xz
  2807. Source2792: xtab.tar.xz
  2808. Source2793: xwatermark.doc.tar.xz
  2809. Source2794: xwatermark.tar.xz
  2810. Source2795: xytree.doc.tar.xz
  2811. Source2796: xytree.tar.xz
  2812. Source2797: yafoot.doc.tar.xz
  2813. Source2798: yafoot.source.tar.xz
  2814. Source2799: yafoot.tar.xz
  2815. Source2800: yagusylo.doc.tar.xz
  2816. Source2801: yagusylo.source.tar.xz
  2817. Source2802: yagusylo.tar.xz
  2818. Source2803: ycbook.doc.tar.xz
  2819. Source2804: ycbook.tar.xz
  2820. Source2805: ydoc.doc.tar.xz
  2821. Source2806: ydoc.source.tar.xz
  2822. Source2807: ydoc.tar.xz
  2823. Source2808: yplan.doc.tar.xz
  2824. Source2809: yplan.tar.xz
  2825. Source2810: zed-csp.doc.tar.xz
  2826. Source2811: zed-csp.tar.xz
  2827. Source2812: ziffer.doc.tar.xz
  2828. Source2813: ziffer.tar.xz
  2829. Source2814: zwgetfdate.doc.tar.xz
  2830. Source2815: zwgetfdate.tar.xz
  2831. Source2816: zwpagelayout.doc.tar.xz
  2832. Source2817: zwpagelayout.tar.xz
  2833. Requires: texlive = %{version}
  2834. Requires: texlive-collection-latexrecommended = %{version}
  2835. Requires: texlive-collection-pictures = %{version}
  2836. Requires(post): texlive = %{version}
  2837. Requires(postun): texlive = %{version}
  2838. BuildArch: noarch
  2839. Buildroot: %{_tmppath}/%{name}-%{version}-root
  2840. Vendor: Project Vine
  2841. Distribution: Vine Linux
  2842. Packager: munepi
  2843. %description
  2844. The TeX Live software distribution offers a complete TeX system for a
  2845. variety of Unix, Macintosh, Windows and other platforms. It
  2846. encompasses programs for editing, typesetting, previewing and printing
  2847. of TeX documents in many different languages, and a large collection
  2848. of TeX macros and font libraries.
  2849. The distribution includes extensive general documentation about TeX,
  2850. as well as the documentation for the included software packages.
  2851. This package is a collection of LaTeX additional packages:
  2852. A very large collection of add-on packages for LaTeX.
  2853. This package contains the following CTAN packages:
  2854. 2up:
  2855. ESIEEcv: Curriculum vitae for French use
  2856. GS1: Typeset EAN barcodes using TeX rules, only
  2857. HA-prosper: Patches and improvements for prosper
  2858. Tabbing: Tabbing with accented letters
  2859. a0poster: Support for designing posters on large paper
  2860. a4wide: "Wide" a4 layout
  2861. a5comb: Support for a5 paper sizes
  2862. abraces: Asymmetric over-/underbraces in maths
  2863. abstract: Control the typesetting of the abstract environment
  2864. achemso: Support for American Chemical Society journal submissions
  2865. acro: Typeset acronyms
  2866. acronym: Expand acronyms at least once
  2867. acroterm: Manage and index acronyms and terms
  2868. actuarialangle: Symbol for use in "present value" statements of an annuity
  2869. addlines: A user-friendly wrapper around enlargethispage
  2870. adjmulticol: Adjusting margins for multicolumn and single column output
  2871. adjustbox: Graphics package-alike macros for "general" boxes
  2872. adrconv: BibTeX styles to implement an address database
  2873. advdate: Print a date relative to "today"
  2874. akktex: A collection of packages and classes
  2875. akletter: Comprehensive letter support
  2876. alertmessage: Alert messages for LaTeX
  2877. alnumsec: Alphanumeric section numbering
  2878. alterqcm: Multiple choice questionnaires in two column tables
  2879. altfont: Alternative font handling in LaTeX
  2880. amsaddr: Alter the position of affiliations in amsart
  2881. animate: Create PDF animations from graphics files and inline graphics
  2882. anonchap: Make chapters be typeset like sections
  2883. answers: Setting questions (or exercises) and answers
  2884. anyfontsize: Select any font size in LaTeX
  2885. appendix: Extra control of appendices
  2886. appendixnumberbeamer: Manage frame numbering in appendixes in beamer
  2887. apptools: Tools for customising appendices
  2888. arcs: Draw arcs over and under text
  2889. arrayjobx: Array data structures for (La)TeX
  2890. arraysort: Sort arrays (or portions of them)
  2891. arydshln: Draw dash-lines in array/tabular
  2892. asciilist: Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX.
  2893. assignment: A class file for typesetting homework and lab assignments
  2894. assoccnt: Associate counters, making them step when a master steps
  2895. attachfile: Attach arbitrary files to a PDF document
  2896. authoraftertitle: Make author, etc., available after maketitle
  2897. authorindex: Index citations by author names
  2898. autonum: Automatic equation references
  2899. autopdf: Conversion of graphics to pdfLaTeX-compatible formats
  2900. avremu: An 8-Bit Microcontroller Simulator written in LaTeX
  2901. background: Placement of background material on pages of a document
  2902. bankstatement: A LaTeX class for bank statements based on csv data
  2903. bashful: Invoke bash commands from within LaTeX
  2904. basicarith: Macros for typesetting basic arithmetic
  2905. bchart: Draw simple bar charts in LaTeX
  2906. beamer2thesis: Thesis presentations using beamer
  2907. beameraudience: Assembling beamer frames according to audience
  2908. beamercolorthemeowl: A flexible beamer color theme to maximize visibility
  2909. beamerdarkthemes: Dark color themes for beamer
  2910. beamerposter: Extend beamer and a0poster for custom sized posters
  2911. beamersubframe: Reorder frames in the PDF file
  2912. beamertheme-detlevcm: A beamer theme designed for use in the University of Leeds
  2913. beamertheme-metropolis: A modern LaTeX beamer theme
  2914. beamertheme-phnompenh: A simple beamer theme
  2915. beamertheme-upenn-bc: Beamer themies for Boston College and the University of Pennsylvania
  2916. beamerthemejltree: Contributed beamer theme
  2917. beamerthemenirma: A Beamer theme for academic presentations
  2918. beton: Use Concrete fonts
  2919. bewerbung: Typesetting job application
  2920. bez123: Support for Bezier curves
  2921. bezos: Packages by Javier Bezos
  2922. bhcexam: An exam class designed for Mathematics Teachers in China
  2923. bibletext: Insert Bible passages by their reference
  2924. bigfoot: Footnotes for critical editions
  2925. bigints: Writing big integrals
  2926. bizcard: Typeset business cards
  2927. blindtext: Producing 'blind' text for testing
  2928. blkarray: Extended array and tabular
  2929. block: A block letter style for the letter class
  2930. bnumexpr: Extends eTeX's numexpr...relax construct to big integers
  2931. boites: Boxes that may break across pages
  2932. bold-extra: Use bold small caps and typewriter fonts
  2933. bookcover: A class for book covers and dust jackets
  2934. bookest: Extended book class
  2935. booklet: Aids for printing simple booklets
  2936. boolexpr: A boolean expression evaluator and a switch command
  2937. bophook: Provides an At-Begin-Page hook
  2938. boxedminipage: A package for producing framed minipages
  2939. boxedminipage2e: Framed minipages of a specified total width (text and frame combined)
  2940. boxhandler: Flexible Captioning and Deferred Box/List Printing
  2941. bracketkey: Produce bracketed identification keys
  2942. braket: Dirac bra-ket and set notations
  2943. breakurl: Line-breakable url-like links in hyperref when compiling via dvips/ps2pdf
  2944. bullcntr: Display list item counter as regular pattern of bullets
  2945. bussproofs: Proof trees in the style of the sequent calculus
  2946. bxdpx-beamer: Dvipdfmx extras for use with beamer
  2947. bxdvidriver: Enables specifying a driver option effective only in DVI output
  2948. bxenclose: Enclose the document body with some pieces of code
  2949. bxnewfont: Enhanced newfont command
  2950. bxpapersize: Synchronize output paper size with layout paper size
  2951. bxpdfver: Specify version and compression level of output PDF files
  2952. calcage: Calculate the age of something, in years
  2953. calctab: Language for numeric tables
  2954. calculator: Use LaTeX as a scientific calculator
  2955. calrsfs: Copperplate calligraphic letters in LaTeX
  2956. cals: Multipage tables with wide range of features
  2957. calxxxx-yyyy: Print a calendar for a group of years
  2958. cancel: Place lines through maths formulae
  2959. canoniclayout: Create canonical page layouts with memoir
  2960. capt-of: Captions on more than floats
  2961. captcont: Retain float number across several floats
  2962. captdef: Declare free-standing caption commands
  2963. carbohydrates: Carbohydrate molecules with chemfig
  2964. cases: Numbered cases environment
  2965. casyl: Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics
  2966. catchfilebetweentags: Catch text delimited by docstrip tags
  2967. catechis: Macros for typesetting catechisms
  2968. catoptions: Preserving and recalling standard catcodes
  2969. cbcoptic: Coptic fonts and LaTeX macros for general usage and for philology
  2970. ccaption: Continuation headings and legends for floats
  2971. cclicenses: Typeset Creative Commons licence logos
  2972. cd: Typeset CD covers
  2973. cd-cover: Typeset CD covers
  2974. cdpbundl: Business letters in the Italian style
  2975. cellspace: Ensure minimal spacing of table cells
  2976. censor: Facilities for controlling restricted text in a document
  2977. changebar: Generate changebars in LaTeX documents
  2978. changelayout: Change the layout of individual pages and their text
  2979. changepage: Margin adjustment and detection of odd/even pages
  2980. changes: Manual change markup
  2981. chappg: Page numbering by chapter
  2982. chapterfolder: Package for working with complicated folder structures
  2983. chet: LaTeX layout inspired by harvmac
  2984. chextras: A companion package for the Swiss typesetter
  2985. chkfloat: Warn whenever a float is placed "to far away"
  2986. chletter: Class for typesetting letters to Swiss rules
  2987. chngcntr: Change the resetting of counters
  2988. chronology: Provides a horizontal timeline
  2989. circ: Macros for typesetting circuit diagrams
  2990. classics: Cite classic works
  2991. clefval: Key/value support with a hash
  2992. cleveref: Intelligent cross-referencing
  2993. clipboard: Copy and paste into and across documents
  2994. clock: Graphical and textual clocks for TeX and LaTeX
  2995. cmdstring: Get command name reliably
  2996. cmdtrack: Check used commands
  2997. cmsd: Interfaces to the CM Sans Serif Bold fonts
  2998. cnltx: LaTeX tools and documenting facilities
  2999. cntformats: A different way to read counters
  3000. cntperchap: Store counter values per chapter
  3001. codedoc: LaTeX code and documentation in LaTeX-format file
  3002. codepage: Support for variant code pages
  3003. codesection: Provides an environment that may be conditionally included
  3004. collcell: Collect contents of a tabular cell as argument to a macro
  3005. collectbox: Collect and process macro arguments as boxes
  3006. colordoc: Coloured syntax highlights in documentation
  3007. colorinfo: Retrieve colour model and values for defined colours
  3008. colorspace: Provides PDF color spaces
  3009. colortab: Shade cells of tables and halign
  3010. colorwav: Colours by wavelength of visible light
  3011. colorweb: Extend the color package colour space
  3012. colourchange: colourchange
  3013. combelow: Typeset "comma-below" letters, as in Romanian
  3014. combine: Bundle individual documents into a single document
  3015. comma: Formats a number by inserting commas
  3016. commado: Expandable iteration on comma-separated and filename lists
  3017. comment: Selectively include/excludes portions of text
  3018. concepts: Keeping track of formal 'concepts' for a particular field
  3019. concprog: Concert programmes
  3020. constants: Automatic numbering of constants
  3021. continue: Prints 'continuation' marks on recto pages of multipage documents
  3022. contour: Print a coloured contour around text
  3023. contracard: Generate calling cards for dances
  3024. cooking: Typeset recipes
  3025. cool: COntent-Oriented LaTeX
  3026. coollist: Manipulate COntent Oriented LaTeX Lists
  3027. coolstr: String manipulation in LaTeX
  3028. coolthms: Reference items in a theorem environment
  3029. cooltooltips: Associate a pop-up window and tooltip with PDF hyperlinks
  3030. coordsys: Draw cartesian coordinate systems
  3031. copyedit: Copyediting support for LaTeX documents
  3032. copyrightbox: Provide copyright notices for images in a document
  3033. coseoul: Context sensitive outline elements
  3034. counttexruns: Count compilations of a document
  3035. courseoutline: Prepare university course outlines
  3036. coursepaper: Prepare university course papers
  3037. coverpage: Automatic cover page creation for scientific papers
  3038. cprotect: Allow verbatim, etc., in macro arguments
  3039. crbox: Boxes with crossed corners
  3040. crossreference: Crossreferences within documents
  3041. csquotes: Context sensitive quotation facilities
  3042. csvsimple: Simple CSV file processing
  3043. cuisine: Typeset recipes
  3044. currfile: Provide file name and path of input files
  3045. currvita: Typeset a curriculum vitae
  3046. cutwin: Cut a window in a paragraph, typeset material in it
  3047. cv: A package for creating a curriculum vitae
  3048. cv4tw: LaTeX CV class, with extended details
  3049. cweb-latex: A LaTeX version of CWEB
  3050. cyber: Annotate compliance with cybersecurity requirements
  3051. cybercic: "Controls in Contents" for the cyber package
  3052. dashbox: Draw dashed boxes
  3053. dashrule: Draw dashed rules
  3054. dashundergaps: Underline with dotted or dashed lines
  3055. dataref: Manage references to experimental data
  3056. datatool: Tools to load and manipulate data
  3057. dateiliste: Extensions of the listfiles concept
  3058. datenumber: Convert a date into a number and vice versa
  3059. datetime: Change format of today with commands for current time
  3060. datetime2: Formats for dates, times and time zones
  3061. datetime2-bahasai: Bahasai language module for the datetime2 package
  3062. datetime2-basque: Basque language module for the datetime2 package
  3063. datetime2-breton: breton language module for the datetime2 package
  3064. datetime2-bulgarian: Bulgarian language module for the datetime2 package
  3065. datetime2-catalan: catalan language module for the datetime2 package
  3066. datetime2-croatian: croatian language module for the datetime2 package
  3067. datetime2-czech: czech language module for the datetime2 package
  3068. datetime2-danish: danish language module for the datetime2 package
  3069. datetime2-dutch: dutch language module for the datetime2 package
  3070. datetime2-en-fulltext: English Full Text styles for the datetime2 package
  3071. datetime2-english: English language module for the datetime2 package
  3072. datetime2-esperanto: Esperanto language module for the datetime2 package
  3073. datetime2-estonian: Estonian language module for the datetime2 package
  3074. datetime2-finnish: Finnish language module for the datetime2 package
  3075. datetime2-french: French language module for the datetime2 package
  3076. datetime2-galician: galician language module for the datetime2 package
  3077. datetime2-german: German language module for the datetime2 package
  3078. datetime2-greek: Greek language module for the datetime2 package
  3079. datetime2-hebrew: Hebrew language module for the datetime2 package
  3080. datetime2-icelandic: Icelandic language module for the datetime2 package
  3081. datetime2-irish: Irish Gaelic Language Module for the datetime2 Package
  3082. datetime2-italian: Italian language module for the datetime2 package
  3083. datetime2-it-fulltext: Italian full text styles for the datetime2 package
  3084. datetime2-latin: Latin language module for the datetime2 package
  3085. datetime2-lsorbian: Lower Sorbian language module for the datetime2 package
  3086. datetime2-magyar: magyar language module for the datetime2 package
  3087. datetime2-norsk: Norsk language module for the datetime2 package
  3088. datetime2-polish: polish language module for the datetime2 package
  3089. datetime2-portuges: Portuguese language module for the datetime2 package
  3090. datetime2-romanian: Romanian language module for the datetime2 package
  3091. datetime2-russian: russian language module for the datetime2 package
  3092. datetime2-samin: Northern Sami language module for the datetime2 package
  3093. datetime2-scottish: Scottish Gaelic Language Module for the datetime2 Package
  3094. datetime2-serbian: serbian language module for the datetime2 package
  3095. datetime2-slovak: slovak language module for the datetime2 package
  3096. datetime2-slovene: slovene language module for the datetime2 package
  3097. datetime2-spanish: Spanish language module for the datetime2 package
  3098. datetime2-swedish: swedish language module for the datetime2 package
  3099. datetime2-turkish: turkish language module for the datetime2 package
  3100. datetime2-ukrainian: Ukrainian language module for the datetime2 package
  3101. datetime2-usorbian: Upper Sorbian language module for the datetime2 package
  3102. datetime2-welsh: Welsh language module for the datetime2 package
  3103. dblfloatfix: Fixes for twocolumn floats
  3104. decimal: LaTeX package for the English raised decimal point
  3105. decorule: Decorative swelled rule using font character
  3106. delimtxt: Read and parse text tables
  3107. denisbdoc: A personal dirty package for documenting packages
  3108. diagbox: Table heads with diagonal lines
  3109. diagnose: A diagnostic tool for a TeX installation
  3110. dialogl: Macros for constructing interactive LaTeX scripts
  3111. dichokey: Construct dichotomous identification keys
  3112. dinbrief: German letter DIN style
  3113. directory: An address book using BibTeX
  3114. dirtytalk: A package to typeset quotations easier
  3115. dlfltxb: Macros related to "Introdktion til LaTeX"
  3116. dnaseq: Format DNA base sequences
  3117. doclicense: Support for putting documents under a license
  3118. docmfp: Document non-LaTeX code
  3119. docmute: Input files ignoring LaTeX preamble, etc
  3120. doctools: Tools for the documentation of LaTeX code
  3121. documentation: Documentation support for C, Java and assembler code
  3122. doi: Create correct hyperlinks for DOI numbers
  3123. dotarrow: Extendable dotted arrows
  3124. dotseqn: Flush left equations with dotted leaders to the numbers
  3125. download: Allow LaTeX to download files using an external process
  3126. dox: Extend the doc package
  3127. dpfloat: Support for double-page floats
  3128. dprogress: LaTeX-relevant log information for debugging
  3129. drac: Declare active character substitution, robustly
  3130. draftcopy: Identify draft copies
  3131. draftwatermark: Put a grey textual watermark on document pages
  3132. dtk: Document class for the journal of DANTE
  3133. dtxgallery: A small collection of minimal DTX examples
  3134. dvdcoll: A class for typesetting DVD archives
  3135. dynamicnumber: Dynamically typeset numbers and values in LaTeX through "symbolic links"
  3136. dynblocks: A simple way to create dynamic blocks for Beamer
  3137. ean13isbn: Print EAN13 for ISBN
  3138. easy: A collection of easy-to-use macros
  3139. easy-todo: To-do notes in a document
  3140. easyfig: Simplifying the use of common figures
  3141. easylist: Lists using a single active character
  3142. easyreview: Package to provide a way to review (or perform editorial process) in LaTeX
  3143. ebezier: Device independent picture environment enhancement
  3144. ecclesiastic: Typesetting Ecclesiastic Latin
  3145. ecv: A fancy Curriculum Vitae class
  3146. ed: Editorial Notes for LaTeX documents
  3147. edmargin: Multiple series of endnotes for critical editions
  3148. eemeir: Adjust the gender of words in a document
  3149. efbox: Extension of fbox, with controllable frames and colours
  3150. egplot: Encapsulate Gnuplot sources in LaTeX documents
  3151. elements: Provides properties of chemical elements
  3152. ellipsis: Fix uneven spacing around ellipses in LaTeX text mode
  3153. elmath: Mathematics in Greek texts
  3154. elocalloc: Local allocation macros for LaTeX 2015
  3155. elpres: A simple class for electronic presentations
  3156. elzcards: Typeset business cards, index cards and flash cards easyly
  3157. emarks: Named mark registers with e-TeX
  3158. embedall: Embed source files into the generated PDF
  3159. embrac: Upright brackets in emphasised text
  3160. emptypage: Make empty pages really empty
  3161. emulateapj: Produce output similar to that of APJ
  3162. endfloat: Move floats to the end, leaving markers where they belong
  3163. endheads: Running headers of the form "Notes to pp.xx-yy"
  3164. endnotes: Place footnotes at the end
  3165. engpron: Helps to type the pronunciation of English words
  3166. engrec: Enumerate with lower- or uppercase Greek letters
  3167. enotez: Support for end-notes
  3168. enumitem: Control layout of itemize, enumerate, description
  3169. enumitem-zref: Extended references to items for enumitem package
  3170. envbig: Printing addresses on envelopes
  3171. environ: A new interface for environments in LaTeX
  3172. envlab: Addresses on envelopes or mailing labels
  3173. epigraph: A package for typesetting epigraphs
  3174. epiolmec: Typesetting the Epi-Olmec Language
  3175. epyt: A simple and clean theme for LaTeX beamer class
  3176. eqell: Sympathetically spaced ellipsis after punctuation
  3177. eqlist: Description lists with equal indentation
  3178. eqname: Name tags for equations
  3179. eqparbox: Create equal-widthed parboxes
  3180. errata: Error markup for LaTeX documents
  3181. esami: Typeset exams with scrambled questions and answers
  3182. esdiff: Simplify typesetting of derivatives
  3183. esint: Extended set of integrals for Computer Modern
  3184. esint-type1: Font esint10 in Type 1 format
  3185. etaremune: Reverse-counting enumerate environment
  3186. etextools: e-TeX tools for LaTeX users and package writers
  3187. etoc: Completely customisable TOCs
  3188. etoolbox: e-TeX tools for LaTeX
  3189. eukdate: UK format dates, with weekday
  3190. europasscv: Unofficial class for the new version of the Europass curriculum vitae
  3191. europecv: Unofficial class for European curricula vitae
  3192. everyhook: Hooks for standard TeX token lists
  3193. everypage: Provide hooks to be run on every page of a document
  3194. exam: Package for typesetting exam scripts
  3195. exam-n: Exam class, focused on collaborative authoring
  3196. examdesign: LaTeX class for typesetting exams
  3197. example: Typeset examples for TeX courses
  3198. examplep: Verbatim phrases and listings in LaTeX
  3199. exceltex: Get data from Excel files into LaTeX
  3200. excludeonly: Prevent files being include-ed
  3201. exercise: Typeset exercises, problems, etc. and their answers
  3202. exercises: Typeset exercises and solutions with automatic addition of points
  3203. exp-testopt: Expandable @testopt (and related) macros
  3204. expdlist: Expanded description environments
  3205. export: Import and export values of LaTeX registers
  3206. exsheets: Create exercise sheets and exams
  3207. exsol: Exercises and solutions from the same source, into a book
  3208. extract: Extract parts of a document and write to another document
  3209. facsimile: Document class for preparing faxes
  3210. factura: Typeset and calculate invoices according to Venezuelan law
  3211. fancylabel: Complex labelling with LaTeX
  3212. fancynum: Typeset numbers
  3213. fancypar: Decoration of individual paragraphs
  3214. fancyslides: Custom presentation class built upon LaTeX Beamer
  3215. fancytabs: Fancy page border tabs
  3216. fancytooltips: Include a wide range of material in PDF tooltips
  3217. fcolumn: Typesetting financial tables
  3218. ffslides: Freeform slides based on the article class
  3219. fibeamer: Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic)
  3220. fifo-stack: FIFO and stack implementation for package writers
  3221. figsize: Auto-size graphics
  3222. filecontents: Extended filecontents and filecontents* environments
  3223. filedate: Access and compare info and modification dates
  3224. filehook: Hooks for input files
  3225. fileinfo: Enhanced display of LaTeX File Information
  3226. filemod: Provide file modification times, and compare them
  3227. fink: The LaTeX2e File Name Keeper
  3228. finstrut: Adjust behaviour of the ends of footnotes
  3229. fithesis: Thesis class and template for Masaryk University (Brno, Czech Republic)
  3230. fixcmex: Fully scalable version of Computer Modern Math Extension font
  3231. fixfoot: Multiple use of the same footnote text
  3232. fixme: Insert "fixme" notes into draft documents
  3233. fixmetodonotes: Add notes on document development
  3234. fjodor: A selection of layout styles
  3235. flabels: Labels for files and folders
  3236. flacards: Generate flashcards for printing
  3237. flagderiv: Flag style derivation package
  3238. flashcards: A class for typesetting flashcards
  3239. flashmovie: Directly embed flash movies into PDF files
  3240. flipbook: Typeset flipbook animations, in the corners of documents
  3241. flippdf: Horizontal flipping of pages with pdfLaTeX
  3242. floatflt: Wrap text around floats
  3243. floatrow: Modifying the layout of floats
  3244. flowfram: Create text frames for posters, brochures or magazines
  3245. fmp: Include Functional MetaPost in LaTeX
  3246. fmtcount: Display the value of a LaTeX counter in a variety of formats
  3247. fn2end: Convert footnotes to endnotes
  3248. fnbreak: Warn for split footnotes
  3249. fncychap: Seven predefined chapter heading styles
  3250. fncylab: Alter the format of label references
  3251. fnpara: Footnotes in paragraphs
  3252. fnpct: Manage footnote marks' interaction with punctuation
  3253. fnumprint: Print a number in 'appropriate' format
  3254. foilhtml: Interface between foiltex and LaTeX2HTML
  3255. fontaxes: Additional font axes for LaTeX
  3256. fonttable: Print font tables from a LaTeX document
  3257. footmisc: A range of footnote options
  3258. footnotebackref: Back-references from footnotes
  3259. footnotehyper: hyperref aware footnote.sty
  3260. footnoterange: References to ranges of footnotes
  3261. footnpag: Per-page numbering of footnotes
  3262. forarray: Using array structures in LaTeX
  3263. foreign: Systematic treatment of 'foreign' words in documents
  3264. forloop: Iteration in LaTeX
  3265. formlett: Letters to multiple recipients
  3266. formular: Create forms containing field for manual entry
  3267. fragments: Fragments of LaTeX code
  3268. frame: Framed boxes for Plain TeX
  3269. framed: Framed or shaded regions that can break across pages
  3270. frankenstein: A collection of LaTeX packages
  3271. frege: Typeset fregean Begriffsschrift
  3272. ftcap: Allows caption at the beginning of a table-environment
  3273. ftnxtra: Extend the applicability of the footnote command
  3274. fullblck: Left-blocking for letter class
  3275. fullminipage: Minipage spanning a complete page
  3276. fullwidth: Adjust margins of text block
  3277. fundus-calligra: Support for the calligra font in LaTeX documents
  3278. fundus-cyr: Support for Washington University Cyrillic fonts
  3279. fundus-sueterlin: Sutterlin
  3280. fwlw: Get first and last words of a page
  3281. g-brief: Letter document class
  3282. gauss: A package for Gaussian operations
  3283. gcard: Arrange text on a sheet to fold into a greeting card
  3284. gcite: Citations in a reader-friendly style
  3285. gender: Gender neutrality for languages with grammatical gender
  3286. genmpage: Generalization of LaTeX's minipages
  3287. getfiledate: Find the date of last modification of a file
  3288. getitems: Gathering items from a list-like environment
  3289. ginpenc: Modification of inputenc for German
  3290. gitinfo: Access metadata from the git distributed version control system
  3291. gitinfo2: Access metadata from the git distributed version control system
  3292. gitlog: Typesetting git changelogs
  3293. gloss: Create glossaries using BibTeX
  3294. glossaries: Create glossaries and lists of acronyms
  3295. glossaries-danish: Danish language module for glossaries package
  3296. glossaries-dutch: Dutch language module for glossaries package
  3297. glossaries-english: English language module for glossaries package
  3298. glossaries-extra: An extension to the glossaries package
  3299. glossaries-french: French language module for glossaries package
  3300. glossaries-german: German language module for glossaries package
  3301. glossaries-irish: Irish language module for glossaries package
  3302. glossaries-italian: Italian language module for glossaries package
  3303. glossaries-magyar: Magyar language module for glossaries package
  3304. glossaries-polish: Polish language module for glossaries package
  3305. glossaries-portuges: Portuges language module for glossaries package
  3306. glossaries-serbian: Serbian language module for glossaries package
  3307. glossaries-spanish: Spanish language module for glossaries package
  3308. gmdoc: Documentation of LaTeX packages
  3309. gmdoc-enhance: Some enhancements to the gmdoc package
  3310. gmiflink: Simplify usage of hypertarget and hyperlink
  3311. gmutils: Support macros for other packages
  3312. gmverb: A variant of LaTeX verb, verbatim and shortvrb
  3313. graphbox: Extend graphicx to improve placement of graphics
  3314. graphicx-psmin: Reduce size of PostScript files by not repeating images
  3315. graphicxbox: Insert a graphical image as a background
  3316. grfpaste: Include fragments of a dvi file
  3317. grid: Grid typesetting in LaTeX
  3318. grid-system: Page organisation, modelled on CSS facilities
  3319. gridset: Grid, a.k.a. in-register, setting
  3320. guitlogo: Macros for typesetting the GuIT logo
  3321. handout: Create handout for auditors of a talk
  3322. hang: Environments for hanging paragraphs and list items
  3323. hanging: Hanging paragraphs
  3324. hardwrap: Hard wrap text to a certain character length
  3325. harnon-cv: A CV document class with a vertical timeline for experience
  3326. harpoon: Extra harpoons, using the graphics package
  3327. hc: Replacement for the LaTeX classes
  3328. he-she: Alternating pronouns to aid gender-neutral writing
  3329. hhtensor: Print vectors, matrices, and tensors
  3330. histogr: Draw histograms with the LaTeX picture environment
  3331. hitec: Class for documentation
  3332. hletter: Flexible letter typesetting with flexible page headings
  3333. hpsdiss: A dissertation class
  3334. hrefhide: Suppress hyper links when printing
  3335. hvindex: Support for indexing
  3336. hypdvips: Hyperref extensions for use with dvips
  3337. hyper: Hypertext cross referencing
  3338. hypernat: Allow hyperref and natbib to work together
  3339. hyperref-docsrc:
  3340. hyperxmp: Embed XMP metadata within a LaTeX document
  3341. hyphenat: Disable/enable hypenation
  3342. idxcmds: Semantic commands for adding formatted index entries
  3343. idxlayout: Configurable index layout, responsive to KOMA-Script and memoir
  3344. iffont: Conditionally load fonts with fontspec
  3345. ifmslide: Presentation slides for screen and printouts
  3346. ifmtarg: If-then-else command for processing potentially empty arguments
  3347. ifnextok: Utility macro: peek ahead without ignoring spaces
  3348. ifoddpage: Determine if the current page is odd or even
  3349. ifplatform: Conditionals to test which platform is being used
  3350. ifthenx: Extra tests for ifthenelse
  3351. iitem: Multiple level of lists in one list-like environment
  3352. image-gallery: Create an overview of pictures from a digital camera or from other sources
  3353. imakeidx: A package for producing multiple indexes
  3354. import: Establish input relative to a directory
  3355. incgraph: Sophisticated graphics inclusion in a PDF document
  3356. indextools: Producing multiple indices
  3357. inlinedef: Inline expansions within definitions
  3358. inputtrc: Trace which file loads which
  3359. interactiveworkbook: LaTeX-based interactive PDF on the Web
  3360. interfaces: Set parameters for other packages, conveniently
  3361. inversepath: Calculate inverse file paths
  3362. invoice: Generate invoices
  3363. iso: Generic ISO standards typesetting macros
  3364. iso10303: Typesetting the STEP standards
  3365. isodate: Tune the output format of dates according to language
  3366. isodoc: A LaTeX class for typesetting letters and invoices
  3367. isonums: Display numbers in maths mode according to ISO 31-0
  3368. isorot: Rotation of document elements
  3369. isotope: A package for typesetting isotopes
  3370. issuulinks: Produce external links instead of internal ones
  3371. iwhdp: Halle Institute for Economic Research (IWH) Discussion Papers
  3372. jlabels: Make letter-sized pages of labels
  3373. jslectureplanner: Creation and management of university course material
  3374. jumplines: Articles with teasers and continuation later on
  3375. jvlisting: A replacement for LaTeX's verbatim package
  3376. kantlipsum: Generate sentences in Kant's style
  3377. kerntest: Print tables and generate control files to adjust kernings
  3378. keycommand: Simple creation of commands with key-value arguments
  3379. keyreader: A robust interface to xkeyval
  3380. keystroke: Graphical representation of keys on keyboard
  3381. keyval2e: A lightweight and robust key-value parser
  3382. keyvaltable: Re-usable tables separating content and presentation
  3383. kix: Typeset KIX codes
  3384. koma-moderncvclassic: Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with BibLaTeX
  3385. koma-script-sfs: Koma-script letter class option for Finnish
  3386. komacv: Typesetting a beautiful CV with various style options
  3387. ktv-texdata: Extract subsets of documents
  3388. l3build: A testing and building system for (La)TeX
  3389. labbook: Typeset laboratory journals
  3390. labels: Print sheets of sticky labels
  3391. lastpackage: Indicates the last loaded package
  3392. lastpage: Reference last page for Page N of M type footers
  3393. latex-tds: A structured copy of the LaTeX distribution
  3394. latexdemo: Demonstrate LaTeX code with its resulting output
  3395. layouts: Display various elements of a document's layout
  3396. lazylist: Lists in TeX's "mouth"
  3397. lcd: Alphanumerical LCD-style displays
  3398. lcg: Generate random integers
  3399. leading: Define leading with a length
  3400. leaflet: Create small handouts (flyers)
  3401. leftidx: Left and right subscripts and superscripts in math mode
  3402. lengthconvert: Express lengths in arbitrary units
  3403. lettre: Letters and faxes in French
  3404. lettrine: Typeset dropped capitals
  3405. lewis: Draw Lewis structures
  3406. lhelp: Miscellaneous helper packages
  3407. libgreek: Use Libertine or Biolinum Greek glyphs in mathematics
  3408. limap: Typeset maps and blocks according to the Information Mapping method
  3409. linegoal: A "dimen" that returns the space left on the line
  3410. lipsum: Easy access to the Lorem Ipsum dummy text
  3411. lisp-on-tex: Execute LISP code in a LaTeX document
  3412. listing: Produce formatted program listings
  3413. listlbls: Creates a list of all labels used throughout a document
  3414. listliketab: Typeset lists as tables
  3415. listofsymbols: Create and manipulate lists of symbols
  3416. lkproof: LK Proof figure macros
  3417. lmake: Process lists to do repetitive actions
  3418. locality: Various macros for keeping things local
  3419. localloc: Macros for localizing TeX register allocations
  3420. logbox: e-TeX showbox facilities for exploration purposes
  3421. logical-markup-utils: Packages for language-dependent inline quotes and dashes
  3422. logpap: Generate logarithmic graph paper with LaTeX
  3423. longfbox: Draw framed boxes with standard CSS attributes that can break over multiple pages
  3424. longfigure: Provides a figure-like environment that break over pages
  3425. longnamefilelist: Tidy listfiles with long file names
  3426. loops: General looping macros for use with LaTeX
  3427. lsc: Typesetting Live Sequence Charts
  3428. lstaddons: Add-on packages for listings: autogobble and line background
  3429. lt3graph: Provide a graph datastructure for experimental LaTeX3
  3430. ltablex: Table package extensions
  3431. ltabptch: Bug fix for longtable
  3432. ltxdockit: Documentation support
  3433. ltxindex: A LaTeX package to typeset indices with GNU's Texindex
  3434. ltxkeys: A robust key parser for LaTeX
  3435. ltxnew: A simple means of creating commands
  3436. ltxtools: A collection of LaTeX API macros
  3437. macroswap: Swap the definitions of two LaTeX macros
  3438. magaz: Magazine layout
  3439. mailing: Macros for mail merging
  3440. mailmerge: Repeating text field substitution
  3441. makebarcode: Print various kinds 2/5 and Code 39 bar codes
  3442. makebox: Defines a makebox* command
  3443. makecell: Tabular column heads and multilined cells
  3444. makecirc: A MetaPost library for drawing electrical circuit diagrams
  3445. makecmds: The new makecommand command always (re)defines a command
  3446. makedtx: Perl script to help generate dtx and ins files
  3447. makeglos: Include a glossary into a document
  3448. mandi: Macros for introductory physics and astronomy
  3449. manfnt: LaTeX support for the TeX book symbols
  3450. manuscript: Emulate look of a document typed on a typewriter
  3451. marginfix: Patch marginpar to avoid overfull margins
  3452. marginnote: Notes in the margin, even where marginpar fails
  3453. mathalfa: General package for loading maths alphabets in LaTeX
  3454. mathastext: Use the text font in maths mode
  3455. mathexam: Package for typesetting exams
  3456. maybemath: Make math bold or italic according to context
  3457. mbenotes: Notes in tables or images
  3458. mcaption: Put captions in the margin
  3459. mceinleger: Creating covers for music cassettes
  3460. mcite: Multiple items in a single citation
  3461. mciteplus: Enhanced multiple citations
  3462. mdframed: Framed environments that can split at page boundaries
  3463. media9: Multimedia inclusion package with Adobe Reader-9/X compatibility
  3464. medstarbeamer: Beamer document class for MedStar Health Research Institute
  3465. meetingmins: Format written minutes of meetings
  3466. memexsupp: Experimental memoir support
  3467. memory: Containers for data in LaTeX
  3468. menu: Typesetting menus
  3469. menukeys: Format menu sequences, paths and keystrokes from lists
  3470. method: Typeset method and variable declarations
  3471. metre: Support for the work of classicists
  3472. mfirstuc: Uppercase the first letter of a word
  3473. mftinc: Pretty-print Metafont source
  3474. midpage: Environment for vertical centring
  3475. minibox: A simple type of box for LaTeX
  3476. minifp: Fixed-point real computations to 8 decimals
  3477. minipage-marginpar: Minipages with marginal notes
  3478. minitoc: Produce a table of contents for each chapter, part or section
  3479. minorrevision: Quote and refer to a manuscript for minor revisions
  3480. minted: Highlighted source code for LaTeX
  3481. minutes: Typeset the minutes of meetings
  3482. mla-paper: Proper MLA formatting
  3483. mlist: Logical markup for lists
  3484. mmap: Include CMap resources in PDF files from pdfTeX
  3485. mnotes: Margin annotation for collaborative writing
  3486. moderncv: A modern curriculum vitae class
  3487. moderntimeline: Timelines for use with moderncv
  3488. modref: Customisation of cross-references in LaTeX
  3489. modroman: Write numbers in lower case roman numerals
  3490. monofill: Alignment of plain text
  3491. moodle: Generating Moodle quizzes via LaTeX
  3492. moreenum: More enumeration options
  3493. morefloats: Increase the number of simultaneous LaTeX floats
  3494. morehype: Hypertext tools for use with LaTeX
  3495. moresize: Allows font sizes up to 35.83pt
  3496. moreverb: Extended verbatim
  3497. morewrites: Always room for a new write stream
  3498. movie15: Multimedia inclusion package
  3499. mparhack: Work around a LaTeX bug in marginpars
  3500. msc: Draw MSC diagrams
  3501. msg: A package for LaTeX localisation
  3502. mslapa: Michael Landy's APA citation style
  3503. mtgreek: Use italic and upright greek letters with mathtime
  3504. multenum: Multi-column enumerated lists
  3505. multiaudience: Several versions of output from the same source
  3506. multibbl: Multiple bibliographies
  3507. multicap: Format captions inside multicols
  3508. multidef: Quickly define several similar macros
  3509. multienv: Multiple environments using a "key=value" syntax
  3510. multiexpand: Variations on the primitive command expandafter
  3511. multirow: Create tabular cells spanning multiple rows
  3512. mversion: Keeping track of document versions
  3513. mwe: Packages and image files for MWEs
  3514. mycv: A list-driven CV class, allowing TikZ decorations
  3515. mylatexformat: Build a format based on the preamble of a LaTeX file
  3516. nag: Detecting and warning about obsolete LaTeX commands
  3517. nameauth: Name authority mechanism for consistency in body text and index
  3518. namespc: Rudimentary C++-like namespaces in LaTeX
  3519. ncclatex: An extended general-purpose class
  3520. ncctools: A collection of general packages for LaTeX
  3521. needspace: Insert pagebreak if not enough space
  3522. nestquot: Alternate quotes between double and single with nesting
  3523. newcommand: Generate new LaTeX command definitions
  3524. newenviron: Processing an environment's body
  3525. newfile: User level management of LaTeX input and output
  3526. newlfm: Write letters, facsimiles, and memos
  3527. newspaper: Typeset newsletters to resemble newspapers
  3528. newunicodechar: Definitions of the meaning of Unicode characters
  3529. newvbtm: Define your own verbatim-like environment
  3530. newverbs: Define new versions of verb, including short verb versions
  3531. nextpage: Generalisations of the page advance commands
  3532. nfssext-cfr: Extensions to the LaTeX NFSS
  3533. nicefilelist: Provide listfiles alignment
  3534. niceframe: Support for fancy frames
  3535. nicetext: Minimal markup for simple text (Wikipedia style) and documentation
  3536. nlctdoc: Package documentation class
  3537. noconflict: Resolve macro name conflict between packages
  3538. noindentafter: Tool to prevent paragraph indentation after environments/macros
  3539. noitcrul: Improved underlines in mathematics
  3540. nolbreaks: No line breaks in text
  3541. nomencl: Produce lists of symbols as in nomenclature
  3542. nomentbl: Nomenclature typeset in a longtable
  3543. nonfloat: Non-floating table and figure captions
  3544. nonumonpart: Prevent page numbers on part pages
  3545. nopageno: No page numbers in LaTeX documents
  3546. normalcolor: Changing normalcolor
  3547. notes: Mark sections of a document
  3548. notoccite: Prevent trouble from citations in table of contents, etc
  3549. nowidow: Avoid widows
  3550. nox: Adaptable tables
  3551. ntheorem: Enhanced theorem environment
  3552. numberedblock: Print a block of code, with unique index number
  3553. numname: Convert a number to its English expression
  3554. numprint: Print numbers with separators and exponent if necessary
  3555. ocg-p: PDF OCG support in LaTeX
  3556. ocgx: Use OCGs within a PDF document without JavaScript
  3557. ocgx2: Drop-in replacement for the 'ocgx' package; adds support for dvips+ps2pdf, XeLaTeX, dvipdfmx
  3558. ocr-latex: LaTeX support for ocr fonts
  3559. octavo: Typeset books following classical design and layout
  3560. oldstyle: Old style numbers in OT1 encoding
  3561. onlyamsmath: Inhibit use of non-amsmath mathematics markup when using amsmath
  3562. opcit: Footnote-style bibliographical references
  3563. optional: Facilitate optional printing of parts of a document
  3564. options: Provides convenient key-value options for LaTeX package writers
  3565. outline: List environment for making outlines
  3566. outliner: Change section levels easily
  3567. outlines: Produce "outline" lists
  3568. overpic: Combine LaTeX commands over included graphics
  3569. pagecolor: Interrogate page colour
  3570. pagecont: Page numbering that continues between documents
  3571. pagenote: Notes at end of document
  3572. pagerange: Flexible and configurable page range typesetting
  3573. pageslts: Variants of last page labels
  3574. paper: Versions of article class, tuned for scholarly publications
  3575. papercdcase: Origami-style folding paper CD case
  3576. papermas: Compute the mass of a printed version of a document
  3577. papertex: Class for newspapers, etc
  3578. paracol: Multiple columns with texts "in parallel"
  3579. parades: Tabulators and space between paragraphs in galley approach
  3580. paralist: Enumerate and itemize within paragraphs
  3581. paresse: Define simple macros for greek letters
  3582. parnotes: Notes after every paragraph (or elsewhere)
  3583. parselines: Apply a macro to each line of an environment
  3584. pas-cours: Macros useful in preparing teaching material
  3585. pas-cv: Flexible typesetting of Curricula Vitae
  3586. pas-tableur: Create a spreadsheet layout
  3587. patch: Patch loaded packages, etc.
  3588. patchcmd: Change the definition of an existing command
  3589. pauldoc: German LaTeX package documentation
  3590. pawpict: Using graphics from PAW
  3591. pax: Extract and reinsert PDF annotations with pdfTeX
  3592. pbox: A variable-width parbox command
  3593. pbsheet: Problem sheet class
  3594. pdf14: Restore PDF 1.4 to a TeX live 2010 format
  3595. pdfcomment: A user-friendly interface to pdf annotations
  3596. pdfcprot: Activating and setting of character protruding using pdfLaTeX
  3597. pdfmarginpar: Generate marginpar-equivalent PDF annotations
  3598. pdfpagediff: Find difference between two PDF's
  3599. pdfscreen: Support screen-based document design
  3600. pdfslide: Presentation slides using pdfTeX
  3601. pdfsync: Provide links between source and PDF
  3602. pdfwin:
  3603. pdfx: PDF/X-1a and PDF/A-1b support for pdfTeX
  3604. pecha: Print Tibetan text in the classic pecha layout style
  3605. perltex: Define LaTeX macros in terms of Perl code
  3606. permute: Support for symmetric groups
  3607. petiteannonce: A class for small advertisements
  3608. philex: Cross references for named and numbered environments
  3609. photo: A float environment for photographs
  3610. piff: Macro tools by Mike Piff
  3611. pkgloader: Managing the options and loading order of other packages
  3612. placeins: Control float placement
  3613. plantslabels: Write labels for plants
  3614. plates: Arrange for "plates" sections of documents
  3615. plweb: Literate Programming for Prolog with LaTeX
  3616. polynom: Macros for manipulating polynomials
  3617. polynomial: Typeset (univariate) polynomials
  3618. polytable: Tabular-like environments with named columns
  3619. postcards: Facilitates mass-mailing of postcards (junkmail)
  3620. poster-mac: Make posters and banners with TeX
  3621. ppr-prv: Prosper preview
  3622. preprint: A bundle of packages provided "as is"
  3623. pressrelease: A class for typesetting press releases
  3624. prettyref: Make label references "self-identify"
  3625. preview: Extract bits of a LaTeX source for output
  3626. printlen: Print lengths using specified units
  3627. probsoln: Generate problem sheets and their solution sheets
  3628. program: Typesetting programs and algorithms
  3629. progress: Creates an overview of a document's state
  3630. progressbar: Visualize shares of total amounts in the form of a (progress-)bar
  3631. proofread: Commands for inserting annotations
  3632. properties: Load properties from a file
  3633. prosper: LaTeX class for high quality slides
  3634. protex: Literate programming package
  3635. protocol: A class for minutes of meetings
  3636. psfragx: A psfrag eXtension
  3637. pst-pdf: Make PDF versions of graphics by processing between runs
  3638. pstool: Support for psfrag within pdfLaTeX
  3639. pxgreeks: Shape selection for PX fonts Greek letters
  3640. python: Embed Python code in LaTeX
  3641. qcm: A LaTeX2e class for making multiple choice questionnaires
  3642. qstest: Bundle for unit tests and pattern matching
  3643. qsymbols: Maths symbol abbreviations
  3644. quotchap: Decorative chapter headings
  3645. quoting: Consolidated environment for displayed text
  3646. quotmark: Consistent quote marks
  3647. ran_toks: Randomise token strings
  3648. randtext: Randomise the order of characters in strings
  3649. rccol: Decimal-centered optionally rounded numbers in tabular
  3650. rcs-multi: Typeset RCS version control in multiple-file documents
  3651. rcsinfo: Support for the revision control system
  3652. readarray: Read, store and recall array-formatted data
  3653. realboxes: Variants of common box-commands that read their content as real box and not as macro argument
  3654. recipe: A LaTeX class to typeset recipes
  3655. recipebook: Typeset 5.5" x 8" recipes for browsing or printing
  3656. recipecard: Typeset recipes in note-card-sized boxes
  3657. rectopma: Recycle top matter
  3658. refcheck: Check references (in figures, table, equations, etc)
  3659. refenums: Define reference labels items with names of their own
  3660. reflectgraphics: Techniques for reflecting graphics
  3661. refman: Format technical reference manuals
  3662. refstyle: Advanced formatting of cross references
  3663. regcount: Display the allocation status of the TeX registers
  3664. regexpatch: High level patching of commands
  3665. register: Typeset programmable elements in digital hardware (registers)
  3666. regstats: Information about register use
  3667. relenc: A "relaxed" font encoding
  3668. relsize: Set the font size relative to the current font size
  3669. repeatindex: Repeat items in an index after a page or column break
  3670. repltext: Control how text gets copied from a PDF file
  3671. rjlparshap: Support for use of parshape in LaTeX
  3672. rlepsf: Rewrite labels in EPS graphics
  3673. rmpage: A package to help change page layout parameters in LaTeX
  3674. robustcommand: Declare robust command, with newcommand checks
  3675. robustindex: Create index with pagerefs
  3676. romanbar: Write roman number with "bars"
  3677. romanbarpagenumber: Typesetting roman page numbers
  3678. romanneg: Roman page numbers negative
  3679. romannum: Generate roman numerals instead of arabic digits
  3680. rotfloat: Rotate floats
  3681. rotpages: Typeset sets of pages upside-down and backwards
  3682. roundbox: Round boxes in LaTeX
  3683. rterface: Access to R analysis from within a document
  3684. rtkinenc: Input encoding with fallback procedures
  3685. rulercompass: A TikZ library for straight-edge and compass diagrams
  3686. rvwrite: Increase the number of available output streams in LaTeX
  3687. sauerj: A bundle of utilities by Jonathan Sauer
  3688. savefnmark: Save name of the footnote mark for reuse
  3689. savesym: Redefine symbols where names conflict
  3690. savetrees: Optimise the use of each page of a LaTeX document
  3691. scale: Scale document by sqrt(2) or magstep(2)
  3692. scalebar: Create scalebars for maps, diagrams or photos
  3693. scalerel: Constrained scaling and stretching of objects
  3694. scanpages: Support importing and embellishing scanned documents
  3695. scrlttr2copy: A letter class option file for the automatic creation of copies
  3696. sdrt: Macros for Segmented Discourse Representation Theory
  3697. secdot: Section numbers with trailing dots
  3698. sectionbox: Create fancy boxed ((sub)sub)sections
  3699. sectsty: Control sectional headers
  3700. seealso: Improve the performance of see macros with makeindex
  3701. selectp: Select pages to be output
  3702. semantic: Help for writing programming language semantics
  3703. semioneside: Put only special contents on left-hand pages in two sided layout
  3704. semproc: Seminar proceedings
  3705. sepfootnotes: Support footnotes and endnotes from separate files
  3706. seqsplit: Split long sequences of characters in a neutral way
  3707. sf298: Standard form 298
  3708. sffms: Typesetting science fiction/fantasy manuscripts
  3709. sfmath: Sans-serif mathematics
  3710. shadethm: Theorem environments that are shaded
  3711. shadow: Shadow boxes
  3712. shadowtext: Produce text with a shadow behind it
  3713. shapepar: A macro to typeset paragraphs in specific shapes
  3714. shdoc: Float environment to document the shell commands of a terminal session
  3715. shipunov: A collection of LaTeX packages and classes
  3716. shorttoc: Table of contents with different depths
  3717. show2e: Variants of show for LaTeX2e
  3718. showcharinbox: Show characters inside a box
  3719. showdim: Variants on printing dimensions
  3720. showexpl: Typesetting LaTeX source code
  3721. showlabels: Show label commands in the margin
  3722. sidecap: Typeset captions sideways
  3723. sidenotes: Typeset notes containing rich content, in the margin
  3724. silence: Selective filtering of error messages and warnings
  3725. simplecd: Simple CD, DVD covers for printing
  3726. simplecv: A simple class for writing curricula vitae
  3727. sitem: Save the optional argument of item
  3728. skb: Tools for a repository of long-living documents
  3729. skdoc: Documentation and extraction for packages and document classes
  3730. skeycommand: Create commands using parameters and keyval in parallel
  3731. skeyval: Key-value parsing combining features of xkeyval and pgfkeys
  3732. skrapport: 'Simple' class for reports, etc.
  3733. slantsc: Access different-shaped small-caps fonts
  3734. smalltableof: Create listoffigures etc. in a single chapter
  3735. smartunits: Converting between common metric and Imperial units
  3736. smartref: Extend LaTeX's ref capability
  3737. snapshot: List the external dependencies of a LaTeX document
  3738. snotez: Typeset notes, in the margin
  3739. soul: Hyphenation for letterspacing, underlining, and more
  3740. sparklines: Drawing sparklines: intense, simple, wordlike graphics
  3741. sphack: Patch LaTeX kernel spacing macros
  3742. splitindex: Unlimited number of indexes
  3743. spot: Spotlight highlighting for Beamer
  3744. spotcolor: Spot colours for pdfLaTeX
  3745. spreadtab: Spreadsheet features for LaTeX tabular environments
  3746. spverbatim: Allow line breaks within verb and verbatim output
  3747. srbook-mem:
  3748. srcltx: Jump between DVI and TeX files
  3749. sseq: Typesetting spectral sequence charts
  3750. sslides: Slides with headers and footers
  3751. stack: Tools to define and use stacks
  3752. stackengine: Highly customised stacking of objects, insets, baseline changes, etc
  3753. standalone: Compile TeX pictures stand-alone or as part of a document
  3754. statistik: Store statistics of a document
  3755. stdclsdv: Provide sectioning information for package writers
  3756. stdpage: Standard pages with n lines of at most m characters each
  3757. stex: An Infrastructure for Semantic Preloading of LaTeX Documents
  3758. storebox: Storing information for reuse
  3759. storecmd: Store the name of a defined command in a container
  3760. stringstrings: String manipulation for cosmetic and programming application
  3761. sttools: Various macros
  3762. stubs: Create tear-off stubs at the bottom of a page
  3763. subdepth: Unify maths subscript height
  3764. subeqn: Package for subequation numbering
  3765. subeqnarray: Equation array with sub numbering
  3766. subfigmat: Automates layout when using the subfigure package
  3767. subfigure: Deprecated: Figures divided into subfigures
  3768. subfiles: Individual typesetting of subfiles of a "main" document
  3769. subfloat: Sub-numbering for figures and tables
  3770. substitutefont: Easy font substitution
  3771. substr: Deal with substrings in strings
  3772. supertabular: A multi-page tables package
  3773. svg: Include and extract SVG pictures using Inkscape
  3774. svgcolor: Define SVG named colours
  3775. svn: Typeset Subversion keywords
  3776. svn-multi: Subversion keywords in multi-file LaTeX documents
  3777. svn-prov: Subversion variants of Provides... macros
  3778. svninfo: Typeset Subversion keywords
  3779. syntax: Creation of syntax diagrams
  3780. syntrace: Labels for tracing in a syntax tree
  3781. synttree: Typeset syntactic trees
  3782. tabfigures: Maintain vertical alignment of figures
  3783. tableaux: Construct tables of signs and variations
  3784. tablefootnote: Permit footnotes in tables
  3785. tableof: Tagging tables of contents
  3786. tablestyles:
  3787. tablists: Tabulated lists of short items
  3788. tabls: Better vertical spacing in tables and arrays
  3789. tabstackengine: "Tabbing" front-end to stackengine
  3790. tabto-ltx: "Tab" to a measured position in the line
  3791. tabu: Flexible LaTeX tabulars
  3792. tabularborder: Remove excess space at left and right of tabular
  3793. tabularcalc: Calculate formulas in a tabular environment
  3794. tabularew: A variation on the tabular environment
  3795. tabulary: Tabular with variable width columns balanced
  3796. tagging: Document configuration with tags
  3797. tagpair: Word-by-word glosses, translations, and bibliographic attributions
  3798. talk: A LaTeX class for presentations
  3799. tamefloats: Experimentally use holdinginserts with LaTeX floats
  3800. tasks: Horizontally columned lists
  3801. tcldoc: Doc/docstrip for tcl
  3802. tcolorbox: Coloured boxes, for LaTeX examples and theorems, etc
  3803. tdclock: A ticking digital clock package for PDF output
  3804. technics: A package to format technical documents
  3805. ted: A (primitive) token list editor
  3806. templatetools: Commands useful in LaTeX templates
  3807. termcal: Print a class calendar
  3808. termlist: Label any kind of term with a continuous counter
  3809. testhyphens: Testing hyphenation patterns
  3810. tex-label: Place a classification on each page of a document
  3811. texlogos: Ready-to-use LaTeX logos
  3812. texmate: Comprehensive chess annotation in LaTeX
  3813. texments: Using the Pygments highlighter in LaTeX
  3814. texpower: Create dynamic online presentations with LaTeX
  3815. texshade: Package for setting nucleotide and peptide alignments
  3816. texvc: Use MediaWiki LaTeX commands
  3817. textfit: Fit text to a desired size
  3818. textgreek: Upright greek letters in text
  3819. textmerg: Merge text in TeX and LaTeX
  3820. textpos: Place boxes at arbitrary positions on the LaTeX page
  3821. theoremref: References with automatic theorem names
  3822. thinsp: A stretchable thinspace for LaTeX
  3823. thmtools: Extensions to theorem environments
  3824. threadcol: Organize document columns into PDF "article thread"
  3825. threeparttable: Tables with captions and notes all the same width
  3826. threeparttablex: Notes in longtables
  3827. thumb: Thumb marks in documents
  3828. thumbs: Create thumb indexes
  3829. thumby: Create thumb indexes for printed books
  3830. ticket: Make labels, visiting-cards, pins with LaTeX
  3831. titlecaps: Setting rich-text input into Titling Caps
  3832. titlefoot: Add special material to footer of title page
  3833. titlepic: Add picture to title page of a document
  3834. titleref: A "titleref" command to cross-reference section titles
  3835. titlesec: Select alternative section titles
  3836. titling: Control over the typesetting of the maketitle command
  3837. tocbibind: Add bibliography/index/contents to Table of Contents
  3838. tocloft: Control table of contents, figures, etc
  3839. tocvsec2: Section numbering and table of contents control
  3840. todo: Make a to-do list for a document
  3841. todonotes: Marking things to do in a LaTeX document
  3842. tokenizer: A tokenizer
  3843. toolbox: Tool macros
  3844. topfloat: Move floats to the top of the page
  3845. totcount: Find the last value of a counter
  3846. totpages: Count pages in a document, and report last page number
  3847. translations: Internationalisation of LaTeX2e packages
  3848. trfsigns: Typeset transform signs
  3849. trimspaces: Trim spaces around an argument or within a macro
  3850. trivfloat: Quick float definitions in LaTeX
  3851. trsym: Symbols for transformations
  3852. truncate: Truncate text to a specified width
  3853. tucv: Support for typesetting a CV or resumee
  3854. turnthepage: Provide "turn page" instructions
  3855. twoinone: Print two pages on a single page
  3856. twoup: Print two virtual pages on each physical page
  3857. txgreeks: Shape selection for TX fonts Greek letters
  3858. type1cm: Arbitrary size font selection in LaTeX
  3859. typed-checklist: Typesetting tasks, goals, milestones, artifacts, and more in LaTeX
  3860. typeface: Select a balanced set of fonts
  3861. typogrid: Print a typographic grid
  3862. uassign: Environments and options for typesetting university assignments
  3863. ucs: Extended UTF-8 input encoding support for LaTeX
  3864. uebungsblatt: A LaTeX class for writing exercise sheets
  3865. umoline: Underline text allowing line breaking
  3866. underlin: Underlined running heads
  3867. underoverlap: Position decorations over and under expressions
  3868. undolabl: Override existing labels
  3869. units: Typeset units
  3870. unravel: Watching TeX digest tokens
  3871. upmethodology: Writing specifications such as for UP-based methodologies
  3872. upquote: Show "realistic" quotes in verbatim
  3873. uri: Hyperlinks for a wide range of URIs
  3874. ushort: Shorter (and longer) underlines and underbars
  3875. uwmslide: Slides with a simple Power Point like appearance
  3876. varindex: Luxury frontend to the index command
  3877. varsfromjobname: Extract variables from the name of the LaTeX file
  3878. varwidth: A variable-width minipage
  3879. vdmlisting: Typesetting VDM in ASCII syntax
  3880. verbasef: VERBatim Automatic Splitting of External Files
  3881. verbatimbox: Deposit verbatim text in a box
  3882. verbatimcopy: Make copies of text documents from within LaTeX
  3883. verbdef: Define commands which expand to verbatim text
  3884. verbments: Syntax highlighting of source code in LaTeX documents
  3885. version: Conditionally include text
  3886. versions: Optionally omit pieces of text
  3887. versonotes: Display brief notes on verso pages
  3888. vertbars: Mark vertical rules in margin of text
  3889. vgrid: Overlay a grid on the printed page
  3890. vhistory: Support for creating a change log
  3891. vmargin: Set various page dimensions
  3892. volumes: Typeset only parts of a document, with complete indexes etc
  3893. vpe: Source specials for PDF output
  3894. vruler: Numbering text
  3895. vwcol: Variable-width multiple text columns
  3896. wallpaper: Easy addition of wallpapers (background images) to LaTeX documents, including tiling
  3897. warning: Global warnings at the end of the logfile
  3898. warpcol: Relative alignment of rows in numeric columns in tabulars
  3899. was: A collection of small packages by Walter Schmidt
  3900. widetable: An environment for typesetting tables of specified width
  3901. williams: Miscellaneous macros by Peter Williams
  3902. withargs: Ephemeral macro use
  3903. wordlike: Simulating word processor layout
  3904. wrapfig: Produces figures which text can flow around
  3905. xargs: Define commands with many optional arguments
  3906. xassoccnt: Associated counters stepping simultaneously
  3907. xcolor-solarized: Defines the 16 colors from Ethan Schoonover's Solarized palette
  3908. xcomment: Allows selected environments to be included/excluded
  3909. xdoc: Extending the LaTeX doc system
  3910. xellipsis: Extremely configurable ellipses with formats for various style manuals
  3911. xfor: A reimplementation of the LaTeX for-loop macro
  3912. xhfill: Extending hrulefill
  3913. xifthen: Extended conditional commands
  3914. xint: Expandable operations on long numbers
  3915. xmpincl: Include eXtensible Metadata Platform data in pdfLaTeX
  3916. xnewcommand: Define global and protected commands with newcommand
  3917. xoptarg: Expandable macros that take an optional argument
  3918. xpatch: Extending etoolbox patching commands
  3919. xpeek: Define commands that peek ahead in the input stream
  3920. xprintlen: Print TeX lengths in a variety of units
  3921. xpunctuate: Process trailing punctuation which may be redundant
  3922. xsavebox: Saveboxes for repeating content without code replication, based on PDF Form XObjects
  3923. xstring: String manipulation for (La)TeX
  3924. xtab: Break tables across pages
  3925. xwatermark: Graphics and text watermarks on selected pages
  3926. xytree: Tree macros using XY-Pic
  3927. yafoot: A bundle of miscellaneous footnote packages
  3928. yagusylo: A symbol loader
  3929. ycbook: A versatile book class
  3930. ydoc: Macros for documentation of LaTeX classes and packages
  3931. yplan: Daily planner type calendar
  3932. zed-csp: Typesetting Z and CSP format specifications
  3933. ziffer: Conversion of punctuation in maths mode
  3934. zwgetfdate: Get package or file date
  3935. zwpagelayout: Page layout and crop-marks
  3936. %description -l ja
  3937. TeX Live ソフトウェアディストリビューションは、
  3938. さまざまな Unix, Macintosh, Windows、および
  3939. 他のプラットホームに対して完全な TeX システムを提供します。
  3940. 多くの異なった言語を含む TeX ドキュメントの
  3941. 編集、組版、閲覧、印刷するためのプログラム、
  3942. そして、TeX マクロやフォントライブラリの大きなコレクションを
  3943. 同梱しています。
  3944. このディストリビューションは
  3945. 同梱しているソフトウェアパッケージのためのドキュメントばかりでなく、
  3946. TeX に関するたくさんの一般的なドキュメントを含んでいます。
  3947. このパッケージは以下のようなパッケージ集です。
  3948. LaTeX additional packages:
  3949. A very large collection of add-on packages for LaTeX.
  3950. このパッケージは以下の CTAN パッケージを含んでいます:
  3951. 2up:
  3952. ESIEEcv: Curriculum vitae for French use
  3953. GS1: Typeset EAN barcodes using TeX rules, only
  3954. HA-prosper: Patches and improvements for prosper
  3955. Tabbing: Tabbing with accented letters
  3956. a0poster: Support for designing posters on large paper
  3957. a4wide: "Wide" a4 layout
  3958. a5comb: Support for a5 paper sizes
  3959. abraces: Asymmetric over-/underbraces in maths
  3960. abstract: Control the typesetting of the abstract environment
  3961. achemso: Support for American Chemical Society journal submissions
  3962. acro: Typeset acronyms
  3963. acronym: Expand acronyms at least once
  3964. acroterm: Manage and index acronyms and terms
  3965. actuarialangle: Symbol for use in "present value" statements of an annuity
  3966. addlines: A user-friendly wrapper around enlargethispage
  3967. adjmulticol: Adjusting margins for multicolumn and single column output
  3968. adjustbox: Graphics package-alike macros for "general" boxes
  3969. adrconv: BibTeX styles to implement an address database
  3970. advdate: Print a date relative to "today"
  3971. akktex: A collection of packages and classes
  3972. akletter: Comprehensive letter support
  3973. alertmessage: Alert messages for LaTeX
  3974. alnumsec: Alphanumeric section numbering
  3975. alterqcm: Multiple choice questionnaires in two column tables
  3976. altfont: Alternative font handling in LaTeX
  3977. amsaddr: Alter the position of affiliations in amsart
  3978. animate: Create PDF animations from graphics files and inline graphics
  3979. anonchap: Make chapters be typeset like sections
  3980. answers: Setting questions (or exercises) and answers
  3981. anyfontsize: Select any font size in LaTeX
  3982. appendix: Extra control of appendices
  3983. appendixnumberbeamer: Manage frame numbering in appendixes in beamer
  3984. apptools: Tools for customising appendices
  3985. arcs: Draw arcs over and under text
  3986. arrayjobx: Array data structures for (La)TeX
  3987. arraysort: Sort arrays (or portions of them)
  3988. arydshln: Draw dash-lines in array/tabular
  3989. asciilist: Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX.
  3990. assignment: A class file for typesetting homework and lab assignments
  3991. assoccnt: Associate counters, making them step when a master steps
  3992. attachfile: Attach arbitrary files to a PDF document
  3993. authoraftertitle: Make author, etc., available after maketitle
  3994. authorindex: Index citations by author names
  3995. autonum: Automatic equation references
  3996. autopdf: Conversion of graphics to pdfLaTeX-compatible formats
  3997. avremu: An 8-Bit Microcontroller Simulator written in LaTeX
  3998. background: Placement of background material on pages of a document
  3999. bankstatement: A LaTeX class for bank statements based on csv data
  4000. bashful: Invoke bash commands from within LaTeX
  4001. basicarith: Macros for typesetting basic arithmetic
  4002. bchart: Draw simple bar charts in LaTeX
  4003. beamer2thesis: Thesis presentations using beamer
  4004. beameraudience: Assembling beamer frames according to audience
  4005. beamercolorthemeowl: A flexible beamer color theme to maximize visibility
  4006. beamerdarkthemes: Dark color themes for beamer
  4007. beamerposter: Extend beamer and a0poster for custom sized posters
  4008. beamersubframe: Reorder frames in the PDF file
  4009. beamertheme-detlevcm: A beamer theme designed for use in the University of Leeds
  4010. beamertheme-metropolis: A modern LaTeX beamer theme
  4011. beamertheme-phnompenh: A simple beamer theme
  4012. beamertheme-upenn-bc: Beamer themies for Boston College and the University of Pennsylvania
  4013. beamerthemejltree: Contributed beamer theme
  4014. beamerthemenirma: A Beamer theme for academic presentations
  4015. beton: Use Concrete fonts
  4016. bewerbung: Typesetting job application
  4017. bez123: Support for Bezier curves
  4018. bezos: Packages by Javier Bezos
  4019. bhcexam: An exam class designed for Mathematics Teachers in China
  4020. bibletext: Insert Bible passages by their reference
  4021. bigfoot: Footnotes for critical editions
  4022. bigints: Writing big integrals
  4023. bizcard: Typeset business cards
  4024. blindtext: Producing 'blind' text for testing
  4025. blkarray: Extended array and tabular
  4026. block: A block letter style for the letter class
  4027. bnumexpr: Extends eTeX's numexpr...relax construct to big integers
  4028. boites: Boxes that may break across pages
  4029. bold-extra: Use bold small caps and typewriter fonts
  4030. bookcover: A class for book covers and dust jackets
  4031. bookest: Extended book class
  4032. booklet: Aids for printing simple booklets
  4033. boolexpr: A boolean expression evaluator and a switch command
  4034. bophook: Provides an At-Begin-Page hook
  4035. boxedminipage: A package for producing framed minipages
  4036. boxedminipage2e: Framed minipages of a specified total width (text and frame combined)
  4037. boxhandler: Flexible Captioning and Deferred Box/List Printing
  4038. bracketkey: Produce bracketed identification keys
  4039. braket: Dirac bra-ket and set notations
  4040. breakurl: Line-breakable url-like links in hyperref when compiling via dvips/ps2pdf
  4041. bullcntr: Display list item counter as regular pattern of bullets
  4042. bussproofs: Proof trees in the style of the sequent calculus
  4043. bxdpx-beamer: Dvipdfmx extras for use with beamer
  4044. bxdvidriver: Enables specifying a driver option effective only in DVI output
  4045. bxenclose: Enclose the document body with some pieces of code
  4046. bxnewfont: Enhanced newfont command
  4047. bxpapersize: Synchronize output paper size with layout paper size
  4048. bxpdfver: Specify version and compression level of output PDF files
  4049. calcage: Calculate the age of something, in years
  4050. calctab: Language for numeric tables
  4051. calculator: Use LaTeX as a scientific calculator
  4052. calrsfs: Copperplate calligraphic letters in LaTeX
  4053. cals: Multipage tables with wide range of features
  4054. calxxxx-yyyy: Print a calendar for a group of years
  4055. cancel: Place lines through maths formulae
  4056. canoniclayout: Create canonical page layouts with memoir
  4057. capt-of: Captions on more than floats
  4058. captcont: Retain float number across several floats
  4059. captdef: Declare free-standing caption commands
  4060. carbohydrates: Carbohydrate molecules with chemfig
  4061. cases: Numbered cases environment
  4062. casyl: Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics
  4063. catchfilebetweentags: Catch text delimited by docstrip tags
  4064. catechis: Macros for typesetting catechisms
  4065. catoptions: Preserving and recalling standard catcodes
  4066. cbcoptic: Coptic fonts and LaTeX macros for general usage and for philology
  4067. ccaption: Continuation headings and legends for floats
  4068. cclicenses: Typeset Creative Commons licence logos
  4069. cd: Typeset CD covers
  4070. cd-cover: Typeset CD covers
  4071. cdpbundl: Business letters in the Italian style
  4072. cellspace: Ensure minimal spacing of table cells
  4073. censor: Facilities for controlling restricted text in a document
  4074. changebar: Generate changebars in LaTeX documents
  4075. changelayout: Change the layout of individual pages and their text
  4076. changepage: Margin adjustment and detection of odd/even pages
  4077. changes: Manual change markup
  4078. chappg: Page numbering by chapter
  4079. chapterfolder: Package for working with complicated folder structures
  4080. chet: LaTeX layout inspired by harvmac
  4081. chextras: A companion package for the Swiss typesetter
  4082. chkfloat: Warn whenever a float is placed "to far away"
  4083. chletter: Class for typesetting letters to Swiss rules
  4084. chngcntr: Change the resetting of counters
  4085. chronology: Provides a horizontal timeline
  4086. circ: Macros for typesetting circuit diagrams
  4087. classics: Cite classic works
  4088. clefval: Key/value support with a hash
  4089. cleveref: Intelligent cross-referencing
  4090. clipboard: Copy and paste into and across documents
  4091. clock: Graphical and textual clocks for TeX and LaTeX
  4092. cmdstring: Get command name reliably
  4093. cmdtrack: Check used commands
  4094. cmsd: Interfaces to the CM Sans Serif Bold fonts
  4095. cnltx: LaTeX tools and documenting facilities
  4096. cntformats: A different way to read counters
  4097. cntperchap: Store counter values per chapter
  4098. codedoc: LaTeX code and documentation in LaTeX-format file
  4099. codepage: Support for variant code pages
  4100. codesection: Provides an environment that may be conditionally included
  4101. collcell: Collect contents of a tabular cell as argument to a macro
  4102. collectbox: Collect and process macro arguments as boxes
  4103. colordoc: Coloured syntax highlights in documentation
  4104. colorinfo: Retrieve colour model and values for defined colours
  4105. colorspace: Provides PDF color spaces
  4106. colortab: Shade cells of tables and halign
  4107. colorwav: Colours by wavelength of visible light
  4108. colorweb: Extend the color package colour space
  4109. colourchange: colourchange
  4110. combelow: Typeset "comma-below" letters, as in Romanian
  4111. combine: Bundle individual documents into a single document
  4112. comma: Formats a number by inserting commas
  4113. commado: Expandable iteration on comma-separated and filename lists
  4114. comment: Selectively include/excludes portions of text
  4115. concepts: Keeping track of formal 'concepts' for a particular field
  4116. concprog: Concert programmes
  4117. constants: Automatic numbering of constants
  4118. continue: Prints 'continuation' marks on recto pages of multipage documents
  4119. contour: Print a coloured contour around text
  4120. contracard: Generate calling cards for dances
  4121. cooking: Typeset recipes
  4122. cool: COntent-Oriented LaTeX
  4123. coollist: Manipulate COntent Oriented LaTeX Lists
  4124. coolstr: String manipulation in LaTeX
  4125. coolthms: Reference items in a theorem environment
  4126. cooltooltips: Associate a pop-up window and tooltip with PDF hyperlinks
  4127. coordsys: Draw cartesian coordinate systems
  4128. copyedit: Copyediting support for LaTeX documents
  4129. copyrightbox: Provide copyright notices for images in a document
  4130. coseoul: Context sensitive outline elements
  4131. counttexruns: Count compilations of a document
  4132. courseoutline: Prepare university course outlines
  4133. coursepaper: Prepare university course papers
  4134. coverpage: Automatic cover page creation for scientific papers
  4135. cprotect: Allow verbatim, etc., in macro arguments
  4136. crbox: Boxes with crossed corners
  4137. crossreference: Crossreferences within documents
  4138. csquotes: Context sensitive quotation facilities
  4139. csvsimple: Simple CSV file processing
  4140. cuisine: Typeset recipes
  4141. currfile: Provide file name and path of input files
  4142. currvita: Typeset a curriculum vitae
  4143. cutwin: Cut a window in a paragraph, typeset material in it
  4144. cv: A package for creating a curriculum vitae
  4145. cv4tw: LaTeX CV class, with extended details
  4146. cweb-latex: A LaTeX version of CWEB
  4147. cyber: Annotate compliance with cybersecurity requirements
  4148. cybercic: "Controls in Contents" for the cyber package
  4149. dashbox: Draw dashed boxes
  4150. dashrule: Draw dashed rules
  4151. dashundergaps: Underline with dotted or dashed lines
  4152. dataref: Manage references to experimental data
  4153. datatool: Tools to load and manipulate data
  4154. dateiliste: Extensions of the listfiles concept
  4155. datenumber: Convert a date into a number and vice versa
  4156. datetime: Change format of today with commands for current time
  4157. datetime2: Formats for dates, times and time zones
  4158. datetime2-bahasai: Bahasai language module for the datetime2 package
  4159. datetime2-basque: Basque language module for the datetime2 package
  4160. datetime2-breton: breton language module for the datetime2 package
  4161. datetime2-bulgarian: Bulgarian language module for the datetime2 package
  4162. datetime2-catalan: catalan language module for the datetime2 package
  4163. datetime2-croatian: croatian language module for the datetime2 package
  4164. datetime2-czech: czech language module for the datetime2 package
  4165. datetime2-danish: danish language module for the datetime2 package
  4166. datetime2-dutch: dutch language module for the datetime2 package
  4167. datetime2-en-fulltext: English Full Text styles for the datetime2 package
  4168. datetime2-english: English language module for the datetime2 package
  4169. datetime2-esperanto: Esperanto language module for the datetime2 package
  4170. datetime2-estonian: Estonian language module for the datetime2 package
  4171. datetime2-finnish: Finnish language module for the datetime2 package
  4172. datetime2-french: French language module for the datetime2 package
  4173. datetime2-galician: galician language module for the datetime2 package
  4174. datetime2-german: German language module for the datetime2 package
  4175. datetime2-greek: Greek language module for the datetime2 package
  4176. datetime2-hebrew: Hebrew language module for the datetime2 package
  4177. datetime2-icelandic: Icelandic language module for the datetime2 package
  4178. datetime2-irish: Irish Gaelic Language Module for the datetime2 Package
  4179. datetime2-italian: Italian language module for the datetime2 package
  4180. datetime2-it-fulltext: Italian full text styles for the datetime2 package
  4181. datetime2-latin: Latin language module for the datetime2 package
  4182. datetime2-lsorbian: Lower Sorbian language module for the datetime2 package
  4183. datetime2-magyar: magyar language module for the datetime2 package
  4184. datetime2-norsk: Norsk language module for the datetime2 package
  4185. datetime2-polish: polish language module for the datetime2 package
  4186. datetime2-portuges: Portuguese language module for the datetime2 package
  4187. datetime2-romanian: Romanian language module for the datetime2 package
  4188. datetime2-russian: russian language module for the datetime2 package
  4189. datetime2-samin: Northern Sami language module for the datetime2 package
  4190. datetime2-scottish: Scottish Gaelic Language Module for the datetime2 Package
  4191. datetime2-serbian: serbian language module for the datetime2 package
  4192. datetime2-slovak: slovak language module for the datetime2 package
  4193. datetime2-slovene: slovene language module for the datetime2 package
  4194. datetime2-spanish: Spanish language module for the datetime2 package
  4195. datetime2-swedish: swedish language module for the datetime2 package
  4196. datetime2-turkish: turkish language module for the datetime2 package
  4197. datetime2-ukrainian: Ukrainian language module for the datetime2 package
  4198. datetime2-usorbian: Upper Sorbian language module for the datetime2 package
  4199. datetime2-welsh: Welsh language module for the datetime2 package
  4200. dblfloatfix: Fixes for twocolumn floats
  4201. decimal: LaTeX package for the English raised decimal point
  4202. decorule: Decorative swelled rule using font character
  4203. delimtxt: Read and parse text tables
  4204. denisbdoc: A personal dirty package for documenting packages
  4205. diagbox: Table heads with diagonal lines
  4206. diagnose: A diagnostic tool for a TeX installation
  4207. dialogl: Macros for constructing interactive LaTeX scripts
  4208. dichokey: Construct dichotomous identification keys
  4209. dinbrief: German letter DIN style
  4210. directory: An address book using BibTeX
  4211. dirtytalk: A package to typeset quotations easier
  4212. dlfltxb: Macros related to "Introdktion til LaTeX"
  4213. dnaseq: Format DNA base sequences
  4214. doclicense: Support for putting documents under a license
  4215. docmfp: Document non-LaTeX code
  4216. docmute: Input files ignoring LaTeX preamble, etc
  4217. doctools: Tools for the documentation of LaTeX code
  4218. documentation: Documentation support for C, Java and assembler code
  4219. doi: Create correct hyperlinks for DOI numbers
  4220. dotarrow: Extendable dotted arrows
  4221. dotseqn: Flush left equations with dotted leaders to the numbers
  4222. download: Allow LaTeX to download files using an external process
  4223. dox: Extend the doc package
  4224. dpfloat: Support for double-page floats
  4225. dprogress: LaTeX-relevant log information for debugging
  4226. drac: Declare active character substitution, robustly
  4227. draftcopy: Identify draft copies
  4228. draftwatermark: Put a grey textual watermark on document pages
  4229. dtk: Document class for the journal of DANTE
  4230. dtxgallery: A small collection of minimal DTX examples
  4231. dvdcoll: A class for typesetting DVD archives
  4232. dynamicnumber: Dynamically typeset numbers and values in LaTeX through "symbolic links"
  4233. dynblocks: A simple way to create dynamic blocks for Beamer
  4234. ean13isbn: Print EAN13 for ISBN
  4235. easy: A collection of easy-to-use macros
  4236. easy-todo: To-do notes in a document
  4237. easyfig: Simplifying the use of common figures
  4238. easylist: Lists using a single active character
  4239. easyreview: Package to provide a way to review (or perform editorial process) in LaTeX
  4240. ebezier: Device independent picture environment enhancement
  4241. ecclesiastic: Typesetting Ecclesiastic Latin
  4242. ecv: A fancy Curriculum Vitae class
  4243. ed: Editorial Notes for LaTeX documents
  4244. edmargin: Multiple series of endnotes for critical editions
  4245. eemeir: Adjust the gender of words in a document
  4246. efbox: Extension of fbox, with controllable frames and colours
  4247. egplot: Encapsulate Gnuplot sources in LaTeX documents
  4248. elements: Provides properties of chemical elements
  4249. ellipsis: Fix uneven spacing around ellipses in LaTeX text mode
  4250. elmath: Mathematics in Greek texts
  4251. elocalloc: Local allocation macros for LaTeX 2015
  4252. elpres: A simple class for electronic presentations
  4253. elzcards: Typeset business cards, index cards and flash cards easyly
  4254. emarks: Named mark registers with e-TeX
  4255. embedall: Embed source files into the generated PDF
  4256. embrac: Upright brackets in emphasised text
  4257. emptypage: Make empty pages really empty
  4258. emulateapj: Produce output similar to that of APJ
  4259. endfloat: Move floats to the end, leaving markers where they belong
  4260. endheads: Running headers of the form "Notes to pp.xx-yy"
  4261. endnotes: Place footnotes at the end
  4262. engpron: Helps to type the pronunciation of English words
  4263. engrec: Enumerate with lower- or uppercase Greek letters
  4264. enotez: Support for end-notes
  4265. enumitem: Control layout of itemize, enumerate, description
  4266. enumitem-zref: Extended references to items for enumitem package
  4267. envbig: Printing addresses on envelopes
  4268. environ: A new interface for environments in LaTeX
  4269. envlab: Addresses on envelopes or mailing labels
  4270. epigraph: A package for typesetting epigraphs
  4271. epiolmec: Typesetting the Epi-Olmec Language
  4272. epyt: A simple and clean theme for LaTeX beamer class
  4273. eqell: Sympathetically spaced ellipsis after punctuation
  4274. eqlist: Description lists with equal indentation
  4275. eqname: Name tags for equations
  4276. eqparbox: Create equal-widthed parboxes
  4277. errata: Error markup for LaTeX documents
  4278. esami: Typeset exams with scrambled questions and answers
  4279. esdiff: Simplify typesetting of derivatives
  4280. esint: Extended set of integrals for Computer Modern
  4281. esint-type1: Font esint10 in Type 1 format
  4282. etaremune: Reverse-counting enumerate environment
  4283. etextools: e-TeX tools for LaTeX users and package writers
  4284. etoc: Completely customisable TOCs
  4285. etoolbox: e-TeX tools for LaTeX
  4286. eukdate: UK format dates, with weekday
  4287. europasscv: Unofficial class for the new version of the Europass curriculum vitae
  4288. europecv: Unofficial class for European curricula vitae
  4289. everyhook: Hooks for standard TeX token lists
  4290. everypage: Provide hooks to be run on every page of a document
  4291. exam: Package for typesetting exam scripts
  4292. exam-n: Exam class, focused on collaborative authoring
  4293. examdesign: LaTeX class for typesetting exams
  4294. example: Typeset examples for TeX courses
  4295. examplep: Verbatim phrases and listings in LaTeX
  4296. exceltex: Get data from Excel files into LaTeX
  4297. excludeonly: Prevent files being include-ed
  4298. exercise: Typeset exercises, problems, etc. and their answers
  4299. exercises: Typeset exercises and solutions with automatic addition of points
  4300. exp-testopt: Expandable @testopt (and related) macros
  4301. expdlist: Expanded description environments
  4302. export: Import and export values of LaTeX registers
  4303. exsheets: Create exercise sheets and exams
  4304. exsol: Exercises and solutions from the same source, into a book
  4305. extract: Extract parts of a document and write to another document
  4306. facsimile: Document class for preparing faxes
  4307. factura: Typeset and calculate invoices according to Venezuelan law
  4308. fancylabel: Complex labelling with LaTeX
  4309. fancynum: Typeset numbers
  4310. fancypar: Decoration of individual paragraphs
  4311. fancyslides: Custom presentation class built upon LaTeX Beamer
  4312. fancytabs: Fancy page border tabs
  4313. fancytooltips: Include a wide range of material in PDF tooltips
  4314. fcolumn: Typesetting financial tables
  4315. ffslides: Freeform slides based on the article class
  4316. fibeamer: Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic)
  4317. fifo-stack: FIFO and stack implementation for package writers
  4318. figsize: Auto-size graphics
  4319. filecontents: Extended filecontents and filecontents* environments
  4320. filedate: Access and compare info and modification dates
  4321. filehook: Hooks for input files
  4322. fileinfo: Enhanced display of LaTeX File Information
  4323. filemod: Provide file modification times, and compare them
  4324. fink: The LaTeX2e File Name Keeper
  4325. finstrut: Adjust behaviour of the ends of footnotes
  4326. fithesis: Thesis class and template for Masaryk University (Brno, Czech Republic)
  4327. fixcmex: Fully scalable version of Computer Modern Math Extension font
  4328. fixfoot: Multiple use of the same footnote text
  4329. fixme: Insert "fixme" notes into draft documents
  4330. fixmetodonotes: Add notes on document development
  4331. fjodor: A selection of layout styles
  4332. flabels: Labels for files and folders
  4333. flacards: Generate flashcards for printing
  4334. flagderiv: Flag style derivation package
  4335. flashcards: A class for typesetting flashcards
  4336. flashmovie: Directly embed flash movies into PDF files
  4337. flipbook: Typeset flipbook animations, in the corners of documents
  4338. flippdf: Horizontal flipping of pages with pdfLaTeX
  4339. floatflt: Wrap text around floats
  4340. floatrow: Modifying the layout of floats
  4341. flowfram: Create text frames for posters, brochures or magazines
  4342. fmp: Include Functional MetaPost in LaTeX
  4343. fmtcount: Display the value of a LaTeX counter in a variety of formats
  4344. fn2end: Convert footnotes to endnotes
  4345. fnbreak: Warn for split footnotes
  4346. fncychap: Seven predefined chapter heading styles
  4347. fncylab: Alter the format of label references
  4348. fnpara: Footnotes in paragraphs
  4349. fnpct: Manage footnote marks' interaction with punctuation
  4350. fnumprint: Print a number in 'appropriate' format
  4351. foilhtml: Interface between foiltex and LaTeX2HTML
  4352. fontaxes: Additional font axes for LaTeX
  4353. fonttable: Print font tables from a LaTeX document
  4354. footmisc: A range of footnote options
  4355. footnotebackref: Back-references from footnotes
  4356. footnotehyper: hyperref aware footnote.sty
  4357. footnoterange: References to ranges of footnotes
  4358. footnpag: Per-page numbering of footnotes
  4359. forarray: Using array structures in LaTeX
  4360. foreign: Systematic treatment of 'foreign' words in documents
  4361. forloop: Iteration in LaTeX
  4362. formlett: Letters to multiple recipients
  4363. formular: Create forms containing field for manual entry
  4364. fragments: Fragments of LaTeX code
  4365. frame: Framed boxes for Plain TeX
  4366. framed: Framed or shaded regions that can break across pages
  4367. frankenstein: A collection of LaTeX packages
  4368. frege: Typeset fregean Begriffsschrift
  4369. ftcap: Allows caption at the beginning of a table-environment
  4370. ftnxtra: Extend the applicability of the footnote command
  4371. fullblck: Left-blocking for letter class
  4372. fullminipage: Minipage spanning a complete page
  4373. fullwidth: Adjust margins of text block
  4374. fundus-calligra: Support for the calligra font in LaTeX documents
  4375. fundus-cyr: Support for Washington University Cyrillic fonts
  4376. fundus-sueterlin: Sutterlin
  4377. fwlw: Get first and last words of a page
  4378. g-brief: Letter document class
  4379. gauss: A package for Gaussian operations
  4380. gcard: Arrange text on a sheet to fold into a greeting card
  4381. gcite: Citations in a reader-friendly style
  4382. gender: Gender neutrality for languages with grammatical gender
  4383. genmpage: Generalization of LaTeX's minipages
  4384. getfiledate: Find the date of last modification of a file
  4385. getitems: Gathering items from a list-like environment
  4386. ginpenc: Modification of inputenc for German
  4387. gitinfo: Access metadata from the git distributed version control system
  4388. gitinfo2: Access metadata from the git distributed version control system
  4389. gitlog: Typesetting git changelogs
  4390. gloss: Create glossaries using BibTeX
  4391. glossaries: Create glossaries and lists of acronyms
  4392. glossaries-danish: Danish language module for glossaries package
  4393. glossaries-dutch: Dutch language module for glossaries package
  4394. glossaries-english: English language module for glossaries package
  4395. glossaries-extra: An extension to the glossaries package
  4396. glossaries-french: French language module for glossaries package
  4397. glossaries-german: German language module for glossaries package
  4398. glossaries-irish: Irish language module for glossaries package
  4399. glossaries-italian: Italian language module for glossaries package
  4400. glossaries-magyar: Magyar language module for glossaries package
  4401. glossaries-polish: Polish language module for glossaries package
  4402. glossaries-portuges: Portuges language module for glossaries package
  4403. glossaries-serbian: Serbian language module for glossaries package
  4404. glossaries-spanish: Spanish language module for glossaries package
  4405. gmdoc: Documentation of LaTeX packages
  4406. gmdoc-enhance: Some enhancements to the gmdoc package
  4407. gmiflink: Simplify usage of hypertarget and hyperlink
  4408. gmutils: Support macros for other packages
  4409. gmverb: A variant of LaTeX verb, verbatim and shortvrb
  4410. graphbox: Extend graphicx to improve placement of graphics
  4411. graphicx-psmin: Reduce size of PostScript files by not repeating images
  4412. graphicxbox: Insert a graphical image as a background
  4413. grfpaste: Include fragments of a dvi file
  4414. grid: Grid typesetting in LaTeX
  4415. grid-system: Page organisation, modelled on CSS facilities
  4416. gridset: Grid, a.k.a. in-register, setting
  4417. guitlogo: Macros for typesetting the GuIT logo
  4418. handout: Create handout for auditors of a talk
  4419. hang: Environments for hanging paragraphs and list items
  4420. hanging: Hanging paragraphs
  4421. hardwrap: Hard wrap text to a certain character length
  4422. harnon-cv: A CV document class with a vertical timeline for experience
  4423. harpoon: Extra harpoons, using the graphics package
  4424. hc: Replacement for the LaTeX classes
  4425. he-she: Alternating pronouns to aid gender-neutral writing
  4426. hhtensor: Print vectors, matrices, and tensors
  4427. histogr: Draw histograms with the LaTeX picture environment
  4428. hitec: Class for documentation
  4429. hletter: Flexible letter typesetting with flexible page headings
  4430. hpsdiss: A dissertation class
  4431. hrefhide: Suppress hyper links when printing
  4432. hvindex: Support for indexing
  4433. hypdvips: Hyperref extensions for use with dvips
  4434. hyper: Hypertext cross referencing
  4435. hypernat: Allow hyperref and natbib to work together
  4436. hyperref-docsrc:
  4437. hyperxmp: Embed XMP metadata within a LaTeX document
  4438. hyphenat: Disable/enable hypenation
  4439. idxcmds: Semantic commands for adding formatted index entries
  4440. idxlayout: Configurable index layout, responsive to KOMA-Script and memoir
  4441. iffont: Conditionally load fonts with fontspec
  4442. ifmslide: Presentation slides for screen and printouts
  4443. ifmtarg: If-then-else command for processing potentially empty arguments
  4444. ifnextok: Utility macro: peek ahead without ignoring spaces
  4445. ifoddpage: Determine if the current page is odd or even
  4446. ifplatform: Conditionals to test which platform is being used
  4447. ifthenx: Extra tests for ifthenelse
  4448. iitem: Multiple level of lists in one list-like environment
  4449. image-gallery: Create an overview of pictures from a digital camera or from other sources
  4450. imakeidx: A package for producing multiple indexes
  4451. import: Establish input relative to a directory
  4452. incgraph: Sophisticated graphics inclusion in a PDF document
  4453. indextools: Producing multiple indices
  4454. inlinedef: Inline expansions within definitions
  4455. inputtrc: Trace which file loads which
  4456. interactiveworkbook: LaTeX-based interactive PDF on the Web
  4457. interfaces: Set parameters for other packages, conveniently
  4458. inversepath: Calculate inverse file paths
  4459. invoice: Generate invoices
  4460. iso: Generic ISO standards typesetting macros
  4461. iso10303: Typesetting the STEP standards
  4462. isodate: Tune the output format of dates according to language
  4463. isodoc: A LaTeX class for typesetting letters and invoices
  4464. isonums: Display numbers in maths mode according to ISO 31-0
  4465. isorot: Rotation of document elements
  4466. isotope: A package for typesetting isotopes
  4467. issuulinks: Produce external links instead of internal ones
  4468. iwhdp: Halle Institute for Economic Research (IWH) Discussion Papers
  4469. jlabels: Make letter-sized pages of labels
  4470. jslectureplanner: Creation and management of university course material
  4471. jumplines: Articles with teasers and continuation later on
  4472. jvlisting: A replacement for LaTeX's verbatim package
  4473. kantlipsum: Generate sentences in Kant's style
  4474. kerntest: Print tables and generate control files to adjust kernings
  4475. keycommand: Simple creation of commands with key-value arguments
  4476. keyreader: A robust interface to xkeyval
  4477. keystroke: Graphical representation of keys on keyboard
  4478. keyval2e: A lightweight and robust key-value parser
  4479. keyvaltable: Re-usable tables separating content and presentation
  4480. kix: Typeset KIX codes
  4481. koma-moderncvclassic: Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with BibLaTeX
  4482. koma-script-sfs: Koma-script letter class option for Finnish
  4483. komacv: Typesetting a beautiful CV with various style options
  4484. ktv-texdata: Extract subsets of documents
  4485. l3build: A testing and building system for (La)TeX
  4486. labbook: Typeset laboratory journals
  4487. labels: Print sheets of sticky labels
  4488. lastpackage: Indicates the last loaded package
  4489. lastpage: Reference last page for Page N of M type footers
  4490. latex-tds: A structured copy of the LaTeX distribution
  4491. latexdemo: Demonstrate LaTeX code with its resulting output
  4492. layouts: Display various elements of a document's layout
  4493. lazylist: Lists in TeX's "mouth"
  4494. lcd: Alphanumerical LCD-style displays
  4495. lcg: Generate random integers
  4496. leading: Define leading with a length
  4497. leaflet: Create small handouts (flyers)
  4498. leftidx: Left and right subscripts and superscripts in math mode
  4499. lengthconvert: Express lengths in arbitrary units
  4500. lettre: Letters and faxes in French
  4501. lettrine: Typeset dropped capitals
  4502. lewis: Draw Lewis structures
  4503. lhelp: Miscellaneous helper packages
  4504. libgreek: Use Libertine or Biolinum Greek glyphs in mathematics
  4505. limap: Typeset maps and blocks according to the Information Mapping method
  4506. linegoal: A "dimen" that returns the space left on the line
  4507. lipsum: Easy access to the Lorem Ipsum dummy text
  4508. lisp-on-tex: Execute LISP code in a LaTeX document
  4509. listing: Produce formatted program listings
  4510. listlbls: Creates a list of all labels used throughout a document
  4511. listliketab: Typeset lists as tables
  4512. listofsymbols: Create and manipulate lists of symbols
  4513. lkproof: LK Proof figure macros
  4514. lmake: Process lists to do repetitive actions
  4515. locality: Various macros for keeping things local
  4516. localloc: Macros for localizing TeX register allocations
  4517. logbox: e-TeX showbox facilities for exploration purposes
  4518. logical-markup-utils: Packages for language-dependent inline quotes and dashes
  4519. logpap: Generate logarithmic graph paper with LaTeX
  4520. longfbox: Draw framed boxes with standard CSS attributes that can break over multiple pages
  4521. longfigure: Provides a figure-like environment that break over pages
  4522. longnamefilelist: Tidy listfiles with long file names
  4523. loops: General looping macros for use with LaTeX
  4524. lsc: Typesetting Live Sequence Charts
  4525. lstaddons: Add-on packages for listings: autogobble and line background
  4526. lt3graph: Provide a graph datastructure for experimental LaTeX3
  4527. ltablex: Table package extensions
  4528. ltabptch: Bug fix for longtable
  4529. ltxdockit: Documentation support
  4530. ltxindex: A LaTeX package to typeset indices with GNU's Texindex
  4531. ltxkeys: A robust key parser for LaTeX
  4532. ltxnew: A simple means of creating commands
  4533. ltxtools: A collection of LaTeX API macros
  4534. macroswap: Swap the definitions of two LaTeX macros
  4535. magaz: Magazine layout
  4536. mailing: Macros for mail merging
  4537. mailmerge: Repeating text field substitution
  4538. makebarcode: Print various kinds 2/5 and Code 39 bar codes
  4539. makebox: Defines a makebox* command
  4540. makecell: Tabular column heads and multilined cells
  4541. makecirc: A MetaPost library for drawing electrical circuit diagrams
  4542. makecmds: The new makecommand command always (re)defines a command
  4543. makedtx: Perl script to help generate dtx and ins files
  4544. makeglos: Include a glossary into a document
  4545. mandi: Macros for introductory physics and astronomy
  4546. manfnt: LaTeX support for the TeX book symbols
  4547. manuscript: Emulate look of a document typed on a typewriter
  4548. marginfix: Patch marginpar to avoid overfull margins
  4549. marginnote: Notes in the margin, even where marginpar fails
  4550. mathalfa: General package for loading maths alphabets in LaTeX
  4551. mathastext: Use the text font in maths mode
  4552. mathexam: Package for typesetting exams
  4553. maybemath: Make math bold or italic according to context
  4554. mbenotes: Notes in tables or images
  4555. mcaption: Put captions in the margin
  4556. mceinleger: Creating covers for music cassettes
  4557. mcite: Multiple items in a single citation
  4558. mciteplus: Enhanced multiple citations
  4559. mdframed: Framed environments that can split at page boundaries
  4560. media9: Multimedia inclusion package with Adobe Reader-9/X compatibility
  4561. medstarbeamer: Beamer document class for MedStar Health Research Institute
  4562. meetingmins: Format written minutes of meetings
  4563. memexsupp: Experimental memoir support
  4564. memory: Containers for data in LaTeX
  4565. menu: Typesetting menus
  4566. menukeys: Format menu sequences, paths and keystrokes from lists
  4567. method: Typeset method and variable declarations
  4568. metre: Support for the work of classicists
  4569. mfirstuc: Uppercase the first letter of a word
  4570. mftinc: Pretty-print Metafont source
  4571. midpage: Environment for vertical centring
  4572. minibox: A simple type of box for LaTeX
  4573. minifp: Fixed-point real computations to 8 decimals
  4574. minipage-marginpar: Minipages with marginal notes
  4575. minitoc: Produce a table of contents for each chapter, part or section
  4576. minorrevision: Quote and refer to a manuscript for minor revisions
  4577. minted: Highlighted source code for LaTeX
  4578. minutes: Typeset the minutes of meetings
  4579. mla-paper: Proper MLA formatting
  4580. mlist: Logical markup for lists
  4581. mmap: Include CMap resources in PDF files from pdfTeX
  4582. mnotes: Margin annotation for collaborative writing
  4583. moderncv: A modern curriculum vitae class
  4584. moderntimeline: Timelines for use with moderncv
  4585. modref: Customisation of cross-references in LaTeX
  4586. modroman: Write numbers in lower case roman numerals
  4587. monofill: Alignment of plain text
  4588. moodle: Generating Moodle quizzes via LaTeX
  4589. moreenum: More enumeration options
  4590. morefloats: Increase the number of simultaneous LaTeX floats
  4591. morehype: Hypertext tools for use with LaTeX
  4592. moresize: Allows font sizes up to 35.83pt
  4593. moreverb: Extended verbatim
  4594. morewrites: Always room for a new write stream
  4595. movie15: Multimedia inclusion package
  4596. mparhack: Work around a LaTeX bug in marginpars
  4597. msc: Draw MSC diagrams
  4598. msg: A package for LaTeX localisation
  4599. mslapa: Michael Landy's APA citation style
  4600. mtgreek: Use italic and upright greek letters with mathtime
  4601. multenum: Multi-column enumerated lists
  4602. multiaudience: Several versions of output from the same source
  4603. multibbl: Multiple bibliographies
  4604. multicap: Format captions inside multicols
  4605. multidef: Quickly define several similar macros
  4606. multienv: Multiple environments using a "key=value" syntax
  4607. multiexpand: Variations on the primitive command expandafter
  4608. multirow: Create tabular cells spanning multiple rows
  4609. mversion: Keeping track of document versions
  4610. mwe: Packages and image files for MWEs
  4611. mycv: A list-driven CV class, allowing TikZ decorations
  4612. mylatexformat: Build a format based on the preamble of a LaTeX file
  4613. nag: Detecting and warning about obsolete LaTeX commands
  4614. nameauth: Name authority mechanism for consistency in body text and index
  4615. namespc: Rudimentary C++-like namespaces in LaTeX
  4616. ncclatex: An extended general-purpose class
  4617. ncctools: A collection of general packages for LaTeX
  4618. needspace: Insert pagebreak if not enough space
  4619. nestquot: Alternate quotes between double and single with nesting
  4620. newcommand: Generate new LaTeX command definitions
  4621. newenviron: Processing an environment's body
  4622. newfile: User level management of LaTeX input and output
  4623. newlfm: Write letters, facsimiles, and memos
  4624. newspaper: Typeset newsletters to resemble newspapers
  4625. newunicodechar: Definitions of the meaning of Unicode characters
  4626. newvbtm: Define your own verbatim-like environment
  4627. newverbs: Define new versions of verb, including short verb versions
  4628. nextpage: Generalisations of the page advance commands
  4629. nfssext-cfr: Extensions to the LaTeX NFSS
  4630. nicefilelist: Provide listfiles alignment
  4631. niceframe: Support for fancy frames
  4632. nicetext: Minimal markup for simple text (Wikipedia style) and documentation
  4633. nlctdoc: Package documentation class
  4634. noconflict: Resolve macro name conflict between packages
  4635. noindentafter: Tool to prevent paragraph indentation after environments/macros
  4636. noitcrul: Improved underlines in mathematics
  4637. nolbreaks: No line breaks in text
  4638. nomencl: Produce lists of symbols as in nomenclature
  4639. nomentbl: Nomenclature typeset in a longtable
  4640. nonfloat: Non-floating table and figure captions
  4641. nonumonpart: Prevent page numbers on part pages
  4642. nopageno: No page numbers in LaTeX documents
  4643. normalcolor: Changing normalcolor
  4644. notes: Mark sections of a document
  4645. notoccite: Prevent trouble from citations in table of contents, etc
  4646. nowidow: Avoid widows
  4647. nox: Adaptable tables
  4648. ntheorem: Enhanced theorem environment
  4649. numberedblock: Print a block of code, with unique index number
  4650. numname: Convert a number to its English expression
  4651. numprint: Print numbers with separators and exponent if necessary
  4652. ocg-p: PDF OCG support in LaTeX
  4653. ocgx: Use OCGs within a PDF document without JavaScript
  4654. ocgx2: Drop-in replacement for the 'ocgx' package; adds support for dvips+ps2pdf, XeLaTeX, dvipdfmx
  4655. ocr-latex: LaTeX support for ocr fonts
  4656. octavo: Typeset books following classical design and layout
  4657. oldstyle: Old style numbers in OT1 encoding
  4658. onlyamsmath: Inhibit use of non-amsmath mathematics markup when using amsmath
  4659. opcit: Footnote-style bibliographical references
  4660. optional: Facilitate optional printing of parts of a document
  4661. options: Provides convenient key-value options for LaTeX package writers
  4662. outline: List environment for making outlines
  4663. outliner: Change section levels easily
  4664. outlines: Produce "outline" lists
  4665. overpic: Combine LaTeX commands over included graphics
  4666. pagecolor: Interrogate page colour
  4667. pagecont: Page numbering that continues between documents
  4668. pagenote: Notes at end of document
  4669. pagerange: Flexible and configurable page range typesetting
  4670. pageslts: Variants of last page labels
  4671. paper: Versions of article class, tuned for scholarly publications
  4672. papercdcase: Origami-style folding paper CD case
  4673. papermas: Compute the mass of a printed version of a document
  4674. papertex: Class for newspapers, etc
  4675. paracol: Multiple columns with texts "in parallel"
  4676. parades: Tabulators and space between paragraphs in galley approach
  4677. paralist: Enumerate and itemize within paragraphs
  4678. paresse: Define simple macros for greek letters
  4679. parnotes: Notes after every paragraph (or elsewhere)
  4680. parselines: Apply a macro to each line of an environment
  4681. pas-cours: Macros useful in preparing teaching material
  4682. pas-cv: Flexible typesetting of Curricula Vitae
  4683. pas-tableur: Create a spreadsheet layout
  4684. patch: Patch loaded packages, etc.
  4685. patchcmd: Change the definition of an existing command
  4686. pauldoc: German LaTeX package documentation
  4687. pawpict: Using graphics from PAW
  4688. pax: Extract and reinsert PDF annotations with pdfTeX
  4689. pbox: A variable-width parbox command
  4690. pbsheet: Problem sheet class
  4691. pdf14: Restore PDF 1.4 to a TeX live 2010 format
  4692. pdfcomment: A user-friendly interface to pdf annotations
  4693. pdfcprot: Activating and setting of character protruding using pdfLaTeX
  4694. pdfmarginpar: Generate marginpar-equivalent PDF annotations
  4695. pdfpagediff: Find difference between two PDF's
  4696. pdfscreen: Support screen-based document design
  4697. pdfslide: Presentation slides using pdfTeX
  4698. pdfsync: Provide links between source and PDF
  4699. pdfwin:
  4700. pdfx: PDF/X-1a and PDF/A-1b support for pdfTeX
  4701. pecha: Print Tibetan text in the classic pecha layout style
  4702. perltex: Define LaTeX macros in terms of Perl code
  4703. permute: Support for symmetric groups
  4704. petiteannonce: A class for small advertisements
  4705. philex: Cross references for named and numbered environments
  4706. photo: A float environment for photographs
  4707. piff: Macro tools by Mike Piff
  4708. pkgloader: Managing the options and loading order of other packages
  4709. placeins: Control float placement
  4710. plantslabels: Write labels for plants
  4711. plates: Arrange for "plates" sections of documents
  4712. plweb: Literate Programming for Prolog with LaTeX
  4713. polynom: Macros for manipulating polynomials
  4714. polynomial: Typeset (univariate) polynomials
  4715. polytable: Tabular-like environments with named columns
  4716. postcards: Facilitates mass-mailing of postcards (junkmail)
  4717. poster-mac: Make posters and banners with TeX
  4718. ppr-prv: Prosper preview
  4719. preprint: A bundle of packages provided "as is"
  4720. pressrelease: A class for typesetting press releases
  4721. prettyref: Make label references "self-identify"
  4722. preview: Extract bits of a LaTeX source for output
  4723. printlen: Print lengths using specified units
  4724. probsoln: Generate problem sheets and their solution sheets
  4725. program: Typesetting programs and algorithms
  4726. progress: Creates an overview of a document's state
  4727. progressbar: Visualize shares of total amounts in the form of a (progress-)bar
  4728. proofread: Commands for inserting annotations
  4729. properties: Load properties from a file
  4730. prosper: LaTeX class for high quality slides
  4731. protex: Literate programming package
  4732. protocol: A class for minutes of meetings
  4733. psfragx: A psfrag eXtension
  4734. pst-pdf: Make PDF versions of graphics by processing between runs
  4735. pstool: Support for psfrag within pdfLaTeX
  4736. pxgreeks: Shape selection for PX fonts Greek letters
  4737. python: Embed Python code in LaTeX
  4738. qcm: A LaTeX2e class for making multiple choice questionnaires
  4739. qstest: Bundle for unit tests and pattern matching
  4740. qsymbols: Maths symbol abbreviations
  4741. quotchap: Decorative chapter headings
  4742. quoting: Consolidated environment for displayed text
  4743. quotmark: Consistent quote marks
  4744. ran_toks: Randomise token strings
  4745. randtext: Randomise the order of characters in strings
  4746. rccol: Decimal-centered optionally rounded numbers in tabular
  4747. rcs-multi: Typeset RCS version control in multiple-file documents
  4748. rcsinfo: Support for the revision control system
  4749. readarray: Read, store and recall array-formatted data
  4750. realboxes: Variants of common box-commands that read their content as real box and not as macro argument
  4751. recipe: A LaTeX class to typeset recipes
  4752. recipebook: Typeset 5.5" x 8" recipes for browsing or printing
  4753. recipecard: Typeset recipes in note-card-sized boxes
  4754. rectopma: Recycle top matter
  4755. refcheck: Check references (in figures, table, equations, etc)
  4756. refenums: Define reference labels items with names of their own
  4757. reflectgraphics: Techniques for reflecting graphics
  4758. refman: Format technical reference manuals
  4759. refstyle: Advanced formatting of cross references
  4760. regcount: Display the allocation status of the TeX registers
  4761. regexpatch: High level patching of commands
  4762. register: Typeset programmable elements in digital hardware (registers)
  4763. regstats: Information about register use
  4764. relenc: A "relaxed" font encoding
  4765. relsize: Set the font size relative to the current font size
  4766. repeatindex: Repeat items in an index after a page or column break
  4767. repltext: Control how text gets copied from a PDF file
  4768. rjlparshap: Support for use of parshape in LaTeX
  4769. rlepsf: Rewrite labels in EPS graphics
  4770. rmpage: A package to help change page layout parameters in LaTeX
  4771. robustcommand: Declare robust command, with newcommand checks
  4772. robustindex: Create index with pagerefs
  4773. romanbar: Write roman number with "bars"
  4774. romanbarpagenumber: Typesetting roman page numbers
  4775. romanneg: Roman page numbers negative
  4776. romannum: Generate roman numerals instead of arabic digits
  4777. rotfloat: Rotate floats
  4778. rotpages: Typeset sets of pages upside-down and backwards
  4779. roundbox: Round boxes in LaTeX
  4780. rterface: Access to R analysis from within a document
  4781. rtkinenc: Input encoding with fallback procedures
  4782. rulercompass: A TikZ library for straight-edge and compass diagrams
  4783. rvwrite: Increase the number of available output streams in LaTeX
  4784. sauerj: A bundle of utilities by Jonathan Sauer
  4785. savefnmark: Save name of the footnote mark for reuse
  4786. savesym: Redefine symbols where names conflict
  4787. savetrees: Optimise the use of each page of a LaTeX document
  4788. scale: Scale document by sqrt(2) or magstep(2)
  4789. scalebar: Create scalebars for maps, diagrams or photos
  4790. scalerel: Constrained scaling and stretching of objects
  4791. scanpages: Support importing and embellishing scanned documents
  4792. scrlttr2copy: A letter class option file for the automatic creation of copies
  4793. sdrt: Macros for Segmented Discourse Representation Theory
  4794. secdot: Section numbers with trailing dots
  4795. sectionbox: Create fancy boxed ((sub)sub)sections
  4796. sectsty: Control sectional headers
  4797. seealso: Improve the performance of see macros with makeindex
  4798. selectp: Select pages to be output
  4799. semantic: Help for writing programming language semantics
  4800. semioneside: Put only special contents on left-hand pages in two sided layout
  4801. semproc: Seminar proceedings
  4802. sepfootnotes: Support footnotes and endnotes from separate files
  4803. seqsplit: Split long sequences of characters in a neutral way
  4804. sf298: Standard form 298
  4805. sffms: Typesetting science fiction/fantasy manuscripts
  4806. sfmath: Sans-serif mathematics
  4807. shadethm: Theorem environments that are shaded
  4808. shadow: Shadow boxes
  4809. shadowtext: Produce text with a shadow behind it
  4810. shapepar: A macro to typeset paragraphs in specific shapes
  4811. shdoc: Float environment to document the shell commands of a terminal session
  4812. shipunov: A collection of LaTeX packages and classes
  4813. shorttoc: Table of contents with different depths
  4814. show2e: Variants of show for LaTeX2e
  4815. showcharinbox: Show characters inside a box
  4816. showdim: Variants on printing dimensions
  4817. showexpl: Typesetting LaTeX source code
  4818. showlabels: Show label commands in the margin
  4819. sidecap: Typeset captions sideways
  4820. sidenotes: Typeset notes containing rich content, in the margin
  4821. silence: Selective filtering of error messages and warnings
  4822. simplecd: Simple CD, DVD covers for printing
  4823. simplecv: A simple class for writing curricula vitae
  4824. sitem: Save the optional argument of item
  4825. skb: Tools for a repository of long-living documents
  4826. skdoc: Documentation and extraction for packages and document classes
  4827. skeycommand: Create commands using parameters and keyval in parallel
  4828. skeyval: Key-value parsing combining features of xkeyval and pgfkeys
  4829. skrapport: 'Simple' class for reports, etc.
  4830. slantsc: Access different-shaped small-caps fonts
  4831. smalltableof: Create listoffigures etc. in a single chapter
  4832. smartunits: Converting between common metric and Imperial units
  4833. smartref: Extend LaTeX's ref capability
  4834. snapshot: List the external dependencies of a LaTeX document
  4835. snotez: Typeset notes, in the margin
  4836. soul: Hyphenation for letterspacing, underlining, and more
  4837. sparklines: Drawing sparklines: intense, simple, wordlike graphics
  4838. sphack: Patch LaTeX kernel spacing macros
  4839. splitindex: Unlimited number of indexes
  4840. spot: Spotlight highlighting for Beamer
  4841. spotcolor: Spot colours for pdfLaTeX
  4842. spreadtab: Spreadsheet features for LaTeX tabular environments
  4843. spverbatim: Allow line breaks within verb and verbatim output
  4844. srbook-mem:
  4845. srcltx: Jump between DVI and TeX files
  4846. sseq: Typesetting spectral sequence charts
  4847. sslides: Slides with headers and footers
  4848. stack: Tools to define and use stacks
  4849. stackengine: Highly customised stacking of objects, insets, baseline changes, etc
  4850. standalone: Compile TeX pictures stand-alone or as part of a document
  4851. statistik: Store statistics of a document
  4852. stdclsdv: Provide sectioning information for package writers
  4853. stdpage: Standard pages with n lines of at most m characters each
  4854. stex: An Infrastructure for Semantic Preloading of LaTeX Documents
  4855. storebox: Storing information for reuse
  4856. storecmd: Store the name of a defined command in a container
  4857. stringstrings: String manipulation for cosmetic and programming application
  4858. sttools: Various macros
  4859. stubs: Create tear-off stubs at the bottom of a page
  4860. subdepth: Unify maths subscript height
  4861. subeqn: Package for subequation numbering
  4862. subeqnarray: Equation array with sub numbering
  4863. subfigmat: Automates layout when using the subfigure package
  4864. subfigure: Deprecated: Figures divided into subfigures
  4865. subfiles: Individual typesetting of subfiles of a "main" document
  4866. subfloat: Sub-numbering for figures and tables
  4867. substitutefont: Easy font substitution
  4868. substr: Deal with substrings in strings
  4869. supertabular: A multi-page tables package
  4870. svg: Include and extract SVG pictures using Inkscape
  4871. svgcolor: Define SVG named colours
  4872. svn: Typeset Subversion keywords
  4873. svn-multi: Subversion keywords in multi-file LaTeX documents
  4874. svn-prov: Subversion variants of Provides... macros
  4875. svninfo: Typeset Subversion keywords
  4876. syntax: Creation of syntax diagrams
  4877. syntrace: Labels for tracing in a syntax tree
  4878. synttree: Typeset syntactic trees
  4879. tabfigures: Maintain vertical alignment of figures
  4880. tableaux: Construct tables of signs and variations
  4881. tablefootnote: Permit footnotes in tables
  4882. tableof: Tagging tables of contents
  4883. tablestyles:
  4884. tablists: Tabulated lists of short items
  4885. tabls: Better vertical spacing in tables and arrays
  4886. tabstackengine: "Tabbing" front-end to stackengine
  4887. tabto-ltx: "Tab" to a measured position in the line
  4888. tabu: Flexible LaTeX tabulars
  4889. tabularborder: Remove excess space at left and right of tabular
  4890. tabularcalc: Calculate formulas in a tabular environment
  4891. tabularew: A variation on the tabular environment
  4892. tabulary: Tabular with variable width columns balanced
  4893. tagging: Document configuration with tags
  4894. tagpair: Word-by-word glosses, translations, and bibliographic attributions
  4895. talk: A LaTeX class for presentations
  4896. tamefloats: Experimentally use holdinginserts with LaTeX floats
  4897. tasks: Horizontally columned lists
  4898. tcldoc: Doc/docstrip for tcl
  4899. tcolorbox: Coloured boxes, for LaTeX examples and theorems, etc
  4900. tdclock: A ticking digital clock package for PDF output
  4901. technics: A package to format technical documents
  4902. ted: A (primitive) token list editor
  4903. templatetools: Commands useful in LaTeX templates
  4904. termcal: Print a class calendar
  4905. termlist: Label any kind of term with a continuous counter
  4906. testhyphens: Testing hyphenation patterns
  4907. tex-label: Place a classification on each page of a document
  4908. texlogos: Ready-to-use LaTeX logos
  4909. texmate: Comprehensive chess annotation in LaTeX
  4910. texments: Using the Pygments highlighter in LaTeX
  4911. texpower: Create dynamic online presentations with LaTeX
  4912. texshade: Package for setting nucleotide and peptide alignments
  4913. texvc: Use MediaWiki LaTeX commands
  4914. textfit: Fit text to a desired size
  4915. textgreek: Upright greek letters in text
  4916. textmerg: Merge text in TeX and LaTeX
  4917. textpos: Place boxes at arbitrary positions on the LaTeX page
  4918. theoremref: References with automatic theorem names
  4919. thinsp: A stretchable thinspace for LaTeX
  4920. thmtools: Extensions to theorem environments
  4921. threadcol: Organize document columns into PDF "article thread"
  4922. threeparttable: Tables with captions and notes all the same width
  4923. threeparttablex: Notes in longtables
  4924. thumb: Thumb marks in documents
  4925. thumbs: Create thumb indexes
  4926. thumby: Create thumb indexes for printed books
  4927. ticket: Make labels, visiting-cards, pins with LaTeX
  4928. titlecaps: Setting rich-text input into Titling Caps
  4929. titlefoot: Add special material to footer of title page
  4930. titlepic: Add picture to title page of a document
  4931. titleref: A "titleref" command to cross-reference section titles
  4932. titlesec: Select alternative section titles
  4933. titling: Control over the typesetting of the maketitle command
  4934. tocbibind: Add bibliography/index/contents to Table of Contents
  4935. tocloft: Control table of contents, figures, etc
  4936. tocvsec2: Section numbering and table of contents control
  4937. todo: Make a to-do list for a document
  4938. todonotes: Marking things to do in a LaTeX document
  4939. tokenizer: A tokenizer
  4940. toolbox: Tool macros
  4941. topfloat: Move floats to the top of the page
  4942. totcount: Find the last value of a counter
  4943. totpages: Count pages in a document, and report last page number
  4944. translations: Internationalisation of LaTeX2e packages
  4945. trfsigns: Typeset transform signs
  4946. trimspaces: Trim spaces around an argument or within a macro
  4947. trivfloat: Quick float definitions in LaTeX
  4948. trsym: Symbols for transformations
  4949. truncate: Truncate text to a specified width
  4950. tucv: Support for typesetting a CV or resumee
  4951. turnthepage: Provide "turn page" instructions
  4952. twoinone: Print two pages on a single page
  4953. twoup: Print two virtual pages on each physical page
  4954. txgreeks: Shape selection for TX fonts Greek letters
  4955. type1cm: Arbitrary size font selection in LaTeX
  4956. typed-checklist: Typesetting tasks, goals, milestones, artifacts, and more in LaTeX
  4957. typeface: Select a balanced set of fonts
  4958. typogrid: Print a typographic grid
  4959. uassign: Environments and options for typesetting university assignments
  4960. ucs: Extended UTF-8 input encoding support for LaTeX
  4961. uebungsblatt: A LaTeX class for writing exercise sheets
  4962. umoline: Underline text allowing line breaking
  4963. underlin: Underlined running heads
  4964. underoverlap: Position decorations over and under expressions
  4965. undolabl: Override existing labels
  4966. units: Typeset units
  4967. unravel: Watching TeX digest tokens
  4968. upmethodology: Writing specifications such as for UP-based methodologies
  4969. upquote: Show "realistic" quotes in verbatim
  4970. uri: Hyperlinks for a wide range of URIs
  4971. ushort: Shorter (and longer) underlines and underbars
  4972. uwmslide: Slides with a simple Power Point like appearance
  4973. varindex: Luxury frontend to the index command
  4974. varsfromjobname: Extract variables from the name of the LaTeX file
  4975. varwidth: A variable-width minipage
  4976. vdmlisting: Typesetting VDM in ASCII syntax
  4977. verbasef: VERBatim Automatic Splitting of External Files
  4978. verbatimbox: Deposit verbatim text in a box
  4979. verbatimcopy: Make copies of text documents from within LaTeX
  4980. verbdef: Define commands which expand to verbatim text
  4981. verbments: Syntax highlighting of source code in LaTeX documents
  4982. version: Conditionally include text
  4983. versions: Optionally omit pieces of text
  4984. versonotes: Display brief notes on verso pages
  4985. vertbars: Mark vertical rules in margin of text
  4986. vgrid: Overlay a grid on the printed page
  4987. vhistory: Support for creating a change log
  4988. vmargin: Set various page dimensions
  4989. volumes: Typeset only parts of a document, with complete indexes etc
  4990. vpe: Source specials for PDF output
  4991. vruler: Numbering text
  4992. vwcol: Variable-width multiple text columns
  4993. wallpaper: Easy addition of wallpapers (background images) to LaTeX documents, including tiling
  4994. warning: Global warnings at the end of the logfile
  4995. warpcol: Relative alignment of rows in numeric columns in tabulars
  4996. was: A collection of small packages by Walter Schmidt
  4997. widetable: An environment for typesetting tables of specified width
  4998. williams: Miscellaneous macros by Peter Williams
  4999. withargs: Ephemeral macro use
  5000. wordlike: Simulating word processor layout
  5001. wrapfig: Produces figures which text can flow around
  5002. xargs: Define commands with many optional arguments
  5003. xassoccnt: Associated counters stepping simultaneously
  5004. xcolor-solarized: Defines the 16 colors from Ethan Schoonover's Solarized palette
  5005. xcomment: Allows selected environments to be included/excluded
  5006. xdoc: Extending the LaTeX doc system
  5007. xellipsis: Extremely configurable ellipses with formats for various style manuals
  5008. xfor: A reimplementation of the LaTeX for-loop macro
  5009. xhfill: Extending hrulefill
  5010. xifthen: Extended conditional commands
  5011. xint: Expandable operations on long numbers
  5012. xmpincl: Include eXtensible Metadata Platform data in pdfLaTeX
  5013. xnewcommand: Define global and protected commands with newcommand
  5014. xoptarg: Expandable macros that take an optional argument
  5015. xpatch: Extending etoolbox patching commands
  5016. xpeek: Define commands that peek ahead in the input stream
  5017. xprintlen: Print TeX lengths in a variety of units
  5018. xpunctuate: Process trailing punctuation which may be redundant
  5019. xsavebox: Saveboxes for repeating content without code replication, based on PDF Form XObjects
  5020. xstring: String manipulation for (La)TeX
  5021. xtab: Break tables across pages
  5022. xwatermark: Graphics and text watermarks on selected pages
  5023. xytree: Tree macros using XY-Pic
  5024. yafoot: A bundle of miscellaneous footnote packages
  5025. yagusylo: A symbol loader
  5026. ycbook: A versatile book class
  5027. ydoc: Macros for documentation of LaTeX classes and packages
  5028. yplan: Daily planner type calendar
  5029. zed-csp: Typesetting Z and CSP format specifications
  5030. ziffer: Conversion of punctuation in maths mode
  5031. zwgetfdate: Get package or file date
  5032. zwpagelayout: Page layout and crop-marks
  5033. %package doc
  5034. Summary: TeX Live: Documentation files of %{name}
  5035. Group: Applications/Publishing
  5036. Requires: %{name} = %{version}-%{release}
  5037. %description doc
  5038. This package contains documentation files of %{name}.
  5039. %prep
  5040. %setup -c -n %{name}-%{version}
  5041. %__tar -xvf %{SOURCE1}
  5042. %__tar -xvf %{SOURCE2}
  5043. %__tar -xvf %{SOURCE3}
  5044. %__tar -xvf %{SOURCE4}
  5045. %__tar -xvf %{SOURCE5}
  5046. %__tar -xvf %{SOURCE6}
  5047. %__tar -xvf %{SOURCE7}
  5048. %__tar -xvf %{SOURCE8}
  5049. %__tar -xvf %{SOURCE9}
  5050. %__tar -xvf %{SOURCE10}
  5051. %__tar -xvf %{SOURCE11}
  5052. %__tar -xvf %{SOURCE12}
  5053. %__tar -xvf %{SOURCE13}
  5054. %__tar -xvf %{SOURCE14}
  5055. %__tar -xvf %{SOURCE15}
  5056. %__tar -xvf %{SOURCE16}
  5057. %__tar -xvf %{SOURCE17}
  5058. %__tar -xvf %{SOURCE18}
  5059. %__tar -xvf %{SOURCE19}
  5060. %__tar -xvf %{SOURCE20}
  5061. %__tar -xvf %{SOURCE21}
  5062. %__tar -xvf %{SOURCE22}
  5063. %__tar -xvf %{SOURCE23}
  5064. %__tar -xvf %{SOURCE24}
  5065. %__tar -xvf %{SOURCE25}
  5066. %__tar -xvf %{SOURCE26}
  5067. %__tar -xvf %{SOURCE27}
  5068. %__tar -xvf %{SOURCE28}
  5069. %__tar -xvf %{SOURCE29}
  5070. %__tar -xvf %{SOURCE30}
  5071. %__tar -xvf %{SOURCE31}
  5072. %__tar -xvf %{SOURCE32}
  5073. %__tar -xvf %{SOURCE33}
  5074. %__tar -xvf %{SOURCE34}
  5075. %__tar -xvf %{SOURCE35}
  5076. %__tar -xvf %{SOURCE36}
  5077. %__tar -xvf %{SOURCE37}
  5078. %__tar -xvf %{SOURCE38}
  5079. %__tar -xvf %{SOURCE39}
  5080. %__tar -xvf %{SOURCE40}
  5081. %__tar -xvf %{SOURCE41}
  5082. %__tar -xvf %{SOURCE42}
  5083. %__tar -xvf %{SOURCE43}
  5084. %__tar -xvf %{SOURCE44}
  5085. %__tar -xvf %{SOURCE45}
  5086. %__tar -xvf %{SOURCE46}
  5087. %__tar -xvf %{SOURCE47}
  5088. %__tar -xvf %{SOURCE48}
  5089. %__tar -xvf %{SOURCE49}
  5090. %__tar -xvf %{SOURCE50}
  5091. %__tar -xvf %{SOURCE51}
  5092. %__tar -xvf %{SOURCE52}
  5093. %__tar -xvf %{SOURCE53}
  5094. %__tar -xvf %{SOURCE54}
  5095. %__tar -xvf %{SOURCE55}
  5096. %__tar -xvf %{SOURCE56}
  5097. %__tar -xvf %{SOURCE57}
  5098. %__tar -xvf %{SOURCE58}
  5099. %__tar -xvf %{SOURCE59}
  5100. %__tar -xvf %{SOURCE60}
  5101. %__tar -xvf %{SOURCE61}
  5102. %__tar -xvf %{SOURCE62}
  5103. %__tar -xvf %{SOURCE63}
  5104. %__tar -xvf %{SOURCE64}
  5105. %__tar -xvf %{SOURCE65}
  5106. %__tar -xvf %{SOURCE66}
  5107. %__tar -xvf %{SOURCE67}
  5108. %__tar -xvf %{SOURCE68}
  5109. %__tar -xvf %{SOURCE69}
  5110. %__tar -xvf %{SOURCE70}
  5111. %__tar -xvf %{SOURCE71}
  5112. %__tar -xvf %{SOURCE72}
  5113. %__tar -xvf %{SOURCE73}
  5114. %__tar -xvf %{SOURCE74}
  5115. %__tar -xvf %{SOURCE75}
  5116. %__tar -xvf %{SOURCE76}
  5117. %__tar -xvf %{SOURCE77}
  5118. %__tar -xvf %{SOURCE78}
  5119. %__tar -xvf %{SOURCE79}
  5120. %__tar -xvf %{SOURCE80}
  5121. %__tar -xvf %{SOURCE81}
  5122. %__tar -xvf %{SOURCE82}
  5123. %__tar -xvf %{SOURCE83}
  5124. %__tar -xvf %{SOURCE84}
  5125. %__tar -xvf %{SOURCE85}
  5126. %__tar -xvf %{SOURCE86}
  5127. %__tar -xvf %{SOURCE87}
  5128. %__tar -xvf %{SOURCE88}
  5129. %__tar -xvf %{SOURCE89}
  5130. %__tar -xvf %{SOURCE90}
  5131. %__tar -xvf %{SOURCE91}
  5132. %__tar -xvf %{SOURCE92}
  5133. %__tar -xvf %{SOURCE93}
  5134. %__tar -xvf %{SOURCE94}
  5135. %__tar -xvf %{SOURCE95}
  5136. %__tar -xvf %{SOURCE96}
  5137. %__tar -xvf %{SOURCE97}
  5138. %__tar -xvf %{SOURCE98}
  5139. %__tar -xvf %{SOURCE99}
  5140. %__tar -xvf %{SOURCE100}
  5141. %__tar -xvf %{SOURCE101}
  5142. %__tar -xvf %{SOURCE102}
  5143. %__tar -xvf %{SOURCE103}
  5144. %__tar -xvf %{SOURCE104}
  5145. %__tar -xvf %{SOURCE105}
  5146. %__tar -xvf %{SOURCE106}
  5147. %__tar -xvf %{SOURCE107}
  5148. %__tar -xvf %{SOURCE108}
  5149. %__tar -xvf %{SOURCE109}
  5150. %__tar -xvf %{SOURCE110}
  5151. %__tar -xvf %{SOURCE111}
  5152. %__tar -xvf %{SOURCE112}
  5153. %__tar -xvf %{SOURCE113}
  5154. %__tar -xvf %{SOURCE114}
  5155. %__tar -xvf %{SOURCE115}
  5156. %__tar -xvf %{SOURCE116}
  5157. %__tar -xvf %{SOURCE117}
  5158. %__tar -xvf %{SOURCE118}
  5159. %__tar -xvf %{SOURCE119}
  5160. %__tar -xvf %{SOURCE120}
  5161. %__tar -xvf %{SOURCE121}
  5162. %__tar -xvf %{SOURCE122}
  5163. %__tar -xvf %{SOURCE123}
  5164. %__tar -xvf %{SOURCE124}
  5165. %__tar -xvf %{SOURCE125}
  5166. %__tar -xvf %{SOURCE126}
  5167. %__tar -xvf %{SOURCE127}
  5168. %__tar -xvf %{SOURCE128}
  5169. %__tar -xvf %{SOURCE129}
  5170. %__tar -xvf %{SOURCE130}
  5171. %__tar -xvf %{SOURCE131}
  5172. %__tar -xvf %{SOURCE132}
  5173. %__tar -xvf %{SOURCE133}
  5174. %__tar -xvf %{SOURCE134}
  5175. %__tar -xvf %{SOURCE135}
  5176. %__tar -xvf %{SOURCE136}
  5177. %__tar -xvf %{SOURCE137}
  5178. %__tar -xvf %{SOURCE138}
  5179. %__tar -xvf %{SOURCE139}
  5180. %__tar -xvf %{SOURCE140}
  5181. %__tar -xvf %{SOURCE141}
  5182. %__tar -xvf %{SOURCE142}
  5183. %__tar -xvf %{SOURCE143}
  5184. %__tar -xvf %{SOURCE144}
  5185. %__tar -xvf %{SOURCE145}
  5186. %__tar -xvf %{SOURCE146}
  5187. %__tar -xvf %{SOURCE147}
  5188. %__tar -xvf %{SOURCE148}
  5189. %__tar -xvf %{SOURCE149}
  5190. %__tar -xvf %{SOURCE150}
  5191. %__tar -xvf %{SOURCE151}
  5192. %__tar -xvf %{SOURCE152}
  5193. %__tar -xvf %{SOURCE153}
  5194. %__tar -xvf %{SOURCE154}
  5195. %__tar -xvf %{SOURCE155}
  5196. %__tar -xvf %{SOURCE156}
  5197. %__tar -xvf %{SOURCE157}
  5198. %__tar -xvf %{SOURCE158}
  5199. %__tar -xvf %{SOURCE159}
  5200. %__tar -xvf %{SOURCE160}
  5201. %__tar -xvf %{SOURCE161}
  5202. %__tar -xvf %{SOURCE162}
  5203. %__tar -xvf %{SOURCE163}
  5204. %__tar -xvf %{SOURCE164}
  5205. %__tar -xvf %{SOURCE165}
  5206. %__tar -xvf %{SOURCE166}
  5207. %__tar -xvf %{SOURCE167}
  5208. %__tar -xvf %{SOURCE168}
  5209. %__tar -xvf %{SOURCE169}
  5210. %__tar -xvf %{SOURCE170}
  5211. %__tar -xvf %{SOURCE171}
  5212. %__tar -xvf %{SOURCE172}
  5213. %__tar -xvf %{SOURCE173}
  5214. %__tar -xvf %{SOURCE174}
  5215. %__tar -xvf %{SOURCE175}
  5216. %__tar -xvf %{SOURCE176}
  5217. %__tar -xvf %{SOURCE177}
  5218. %__tar -xvf %{SOURCE178}
  5219. %__tar -xvf %{SOURCE179}
  5220. %__tar -xvf %{SOURCE180}
  5221. %__tar -xvf %{SOURCE181}
  5222. %__tar -xvf %{SOURCE182}
  5223. %__tar -xvf %{SOURCE183}
  5224. %__tar -xvf %{SOURCE184}
  5225. %__tar -xvf %{SOURCE185}
  5226. %__tar -xvf %{SOURCE186}
  5227. %__tar -xvf %{SOURCE187}
  5228. %__tar -xvf %{SOURCE188}
  5229. %__tar -xvf %{SOURCE189}
  5230. %__tar -xvf %{SOURCE190}
  5231. %__tar -xvf %{SOURCE191}
  5232. %__tar -xvf %{SOURCE192}
  5233. %__tar -xvf %{SOURCE193}
  5234. %__tar -xvf %{SOURCE194}
  5235. %__tar -xvf %{SOURCE195}
  5236. %__tar -xvf %{SOURCE196}
  5237. %__tar -xvf %{SOURCE197}
  5238. %__tar -xvf %{SOURCE198}
  5239. %__tar -xvf %{SOURCE199}
  5240. %__tar -xvf %{SOURCE200}
  5241. %__tar -xvf %{SOURCE201}
  5242. %__tar -xvf %{SOURCE202}
  5243. %__tar -xvf %{SOURCE203}
  5244. %__tar -xvf %{SOURCE204}
  5245. %__tar -xvf %{SOURCE205}
  5246. %__tar -xvf %{SOURCE206}
  5247. %__tar -xvf %{SOURCE207}
  5248. %__tar -xvf %{SOURCE208}
  5249. %__tar -xvf %{SOURCE209}
  5250. %__tar -xvf %{SOURCE210}
  5251. %__tar -xvf %{SOURCE211}
  5252. %__tar -xvf %{SOURCE212}
  5253. %__tar -xvf %{SOURCE213}
  5254. %__tar -xvf %{SOURCE214}
  5255. %__tar -xvf %{SOURCE215}
  5256. %__tar -xvf %{SOURCE216}
  5257. %__tar -xvf %{SOURCE217}
  5258. %__tar -xvf %{SOURCE218}
  5259. %__tar -xvf %{SOURCE219}
  5260. %__tar -xvf %{SOURCE220}
  5261. %__tar -xvf %{SOURCE221}
  5262. %__tar -xvf %{SOURCE222}
  5263. %__tar -xvf %{SOURCE223}
  5264. %__tar -xvf %{SOURCE224}
  5265. %__tar -xvf %{SOURCE225}
  5266. %__tar -xvf %{SOURCE226}
  5267. %__tar -xvf %{SOURCE227}
  5268. %__tar -xvf %{SOURCE228}
  5269. %__tar -xvf %{SOURCE229}
  5270. %__tar -xvf %{SOURCE230}
  5271. %__tar -xvf %{SOURCE231}
  5272. %__tar -xvf %{SOURCE232}
  5273. %__tar -xvf %{SOURCE233}
  5274. %__tar -xvf %{SOURCE234}
  5275. %__tar -xvf %{SOURCE235}
  5276. %__tar -xvf %{SOURCE236}
  5277. %__tar -xvf %{SOURCE237}
  5278. %__tar -xvf %{SOURCE238}
  5279. %__tar -xvf %{SOURCE239}
  5280. %__tar -xvf %{SOURCE240}
  5281. %__tar -xvf %{SOURCE241}
  5282. %__tar -xvf %{SOURCE242}
  5283. %__tar -xvf %{SOURCE243}
  5284. %__tar -xvf %{SOURCE244}
  5285. %__tar -xvf %{SOURCE245}
  5286. %__tar -xvf %{SOURCE246}
  5287. %__tar -xvf %{SOURCE247}
  5288. %__tar -xvf %{SOURCE248}
  5289. %__tar -xvf %{SOURCE249}
  5290. %__tar -xvf %{SOURCE250}
  5291. %__tar -xvf %{SOURCE251}
  5292. %__tar -xvf %{SOURCE252}
  5293. %__tar -xvf %{SOURCE253}
  5294. %__tar -xvf %{SOURCE254}
  5295. %__tar -xvf %{SOURCE255}
  5296. %__tar -xvf %{SOURCE256}
  5297. %__tar -xvf %{SOURCE257}
  5298. %__tar -xvf %{SOURCE258}
  5299. %__tar -xvf %{SOURCE259}
  5300. %__tar -xvf %{SOURCE260}
  5301. %__tar -xvf %{SOURCE261}
  5302. %__tar -xvf %{SOURCE262}
  5303. %__tar -xvf %{SOURCE263}
  5304. %__tar -xvf %{SOURCE264}
  5305. %__tar -xvf %{SOURCE265}
  5306. %__tar -xvf %{SOURCE266}
  5307. %__tar -xvf %{SOURCE267}
  5308. %__tar -xvf %{SOURCE268}
  5309. %__tar -xvf %{SOURCE269}
  5310. %__tar -xvf %{SOURCE270}
  5311. %__tar -xvf %{SOURCE271}
  5312. %__tar -xvf %{SOURCE272}
  5313. %__tar -xvf %{SOURCE273}
  5314. %__tar -xvf %{SOURCE274}
  5315. %__tar -xvf %{SOURCE275}
  5316. %__tar -xvf %{SOURCE276}
  5317. %__tar -xvf %{SOURCE277}
  5318. %__tar -xvf %{SOURCE278}
  5319. %__tar -xvf %{SOURCE279}
  5320. %__tar -xvf %{SOURCE280}
  5321. %__tar -xvf %{SOURCE281}
  5322. %__tar -xvf %{SOURCE282}
  5323. %__tar -xvf %{SOURCE283}
  5324. %__tar -xvf %{SOURCE284}
  5325. %__tar -xvf %{SOURCE285}
  5326. %__tar -xvf %{SOURCE286}
  5327. %__tar -xvf %{SOURCE287}
  5328. %__tar -xvf %{SOURCE288}
  5329. %__tar -xvf %{SOURCE289}
  5330. %__tar -xvf %{SOURCE290}
  5331. %__tar -xvf %{SOURCE291}
  5332. %__tar -xvf %{SOURCE292}
  5333. %__tar -xvf %{SOURCE293}
  5334. %__tar -xvf %{SOURCE294}
  5335. %__tar -xvf %{SOURCE295}
  5336. %__tar -xvf %{SOURCE296}
  5337. %__tar -xvf %{SOURCE297}
  5338. %__tar -xvf %{SOURCE298}
  5339. %__tar -xvf %{SOURCE299}
  5340. %__tar -xvf %{SOURCE300}
  5341. %__tar -xvf %{SOURCE301}
  5342. %__tar -xvf %{SOURCE302}
  5343. %__tar -xvf %{SOURCE303}
  5344. %__tar -xvf %{SOURCE304}
  5345. %__tar -xvf %{SOURCE305}
  5346. %__tar -xvf %{SOURCE306}
  5347. %__tar -xvf %{SOURCE307}
  5348. %__tar -xvf %{SOURCE308}
  5349. %__tar -xvf %{SOURCE309}
  5350. %__tar -xvf %{SOURCE310}
  5351. %__tar -xvf %{SOURCE311}
  5352. %__tar -xvf %{SOURCE312}
  5353. %__tar -xvf %{SOURCE313}
  5354. %__tar -xvf %{SOURCE314}
  5355. %__tar -xvf %{SOURCE315}
  5356. %__tar -xvf %{SOURCE316}
  5357. %__tar -xvf %{SOURCE317}
  5358. %__tar -xvf %{SOURCE318}
  5359. %__tar -xvf %{SOURCE319}
  5360. %__tar -xvf %{SOURCE320}
  5361. %__tar -xvf %{SOURCE321}
  5362. %__tar -xvf %{SOURCE322}
  5363. %__tar -xvf %{SOURCE323}
  5364. %__tar -xvf %{SOURCE324}
  5365. %__tar -xvf %{SOURCE325}
  5366. %__tar -xvf %{SOURCE326}
  5367. %__tar -xvf %{SOURCE327}
  5368. %__tar -xvf %{SOURCE328}
  5369. %__tar -xvf %{SOURCE329}
  5370. %__tar -xvf %{SOURCE330}
  5371. %__tar -xvf %{SOURCE331}
  5372. %__tar -xvf %{SOURCE332}
  5373. %__tar -xvf %{SOURCE333}
  5374. %__tar -xvf %{SOURCE334}
  5375. %__tar -xvf %{SOURCE335}
  5376. %__tar -xvf %{SOURCE336}
  5377. %__tar -xvf %{SOURCE337}
  5378. %__tar -xvf %{SOURCE338}
  5379. %__tar -xvf %{SOURCE339}
  5380. %__tar -xvf %{SOURCE340}
  5381. %__tar -xvf %{SOURCE341}
  5382. %__tar -xvf %{SOURCE342}
  5383. %__tar -xvf %{SOURCE343}
  5384. %__tar -xvf %{SOURCE344}
  5385. %__tar -xvf %{SOURCE345}
  5386. %__tar -xvf %{SOURCE346}
  5387. %__tar -xvf %{SOURCE347}
  5388. %__tar -xvf %{SOURCE348}
  5389. %__tar -xvf %{SOURCE349}
  5390. %__tar -xvf %{SOURCE350}
  5391. %__tar -xvf %{SOURCE351}
  5392. %__tar -xvf %{SOURCE352}
  5393. %__tar -xvf %{SOURCE353}
  5394. %__tar -xvf %{SOURCE354}
  5395. %__tar -xvf %{SOURCE355}
  5396. %__tar -xvf %{SOURCE356}
  5397. %__tar -xvf %{SOURCE357}
  5398. %__tar -xvf %{SOURCE358}
  5399. %__tar -xvf %{SOURCE359}
  5400. %__tar -xvf %{SOURCE360}
  5401. %__tar -xvf %{SOURCE361}
  5402. %__tar -xvf %{SOURCE362}
  5403. %__tar -xvf %{SOURCE363}
  5404. %__tar -xvf %{SOURCE364}
  5405. %__tar -xvf %{SOURCE365}
  5406. %__tar -xvf %{SOURCE366}
  5407. %__tar -xvf %{SOURCE367}
  5408. %__tar -xvf %{SOURCE368}
  5409. %__tar -xvf %{SOURCE369}
  5410. %__tar -xvf %{SOURCE370}
  5411. %__tar -xvf %{SOURCE371}
  5412. %__tar -xvf %{SOURCE372}
  5413. %__tar -xvf %{SOURCE373}
  5414. %__tar -xvf %{SOURCE374}
  5415. %__tar -xvf %{SOURCE375}
  5416. %__tar -xvf %{SOURCE376}
  5417. %__tar -xvf %{SOURCE377}
  5418. %__tar -xvf %{SOURCE378}
  5419. %__tar -xvf %{SOURCE379}
  5420. %__tar -xvf %{SOURCE380}
  5421. %__tar -xvf %{SOURCE381}
  5422. %__tar -xvf %{SOURCE382}
  5423. %__tar -xvf %{SOURCE383}
  5424. %__tar -xvf %{SOURCE384}
  5425. %__tar -xvf %{SOURCE385}
  5426. %__tar -xvf %{SOURCE386}
  5427. %__tar -xvf %{SOURCE387}
  5428. %__tar -xvf %{SOURCE388}
  5429. %__tar -xvf %{SOURCE389}
  5430. %__tar -xvf %{SOURCE390}
  5431. %__tar -xvf %{SOURCE391}
  5432. %__tar -xvf %{SOURCE392}
  5433. %__tar -xvf %{SOURCE393}
  5434. %__tar -xvf %{SOURCE394}
  5435. %__tar -xvf %{SOURCE395}
  5436. %__tar -xvf %{SOURCE396}
  5437. %__tar -xvf %{SOURCE397}
  5438. %__tar -xvf %{SOURCE398}
  5439. %__tar -xvf %{SOURCE399}
  5440. %__tar -xvf %{SOURCE400}
  5441. %__tar -xvf %{SOURCE401}
  5442. %__tar -xvf %{SOURCE402}
  5443. %__tar -xvf %{SOURCE403}
  5444. %__tar -xvf %{SOURCE404}
  5445. %__tar -xvf %{SOURCE405}
  5446. %__tar -xvf %{SOURCE406}
  5447. %__tar -xvf %{SOURCE407}
  5448. %__tar -xvf %{SOURCE408}
  5449. %__tar -xvf %{SOURCE409}
  5450. %__tar -xvf %{SOURCE410}
  5451. %__tar -xvf %{SOURCE411}
  5452. %__tar -xvf %{SOURCE412}
  5453. %__tar -xvf %{SOURCE413}
  5454. %__tar -xvf %{SOURCE414}
  5455. %__tar -xvf %{SOURCE415}
  5456. %__tar -xvf %{SOURCE416}
  5457. %__tar -xvf %{SOURCE417}
  5458. %__tar -xvf %{SOURCE418}
  5459. %__tar -xvf %{SOURCE419}
  5460. %__tar -xvf %{SOURCE420}
  5461. %__tar -xvf %{SOURCE421}
  5462. %__tar -xvf %{SOURCE422}
  5463. %__tar -xvf %{SOURCE423}
  5464. %__tar -xvf %{SOURCE424}
  5465. %__tar -xvf %{SOURCE425}
  5466. %__tar -xvf %{SOURCE426}
  5467. %__tar -xvf %{SOURCE427}
  5468. %__tar -xvf %{SOURCE428}
  5469. %__tar -xvf %{SOURCE429}
  5470. %__tar -xvf %{SOURCE430}
  5471. %__tar -xvf %{SOURCE431}
  5472. %__tar -xvf %{SOURCE432}
  5473. %__tar -xvf %{SOURCE433}
  5474. %__tar -xvf %{SOURCE434}
  5475. %__tar -xvf %{SOURCE435}
  5476. %__tar -xvf %{SOURCE436}
  5477. %__tar -xvf %{SOURCE437}
  5478. %__tar -xvf %{SOURCE438}
  5479. %__tar -xvf %{SOURCE439}
  5480. %__tar -xvf %{SOURCE440}
  5481. %__tar -xvf %{SOURCE441}
  5482. %__tar -xvf %{SOURCE442}
  5483. %__tar -xvf %{SOURCE443}
  5484. %__tar -xvf %{SOURCE444}
  5485. %__tar -xvf %{SOURCE445}
  5486. %__tar -xvf %{SOURCE446}
  5487. %__tar -xvf %{SOURCE447}
  5488. %__tar -xvf %{SOURCE448}
  5489. %__tar -xvf %{SOURCE449}
  5490. %__tar -xvf %{SOURCE450}
  5491. %__tar -xvf %{SOURCE451}
  5492. %__tar -xvf %{SOURCE452}
  5493. %__tar -xvf %{SOURCE453}
  5494. %__tar -xvf %{SOURCE454}
  5495. %__tar -xvf %{SOURCE455}
  5496. %__tar -xvf %{SOURCE456}
  5497. %__tar -xvf %{SOURCE457}
  5498. %__tar -xvf %{SOURCE458}
  5499. %__tar -xvf %{SOURCE459}
  5500. %__tar -xvf %{SOURCE460}
  5501. %__tar -xvf %{SOURCE461}
  5502. %__tar -xvf %{SOURCE462}
  5503. %__tar -xvf %{SOURCE463}
  5504. %__tar -xvf %{SOURCE464}
  5505. %__tar -xvf %{SOURCE465}
  5506. %__tar -xvf %{SOURCE466}
  5507. %__tar -xvf %{SOURCE467}
  5508. %__tar -xvf %{SOURCE468}
  5509. %__tar -xvf %{SOURCE469}
  5510. %__tar -xvf %{SOURCE470}
  5511. %__tar -xvf %{SOURCE471}
  5512. %__tar -xvf %{SOURCE472}
  5513. %__tar -xvf %{SOURCE473}
  5514. %__tar -xvf %{SOURCE474}
  5515. %__tar -xvf %{SOURCE475}
  5516. %__tar -xvf %{SOURCE476}
  5517. %__tar -xvf %{SOURCE477}
  5518. %__tar -xvf %{SOURCE478}
  5519. %__tar -xvf %{SOURCE479}
  5520. %__tar -xvf %{SOURCE480}
  5521. %__tar -xvf %{SOURCE481}
  5522. %__tar -xvf %{SOURCE482}
  5523. %__tar -xvf %{SOURCE483}
  5524. %__tar -xvf %{SOURCE484}
  5525. %__tar -xvf %{SOURCE485}
  5526. %__tar -xvf %{SOURCE486}
  5527. %__tar -xvf %{SOURCE487}
  5528. %__tar -xvf %{SOURCE488}
  5529. %__tar -xvf %{SOURCE489}
  5530. %__tar -xvf %{SOURCE490}
  5531. %__tar -xvf %{SOURCE491}
  5532. %__tar -xvf %{SOURCE492}
  5533. %__tar -xvf %{SOURCE493}
  5534. %__tar -xvf %{SOURCE494}
  5535. %__tar -xvf %{SOURCE495}
  5536. %__tar -xvf %{SOURCE496}
  5537. %__tar -xvf %{SOURCE497}
  5538. %__tar -xvf %{SOURCE498}
  5539. %__tar -xvf %{SOURCE499}
  5540. %__tar -xvf %{SOURCE500}
  5541. %__tar -xvf %{SOURCE501}
  5542. %__tar -xvf %{SOURCE502}
  5543. %__tar -xvf %{SOURCE503}
  5544. %__tar -xvf %{SOURCE504}
  5545. %__tar -xvf %{SOURCE505}
  5546. %__tar -xvf %{SOURCE506}
  5547. %__tar -xvf %{SOURCE507}
  5548. %__tar -xvf %{SOURCE508}
  5549. %__tar -xvf %{SOURCE509}
  5550. %__tar -xvf %{SOURCE510}
  5551. %__tar -xvf %{SOURCE511}
  5552. %__tar -xvf %{SOURCE512}
  5553. %__tar -xvf %{SOURCE513}
  5554. %__tar -xvf %{SOURCE514}
  5555. %__tar -xvf %{SOURCE515}
  5556. %__tar -xvf %{SOURCE516}
  5557. %__tar -xvf %{SOURCE517}
  5558. %__tar -xvf %{SOURCE518}
  5559. %__tar -xvf %{SOURCE519}
  5560. %__tar -xvf %{SOURCE520}
  5561. %__tar -xvf %{SOURCE521}
  5562. %__tar -xvf %{SOURCE522}
  5563. %__tar -xvf %{SOURCE523}
  5564. %__tar -xvf %{SOURCE524}
  5565. %__tar -xvf %{SOURCE525}
  5566. %__tar -xvf %{SOURCE526}
  5567. %__tar -xvf %{SOURCE527}
  5568. %__tar -xvf %{SOURCE528}
  5569. %__tar -xvf %{SOURCE529}
  5570. %__tar -xvf %{SOURCE530}
  5571. %__tar -xvf %{SOURCE531}
  5572. %__tar -xvf %{SOURCE532}
  5573. %__tar -xvf %{SOURCE533}
  5574. %__tar -xvf %{SOURCE534}
  5575. %__tar -xvf %{SOURCE535}
  5576. %__tar -xvf %{SOURCE536}
  5577. %__tar -xvf %{SOURCE537}
  5578. %__tar -xvf %{SOURCE538}
  5579. %__tar -xvf %{SOURCE539}
  5580. %__tar -xvf %{SOURCE540}
  5581. %__tar -xvf %{SOURCE541}
  5582. %__tar -xvf %{SOURCE542}
  5583. %__tar -xvf %{SOURCE543}
  5584. %__tar -xvf %{SOURCE544}
  5585. %__tar -xvf %{SOURCE545}
  5586. %__tar -xvf %{SOURCE546}
  5587. %__tar -xvf %{SOURCE547}
  5588. %__tar -xvf %{SOURCE548}
  5589. %__tar -xvf %{SOURCE549}
  5590. %__tar -xvf %{SOURCE550}
  5591. %__tar -xvf %{SOURCE551}
  5592. %__tar -xvf %{SOURCE552}
  5593. %__tar -xvf %{SOURCE553}
  5594. %__tar -xvf %{SOURCE554}
  5595. %__tar -xvf %{SOURCE555}
  5596. %__tar -xvf %{SOURCE556}
  5597. %__tar -xvf %{SOURCE557}
  5598. %__tar -xvf %{SOURCE558}
  5599. %__tar -xvf %{SOURCE559}
  5600. %__tar -xvf %{SOURCE560}
  5601. %__tar -xvf %{SOURCE561}
  5602. %__tar -xvf %{SOURCE562}
  5603. %__tar -xvf %{SOURCE563}
  5604. %__tar -xvf %{SOURCE564}
  5605. %__tar -xvf %{SOURCE565}
  5606. %__tar -xvf %{SOURCE566}
  5607. %__tar -xvf %{SOURCE567}
  5608. %__tar -xvf %{SOURCE568}
  5609. %__tar -xvf %{SOURCE569}
  5610. %__tar -xvf %{SOURCE570}
  5611. %__tar -xvf %{SOURCE571}
  5612. %__tar -xvf %{SOURCE572}
  5613. %__tar -xvf %{SOURCE573}
  5614. %__tar -xvf %{SOURCE574}
  5615. %__tar -xvf %{SOURCE575}
  5616. %__tar -xvf %{SOURCE576}
  5617. %__tar -xvf %{SOURCE577}
  5618. %__tar -xvf %{SOURCE578}
  5619. %__tar -xvf %{SOURCE579}
  5620. %__tar -xvf %{SOURCE580}
  5621. %__tar -xvf %{SOURCE581}
  5622. %__tar -xvf %{SOURCE582}
  5623. %__tar -xvf %{SOURCE583}
  5624. %__tar -xvf %{SOURCE584}
  5625. %__tar -xvf %{SOURCE585}
  5626. %__tar -xvf %{SOURCE586}
  5627. %__tar -xvf %{SOURCE587}
  5628. %__tar -xvf %{SOURCE588}
  5629. %__tar -xvf %{SOURCE589}
  5630. %__tar -xvf %{SOURCE590}
  5631. %__tar -xvf %{SOURCE591}
  5632. %__tar -xvf %{SOURCE592}
  5633. %__tar -xvf %{SOURCE593}
  5634. %__tar -xvf %{SOURCE594}
  5635. %__tar -xvf %{SOURCE595}
  5636. %__tar -xvf %{SOURCE596}
  5637. %__tar -xvf %{SOURCE597}
  5638. %__tar -xvf %{SOURCE598}
  5639. %__tar -xvf %{SOURCE599}
  5640. %__tar -xvf %{SOURCE600}
  5641. %__tar -xvf %{SOURCE601}
  5642. %__tar -xvf %{SOURCE602}
  5643. %__tar -xvf %{SOURCE603}
  5644. %__tar -xvf %{SOURCE604}
  5645. %__tar -xvf %{SOURCE605}
  5646. %__tar -xvf %{SOURCE606}
  5647. %__tar -xvf %{SOURCE607}
  5648. %__tar -xvf %{SOURCE608}
  5649. %__tar -xvf %{SOURCE609}
  5650. %__tar -xvf %{SOURCE610}
  5651. %__tar -xvf %{SOURCE611}
  5652. %__tar -xvf %{SOURCE612}
  5653. %__tar -xvf %{SOURCE613}
  5654. %__tar -xvf %{SOURCE614}
  5655. %__tar -xvf %{SOURCE615}
  5656. %__tar -xvf %{SOURCE616}
  5657. %__tar -xvf %{SOURCE617}
  5658. %__tar -xvf %{SOURCE618}
  5659. %__tar -xvf %{SOURCE619}
  5660. %__tar -xvf %{SOURCE620}
  5661. %__tar -xvf %{SOURCE621}
  5662. %__tar -xvf %{SOURCE622}
  5663. %__tar -xvf %{SOURCE623}
  5664. %__tar -xvf %{SOURCE624}
  5665. %__tar -xvf %{SOURCE625}
  5666. %__tar -xvf %{SOURCE626}
  5667. %__tar -xvf %{SOURCE627}
  5668. %__tar -xvf %{SOURCE628}
  5669. %__tar -xvf %{SOURCE629}
  5670. %__tar -xvf %{SOURCE630}
  5671. %__tar -xvf %{SOURCE631}
  5672. %__tar -xvf %{SOURCE632}
  5673. %__tar -xvf %{SOURCE633}
  5674. %__tar -xvf %{SOURCE634}
  5675. %__tar -xvf %{SOURCE635}
  5676. %__tar -xvf %{SOURCE636}
  5677. %__tar -xvf %{SOURCE637}
  5678. %__tar -xvf %{SOURCE638}
  5679. %__tar -xvf %{SOURCE639}
  5680. %__tar -xvf %{SOURCE640}
  5681. %__tar -xvf %{SOURCE641}
  5682. %__tar -xvf %{SOURCE642}
  5683. %__tar -xvf %{SOURCE643}
  5684. %__tar -xvf %{SOURCE644}
  5685. %__tar -xvf %{SOURCE645}
  5686. %__tar -xvf %{SOURCE646}
  5687. %__tar -xvf %{SOURCE647}
  5688. %__tar -xvf %{SOURCE648}
  5689. %__tar -xvf %{SOURCE649}
  5690. %__tar -xvf %{SOURCE650}
  5691. %__tar -xvf %{SOURCE651}
  5692. %__tar -xvf %{SOURCE652}
  5693. %__tar -xvf %{SOURCE653}
  5694. %__tar -xvf %{SOURCE654}
  5695. %__tar -xvf %{SOURCE655}
  5696. %__tar -xvf %{SOURCE656}
  5697. %__tar -xvf %{SOURCE657}
  5698. %__tar -xvf %{SOURCE658}
  5699. %__tar -xvf %{SOURCE659}
  5700. %__tar -xvf %{SOURCE660}
  5701. %__tar -xvf %{SOURCE661}
  5702. %__tar -xvf %{SOURCE662}
  5703. %__tar -xvf %{SOURCE663}
  5704. %__tar -xvf %{SOURCE664}
  5705. %__tar -xvf %{SOURCE665}
  5706. %__tar -xvf %{SOURCE666}
  5707. %__tar -xvf %{SOURCE667}
  5708. %__tar -xvf %{SOURCE668}
  5709. %__tar -xvf %{SOURCE669}
  5710. %__tar -xvf %{SOURCE670}
  5711. %__tar -xvf %{SOURCE671}
  5712. %__tar -xvf %{SOURCE672}
  5713. %__tar -xvf %{SOURCE673}
  5714. %__tar -xvf %{SOURCE674}
  5715. %__tar -xvf %{SOURCE675}
  5716. %__tar -xvf %{SOURCE676}
  5717. %__tar -xvf %{SOURCE677}
  5718. %__tar -xvf %{SOURCE678}
  5719. %__tar -xvf %{SOURCE679}
  5720. %__tar -xvf %{SOURCE680}
  5721. %__tar -xvf %{SOURCE681}
  5722. %__tar -xvf %{SOURCE682}
  5723. %__tar -xvf %{SOURCE683}
  5724. %__tar -xvf %{SOURCE684}
  5725. %__tar -xvf %{SOURCE685}
  5726. %__tar -xvf %{SOURCE686}
  5727. %__tar -xvf %{SOURCE687}
  5728. %__tar -xvf %{SOURCE688}
  5729. %__tar -xvf %{SOURCE689}
  5730. %__tar -xvf %{SOURCE690}
  5731. %__tar -xvf %{SOURCE691}
  5732. %__tar -xvf %{SOURCE692}
  5733. %__tar -xvf %{SOURCE693}
  5734. %__tar -xvf %{SOURCE694}
  5735. %__tar -xvf %{SOURCE695}
  5736. %__tar -xvf %{SOURCE696}
  5737. %__tar -xvf %{SOURCE697}
  5738. %__tar -xvf %{SOURCE698}
  5739. %__tar -xvf %{SOURCE699}
  5740. %__tar -xvf %{SOURCE700}
  5741. %__tar -xvf %{SOURCE701}
  5742. %__tar -xvf %{SOURCE702}
  5743. %__tar -xvf %{SOURCE703}
  5744. %__tar -xvf %{SOURCE704}
  5745. %__tar -xvf %{SOURCE705}
  5746. %__tar -xvf %{SOURCE706}
  5747. %__tar -xvf %{SOURCE707}
  5748. %__tar -xvf %{SOURCE708}
  5749. %__tar -xvf %{SOURCE709}
  5750. %__tar -xvf %{SOURCE710}
  5751. %__tar -xvf %{SOURCE711}
  5752. %__tar -xvf %{SOURCE712}
  5753. %__tar -xvf %{SOURCE713}
  5754. %__tar -xvf %{SOURCE714}
  5755. %__tar -xvf %{SOURCE715}
  5756. %__tar -xvf %{SOURCE716}
  5757. %__tar -xvf %{SOURCE717}
  5758. %__tar -xvf %{SOURCE718}
  5759. %__tar -xvf %{SOURCE719}
  5760. %__tar -xvf %{SOURCE720}
  5761. %__tar -xvf %{SOURCE721}
  5762. %__tar -xvf %{SOURCE722}
  5763. %__tar -xvf %{SOURCE723}
  5764. %__tar -xvf %{SOURCE724}
  5765. %__tar -xvf %{SOURCE725}
  5766. %__tar -xvf %{SOURCE726}
  5767. %__tar -xvf %{SOURCE727}
  5768. %__tar -xvf %{SOURCE728}
  5769. %__tar -xvf %{SOURCE729}
  5770. %__tar -xvf %{SOURCE730}
  5771. %__tar -xvf %{SOURCE731}
  5772. %__tar -xvf %{SOURCE732}
  5773. %__tar -xvf %{SOURCE733}
  5774. %__tar -xvf %{SOURCE734}
  5775. %__tar -xvf %{SOURCE735}
  5776. %__tar -xvf %{SOURCE736}
  5777. %__tar -xvf %{SOURCE737}
  5778. %__tar -xvf %{SOURCE738}
  5779. %__tar -xvf %{SOURCE739}
  5780. %__tar -xvf %{SOURCE740}
  5781. %__tar -xvf %{SOURCE741}
  5782. %__tar -xvf %{SOURCE742}
  5783. %__tar -xvf %{SOURCE743}
  5784. %__tar -xvf %{SOURCE744}
  5785. %__tar -xvf %{SOURCE745}
  5786. %__tar -xvf %{SOURCE746}
  5787. %__tar -xvf %{SOURCE747}
  5788. %__tar -xvf %{SOURCE748}
  5789. %__tar -xvf %{SOURCE749}
  5790. %__tar -xvf %{SOURCE750}
  5791. %__tar -xvf %{SOURCE751}
  5792. %__tar -xvf %{SOURCE752}
  5793. %__tar -xvf %{SOURCE753}
  5794. %__tar -xvf %{SOURCE754}
  5795. %__tar -xvf %{SOURCE755}
  5796. %__tar -xvf %{SOURCE756}
  5797. %__tar -xvf %{SOURCE757}
  5798. %__tar -xvf %{SOURCE758}
  5799. %__tar -xvf %{SOURCE759}
  5800. %__tar -xvf %{SOURCE760}
  5801. %__tar -xvf %{SOURCE761}
  5802. %__tar -xvf %{SOURCE762}
  5803. %__tar -xvf %{SOURCE763}
  5804. %__tar -xvf %{SOURCE764}
  5805. %__tar -xvf %{SOURCE765}
  5806. %__tar -xvf %{SOURCE766}
  5807. %__tar -xvf %{SOURCE767}
  5808. %__tar -xvf %{SOURCE768}
  5809. %__tar -xvf %{SOURCE769}
  5810. %__tar -xvf %{SOURCE770}
  5811. %__tar -xvf %{SOURCE771}
  5812. %__tar -xvf %{SOURCE772}
  5813. %__tar -xvf %{SOURCE773}
  5814. %__tar -xvf %{SOURCE774}
  5815. %__tar -xvf %{SOURCE775}
  5816. %__tar -xvf %{SOURCE776}
  5817. %__tar -xvf %{SOURCE777}
  5818. %__tar -xvf %{SOURCE778}
  5819. %__tar -xvf %{SOURCE779}
  5820. %__tar -xvf %{SOURCE780}
  5821. %__tar -xvf %{SOURCE781}
  5822. %__tar -xvf %{SOURCE782}
  5823. %__tar -xvf %{SOURCE783}
  5824. %__tar -xvf %{SOURCE784}
  5825. %__tar -xvf %{SOURCE785}
  5826. %__tar -xvf %{SOURCE786}
  5827. %__tar -xvf %{SOURCE787}
  5828. %__tar -xvf %{SOURCE788}
  5829. %__tar -xvf %{SOURCE789}
  5830. %__tar -xvf %{SOURCE790}
  5831. %__tar -xvf %{SOURCE791}
  5832. %__tar -xvf %{SOURCE792}
  5833. %__tar -xvf %{SOURCE793}
  5834. %__tar -xvf %{SOURCE794}
  5835. %__tar -xvf %{SOURCE795}
  5836. %__tar -xvf %{SOURCE796}
  5837. %__tar -xvf %{SOURCE797}
  5838. %__tar -xvf %{SOURCE798}
  5839. %__tar -xvf %{SOURCE799}
  5840. %__tar -xvf %{SOURCE800}
  5841. %__tar -xvf %{SOURCE801}
  5842. %__tar -xvf %{SOURCE802}
  5843. %__tar -xvf %{SOURCE803}
  5844. %__tar -xvf %{SOURCE804}
  5845. %__tar -xvf %{SOURCE805}
  5846. %__tar -xvf %{SOURCE806}
  5847. %__tar -xvf %{SOURCE807}
  5848. %__tar -xvf %{SOURCE808}
  5849. %__tar -xvf %{SOURCE809}
  5850. %__tar -xvf %{SOURCE810}
  5851. %__tar -xvf %{SOURCE811}
  5852. %__tar -xvf %{SOURCE812}
  5853. %__tar -xvf %{SOURCE813}
  5854. %__tar -xvf %{SOURCE814}
  5855. %__tar -xvf %{SOURCE815}
  5856. %__tar -xvf %{SOURCE816}
  5857. %__tar -xvf %{SOURCE817}
  5858. %__tar -xvf %{SOURCE818}
  5859. %__tar -xvf %{SOURCE819}
  5860. %__tar -xvf %{SOURCE820}
  5861. %__tar -xvf %{SOURCE821}
  5862. %__tar -xvf %{SOURCE822}
  5863. %__tar -xvf %{SOURCE823}
  5864. %__tar -xvf %{SOURCE824}
  5865. %__tar -xvf %{SOURCE825}
  5866. %__tar -xvf %{SOURCE826}
  5867. %__tar -xvf %{SOURCE827}
  5868. %__tar -xvf %{SOURCE828}
  5869. %__tar -xvf %{SOURCE829}
  5870. %__tar -xvf %{SOURCE830}
  5871. %__tar -xvf %{SOURCE831}
  5872. %__tar -xvf %{SOURCE832}
  5873. %__tar -xvf %{SOURCE833}
  5874. %__tar -xvf %{SOURCE834}
  5875. %__tar -xvf %{SOURCE835}
  5876. %__tar -xvf %{SOURCE836}
  5877. %__tar -xvf %{SOURCE837}
  5878. %__tar -xvf %{SOURCE838}
  5879. %__tar -xvf %{SOURCE839}
  5880. %__tar -xvf %{SOURCE840}
  5881. %__tar -xvf %{SOURCE841}
  5882. %__tar -xvf %{SOURCE842}
  5883. %__tar -xvf %{SOURCE843}
  5884. %__tar -xvf %{SOURCE844}
  5885. %__tar -xvf %{SOURCE845}
  5886. %__tar -xvf %{SOURCE846}
  5887. %__tar -xvf %{SOURCE847}
  5888. %__tar -xvf %{SOURCE848}
  5889. %__tar -xvf %{SOURCE849}
  5890. %__tar -xvf %{SOURCE850}
  5891. %__tar -xvf %{SOURCE851}
  5892. %__tar -xvf %{SOURCE852}
  5893. %__tar -xvf %{SOURCE853}
  5894. %__tar -xvf %{SOURCE854}
  5895. %__tar -xvf %{SOURCE855}
  5896. %__tar -xvf %{SOURCE856}
  5897. %__tar -xvf %{SOURCE857}
  5898. %__tar -xvf %{SOURCE858}
  5899. %__tar -xvf %{SOURCE859}
  5900. %__tar -xvf %{SOURCE860}
  5901. %__tar -xvf %{SOURCE861}
  5902. %__tar -xvf %{SOURCE862}
  5903. %__tar -xvf %{SOURCE863}
  5904. %__tar -xvf %{SOURCE864}
  5905. %__tar -xvf %{SOURCE865}
  5906. %__tar -xvf %{SOURCE866}
  5907. %__tar -xvf %{SOURCE867}
  5908. %__tar -xvf %{SOURCE868}
  5909. %__tar -xvf %{SOURCE869}
  5910. %__tar -xvf %{SOURCE870}
  5911. %__tar -xvf %{SOURCE871}
  5912. %__tar -xvf %{SOURCE872}
  5913. %__tar -xvf %{SOURCE873}
  5914. %__tar -xvf %{SOURCE874}
  5915. %__tar -xvf %{SOURCE875}
  5916. %__tar -xvf %{SOURCE876}
  5917. %__tar -xvf %{SOURCE877}
  5918. %__tar -xvf %{SOURCE878}
  5919. %__tar -xvf %{SOURCE879}
  5920. %__tar -xvf %{SOURCE880}
  5921. %__tar -xvf %{SOURCE881}
  5922. %__tar -xvf %{SOURCE882}
  5923. %__tar -xvf %{SOURCE883}
  5924. %__tar -xvf %{SOURCE884}
  5925. %__tar -xvf %{SOURCE885}
  5926. %__tar -xvf %{SOURCE886}
  5927. %__tar -xvf %{SOURCE887}
  5928. %__tar -xvf %{SOURCE888}
  5929. %__tar -xvf %{SOURCE889}
  5930. %__tar -xvf %{SOURCE890}
  5931. %__tar -xvf %{SOURCE891}
  5932. %__tar -xvf %{SOURCE892}
  5933. %__tar -xvf %{SOURCE893}
  5934. %__tar -xvf %{SOURCE894}
  5935. %__tar -xvf %{SOURCE895}
  5936. %__tar -xvf %{SOURCE896}
  5937. %__tar -xvf %{SOURCE897}
  5938. %__tar -xvf %{SOURCE898}
  5939. %__tar -xvf %{SOURCE899}
  5940. %__tar -xvf %{SOURCE900}
  5941. %__tar -xvf %{SOURCE901}
  5942. %__tar -xvf %{SOURCE902}
  5943. %__tar -xvf %{SOURCE903}
  5944. %__tar -xvf %{SOURCE904}
  5945. %__tar -xvf %{SOURCE905}
  5946. %__tar -xvf %{SOURCE906}
  5947. %__tar -xvf %{SOURCE907}
  5948. %__tar -xvf %{SOURCE908}
  5949. %__tar -xvf %{SOURCE909}
  5950. %__tar -xvf %{SOURCE910}
  5951. %__tar -xvf %{SOURCE911}
  5952. %__tar -xvf %{SOURCE912}
  5953. %__tar -xvf %{SOURCE913}
  5954. %__tar -xvf %{SOURCE914}
  5955. %__tar -xvf %{SOURCE915}
  5956. %__tar -xvf %{SOURCE916}
  5957. %__tar -xvf %{SOURCE917}
  5958. %__tar -xvf %{SOURCE918}
  5959. %__tar -xvf %{SOURCE919}
  5960. %__tar -xvf %{SOURCE920}
  5961. %__tar -xvf %{SOURCE921}
  5962. %__tar -xvf %{SOURCE922}
  5963. %__tar -xvf %{SOURCE923}
  5964. %__tar -xvf %{SOURCE924}
  5965. %__tar -xvf %{SOURCE925}
  5966. %__tar -xvf %{SOURCE926}
  5967. %__tar -xvf %{SOURCE927}
  5968. %__tar -xvf %{SOURCE928}
  5969. %__tar -xvf %{SOURCE929}
  5970. %__tar -xvf %{SOURCE930}
  5971. %__tar -xvf %{SOURCE931}
  5972. %__tar -xvf %{SOURCE932}
  5973. %__tar -xvf %{SOURCE933}
  5974. %__tar -xvf %{SOURCE934}
  5975. %__tar -xvf %{SOURCE935}
  5976. %__tar -xvf %{SOURCE936}
  5977. %__tar -xvf %{SOURCE937}
  5978. %__tar -xvf %{SOURCE938}
  5979. %__tar -xvf %{SOURCE939}
  5980. %__tar -xvf %{SOURCE940}
  5981. %__tar -xvf %{SOURCE941}
  5982. %__tar -xvf %{SOURCE942}
  5983. %__tar -xvf %{SOURCE943}
  5984. %__tar -xvf %{SOURCE944}
  5985. %__tar -xvf %{SOURCE945}
  5986. %__tar -xvf %{SOURCE946}
  5987. %__tar -xvf %{SOURCE947}
  5988. %__tar -xvf %{SOURCE948}
  5989. %__tar -xvf %{SOURCE949}
  5990. %__tar -xvf %{SOURCE950}
  5991. %__tar -xvf %{SOURCE951}
  5992. %__tar -xvf %{SOURCE952}
  5993. %__tar -xvf %{SOURCE953}
  5994. %__tar -xvf %{SOURCE954}
  5995. %__tar -xvf %{SOURCE955}
  5996. %__tar -xvf %{SOURCE956}
  5997. %__tar -xvf %{SOURCE957}
  5998. %__tar -xvf %{SOURCE958}
  5999. %__tar -xvf %{SOURCE959}
  6000. %__tar -xvf %{SOURCE960}
  6001. %__tar -xvf %{SOURCE961}
  6002. %__tar -xvf %{SOURCE962}
  6003. %__tar -xvf %{SOURCE963}
  6004. %__tar -xvf %{SOURCE964}
  6005. %__tar -xvf %{SOURCE965}
  6006. %__tar -xvf %{SOURCE966}
  6007. %__tar -xvf %{SOURCE967}
  6008. %__tar -xvf %{SOURCE968}
  6009. %__tar -xvf %{SOURCE969}
  6010. %__tar -xvf %{SOURCE970}
  6011. %__tar -xvf %{SOURCE971}
  6012. %__tar -xvf %{SOURCE972}
  6013. %__tar -xvf %{SOURCE973}
  6014. %__tar -xvf %{SOURCE974}
  6015. %__tar -xvf %{SOURCE975}
  6016. %__tar -xvf %{SOURCE976}
  6017. %__tar -xvf %{SOURCE977}
  6018. %__tar -xvf %{SOURCE978}
  6019. %__tar -xvf %{SOURCE979}
  6020. %__tar -xvf %{SOURCE980}
  6021. %__tar -xvf %{SOURCE981}
  6022. %__tar -xvf %{SOURCE982}
  6023. %__tar -xvf %{SOURCE983}
  6024. %__tar -xvf %{SOURCE984}
  6025. %__tar -xvf %{SOURCE985}
  6026. %__tar -xvf %{SOURCE986}
  6027. %__tar -xvf %{SOURCE987}
  6028. %__tar -xvf %{SOURCE988}
  6029. %__tar -xvf %{SOURCE989}
  6030. %__tar -xvf %{SOURCE990}
  6031. %__tar -xvf %{SOURCE991}
  6032. %__tar -xvf %{SOURCE992}
  6033. %__tar -xvf %{SOURCE993}
  6034. %__tar -xvf %{SOURCE994}
  6035. %__tar -xvf %{SOURCE995}
  6036. %__tar -xvf %{SOURCE996}
  6037. %__tar -xvf %{SOURCE997}
  6038. %__tar -xvf %{SOURCE998}
  6039. %__tar -xvf %{SOURCE999}
  6040. %__tar -xvf %{SOURCE1000}
  6041. %__tar -xvf %{SOURCE1001}
  6042. %__tar -xvf %{SOURCE1002}
  6043. %__tar -xvf %{SOURCE1003}
  6044. %__tar -xvf %{SOURCE1004}
  6045. %__tar -xvf %{SOURCE1005}
  6046. %__tar -xvf %{SOURCE1006}
  6047. %__tar -xvf %{SOURCE1007}
  6048. %__tar -xvf %{SOURCE1008}
  6049. %__tar -xvf %{SOURCE1009}
  6050. %__tar -xvf %{SOURCE1010}
  6051. %__tar -xvf %{SOURCE1011}
  6052. %__tar -xvf %{SOURCE1012}
  6053. %__tar -xvf %{SOURCE1013}
  6054. %__tar -xvf %{SOURCE1014}
  6055. %__tar -xvf %{SOURCE1015}
  6056. %__tar -xvf %{SOURCE1016}
  6057. %__tar -xvf %{SOURCE1017}
  6058. %__tar -xvf %{SOURCE1018}
  6059. %__tar -xvf %{SOURCE1019}
  6060. %__tar -xvf %{SOURCE1020}
  6061. %__tar -xvf %{SOURCE1021}
  6062. %__tar -xvf %{SOURCE1022}
  6063. %__tar -xvf %{SOURCE1023}
  6064. %__tar -xvf %{SOURCE1024}
  6065. %__tar -xvf %{SOURCE1025}
  6066. %__tar -xvf %{SOURCE1026}
  6067. %__tar -xvf %{SOURCE1027}
  6068. %__tar -xvf %{SOURCE1028}
  6069. %__tar -xvf %{SOURCE1029}
  6070. %__tar -xvf %{SOURCE1030}
  6071. %__tar -xvf %{SOURCE1031}
  6072. %__tar -xvf %{SOURCE1032}
  6073. %__tar -xvf %{SOURCE1033}
  6074. %__tar -xvf %{SOURCE1034}
  6075. %__tar -xvf %{SOURCE1035}
  6076. %__tar -xvf %{SOURCE1036}
  6077. %__tar -xvf %{SOURCE1037}
  6078. %__tar -xvf %{SOURCE1038}
  6079. %__tar -xvf %{SOURCE1039}
  6080. %__tar -xvf %{SOURCE1040}
  6081. %__tar -xvf %{SOURCE1041}
  6082. %__tar -xvf %{SOURCE1042}
  6083. %__tar -xvf %{SOURCE1043}
  6084. %__tar -xvf %{SOURCE1044}
  6085. %__tar -xvf %{SOURCE1045}
  6086. %__tar -xvf %{SOURCE1046}
  6087. %__tar -xvf %{SOURCE1047}
  6088. %__tar -xvf %{SOURCE1048}
  6089. %__tar -xvf %{SOURCE1049}
  6090. %__tar -xvf %{SOURCE1050}
  6091. %__tar -xvf %{SOURCE1051}
  6092. %__tar -xvf %{SOURCE1052}
  6093. %__tar -xvf %{SOURCE1053}
  6094. %__tar -xvf %{SOURCE1054}
  6095. %__tar -xvf %{SOURCE1055}
  6096. %__tar -xvf %{SOURCE1056}
  6097. %__tar -xvf %{SOURCE1057}
  6098. %__tar -xvf %{SOURCE1058}
  6099. %__tar -xvf %{SOURCE1059}
  6100. %__tar -xvf %{SOURCE1060}
  6101. %__tar -xvf %{SOURCE1061}
  6102. %__tar -xvf %{SOURCE1062}
  6103. %__tar -xvf %{SOURCE1063}
  6104. %__tar -xvf %{SOURCE1064}
  6105. %__tar -xvf %{SOURCE1065}
  6106. %__tar -xvf %{SOURCE1066}
  6107. %__tar -xvf %{SOURCE1067}
  6108. %__tar -xvf %{SOURCE1068}
  6109. %__tar -xvf %{SOURCE1069}
  6110. %__tar -xvf %{SOURCE1070}
  6111. %__tar -xvf %{SOURCE1071}
  6112. %__tar -xvf %{SOURCE1072}
  6113. %__tar -xvf %{SOURCE1073}
  6114. %__tar -xvf %{SOURCE1074}
  6115. %__tar -xvf %{SOURCE1075}
  6116. %__tar -xvf %{SOURCE1076}
  6117. %__tar -xvf %{SOURCE1077}
  6118. %__tar -xvf %{SOURCE1078}
  6119. %__tar -xvf %{SOURCE1079}
  6120. %__tar -xvf %{SOURCE1080}
  6121. %__tar -xvf %{SOURCE1081}
  6122. %__tar -xvf %{SOURCE1082}
  6123. %__tar -xvf %{SOURCE1083}
  6124. %__tar -xvf %{SOURCE1084}
  6125. %__tar -xvf %{SOURCE1085}
  6126. %__tar -xvf %{SOURCE1086}
  6127. %__tar -xvf %{SOURCE1087}
  6128. %__tar -xvf %{SOURCE1088}
  6129. %__tar -xvf %{SOURCE1089}
  6130. %__tar -xvf %{SOURCE1090}
  6131. %__tar -xvf %{SOURCE1091}
  6132. %__tar -xvf %{SOURCE1092}
  6133. %__tar -xvf %{SOURCE1093}
  6134. %__tar -xvf %{SOURCE1094}
  6135. %__tar -xvf %{SOURCE1095}
  6136. %__tar -xvf %{SOURCE1096}
  6137. %__tar -xvf %{SOURCE1097}
  6138. %__tar -xvf %{SOURCE1098}
  6139. %__tar -xvf %{SOURCE1099}
  6140. %__tar -xvf %{SOURCE1100}
  6141. %__tar -xvf %{SOURCE1101}
  6142. %__tar -xvf %{SOURCE1102}
  6143. %__tar -xvf %{SOURCE1103}
  6144. %__tar -xvf %{SOURCE1104}
  6145. %__tar -xvf %{SOURCE1105}
  6146. %__tar -xvf %{SOURCE1106}
  6147. %__tar -xvf %{SOURCE1107}
  6148. %__tar -xvf %{SOURCE1108}
  6149. %__tar -xvf %{SOURCE1109}
  6150. %__tar -xvf %{SOURCE1110}
  6151. %__tar -xvf %{SOURCE1111}
  6152. %__tar -xvf %{SOURCE1112}
  6153. %__tar -xvf %{SOURCE1113}
  6154. %__tar -xvf %{SOURCE1114}
  6155. %__tar -xvf %{SOURCE1115}
  6156. %__tar -xvf %{SOURCE1116}
  6157. %__tar -xvf %{SOURCE1117}
  6158. %__tar -xvf %{SOURCE1118}
  6159. %__tar -xvf %{SOURCE1119}
  6160. %__tar -xvf %{SOURCE1120}
  6161. %__tar -xvf %{SOURCE1121}
  6162. %__tar -xvf %{SOURCE1122}
  6163. %__tar -xvf %{SOURCE1123}
  6164. %__tar -xvf %{SOURCE1124}
  6165. %__tar -xvf %{SOURCE1125}
  6166. %__tar -xvf %{SOURCE1126}
  6167. %__tar -xvf %{SOURCE1127}
  6168. %__tar -xvf %{SOURCE1128}
  6169. %__tar -xvf %{SOURCE1129}
  6170. %__tar -xvf %{SOURCE1130}
  6171. %__tar -xvf %{SOURCE1131}
  6172. %__tar -xvf %{SOURCE1132}
  6173. %__tar -xvf %{SOURCE1133}
  6174. %__tar -xvf %{SOURCE1134}
  6175. %__tar -xvf %{SOURCE1135}
  6176. %__tar -xvf %{SOURCE1136}
  6177. %__tar -xvf %{SOURCE1137}
  6178. %__tar -xvf %{SOURCE1138}
  6179. %__tar -xvf %{SOURCE1139}
  6180. %__tar -xvf %{SOURCE1140}
  6181. %__tar -xvf %{SOURCE1141}
  6182. %__tar -xvf %{SOURCE1142}
  6183. %__tar -xvf %{SOURCE1143}
  6184. %__tar -xvf %{SOURCE1144}
  6185. %__tar -xvf %{SOURCE1145}
  6186. %__tar -xvf %{SOURCE1146}
  6187. %__tar -xvf %{SOURCE1147}
  6188. %__tar -xvf %{SOURCE1148}
  6189. %__tar -xvf %{SOURCE1149}
  6190. %__tar -xvf %{SOURCE1150}
  6191. %__tar -xvf %{SOURCE1151}
  6192. %__tar -xvf %{SOURCE1152}
  6193. %__tar -xvf %{SOURCE1153}
  6194. %__tar -xvf %{SOURCE1154}
  6195. %__tar -xvf %{SOURCE1155}
  6196. %__tar -xvf %{SOURCE1156}
  6197. %__tar -xvf %{SOURCE1157}
  6198. %__tar -xvf %{SOURCE1158}
  6199. %__tar -xvf %{SOURCE1159}
  6200. %__tar -xvf %{SOURCE1160}
  6201. %__tar -xvf %{SOURCE1161}
  6202. %__tar -xvf %{SOURCE1162}
  6203. %__tar -xvf %{SOURCE1163}
  6204. %__tar -xvf %{SOURCE1164}
  6205. %__tar -xvf %{SOURCE1165}
  6206. %__tar -xvf %{SOURCE1166}
  6207. %__tar -xvf %{SOURCE1167}
  6208. %__tar -xvf %{SOURCE1168}
  6209. %__tar -xvf %{SOURCE1169}
  6210. %__tar -xvf %{SOURCE1170}
  6211. %__tar -xvf %{SOURCE1171}
  6212. %__tar -xvf %{SOURCE1172}
  6213. %__tar -xvf %{SOURCE1173}
  6214. %__tar -xvf %{SOURCE1174}
  6215. %__tar -xvf %{SOURCE1175}
  6216. %__tar -xvf %{SOURCE1176}
  6217. %__tar -xvf %{SOURCE1177}
  6218. %__tar -xvf %{SOURCE1178}
  6219. %__tar -xvf %{SOURCE1179}
  6220. %__tar -xvf %{SOURCE1180}
  6221. %__tar -xvf %{SOURCE1181}
  6222. %__tar -xvf %{SOURCE1182}
  6223. %__tar -xvf %{SOURCE1183}
  6224. %__tar -xvf %{SOURCE1184}
  6225. %__tar -xvf %{SOURCE1185}
  6226. %__tar -xvf %{SOURCE1186}
  6227. %__tar -xvf %{SOURCE1187}
  6228. %__tar -xvf %{SOURCE1188}
  6229. %__tar -xvf %{SOURCE1189}
  6230. %__tar -xvf %{SOURCE1190}
  6231. %__tar -xvf %{SOURCE1191}
  6232. %__tar -xvf %{SOURCE1192}
  6233. %__tar -xvf %{SOURCE1193}
  6234. %__tar -xvf %{SOURCE1194}
  6235. %__tar -xvf %{SOURCE1195}
  6236. %__tar -xvf %{SOURCE1196}
  6237. %__tar -xvf %{SOURCE1197}
  6238. %__tar -xvf %{SOURCE1198}
  6239. %__tar -xvf %{SOURCE1199}
  6240. %__tar -xvf %{SOURCE1200}
  6241. %__tar -xvf %{SOURCE1201}
  6242. %__tar -xvf %{SOURCE1202}
  6243. %__tar -xvf %{SOURCE1203}
  6244. %__tar -xvf %{SOURCE1204}
  6245. %__tar -xvf %{SOURCE1205}
  6246. %__tar -xvf %{SOURCE1206}
  6247. %__tar -xvf %{SOURCE1207}
  6248. %__tar -xvf %{SOURCE1208}
  6249. %__tar -xvf %{SOURCE1209}
  6250. %__tar -xvf %{SOURCE1210}
  6251. %__tar -xvf %{SOURCE1211}
  6252. %__tar -xvf %{SOURCE1212}
  6253. %__tar -xvf %{SOURCE1213}
  6254. %__tar -xvf %{SOURCE1214}
  6255. %__tar -xvf %{SOURCE1215}
  6256. %__tar -xvf %{SOURCE1216}
  6257. %__tar -xvf %{SOURCE1217}
  6258. %__tar -xvf %{SOURCE1218}
  6259. %__tar -xvf %{SOURCE1219}
  6260. %__tar -xvf %{SOURCE1220}
  6261. %__tar -xvf %{SOURCE1221}
  6262. %__tar -xvf %{SOURCE1222}
  6263. %__tar -xvf %{SOURCE1223}
  6264. %__tar -xvf %{SOURCE1224}
  6265. %__tar -xvf %{SOURCE1225}
  6266. %__tar -xvf %{SOURCE1226}
  6267. %__tar -xvf %{SOURCE1227}
  6268. %__tar -xvf %{SOURCE1228}
  6269. %__tar -xvf %{SOURCE1229}
  6270. %__tar -xvf %{SOURCE1230}
  6271. %__tar -xvf %{SOURCE1231}
  6272. %__tar -xvf %{SOURCE1232}
  6273. %__tar -xvf %{SOURCE1233}
  6274. %__tar -xvf %{SOURCE1234}
  6275. %__tar -xvf %{SOURCE1235}
  6276. %__tar -xvf %{SOURCE1236}
  6277. %__tar -xvf %{SOURCE1237}
  6278. %__tar -xvf %{SOURCE1238}
  6279. %__tar -xvf %{SOURCE1239}
  6280. %__tar -xvf %{SOURCE1240}
  6281. %__tar -xvf %{SOURCE1241}
  6282. %__tar -xvf %{SOURCE1242}
  6283. %__tar -xvf %{SOURCE1243}
  6284. %__tar -xvf %{SOURCE1244}
  6285. %__tar -xvf %{SOURCE1245}
  6286. %__tar -xvf %{SOURCE1246}
  6287. %__tar -xvf %{SOURCE1247}
  6288. %__tar -xvf %{SOURCE1248}
  6289. %__tar -xvf %{SOURCE1249}
  6290. %__tar -xvf %{SOURCE1250}
  6291. %__tar -xvf %{SOURCE1251}
  6292. %__tar -xvf %{SOURCE1252}
  6293. %__tar -xvf %{SOURCE1253}
  6294. %__tar -xvf %{SOURCE1254}
  6295. %__tar -xvf %{SOURCE1255}
  6296. %__tar -xvf %{SOURCE1256}
  6297. %__tar -xvf %{SOURCE1257}
  6298. %__tar -xvf %{SOURCE1258}
  6299. %__tar -xvf %{SOURCE1259}
  6300. %__tar -xvf %{SOURCE1260}
  6301. %__tar -xvf %{SOURCE1261}
  6302. %__tar -xvf %{SOURCE1262}
  6303. %__tar -xvf %{SOURCE1263}
  6304. %__tar -xvf %{SOURCE1264}
  6305. %__tar -xvf %{SOURCE1265}
  6306. %__tar -xvf %{SOURCE1266}
  6307. %__tar -xvf %{SOURCE1267}
  6308. %__tar -xvf %{SOURCE1268}
  6309. %__tar -xvf %{SOURCE1269}
  6310. %__tar -xvf %{SOURCE1270}
  6311. %__tar -xvf %{SOURCE1271}
  6312. %__tar -xvf %{SOURCE1272}
  6313. %__tar -xvf %{SOURCE1273}
  6314. %__tar -xvf %{SOURCE1274}
  6315. %__tar -xvf %{SOURCE1275}
  6316. %__tar -xvf %{SOURCE1276}
  6317. %__tar -xvf %{SOURCE1277}
  6318. %__tar -xvf %{SOURCE1278}
  6319. %__tar -xvf %{SOURCE1279}
  6320. %__tar -xvf %{SOURCE1280}
  6321. %__tar -xvf %{SOURCE1281}
  6322. %__tar -xvf %{SOURCE1282}
  6323. %__tar -xvf %{SOURCE1283}
  6324. %__tar -xvf %{SOURCE1284}
  6325. %__tar -xvf %{SOURCE1285}
  6326. %__tar -xvf %{SOURCE1286}
  6327. %__tar -xvf %{SOURCE1287}
  6328. %__tar -xvf %{SOURCE1288}
  6329. %__tar -xvf %{SOURCE1289}
  6330. %__tar -xvf %{SOURCE1290}
  6331. %__tar -xvf %{SOURCE1291}
  6332. %__tar -xvf %{SOURCE1292}
  6333. %__tar -xvf %{SOURCE1293}
  6334. %__tar -xvf %{SOURCE1294}
  6335. %__tar -xvf %{SOURCE1295}
  6336. %__tar -xvf %{SOURCE1296}
  6337. %__tar -xvf %{SOURCE1297}
  6338. %__tar -xvf %{SOURCE1298}
  6339. %__tar -xvf %{SOURCE1299}
  6340. %__tar -xvf %{SOURCE1300}
  6341. %__tar -xvf %{SOURCE1301}
  6342. %__tar -xvf %{SOURCE1302}
  6343. %__tar -xvf %{SOURCE1303}
  6344. %__tar -xvf %{SOURCE1304}
  6345. %__tar -xvf %{SOURCE1305}
  6346. %__tar -xvf %{SOURCE1306}
  6347. %__tar -xvf %{SOURCE1307}
  6348. %__tar -xvf %{SOURCE1308}
  6349. %__tar -xvf %{SOURCE1309}
  6350. %__tar -xvf %{SOURCE1310}
  6351. %__tar -xvf %{SOURCE1311}
  6352. %__tar -xvf %{SOURCE1312}
  6353. %__tar -xvf %{SOURCE1313}
  6354. %__tar -xvf %{SOURCE1314}
  6355. %__tar -xvf %{SOURCE1315}
  6356. %__tar -xvf %{SOURCE1316}
  6357. %__tar -xvf %{SOURCE1317}
  6358. %__tar -xvf %{SOURCE1318}
  6359. %__tar -xvf %{SOURCE1319}
  6360. %__tar -xvf %{SOURCE1320}
  6361. %__tar -xvf %{SOURCE1321}
  6362. %__tar -xvf %{SOURCE1322}
  6363. %__tar -xvf %{SOURCE1323}
  6364. %__tar -xvf %{SOURCE1324}
  6365. %__tar -xvf %{SOURCE1325}
  6366. %__tar -xvf %{SOURCE1326}
  6367. %__tar -xvf %{SOURCE1327}
  6368. %__tar -xvf %{SOURCE1328}
  6369. %__tar -xvf %{SOURCE1329}
  6370. %__tar -xvf %{SOURCE1330}
  6371. %__tar -xvf %{SOURCE1331}
  6372. %__tar -xvf %{SOURCE1332}
  6373. %__tar -xvf %{SOURCE1333}
  6374. %__tar -xvf %{SOURCE1334}
  6375. %__tar -xvf %{SOURCE1335}
  6376. %__tar -xvf %{SOURCE1336}
  6377. %__tar -xvf %{SOURCE1337}
  6378. %__tar -xvf %{SOURCE1338}
  6379. %__tar -xvf %{SOURCE1339}
  6380. %__tar -xvf %{SOURCE1340}
  6381. %__tar -xvf %{SOURCE1341}
  6382. %__tar -xvf %{SOURCE1342}
  6383. %__tar -xvf %{SOURCE1343}
  6384. %__tar -xvf %{SOURCE1344}
  6385. %__tar -xvf %{SOURCE1345}
  6386. %__tar -xvf %{SOURCE1346}
  6387. %__tar -xvf %{SOURCE1347}
  6388. %__tar -xvf %{SOURCE1348}
  6389. %__tar -xvf %{SOURCE1349}
  6390. %__tar -xvf %{SOURCE1350}
  6391. %__tar -xvf %{SOURCE1351}
  6392. %__tar -xvf %{SOURCE1352}
  6393. %__tar -xvf %{SOURCE1353}
  6394. %__tar -xvf %{SOURCE1354}
  6395. %__tar -xvf %{SOURCE1355}
  6396. %__tar -xvf %{SOURCE1356}
  6397. %__tar -xvf %{SOURCE1357}
  6398. %__tar -xvf %{SOURCE1358}
  6399. %__tar -xvf %{SOURCE1359}
  6400. %__tar -xvf %{SOURCE1360}
  6401. %__tar -xvf %{SOURCE1361}
  6402. %__tar -xvf %{SOURCE1362}
  6403. %__tar -xvf %{SOURCE1363}
  6404. %__tar -xvf %{SOURCE1364}
  6405. %__tar -xvf %{SOURCE1365}
  6406. %__tar -xvf %{SOURCE1366}
  6407. %__tar -xvf %{SOURCE1367}
  6408. %__tar -xvf %{SOURCE1368}
  6409. %__tar -xvf %{SOURCE1369}
  6410. %__tar -xvf %{SOURCE1370}
  6411. %__tar -xvf %{SOURCE1371}
  6412. %__tar -xvf %{SOURCE1372}
  6413. %__tar -xvf %{SOURCE1373}
  6414. %__tar -xvf %{SOURCE1374}
  6415. %__tar -xvf %{SOURCE1375}
  6416. %__tar -xvf %{SOURCE1376}
  6417. %__tar -xvf %{SOURCE1377}
  6418. %__tar -xvf %{SOURCE1378}
  6419. %__tar -xvf %{SOURCE1379}
  6420. %__tar -xvf %{SOURCE1380}
  6421. %__tar -xvf %{SOURCE1381}
  6422. %__tar -xvf %{SOURCE1382}
  6423. %__tar -xvf %{SOURCE1383}
  6424. %__tar -xvf %{SOURCE1384}
  6425. %__tar -xvf %{SOURCE1385}
  6426. %__tar -xvf %{SOURCE1386}
  6427. %__tar -xvf %{SOURCE1387}
  6428. %__tar -xvf %{SOURCE1388}
  6429. %__tar -xvf %{SOURCE1389}
  6430. %__tar -xvf %{SOURCE1390}
  6431. %__tar -xvf %{SOURCE1391}
  6432. %__tar -xvf %{SOURCE1392}
  6433. %__tar -xvf %{SOURCE1393}
  6434. %__tar -xvf %{SOURCE1394}
  6435. %__tar -xvf %{SOURCE1395}
  6436. %__tar -xvf %{SOURCE1396}
  6437. %__tar -xvf %{SOURCE1397}
  6438. %__tar -xvf %{SOURCE1398}
  6439. %__tar -xvf %{SOURCE1399}
  6440. %__tar -xvf %{SOURCE1400}
  6441. %__tar -xvf %{SOURCE1401}
  6442. %__tar -xvf %{SOURCE1402}
  6443. %__tar -xvf %{SOURCE1403}
  6444. %__tar -xvf %{SOURCE1404}
  6445. %__tar -xvf %{SOURCE1405}
  6446. %__tar -xvf %{SOURCE1406}
  6447. %__tar -xvf %{SOURCE1407}
  6448. %__tar -xvf %{SOURCE1408}
  6449. %__tar -xvf %{SOURCE1409}
  6450. %__tar -xvf %{SOURCE1410}
  6451. %__tar -xvf %{SOURCE1411}
  6452. %__tar -xvf %{SOURCE1412}
  6453. %__tar -xvf %{SOURCE1413}
  6454. %__tar -xvf %{SOURCE1414}
  6455. %__tar -xvf %{SOURCE1415}
  6456. %__tar -xvf %{SOURCE1416}
  6457. %__tar -xvf %{SOURCE1417}
  6458. %__tar -xvf %{SOURCE1418}
  6459. %__tar -xvf %{SOURCE1419}
  6460. %__tar -xvf %{SOURCE1420}
  6461. %__tar -xvf %{SOURCE1421}
  6462. %__tar -xvf %{SOURCE1422}
  6463. %__tar -xvf %{SOURCE1423}
  6464. %__tar -xvf %{SOURCE1424}
  6465. %__tar -xvf %{SOURCE1425}
  6466. %__tar -xvf %{SOURCE1426}
  6467. %__tar -xvf %{SOURCE1427}
  6468. %__tar -xvf %{SOURCE1428}
  6469. %__tar -xvf %{SOURCE1429}
  6470. %__tar -xvf %{SOURCE1430}
  6471. %__tar -xvf %{SOURCE1431}
  6472. %__tar -xvf %{SOURCE1432}
  6473. %__tar -xvf %{SOURCE1433}
  6474. %__tar -xvf %{SOURCE1434}
  6475. %__tar -xvf %{SOURCE1435}
  6476. %__tar -xvf %{SOURCE1436}
  6477. %__tar -xvf %{SOURCE1437}
  6478. %__tar -xvf %{SOURCE1438}
  6479. %__tar -xvf %{SOURCE1439}
  6480. %__tar -xvf %{SOURCE1440}
  6481. %__tar -xvf %{SOURCE1441}
  6482. %__tar -xvf %{SOURCE1442}
  6483. %__tar -xvf %{SOURCE1443}
  6484. %__tar -xvf %{SOURCE1444}
  6485. %__tar -xvf %{SOURCE1445}
  6486. %__tar -xvf %{SOURCE1446}
  6487. %__tar -xvf %{SOURCE1447}
  6488. %__tar -xvf %{SOURCE1448}
  6489. %__tar -xvf %{SOURCE1449}
  6490. %__tar -xvf %{SOURCE1450}
  6491. %__tar -xvf %{SOURCE1451}
  6492. %__tar -xvf %{SOURCE1452}
  6493. %__tar -xvf %{SOURCE1453}
  6494. %__tar -xvf %{SOURCE1454}
  6495. %__tar -xvf %{SOURCE1455}
  6496. %__tar -xvf %{SOURCE1456}
  6497. %__tar -xvf %{SOURCE1457}
  6498. %__tar -xvf %{SOURCE1458}
  6499. %__tar -xvf %{SOURCE1459}
  6500. %__tar -xvf %{SOURCE1460}
  6501. %__tar -xvf %{SOURCE1461}
  6502. %__tar -xvf %{SOURCE1462}
  6503. %__tar -xvf %{SOURCE1463}
  6504. %__tar -xvf %{SOURCE1464}
  6505. %__tar -xvf %{SOURCE1465}
  6506. %__tar -xvf %{SOURCE1466}
  6507. %__tar -xvf %{SOURCE1467}
  6508. %__tar -xvf %{SOURCE1468}
  6509. %__tar -xvf %{SOURCE1469}
  6510. %__tar -xvf %{SOURCE1470}
  6511. %__tar -xvf %{SOURCE1471}
  6512. %__tar -xvf %{SOURCE1472}
  6513. %__tar -xvf %{SOURCE1473}
  6514. %__tar -xvf %{SOURCE1474}
  6515. %__tar -xvf %{SOURCE1475}
  6516. %__tar -xvf %{SOURCE1476}
  6517. %__tar -xvf %{SOURCE1477}
  6518. %__tar -xvf %{SOURCE1478}
  6519. %__tar -xvf %{SOURCE1479}
  6520. %__tar -xvf %{SOURCE1480}
  6521. %__tar -xvf %{SOURCE1481}
  6522. %__tar -xvf %{SOURCE1482}
  6523. %__tar -xvf %{SOURCE1483}
  6524. %__tar -xvf %{SOURCE1484}
  6525. %__tar -xvf %{SOURCE1485}
  6526. %__tar -xvf %{SOURCE1486}
  6527. %__tar -xvf %{SOURCE1487}
  6528. %__tar -xvf %{SOURCE1488}
  6529. %__tar -xvf %{SOURCE1489}
  6530. %__tar -xvf %{SOURCE1490}
  6531. %__tar -xvf %{SOURCE1491}
  6532. %__tar -xvf %{SOURCE1492}
  6533. %__tar -xvf %{SOURCE1493}
  6534. %__tar -xvf %{SOURCE1494}
  6535. %__tar -xvf %{SOURCE1495}
  6536. %__tar -xvf %{SOURCE1496}
  6537. %__tar -xvf %{SOURCE1497}
  6538. %__tar -xvf %{SOURCE1498}
  6539. %__tar -xvf %{SOURCE1499}
  6540. %__tar -xvf %{SOURCE1500}
  6541. %__tar -xvf %{SOURCE1501}
  6542. %__tar -xvf %{SOURCE1502}
  6543. %__tar -xvf %{SOURCE1503}
  6544. %__tar -xvf %{SOURCE1504}
  6545. %__tar -xvf %{SOURCE1505}
  6546. %__tar -xvf %{SOURCE1506}
  6547. %__tar -xvf %{SOURCE1507}
  6548. %__tar -xvf %{SOURCE1508}
  6549. %__tar -xvf %{SOURCE1509}
  6550. %__tar -xvf %{SOURCE1510}
  6551. %__tar -xvf %{SOURCE1511}
  6552. %__tar -xvf %{SOURCE1512}
  6553. %__tar -xvf %{SOURCE1513}
  6554. %__tar -xvf %{SOURCE1514}
  6555. %__tar -xvf %{SOURCE1515}
  6556. %__tar -xvf %{SOURCE1516}
  6557. %__tar -xvf %{SOURCE1517}
  6558. %__tar -xvf %{SOURCE1518}
  6559. %__tar -xvf %{SOURCE1519}
  6560. %__tar -xvf %{SOURCE1520}
  6561. %__tar -xvf %{SOURCE1521}
  6562. %__tar -xvf %{SOURCE1522}
  6563. %__tar -xvf %{SOURCE1523}
  6564. %__tar -xvf %{SOURCE1524}
  6565. %__tar -xvf %{SOURCE1525}
  6566. %__tar -xvf %{SOURCE1526}
  6567. %__tar -xvf %{SOURCE1527}
  6568. %__tar -xvf %{SOURCE1528}
  6569. %__tar -xvf %{SOURCE1529}
  6570. %__tar -xvf %{SOURCE1530}
  6571. %__tar -xvf %{SOURCE1531}
  6572. %__tar -xvf %{SOURCE1532}
  6573. %__tar -xvf %{SOURCE1533}
  6574. %__tar -xvf %{SOURCE1534}
  6575. %__tar -xvf %{SOURCE1535}
  6576. %__tar -xvf %{SOURCE1536}
  6577. %__tar -xvf %{SOURCE1537}
  6578. %__tar -xvf %{SOURCE1538}
  6579. %__tar -xvf %{SOURCE1539}
  6580. %__tar -xvf %{SOURCE1540}
  6581. %__tar -xvf %{SOURCE1541}
  6582. %__tar -xvf %{SOURCE1542}
  6583. %__tar -xvf %{SOURCE1543}
  6584. %__tar -xvf %{SOURCE1544}
  6585. %__tar -xvf %{SOURCE1545}
  6586. %__tar -xvf %{SOURCE1546}
  6587. %__tar -xvf %{SOURCE1547}
  6588. %__tar -xvf %{SOURCE1548}
  6589. %__tar -xvf %{SOURCE1549}
  6590. %__tar -xvf %{SOURCE1550}
  6591. %__tar -xvf %{SOURCE1551}
  6592. %__tar -xvf %{SOURCE1552}
  6593. %__tar -xvf %{SOURCE1553}
  6594. %__tar -xvf %{SOURCE1554}
  6595. %__tar -xvf %{SOURCE1555}
  6596. %__tar -xvf %{SOURCE1556}
  6597. %__tar -xvf %{SOURCE1557}
  6598. %__tar -xvf %{SOURCE1558}
  6599. %__tar -xvf %{SOURCE1559}
  6600. %__tar -xvf %{SOURCE1560}
  6601. %__tar -xvf %{SOURCE1561}
  6602. %__tar -xvf %{SOURCE1562}
  6603. %__tar -xvf %{SOURCE1563}
  6604. %__tar -xvf %{SOURCE1564}
  6605. %__tar -xvf %{SOURCE1565}
  6606. %__tar -xvf %{SOURCE1566}
  6607. %__tar -xvf %{SOURCE1567}
  6608. %__tar -xvf %{SOURCE1568}
  6609. %__tar -xvf %{SOURCE1569}
  6610. %__tar -xvf %{SOURCE1570}
  6611. %__tar -xvf %{SOURCE1571}
  6612. %__tar -xvf %{SOURCE1572}
  6613. %__tar -xvf %{SOURCE1573}
  6614. %__tar -xvf %{SOURCE1574}
  6615. %__tar -xvf %{SOURCE1575}
  6616. %__tar -xvf %{SOURCE1576}
  6617. %__tar -xvf %{SOURCE1577}
  6618. %__tar -xvf %{SOURCE1578}
  6619. %__tar -xvf %{SOURCE1579}
  6620. %__tar -xvf %{SOURCE1580}
  6621. %__tar -xvf %{SOURCE1581}
  6622. %__tar -xvf %{SOURCE1582}
  6623. %__tar -xvf %{SOURCE1583}
  6624. %__tar -xvf %{SOURCE1584}
  6625. %__tar -xvf %{SOURCE1585}
  6626. %__tar -xvf %{SOURCE1586}
  6627. %__tar -xvf %{SOURCE1587}
  6628. %__tar -xvf %{SOURCE1588}
  6629. %__tar -xvf %{SOURCE1589}
  6630. %__tar -xvf %{SOURCE1590}
  6631. %__tar -xvf %{SOURCE1591}
  6632. %__tar -xvf %{SOURCE1592}
  6633. %__tar -xvf %{SOURCE1593}
  6634. %__tar -xvf %{SOURCE1594}
  6635. %__tar -xvf %{SOURCE1595}
  6636. %__tar -xvf %{SOURCE1596}
  6637. %__tar -xvf %{SOURCE1597}
  6638. %__tar -xvf %{SOURCE1598}
  6639. %__tar -xvf %{SOURCE1599}
  6640. %__tar -xvf %{SOURCE1600}
  6641. %__tar -xvf %{SOURCE1601}
  6642. %__tar -xvf %{SOURCE1602}
  6643. %__tar -xvf %{SOURCE1603}
  6644. %__tar -xvf %{SOURCE1604}
  6645. %__tar -xvf %{SOURCE1605}
  6646. %__tar -xvf %{SOURCE1606}
  6647. %__tar -xvf %{SOURCE1607}
  6648. %__tar -xvf %{SOURCE1608}
  6649. %__tar -xvf %{SOURCE1609}
  6650. %__tar -xvf %{SOURCE1610}
  6651. %__tar -xvf %{SOURCE1611}
  6652. %__tar -xvf %{SOURCE1612}
  6653. %__tar -xvf %{SOURCE1613}
  6654. %__tar -xvf %{SOURCE1614}
  6655. %__tar -xvf %{SOURCE1615}
  6656. %__tar -xvf %{SOURCE1616}
  6657. %__tar -xvf %{SOURCE1617}
  6658. %__tar -xvf %{SOURCE1618}
  6659. %__tar -xvf %{SOURCE1619}
  6660. %__tar -xvf %{SOURCE1620}
  6661. %__tar -xvf %{SOURCE1621}
  6662. %__tar -xvf %{SOURCE1622}
  6663. %__tar -xvf %{SOURCE1623}
  6664. %__tar -xvf %{SOURCE1624}
  6665. %__tar -xvf %{SOURCE1625}
  6666. %__tar -xvf %{SOURCE1626}
  6667. %__tar -xvf %{SOURCE1627}
  6668. %__tar -xvf %{SOURCE1628}
  6669. %__tar -xvf %{SOURCE1629}
  6670. %__tar -xvf %{SOURCE1630}
  6671. %__tar -xvf %{SOURCE1631}
  6672. %__tar -xvf %{SOURCE1632}
  6673. %__tar -xvf %{SOURCE1633}
  6674. %__tar -xvf %{SOURCE1634}
  6675. %__tar -xvf %{SOURCE1635}
  6676. %__tar -xvf %{SOURCE1636}
  6677. %__tar -xvf %{SOURCE1637}
  6678. %__tar -xvf %{SOURCE1638}
  6679. %__tar -xvf %{SOURCE1639}
  6680. %__tar -xvf %{SOURCE1640}
  6681. %__tar -xvf %{SOURCE1641}
  6682. %__tar -xvf %{SOURCE1642}
  6683. %__tar -xvf %{SOURCE1643}
  6684. %__tar -xvf %{SOURCE1644}
  6685. %__tar -xvf %{SOURCE1645}
  6686. %__tar -xvf %{SOURCE1646}
  6687. %__tar -xvf %{SOURCE1647}
  6688. %__tar -xvf %{SOURCE1648}
  6689. %__tar -xvf %{SOURCE1649}
  6690. %__tar -xvf %{SOURCE1650}
  6691. %__tar -xvf %{SOURCE1651}
  6692. %__tar -xvf %{SOURCE1652}
  6693. %__tar -xvf %{SOURCE1653}
  6694. %__tar -xvf %{SOURCE1654}
  6695. %__tar -xvf %{SOURCE1655}
  6696. %__tar -xvf %{SOURCE1656}
  6697. %__tar -xvf %{SOURCE1657}
  6698. %__tar -xvf %{SOURCE1658}
  6699. %__tar -xvf %{SOURCE1659}
  6700. %__tar -xvf %{SOURCE1660}
  6701. %__tar -xvf %{SOURCE1661}
  6702. %__tar -xvf %{SOURCE1662}
  6703. %__tar -xvf %{SOURCE1663}
  6704. %__tar -xvf %{SOURCE1664}
  6705. %__tar -xvf %{SOURCE1665}
  6706. %__tar -xvf %{SOURCE1666}
  6707. %__tar -xvf %{SOURCE1667}
  6708. %__tar -xvf %{SOURCE1668}
  6709. %__tar -xvf %{SOURCE1669}
  6710. %__tar -xvf %{SOURCE1670}
  6711. %__tar -xvf %{SOURCE1671}
  6712. %__tar -xvf %{SOURCE1672}
  6713. %__tar -xvf %{SOURCE1673}
  6714. %__tar -xvf %{SOURCE1674}
  6715. %__tar -xvf %{SOURCE1675}
  6716. %__tar -xvf %{SOURCE1676}
  6717. %__tar -xvf %{SOURCE1677}
  6718. %__tar -xvf %{SOURCE1678}
  6719. %__tar -xvf %{SOURCE1679}
  6720. %__tar -xvf %{SOURCE1680}
  6721. %__tar -xvf %{SOURCE1681}
  6722. %__tar -xvf %{SOURCE1682}
  6723. %__tar -xvf %{SOURCE1683}
  6724. %__tar -xvf %{SOURCE1684}
  6725. %__tar -xvf %{SOURCE1685}
  6726. %__tar -xvf %{SOURCE1686}
  6727. %__tar -xvf %{SOURCE1687}
  6728. %__tar -xvf %{SOURCE1688}
  6729. %__tar -xvf %{SOURCE1689}
  6730. %__tar -xvf %{SOURCE1690}
  6731. %__tar -xvf %{SOURCE1691}
  6732. %__tar -xvf %{SOURCE1692}
  6733. %__tar -xvf %{SOURCE1693}
  6734. %__tar -xvf %{SOURCE1694}
  6735. %__tar -xvf %{SOURCE1695}
  6736. %__tar -xvf %{SOURCE1696}
  6737. %__tar -xvf %{SOURCE1697}
  6738. %__tar -xvf %{SOURCE1698}
  6739. %__tar -xvf %{SOURCE1699}
  6740. %__tar -xvf %{SOURCE1700}
  6741. %__tar -xvf %{SOURCE1701}
  6742. %__tar -xvf %{SOURCE1702}
  6743. %__tar -xvf %{SOURCE1703}
  6744. %__tar -xvf %{SOURCE1704}
  6745. %__tar -xvf %{SOURCE1705}
  6746. %__tar -xvf %{SOURCE1706}
  6747. %__tar -xvf %{SOURCE1707}
  6748. %__tar -xvf %{SOURCE1708}
  6749. %__tar -xvf %{SOURCE1709}
  6750. %__tar -xvf %{SOURCE1710}
  6751. %__tar -xvf %{SOURCE1711}
  6752. %__tar -xvf %{SOURCE1712}
  6753. %__tar -xvf %{SOURCE1713}
  6754. %__tar -xvf %{SOURCE1714}
  6755. %__tar -xvf %{SOURCE1715}
  6756. %__tar -xvf %{SOURCE1716}
  6757. %__tar -xvf %{SOURCE1717}
  6758. %__tar -xvf %{SOURCE1718}
  6759. %__tar -xvf %{SOURCE1719}
  6760. %__tar -xvf %{SOURCE1720}
  6761. %__tar -xvf %{SOURCE1721}
  6762. %__tar -xvf %{SOURCE1722}
  6763. %__tar -xvf %{SOURCE1723}
  6764. %__tar -xvf %{SOURCE1724}
  6765. %__tar -xvf %{SOURCE1725}
  6766. %__tar -xvf %{SOURCE1726}
  6767. %__tar -xvf %{SOURCE1727}
  6768. %__tar -xvf %{SOURCE1728}
  6769. %__tar -xvf %{SOURCE1729}
  6770. %__tar -xvf %{SOURCE1730}
  6771. %__tar -xvf %{SOURCE1731}
  6772. %__tar -xvf %{SOURCE1732}
  6773. %__tar -xvf %{SOURCE1733}
  6774. %__tar -xvf %{SOURCE1734}
  6775. %__tar -xvf %{SOURCE1735}
  6776. %__tar -xvf %{SOURCE1736}
  6777. %__tar -xvf %{SOURCE1737}
  6778. %__tar -xvf %{SOURCE1738}
  6779. %__tar -xvf %{SOURCE1739}
  6780. %__tar -xvf %{SOURCE1740}
  6781. %__tar -xvf %{SOURCE1741}
  6782. %__tar -xvf %{SOURCE1742}
  6783. %__tar -xvf %{SOURCE1743}
  6784. %__tar -xvf %{SOURCE1744}
  6785. %__tar -xvf %{SOURCE1745}
  6786. %__tar -xvf %{SOURCE1746}
  6787. %__tar -xvf %{SOURCE1747}
  6788. %__tar -xvf %{SOURCE1748}
  6789. %__tar -xvf %{SOURCE1749}
  6790. %__tar -xvf %{SOURCE1750}
  6791. %__tar -xvf %{SOURCE1751}
  6792. %__tar -xvf %{SOURCE1752}
  6793. %__tar -xvf %{SOURCE1753}
  6794. %__tar -xvf %{SOURCE1754}
  6795. %__tar -xvf %{SOURCE1755}
  6796. %__tar -xvf %{SOURCE1756}
  6797. %__tar -xvf %{SOURCE1757}
  6798. %__tar -xvf %{SOURCE1758}
  6799. %__tar -xvf %{SOURCE1759}
  6800. %__tar -xvf %{SOURCE1760}
  6801. %__tar -xvf %{SOURCE1761}
  6802. %__tar -xvf %{SOURCE1762}
  6803. %__tar -xvf %{SOURCE1763}
  6804. %__tar -xvf %{SOURCE1764}
  6805. %__tar -xvf %{SOURCE1765}
  6806. %__tar -xvf %{SOURCE1766}
  6807. %__tar -xvf %{SOURCE1767}
  6808. %__tar -xvf %{SOURCE1768}
  6809. %__tar -xvf %{SOURCE1769}
  6810. %__tar -xvf %{SOURCE1770}
  6811. %__tar -xvf %{SOURCE1771}
  6812. %__tar -xvf %{SOURCE1772}
  6813. %__tar -xvf %{SOURCE1773}
  6814. %__tar -xvf %{SOURCE1774}
  6815. %__tar -xvf %{SOURCE1775}
  6816. %__tar -xvf %{SOURCE1776}
  6817. %__tar -xvf %{SOURCE1777}
  6818. %__tar -xvf %{SOURCE1778}
  6819. %__tar -xvf %{SOURCE1779}
  6820. %__tar -xvf %{SOURCE1780}
  6821. %__tar -xvf %{SOURCE1781}
  6822. %__tar -xvf %{SOURCE1782}
  6823. %__tar -xvf %{SOURCE1783}
  6824. %__tar -xvf %{SOURCE1784}
  6825. %__tar -xvf %{SOURCE1785}
  6826. %__tar -xvf %{SOURCE1786}
  6827. %__tar -xvf %{SOURCE1787}
  6828. %__tar -xvf %{SOURCE1788}
  6829. %__tar -xvf %{SOURCE1789}
  6830. %__tar -xvf %{SOURCE1790}
  6831. %__tar -xvf %{SOURCE1791}
  6832. %__tar -xvf %{SOURCE1792}
  6833. %__tar -xvf %{SOURCE1793}
  6834. %__tar -xvf %{SOURCE1794}
  6835. %__tar -xvf %{SOURCE1795}
  6836. %__tar -xvf %{SOURCE1796}
  6837. %__tar -xvf %{SOURCE1797}
  6838. %__tar -xvf %{SOURCE1798}
  6839. %__tar -xvf %{SOURCE1799}
  6840. %__tar -xvf %{SOURCE1800}
  6841. %__tar -xvf %{SOURCE1801}
  6842. %__tar -xvf %{SOURCE1802}
  6843. %__tar -xvf %{SOURCE1803}
  6844. %__tar -xvf %{SOURCE1804}
  6845. %__tar -xvf %{SOURCE1805}
  6846. %__tar -xvf %{SOURCE1806}
  6847. %__tar -xvf %{SOURCE1807}
  6848. %__tar -xvf %{SOURCE1808}
  6849. %__tar -xvf %{SOURCE1809}
  6850. %__tar -xvf %{SOURCE1810}
  6851. %__tar -xvf %{SOURCE1811}
  6852. %__tar -xvf %{SOURCE1812}
  6853. %__tar -xvf %{SOURCE1813}
  6854. %__tar -xvf %{SOURCE1814}
  6855. %__tar -xvf %{SOURCE1815}
  6856. %__tar -xvf %{SOURCE1816}
  6857. %__tar -xvf %{SOURCE1817}
  6858. %__tar -xvf %{SOURCE1818}
  6859. %__tar -xvf %{SOURCE1819}
  6860. %__tar -xvf %{SOURCE1820}
  6861. %__tar -xvf %{SOURCE1821}
  6862. %__tar -xvf %{SOURCE1822}
  6863. %__tar -xvf %{SOURCE1823}
  6864. %__tar -xvf %{SOURCE1824}
  6865. %__tar -xvf %{SOURCE1825}
  6866. %__tar -xvf %{SOURCE1826}
  6867. %__tar -xvf %{SOURCE1827}
  6868. %__tar -xvf %{SOURCE1828}
  6869. %__tar -xvf %{SOURCE1829}
  6870. %__tar -xvf %{SOURCE1830}
  6871. %__tar -xvf %{SOURCE1831}
  6872. %__tar -xvf %{SOURCE1832}
  6873. %__tar -xvf %{SOURCE1833}
  6874. %__tar -xvf %{SOURCE1834}
  6875. %__tar -xvf %{SOURCE1835}
  6876. %__tar -xvf %{SOURCE1836}
  6877. %__tar -xvf %{SOURCE1837}
  6878. %__tar -xvf %{SOURCE1838}
  6879. %__tar -xvf %{SOURCE1839}
  6880. %__tar -xvf %{SOURCE1840}
  6881. %__tar -xvf %{SOURCE1841}
  6882. %__tar -xvf %{SOURCE1842}
  6883. %__tar -xvf %{SOURCE1843}
  6884. %__tar -xvf %{SOURCE1844}
  6885. %__tar -xvf %{SOURCE1845}
  6886. %__tar -xvf %{SOURCE1846}
  6887. %__tar -xvf %{SOURCE1847}
  6888. %__tar -xvf %{SOURCE1848}
  6889. %__tar -xvf %{SOURCE1849}
  6890. %__tar -xvf %{SOURCE1850}
  6891. %__tar -xvf %{SOURCE1851}
  6892. %__tar -xvf %{SOURCE1852}
  6893. %__tar -xvf %{SOURCE1853}
  6894. %__tar -xvf %{SOURCE1854}
  6895. %__tar -xvf %{SOURCE1855}
  6896. %__tar -xvf %{SOURCE1856}
  6897. %__tar -xvf %{SOURCE1857}
  6898. %__tar -xvf %{SOURCE1858}
  6899. %__tar -xvf %{SOURCE1859}
  6900. %__tar -xvf %{SOURCE1860}
  6901. %__tar -xvf %{SOURCE1861}
  6902. %__tar -xvf %{SOURCE1862}
  6903. %__tar -xvf %{SOURCE1863}
  6904. %__tar -xvf %{SOURCE1864}
  6905. %__tar -xvf %{SOURCE1865}
  6906. %__tar -xvf %{SOURCE1866}
  6907. %__tar -xvf %{SOURCE1867}
  6908. %__tar -xvf %{SOURCE1868}
  6909. %__tar -xvf %{SOURCE1869}
  6910. %__tar -xvf %{SOURCE1870}
  6911. %__tar -xvf %{SOURCE1871}
  6912. %__tar -xvf %{SOURCE1872}
  6913. %__tar -xvf %{SOURCE1873}
  6914. %__tar -xvf %{SOURCE1874}
  6915. %__tar -xvf %{SOURCE1875}
  6916. %__tar -xvf %{SOURCE1876}
  6917. %__tar -xvf %{SOURCE1877}
  6918. %__tar -xvf %{SOURCE1878}
  6919. %__tar -xvf %{SOURCE1879}
  6920. %__tar -xvf %{SOURCE1880}
  6921. %__tar -xvf %{SOURCE1881}
  6922. %__tar -xvf %{SOURCE1882}
  6923. %__tar -xvf %{SOURCE1883}
  6924. %__tar -xvf %{SOURCE1884}
  6925. %__tar -xvf %{SOURCE1885}
  6926. %__tar -xvf %{SOURCE1886}
  6927. %__tar -xvf %{SOURCE1887}
  6928. %__tar -xvf %{SOURCE1888}
  6929. %__tar -xvf %{SOURCE1889}
  6930. %__tar -xvf %{SOURCE1890}
  6931. %__tar -xvf %{SOURCE1891}
  6932. %__tar -xvf %{SOURCE1892}
  6933. %__tar -xvf %{SOURCE1893}
  6934. %__tar -xvf %{SOURCE1894}
  6935. %__tar -xvf %{SOURCE1895}
  6936. %__tar -xvf %{SOURCE1896}
  6937. %__tar -xvf %{SOURCE1897}
  6938. %__tar -xvf %{SOURCE1898}
  6939. %__tar -xvf %{SOURCE1899}
  6940. %__tar -xvf %{SOURCE1900}
  6941. %__tar -xvf %{SOURCE1901}
  6942. %__tar -xvf %{SOURCE1902}
  6943. %__tar -xvf %{SOURCE1903}
  6944. %__tar -xvf %{SOURCE1904}
  6945. %__tar -xvf %{SOURCE1905}
  6946. %__tar -xvf %{SOURCE1906}
  6947. %__tar -xvf %{SOURCE1907}
  6948. %__tar -xvf %{SOURCE1908}
  6949. %__tar -xvf %{SOURCE1909}
  6950. %__tar -xvf %{SOURCE1910}
  6951. %__tar -xvf %{SOURCE1911}
  6952. %__tar -xvf %{SOURCE1912}
  6953. %__tar -xvf %{SOURCE1913}
  6954. %__tar -xvf %{SOURCE1914}
  6955. %__tar -xvf %{SOURCE1915}
  6956. %__tar -xvf %{SOURCE1916}
  6957. %__tar -xvf %{SOURCE1917}
  6958. %__tar -xvf %{SOURCE1918}
  6959. %__tar -xvf %{SOURCE1919}
  6960. %__tar -xvf %{SOURCE1920}
  6961. %__tar -xvf %{SOURCE1921}
  6962. %__tar -xvf %{SOURCE1922}
  6963. %__tar -xvf %{SOURCE1923}
  6964. %__tar -xvf %{SOURCE1924}
  6965. %__tar -xvf %{SOURCE1925}
  6966. %__tar -xvf %{SOURCE1926}
  6967. %__tar -xvf %{SOURCE1927}
  6968. %__tar -xvf %{SOURCE1928}
  6969. %__tar -xvf %{SOURCE1929}
  6970. %__tar -xvf %{SOURCE1930}
  6971. %__tar -xvf %{SOURCE1931}
  6972. %__tar -xvf %{SOURCE1932}
  6973. %__tar -xvf %{SOURCE1933}
  6974. %__tar -xvf %{SOURCE1934}
  6975. %__tar -xvf %{SOURCE1935}
  6976. %__tar -xvf %{SOURCE1936}
  6977. %__tar -xvf %{SOURCE1937}
  6978. %__tar -xvf %{SOURCE1938}
  6979. %__tar -xvf %{SOURCE1939}
  6980. %__tar -xvf %{SOURCE1940}
  6981. %__tar -xvf %{SOURCE1941}
  6982. %__tar -xvf %{SOURCE1942}
  6983. %__tar -xvf %{SOURCE1943}
  6984. %__tar -xvf %{SOURCE1944}
  6985. %__tar -xvf %{SOURCE1945}
  6986. %__tar -xvf %{SOURCE1946}
  6987. %__tar -xvf %{SOURCE1947}
  6988. %__tar -xvf %{SOURCE1948}
  6989. %__tar -xvf %{SOURCE1949}
  6990. %__tar -xvf %{SOURCE1950}
  6991. %__tar -xvf %{SOURCE1951}
  6992. %__tar -xvf %{SOURCE1952}
  6993. %__tar -xvf %{SOURCE1953}
  6994. %__tar -xvf %{SOURCE1954}
  6995. %__tar -xvf %{SOURCE1955}
  6996. %__tar -xvf %{SOURCE1956}
  6997. %__tar -xvf %{SOURCE1957}
  6998. %__tar -xvf %{SOURCE1958}
  6999. %__tar -xvf %{SOURCE1959}
  7000. %__tar -xvf %{SOURCE1960}
  7001. %__tar -xvf %{SOURCE1961}
  7002. %__tar -xvf %{SOURCE1962}
  7003. %__tar -xvf %{SOURCE1963}
  7004. %__tar -xvf %{SOURCE1964}
  7005. %__tar -xvf %{SOURCE1965}
  7006. %__tar -xvf %{SOURCE1966}
  7007. %__tar -xvf %{SOURCE1967}
  7008. %__tar -xvf %{SOURCE1968}
  7009. %__tar -xvf %{SOURCE1969}
  7010. %__tar -xvf %{SOURCE1970}
  7011. %__tar -xvf %{SOURCE1971}
  7012. %__tar -xvf %{SOURCE1972}
  7013. %__tar -xvf %{SOURCE1973}
  7014. %__tar -xvf %{SOURCE1974}
  7015. %__tar -xvf %{SOURCE1975}
  7016. %__tar -xvf %{SOURCE1976}
  7017. %__tar -xvf %{SOURCE1977}
  7018. %__tar -xvf %{SOURCE1978}
  7019. %__tar -xvf %{SOURCE1979}
  7020. %__tar -xvf %{SOURCE1980}
  7021. %__tar -xvf %{SOURCE1981}
  7022. %__tar -xvf %{SOURCE1982}
  7023. %__tar -xvf %{SOURCE1983}
  7024. %__tar -xvf %{SOURCE1984}
  7025. %__tar -xvf %{SOURCE1985}
  7026. %__tar -xvf %{SOURCE1986}
  7027. %__tar -xvf %{SOURCE1987}
  7028. %__tar -xvf %{SOURCE1988}
  7029. %__tar -xvf %{SOURCE1989}
  7030. %__tar -xvf %{SOURCE1990}
  7031. %__tar -xvf %{SOURCE1991}
  7032. %__tar -xvf %{SOURCE1992}
  7033. %__tar -xvf %{SOURCE1993}
  7034. %__tar -xvf %{SOURCE1994}
  7035. %__tar -xvf %{SOURCE1995}
  7036. %__tar -xvf %{SOURCE1996}
  7037. %__tar -xvf %{SOURCE1997}
  7038. %__tar -xvf %{SOURCE1998}
  7039. %__tar -xvf %{SOURCE1999}
  7040. %__tar -xvf %{SOURCE2000}
  7041. %__tar -xvf %{SOURCE2001}
  7042. %__tar -xvf %{SOURCE2002}
  7043. %__tar -xvf %{SOURCE2003}
  7044. %__tar -xvf %{SOURCE2004}
  7045. %__tar -xvf %{SOURCE2005}
  7046. %__tar -xvf %{SOURCE2006}
  7047. %__tar -xvf %{SOURCE2007}
  7048. %__tar -xvf %{SOURCE2008}
  7049. %__tar -xvf %{SOURCE2009}
  7050. %__tar -xvf %{SOURCE2010}
  7051. %__tar -xvf %{SOURCE2011}
  7052. %__tar -xvf %{SOURCE2012}
  7053. %__tar -xvf %{SOURCE2013}
  7054. %__tar -xvf %{SOURCE2014}
  7055. %__tar -xvf %{SOURCE2015}
  7056. %__tar -xvf %{SOURCE2016}
  7057. %__tar -xvf %{SOURCE2017}
  7058. %__tar -xvf %{SOURCE2018}
  7059. %__tar -xvf %{SOURCE2019}
  7060. %__tar -xvf %{SOURCE2020}
  7061. %__tar -xvf %{SOURCE2021}
  7062. %__tar -xvf %{SOURCE2022}
  7063. %__tar -xvf %{SOURCE2023}
  7064. %__tar -xvf %{SOURCE2024}
  7065. %__tar -xvf %{SOURCE2025}
  7066. %__tar -xvf %{SOURCE2026}
  7067. %__tar -xvf %{SOURCE2027}
  7068. %__tar -xvf %{SOURCE2028}
  7069. %__tar -xvf %{SOURCE2029}
  7070. %__tar -xvf %{SOURCE2030}
  7071. %__tar -xvf %{SOURCE2031}
  7072. %__tar -xvf %{SOURCE2032}
  7073. %__tar -xvf %{SOURCE2033}
  7074. %__tar -xvf %{SOURCE2034}
  7075. %__tar -xvf %{SOURCE2035}
  7076. %__tar -xvf %{SOURCE2036}
  7077. %__tar -xvf %{SOURCE2037}
  7078. %__tar -xvf %{SOURCE2038}
  7079. %__tar -xvf %{SOURCE2039}
  7080. %__tar -xvf %{SOURCE2040}
  7081. %__tar -xvf %{SOURCE2041}
  7082. %__tar -xvf %{SOURCE2042}
  7083. %__tar -xvf %{SOURCE2043}
  7084. %__tar -xvf %{SOURCE2044}
  7085. %__tar -xvf %{SOURCE2045}
  7086. %__tar -xvf %{SOURCE2046}
  7087. %__tar -xvf %{SOURCE2047}
  7088. %__tar -xvf %{SOURCE2048}
  7089. %__tar -xvf %{SOURCE2049}
  7090. %__tar -xvf %{SOURCE2050}
  7091. %__tar -xvf %{SOURCE2051}
  7092. %__tar -xvf %{SOURCE2052}
  7093. %__tar -xvf %{SOURCE2053}
  7094. %__tar -xvf %{SOURCE2054}
  7095. %__tar -xvf %{SOURCE2055}
  7096. %__tar -xvf %{SOURCE2056}
  7097. %__tar -xvf %{SOURCE2057}
  7098. %__tar -xvf %{SOURCE2058}
  7099. %__tar -xvf %{SOURCE2059}
  7100. %__tar -xvf %{SOURCE2060}
  7101. %__tar -xvf %{SOURCE2061}
  7102. %__tar -xvf %{SOURCE2062}
  7103. %__tar -xvf %{SOURCE2063}
  7104. %__tar -xvf %{SOURCE2064}
  7105. %__tar -xvf %{SOURCE2065}
  7106. %__tar -xvf %{SOURCE2066}
  7107. %__tar -xvf %{SOURCE2067}
  7108. %__tar -xvf %{SOURCE2068}
  7109. %__tar -xvf %{SOURCE2069}
  7110. %__tar -xvf %{SOURCE2070}
  7111. %__tar -xvf %{SOURCE2071}
  7112. %__tar -xvf %{SOURCE2072}
  7113. %__tar -xvf %{SOURCE2073}
  7114. %__tar -xvf %{SOURCE2074}
  7115. %__tar -xvf %{SOURCE2075}
  7116. %__tar -xvf %{SOURCE2076}
  7117. %__tar -xvf %{SOURCE2077}
  7118. %__tar -xvf %{SOURCE2078}
  7119. %__tar -xvf %{SOURCE2079}
  7120. %__tar -xvf %{SOURCE2080}
  7121. %__tar -xvf %{SOURCE2081}
  7122. %__tar -xvf %{SOURCE2082}
  7123. %__tar -xvf %{SOURCE2083}
  7124. %__tar -xvf %{SOURCE2084}
  7125. %__tar -xvf %{SOURCE2085}
  7126. %__tar -xvf %{SOURCE2086}
  7127. %__tar -xvf %{SOURCE2087}
  7128. %__tar -xvf %{SOURCE2088}
  7129. %__tar -xvf %{SOURCE2089}
  7130. %__tar -xvf %{SOURCE2090}
  7131. %__tar -xvf %{SOURCE2091}
  7132. %__tar -xvf %{SOURCE2092}
  7133. %__tar -xvf %{SOURCE2093}
  7134. %__tar -xvf %{SOURCE2094}
  7135. %__tar -xvf %{SOURCE2095}
  7136. %__tar -xvf %{SOURCE2096}
  7137. %__tar -xvf %{SOURCE2097}
  7138. %__tar -xvf %{SOURCE2098}
  7139. %__tar -xvf %{SOURCE2099}
  7140. %__tar -xvf %{SOURCE2100}
  7141. %__tar -xvf %{SOURCE2101}
  7142. %__tar -xvf %{SOURCE2102}
  7143. %__tar -xvf %{SOURCE2103}
  7144. %__tar -xvf %{SOURCE2104}
  7145. %__tar -xvf %{SOURCE2105}
  7146. %__tar -xvf %{SOURCE2106}
  7147. %__tar -xvf %{SOURCE2107}
  7148. %__tar -xvf %{SOURCE2108}
  7149. %__tar -xvf %{SOURCE2109}
  7150. %__tar -xvf %{SOURCE2110}
  7151. %__tar -xvf %{SOURCE2111}
  7152. %__tar -xvf %{SOURCE2112}
  7153. %__tar -xvf %{SOURCE2113}
  7154. %__tar -xvf %{SOURCE2114}
  7155. %__tar -xvf %{SOURCE2115}
  7156. %__tar -xvf %{SOURCE2116}
  7157. %__tar -xvf %{SOURCE2117}
  7158. %__tar -xvf %{SOURCE2118}
  7159. %__tar -xvf %{SOURCE2119}
  7160. %__tar -xvf %{SOURCE2120}
  7161. %__tar -xvf %{SOURCE2121}
  7162. %__tar -xvf %{SOURCE2122}
  7163. %__tar -xvf %{SOURCE2123}
  7164. %__tar -xvf %{SOURCE2124}
  7165. %__tar -xvf %{SOURCE2125}
  7166. %__tar -xvf %{SOURCE2126}
  7167. %__tar -xvf %{SOURCE2127}
  7168. %__tar -xvf %{SOURCE2128}
  7169. %__tar -xvf %{SOURCE2129}
  7170. %__tar -xvf %{SOURCE2130}
  7171. %__tar -xvf %{SOURCE2131}
  7172. %__tar -xvf %{SOURCE2132}
  7173. %__tar -xvf %{SOURCE2133}
  7174. %__tar -xvf %{SOURCE2134}
  7175. %__tar -xvf %{SOURCE2135}
  7176. %__tar -xvf %{SOURCE2136}
  7177. %__tar -xvf %{SOURCE2137}
  7178. %__tar -xvf %{SOURCE2138}
  7179. %__tar -xvf %{SOURCE2139}
  7180. %__tar -xvf %{SOURCE2140}
  7181. %__tar -xvf %{SOURCE2141}
  7182. %__tar -xvf %{SOURCE2142}
  7183. %__tar -xvf %{SOURCE2143}
  7184. %__tar -xvf %{SOURCE2144}
  7185. %__tar -xvf %{SOURCE2145}
  7186. %__tar -xvf %{SOURCE2146}
  7187. %__tar -xvf %{SOURCE2147}
  7188. %__tar -xvf %{SOURCE2148}
  7189. %__tar -xvf %{SOURCE2149}
  7190. %__tar -xvf %{SOURCE2150}
  7191. %__tar -xvf %{SOURCE2151}
  7192. %__tar -xvf %{SOURCE2152}
  7193. %__tar -xvf %{SOURCE2153}
  7194. %__tar -xvf %{SOURCE2154}
  7195. %__tar -xvf %{SOURCE2155}
  7196. %__tar -xvf %{SOURCE2156}
  7197. %__tar -xvf %{SOURCE2157}
  7198. %__tar -xvf %{SOURCE2158}
  7199. %__tar -xvf %{SOURCE2159}
  7200. %__tar -xvf %{SOURCE2160}
  7201. %__tar -xvf %{SOURCE2161}
  7202. %__tar -xvf %{SOURCE2162}
  7203. %__tar -xvf %{SOURCE2163}
  7204. %__tar -xvf %{SOURCE2164}
  7205. %__tar -xvf %{SOURCE2165}
  7206. %__tar -xvf %{SOURCE2166}
  7207. %__tar -xvf %{SOURCE2167}
  7208. %__tar -xvf %{SOURCE2168}
  7209. %__tar -xvf %{SOURCE2169}
  7210. %__tar -xvf %{SOURCE2170}
  7211. %__tar -xvf %{SOURCE2171}
  7212. %__tar -xvf %{SOURCE2172}
  7213. %__tar -xvf %{SOURCE2173}
  7214. %__tar -xvf %{SOURCE2174}
  7215. %__tar -xvf %{SOURCE2175}
  7216. %__tar -xvf %{SOURCE2176}
  7217. %__tar -xvf %{SOURCE2177}
  7218. %__tar -xvf %{SOURCE2178}
  7219. %__tar -xvf %{SOURCE2179}
  7220. %__tar -xvf %{SOURCE2180}
  7221. %__tar -xvf %{SOURCE2181}
  7222. %__tar -xvf %{SOURCE2182}
  7223. %__tar -xvf %{SOURCE2183}
  7224. %__tar -xvf %{SOURCE2184}
  7225. %__tar -xvf %{SOURCE2185}
  7226. %__tar -xvf %{SOURCE2186}
  7227. %__tar -xvf %{SOURCE2187}
  7228. %__tar -xvf %{SOURCE2188}
  7229. %__tar -xvf %{SOURCE2189}
  7230. %__tar -xvf %{SOURCE2190}
  7231. %__tar -xvf %{SOURCE2191}
  7232. %__tar -xvf %{SOURCE2192}
  7233. %__tar -xvf %{SOURCE2193}
  7234. %__tar -xvf %{SOURCE2194}
  7235. %__tar -xvf %{SOURCE2195}
  7236. %__tar -xvf %{SOURCE2196}
  7237. %__tar -xvf %{SOURCE2197}
  7238. %__tar -xvf %{SOURCE2198}
  7239. %__tar -xvf %{SOURCE2199}
  7240. %__tar -xvf %{SOURCE2200}
  7241. %__tar -xvf %{SOURCE2201}
  7242. %__tar -xvf %{SOURCE2202}
  7243. %__tar -xvf %{SOURCE2203}
  7244. %__tar -xvf %{SOURCE2204}
  7245. %__tar -xvf %{SOURCE2205}
  7246. %__tar -xvf %{SOURCE2206}
  7247. %__tar -xvf %{SOURCE2207}
  7248. %__tar -xvf %{SOURCE2208}
  7249. %__tar -xvf %{SOURCE2209}
  7250. %__tar -xvf %{SOURCE2210}
  7251. %__tar -xvf %{SOURCE2211}
  7252. %__tar -xvf %{SOURCE2212}
  7253. %__tar -xvf %{SOURCE2213}
  7254. %__tar -xvf %{SOURCE2214}
  7255. %__tar -xvf %{SOURCE2215}
  7256. %__tar -xvf %{SOURCE2216}
  7257. %__tar -xvf %{SOURCE2217}
  7258. %__tar -xvf %{SOURCE2218}
  7259. %__tar -xvf %{SOURCE2219}
  7260. %__tar -xvf %{SOURCE2220}
  7261. %__tar -xvf %{SOURCE2221}
  7262. %__tar -xvf %{SOURCE2222}
  7263. %__tar -xvf %{SOURCE2223}
  7264. %__tar -xvf %{SOURCE2224}
  7265. %__tar -xvf %{SOURCE2225}
  7266. %__tar -xvf %{SOURCE2226}
  7267. %__tar -xvf %{SOURCE2227}
  7268. %__tar -xvf %{SOURCE2228}
  7269. %__tar -xvf %{SOURCE2229}
  7270. %__tar -xvf %{SOURCE2230}
  7271. %__tar -xvf %{SOURCE2231}
  7272. %__tar -xvf %{SOURCE2232}
  7273. %__tar -xvf %{SOURCE2233}
  7274. %__tar -xvf %{SOURCE2234}
  7275. %__tar -xvf %{SOURCE2235}
  7276. %__tar -xvf %{SOURCE2236}
  7277. %__tar -xvf %{SOURCE2237}
  7278. %__tar -xvf %{SOURCE2238}
  7279. %__tar -xvf %{SOURCE2239}
  7280. %__tar -xvf %{SOURCE2240}
  7281. %__tar -xvf %{SOURCE2241}
  7282. %__tar -xvf %{SOURCE2242}
  7283. %__tar -xvf %{SOURCE2243}
  7284. %__tar -xvf %{SOURCE2244}
  7285. %__tar -xvf %{SOURCE2245}
  7286. %__tar -xvf %{SOURCE2246}
  7287. %__tar -xvf %{SOURCE2247}
  7288. %__tar -xvf %{SOURCE2248}
  7289. %__tar -xvf %{SOURCE2249}
  7290. %__tar -xvf %{SOURCE2250}
  7291. %__tar -xvf %{SOURCE2251}
  7292. %__tar -xvf %{SOURCE2252}
  7293. %__tar -xvf %{SOURCE2253}
  7294. %__tar -xvf %{SOURCE2254}
  7295. %__tar -xvf %{SOURCE2255}
  7296. %__tar -xvf %{SOURCE2256}
  7297. %__tar -xvf %{SOURCE2257}
  7298. %__tar -xvf %{SOURCE2258}
  7299. %__tar -xvf %{SOURCE2259}
  7300. %__tar -xvf %{SOURCE2260}
  7301. %__tar -xvf %{SOURCE2261}
  7302. %__tar -xvf %{SOURCE2262}
  7303. %__tar -xvf %{SOURCE2263}
  7304. %__tar -xvf %{SOURCE2264}
  7305. %__tar -xvf %{SOURCE2265}
  7306. %__tar -xvf %{SOURCE2266}
  7307. %__tar -xvf %{SOURCE2267}
  7308. %__tar -xvf %{SOURCE2268}
  7309. %__tar -xvf %{SOURCE2269}
  7310. %__tar -xvf %{SOURCE2270}
  7311. %__tar -xvf %{SOURCE2271}
  7312. %__tar -xvf %{SOURCE2272}
  7313. %__tar -xvf %{SOURCE2273}
  7314. %__tar -xvf %{SOURCE2274}
  7315. %__tar -xvf %{SOURCE2275}
  7316. %__tar -xvf %{SOURCE2276}
  7317. %__tar -xvf %{SOURCE2277}
  7318. %__tar -xvf %{SOURCE2278}
  7319. %__tar -xvf %{SOURCE2279}
  7320. %__tar -xvf %{SOURCE2280}
  7321. %__tar -xvf %{SOURCE2281}
  7322. %__tar -xvf %{SOURCE2282}
  7323. %__tar -xvf %{SOURCE2283}
  7324. %__tar -xvf %{SOURCE2284}
  7325. %__tar -xvf %{SOURCE2285}
  7326. %__tar -xvf %{SOURCE2286}
  7327. %__tar -xvf %{SOURCE2287}
  7328. %__tar -xvf %{SOURCE2288}
  7329. %__tar -xvf %{SOURCE2289}
  7330. %__tar -xvf %{SOURCE2290}
  7331. %__tar -xvf %{SOURCE2291}
  7332. %__tar -xvf %{SOURCE2292}
  7333. %__tar -xvf %{SOURCE2293}
  7334. %__tar -xvf %{SOURCE2294}
  7335. %__tar -xvf %{SOURCE2295}
  7336. %__tar -xvf %{SOURCE2296}
  7337. %__tar -xvf %{SOURCE2297}
  7338. %__tar -xvf %{SOURCE2298}
  7339. %__tar -xvf %{SOURCE2299}
  7340. %__tar -xvf %{SOURCE2300}
  7341. %__tar -xvf %{SOURCE2301}
  7342. %__tar -xvf %{SOURCE2302}
  7343. %__tar -xvf %{SOURCE2303}
  7344. %__tar -xvf %{SOURCE2304}
  7345. %__tar -xvf %{SOURCE2305}
  7346. %__tar -xvf %{SOURCE2306}
  7347. %__tar -xvf %{SOURCE2307}
  7348. %__tar -xvf %{SOURCE2308}
  7349. %__tar -xvf %{SOURCE2309}
  7350. %__tar -xvf %{SOURCE2310}
  7351. %__tar -xvf %{SOURCE2311}
  7352. %__tar -xvf %{SOURCE2312}
  7353. %__tar -xvf %{SOURCE2313}
  7354. %__tar -xvf %{SOURCE2314}
  7355. %__tar -xvf %{SOURCE2315}
  7356. %__tar -xvf %{SOURCE2316}
  7357. %__tar -xvf %{SOURCE2317}
  7358. %__tar -xvf %{SOURCE2318}
  7359. %__tar -xvf %{SOURCE2319}
  7360. %__tar -xvf %{SOURCE2320}
  7361. %__tar -xvf %{SOURCE2321}
  7362. %__tar -xvf %{SOURCE2322}
  7363. %__tar -xvf %{SOURCE2323}
  7364. %__tar -xvf %{SOURCE2324}
  7365. %__tar -xvf %{SOURCE2325}
  7366. %__tar -xvf %{SOURCE2326}
  7367. %__tar -xvf %{SOURCE2327}
  7368. %__tar -xvf %{SOURCE2328}
  7369. %__tar -xvf %{SOURCE2329}
  7370. %__tar -xvf %{SOURCE2330}
  7371. %__tar -xvf %{SOURCE2331}
  7372. %__tar -xvf %{SOURCE2332}
  7373. %__tar -xvf %{SOURCE2333}
  7374. %__tar -xvf %{SOURCE2334}
  7375. %__tar -xvf %{SOURCE2335}
  7376. %__tar -xvf %{SOURCE2336}
  7377. %__tar -xvf %{SOURCE2337}
  7378. %__tar -xvf %{SOURCE2338}
  7379. %__tar -xvf %{SOURCE2339}
  7380. %__tar -xvf %{SOURCE2340}
  7381. %__tar -xvf %{SOURCE2341}
  7382. %__tar -xvf %{SOURCE2342}
  7383. %__tar -xvf %{SOURCE2343}
  7384. %__tar -xvf %{SOURCE2344}
  7385. %__tar -xvf %{SOURCE2345}
  7386. %__tar -xvf %{SOURCE2346}
  7387. %__tar -xvf %{SOURCE2347}
  7388. %__tar -xvf %{SOURCE2348}
  7389. %__tar -xvf %{SOURCE2349}
  7390. %__tar -xvf %{SOURCE2350}
  7391. %__tar -xvf %{SOURCE2351}
  7392. %__tar -xvf %{SOURCE2352}
  7393. %__tar -xvf %{SOURCE2353}
  7394. %__tar -xvf %{SOURCE2354}
  7395. %__tar -xvf %{SOURCE2355}
  7396. %__tar -xvf %{SOURCE2356}
  7397. %__tar -xvf %{SOURCE2357}
  7398. %__tar -xvf %{SOURCE2358}
  7399. %__tar -xvf %{SOURCE2359}
  7400. %__tar -xvf %{SOURCE2360}
  7401. %__tar -xvf %{SOURCE2361}
  7402. %__tar -xvf %{SOURCE2362}
  7403. %__tar -xvf %{SOURCE2363}
  7404. %__tar -xvf %{SOURCE2364}
  7405. %__tar -xvf %{SOURCE2365}
  7406. %__tar -xvf %{SOURCE2366}
  7407. %__tar -xvf %{SOURCE2367}
  7408. %__tar -xvf %{SOURCE2368}
  7409. %__tar -xvf %{SOURCE2369}
  7410. %__tar -xvf %{SOURCE2370}
  7411. %__tar -xvf %{SOURCE2371}
  7412. %__tar -xvf %{SOURCE2372}
  7413. %__tar -xvf %{SOURCE2373}
  7414. %__tar -xvf %{SOURCE2374}
  7415. %__tar -xvf %{SOURCE2375}
  7416. %__tar -xvf %{SOURCE2376}
  7417. %__tar -xvf %{SOURCE2377}
  7418. %__tar -xvf %{SOURCE2378}
  7419. %__tar -xvf %{SOURCE2379}
  7420. %__tar -xvf %{SOURCE2380}
  7421. %__tar -xvf %{SOURCE2381}
  7422. %__tar -xvf %{SOURCE2382}
  7423. %__tar -xvf %{SOURCE2383}
  7424. %__tar -xvf %{SOURCE2384}
  7425. %__tar -xvf %{SOURCE2385}
  7426. %__tar -xvf %{SOURCE2386}
  7427. %__tar -xvf %{SOURCE2387}
  7428. %__tar -xvf %{SOURCE2388}
  7429. %__tar -xvf %{SOURCE2389}
  7430. %__tar -xvf %{SOURCE2390}
  7431. %__tar -xvf %{SOURCE2391}
  7432. %__tar -xvf %{SOURCE2392}
  7433. %__tar -xvf %{SOURCE2393}
  7434. %__tar -xvf %{SOURCE2394}
  7435. %__tar -xvf %{SOURCE2395}
  7436. %__tar -xvf %{SOURCE2396}
  7437. %__tar -xvf %{SOURCE2397}
  7438. %__tar -xvf %{SOURCE2398}
  7439. %__tar -xvf %{SOURCE2399}
  7440. %__tar -xvf %{SOURCE2400}
  7441. %__tar -xvf %{SOURCE2401}
  7442. %__tar -xvf %{SOURCE2402}
  7443. %__tar -xvf %{SOURCE2403}
  7444. %__tar -xvf %{SOURCE2404}
  7445. %__tar -xvf %{SOURCE2405}
  7446. %__tar -xvf %{SOURCE2406}
  7447. %__tar -xvf %{SOURCE2407}
  7448. %__tar -xvf %{SOURCE2408}
  7449. %__tar -xvf %{SOURCE2409}
  7450. %__tar -xvf %{SOURCE2410}
  7451. %__tar -xvf %{SOURCE2411}
  7452. %__tar -xvf %{SOURCE2412}
  7453. %__tar -xvf %{SOURCE2413}
  7454. %__tar -xvf %{SOURCE2414}
  7455. %__tar -xvf %{SOURCE2415}
  7456. %__tar -xvf %{SOURCE2416}
  7457. %__tar -xvf %{SOURCE2417}
  7458. %__tar -xvf %{SOURCE2418}
  7459. %__tar -xvf %{SOURCE2419}
  7460. %__tar -xvf %{SOURCE2420}
  7461. %__tar -xvf %{SOURCE2421}
  7462. %__tar -xvf %{SOURCE2422}
  7463. %__tar -xvf %{SOURCE2423}
  7464. %__tar -xvf %{SOURCE2424}
  7465. %__tar -xvf %{SOURCE2425}
  7466. %__tar -xvf %{SOURCE2426}
  7467. %__tar -xvf %{SOURCE2427}
  7468. %__tar -xvf %{SOURCE2428}
  7469. %__tar -xvf %{SOURCE2429}
  7470. %__tar -xvf %{SOURCE2430}
  7471. %__tar -xvf %{SOURCE2431}
  7472. %__tar -xvf %{SOURCE2432}
  7473. %__tar -xvf %{SOURCE2433}
  7474. %__tar -xvf %{SOURCE2434}
  7475. %__tar -xvf %{SOURCE2435}
  7476. %__tar -xvf %{SOURCE2436}
  7477. %__tar -xvf %{SOURCE2437}
  7478. %__tar -xvf %{SOURCE2438}
  7479. %__tar -xvf %{SOURCE2439}
  7480. %__tar -xvf %{SOURCE2440}
  7481. %__tar -xvf %{SOURCE2441}
  7482. %__tar -xvf %{SOURCE2442}
  7483. %__tar -xvf %{SOURCE2443}
  7484. %__tar -xvf %{SOURCE2444}
  7485. %__tar -xvf %{SOURCE2445}
  7486. %__tar -xvf %{SOURCE2446}
  7487. %__tar -xvf %{SOURCE2447}
  7488. %__tar -xvf %{SOURCE2448}
  7489. %__tar -xvf %{SOURCE2449}
  7490. %__tar -xvf %{SOURCE2450}
  7491. %__tar -xvf %{SOURCE2451}
  7492. %__tar -xvf %{SOURCE2452}
  7493. %__tar -xvf %{SOURCE2453}
  7494. %__tar -xvf %{SOURCE2454}
  7495. %__tar -xvf %{SOURCE2455}
  7496. %__tar -xvf %{SOURCE2456}
  7497. %__tar -xvf %{SOURCE2457}
  7498. %__tar -xvf %{SOURCE2458}
  7499. %__tar -xvf %{SOURCE2459}
  7500. %__tar -xvf %{SOURCE2460}
  7501. %__tar -xvf %{SOURCE2461}
  7502. %__tar -xvf %{SOURCE2462}
  7503. %__tar -xvf %{SOURCE2463}
  7504. %__tar -xvf %{SOURCE2464}
  7505. %__tar -xvf %{SOURCE2465}
  7506. %__tar -xvf %{SOURCE2466}
  7507. %__tar -xvf %{SOURCE2467}
  7508. %__tar -xvf %{SOURCE2468}
  7509. %__tar -xvf %{SOURCE2469}
  7510. %__tar -xvf %{SOURCE2470}
  7511. %__tar -xvf %{SOURCE2471}
  7512. %__tar -xvf %{SOURCE2472}
  7513. %__tar -xvf %{SOURCE2473}
  7514. %__tar -xvf %{SOURCE2474}
  7515. %__tar -xvf %{SOURCE2475}
  7516. %__tar -xvf %{SOURCE2476}
  7517. %__tar -xvf %{SOURCE2477}
  7518. %__tar -xvf %{SOURCE2478}
  7519. %__tar -xvf %{SOURCE2479}
  7520. %__tar -xvf %{SOURCE2480}
  7521. %__tar -xvf %{SOURCE2481}
  7522. %__tar -xvf %{SOURCE2482}
  7523. %__tar -xvf %{SOURCE2483}
  7524. %__tar -xvf %{SOURCE2484}
  7525. %__tar -xvf %{SOURCE2485}
  7526. %__tar -xvf %{SOURCE2486}
  7527. %__tar -xvf %{SOURCE2487}
  7528. %__tar -xvf %{SOURCE2488}
  7529. %__tar -xvf %{SOURCE2489}
  7530. %__tar -xvf %{SOURCE2490}
  7531. %__tar -xvf %{SOURCE2491}
  7532. %__tar -xvf %{SOURCE2492}
  7533. %__tar -xvf %{SOURCE2493}
  7534. %__tar -xvf %{SOURCE2494}
  7535. %__tar -xvf %{SOURCE2495}
  7536. %__tar -xvf %{SOURCE2496}
  7537. %__tar -xvf %{SOURCE2497}
  7538. %__tar -xvf %{SOURCE2498}
  7539. %__tar -xvf %{SOURCE2499}
  7540. %__tar -xvf %{SOURCE2500}
  7541. %__tar -xvf %{SOURCE2501}
  7542. %__tar -xvf %{SOURCE2502}
  7543. %__tar -xvf %{SOURCE2503}
  7544. %__tar -xvf %{SOURCE2504}
  7545. %__tar -xvf %{SOURCE2505}
  7546. %__tar -xvf %{SOURCE2506}
  7547. %__tar -xvf %{SOURCE2507}
  7548. %__tar -xvf %{SOURCE2508}
  7549. %__tar -xvf %{SOURCE2509}
  7550. %__tar -xvf %{SOURCE2510}
  7551. %__tar -xvf %{SOURCE2511}
  7552. %__tar -xvf %{SOURCE2512}
  7553. %__tar -xvf %{SOURCE2513}
  7554. %__tar -xvf %{SOURCE2514}
  7555. %__tar -xvf %{SOURCE2515}
  7556. %__tar -xvf %{SOURCE2516}
  7557. %__tar -xvf %{SOURCE2517}
  7558. %__tar -xvf %{SOURCE2518}
  7559. %__tar -xvf %{SOURCE2519}
  7560. %__tar -xvf %{SOURCE2520}
  7561. %__tar -xvf %{SOURCE2521}
  7562. %__tar -xvf %{SOURCE2522}
  7563. %__tar -xvf %{SOURCE2523}
  7564. %__tar -xvf %{SOURCE2524}
  7565. %__tar -xvf %{SOURCE2525}
  7566. %__tar -xvf %{SOURCE2526}
  7567. %__tar -xvf %{SOURCE2527}
  7568. %__tar -xvf %{SOURCE2528}
  7569. %__tar -xvf %{SOURCE2529}
  7570. %__tar -xvf %{SOURCE2530}
  7571. %__tar -xvf %{SOURCE2531}
  7572. %__tar -xvf %{SOURCE2532}
  7573. %__tar -xvf %{SOURCE2533}
  7574. %__tar -xvf %{SOURCE2534}
  7575. %__tar -xvf %{SOURCE2535}
  7576. %__tar -xvf %{SOURCE2536}
  7577. %__tar -xvf %{SOURCE2537}
  7578. %__tar -xvf %{SOURCE2538}
  7579. %__tar -xvf %{SOURCE2539}
  7580. %__tar -xvf %{SOURCE2540}
  7581. %__tar -xvf %{SOURCE2541}
  7582. %__tar -xvf %{SOURCE2542}
  7583. %__tar -xvf %{SOURCE2543}
  7584. %__tar -xvf %{SOURCE2544}
  7585. %__tar -xvf %{SOURCE2545}
  7586. %__tar -xvf %{SOURCE2546}
  7587. %__tar -xvf %{SOURCE2547}
  7588. %__tar -xvf %{SOURCE2548}
  7589. %__tar -xvf %{SOURCE2549}
  7590. %__tar -xvf %{SOURCE2550}
  7591. %__tar -xvf %{SOURCE2551}
  7592. %__tar -xvf %{SOURCE2552}
  7593. %__tar -xvf %{SOURCE2553}
  7594. %__tar -xvf %{SOURCE2554}
  7595. %__tar -xvf %{SOURCE2555}
  7596. %__tar -xvf %{SOURCE2556}
  7597. %__tar -xvf %{SOURCE2557}
  7598. %__tar -xvf %{SOURCE2558}
  7599. %__tar -xvf %{SOURCE2559}
  7600. %__tar -xvf %{SOURCE2560}
  7601. %__tar -xvf %{SOURCE2561}
  7602. %__tar -xvf %{SOURCE2562}
  7603. %__tar -xvf %{SOURCE2563}
  7604. %__tar -xvf %{SOURCE2564}
  7605. %__tar -xvf %{SOURCE2565}
  7606. %__tar -xvf %{SOURCE2566}
  7607. %__tar -xvf %{SOURCE2567}
  7608. %__tar -xvf %{SOURCE2568}
  7609. %__tar -xvf %{SOURCE2569}
  7610. %__tar -xvf %{SOURCE2570}
  7611. %__tar -xvf %{SOURCE2571}
  7612. %__tar -xvf %{SOURCE2572}
  7613. %__tar -xvf %{SOURCE2573}
  7614. %__tar -xvf %{SOURCE2574}
  7615. %__tar -xvf %{SOURCE2575}
  7616. %__tar -xvf %{SOURCE2576}
  7617. %__tar -xvf %{SOURCE2577}
  7618. %__tar -xvf %{SOURCE2578}
  7619. %__tar -xvf %{SOURCE2579}
  7620. %__tar -xvf %{SOURCE2580}
  7621. %__tar -xvf %{SOURCE2581}
  7622. %__tar -xvf %{SOURCE2582}
  7623. %__tar -xvf %{SOURCE2583}
  7624. %__tar -xvf %{SOURCE2584}
  7625. %__tar -xvf %{SOURCE2585}
  7626. %__tar -xvf %{SOURCE2586}
  7627. %__tar -xvf %{SOURCE2587}
  7628. %__tar -xvf %{SOURCE2588}
  7629. %__tar -xvf %{SOURCE2589}
  7630. %__tar -xvf %{SOURCE2590}
  7631. %__tar -xvf %{SOURCE2591}
  7632. %__tar -xvf %{SOURCE2592}
  7633. %__tar -xvf %{SOURCE2593}
  7634. %__tar -xvf %{SOURCE2594}
  7635. %__tar -xvf %{SOURCE2595}
  7636. %__tar -xvf %{SOURCE2596}
  7637. %__tar -xvf %{SOURCE2597}
  7638. %__tar -xvf %{SOURCE2598}
  7639. %__tar -xvf %{SOURCE2599}
  7640. %__tar -xvf %{SOURCE2600}
  7641. %__tar -xvf %{SOURCE2601}
  7642. %__tar -xvf %{SOURCE2602}
  7643. %__tar -xvf %{SOURCE2603}
  7644. %__tar -xvf %{SOURCE2604}
  7645. %__tar -xvf %{SOURCE2605}
  7646. %__tar -xvf %{SOURCE2606}
  7647. %__tar -xvf %{SOURCE2607}
  7648. %__tar -xvf %{SOURCE2608}
  7649. %__tar -xvf %{SOURCE2609}
  7650. %__tar -xvf %{SOURCE2610}
  7651. %__tar -xvf %{SOURCE2611}
  7652. %__tar -xvf %{SOURCE2612}
  7653. %__tar -xvf %{SOURCE2613}
  7654. %__tar -xvf %{SOURCE2614}
  7655. %__tar -xvf %{SOURCE2615}
  7656. %__tar -xvf %{SOURCE2616}
  7657. %__tar -xvf %{SOURCE2617}
  7658. %__tar -xvf %{SOURCE2618}
  7659. %__tar -xvf %{SOURCE2619}
  7660. %__tar -xvf %{SOURCE2620}
  7661. %__tar -xvf %{SOURCE2621}
  7662. %__tar -xvf %{SOURCE2622}
  7663. %__tar -xvf %{SOURCE2623}
  7664. %__tar -xvf %{SOURCE2624}
  7665. %__tar -xvf %{SOURCE2625}
  7666. %__tar -xvf %{SOURCE2626}
  7667. %__tar -xvf %{SOURCE2627}
  7668. %__tar -xvf %{SOURCE2628}
  7669. %__tar -xvf %{SOURCE2629}
  7670. %__tar -xvf %{SOURCE2630}
  7671. %__tar -xvf %{SOURCE2631}
  7672. %__tar -xvf %{SOURCE2632}
  7673. %__tar -xvf %{SOURCE2633}
  7674. %__tar -xvf %{SOURCE2634}
  7675. %__tar -xvf %{SOURCE2635}
  7676. %__tar -xvf %{SOURCE2636}
  7677. %__tar -xvf %{SOURCE2637}
  7678. %__tar -xvf %{SOURCE2638}
  7679. %__tar -xvf %{SOURCE2639}
  7680. %__tar -xvf %{SOURCE2640}
  7681. %__tar -xvf %{SOURCE2641}
  7682. %__tar -xvf %{SOURCE2642}
  7683. %__tar -xvf %{SOURCE2643}
  7684. %__tar -xvf %{SOURCE2644}
  7685. %__tar -xvf %{SOURCE2645}
  7686. %__tar -xvf %{SOURCE2646}
  7687. %__tar -xvf %{SOURCE2647}
  7688. %__tar -xvf %{SOURCE2648}
  7689. %__tar -xvf %{SOURCE2649}
  7690. %__tar -xvf %{SOURCE2650}
  7691. %__tar -xvf %{SOURCE2651}
  7692. %__tar -xvf %{SOURCE2652}
  7693. %__tar -xvf %{SOURCE2653}
  7694. %__tar -xvf %{SOURCE2654}
  7695. %__tar -xvf %{SOURCE2655}
  7696. %__tar -xvf %{SOURCE2656}
  7697. %__tar -xvf %{SOURCE2657}
  7698. %__tar -xvf %{SOURCE2658}
  7699. %__tar -xvf %{SOURCE2659}
  7700. %__tar -xvf %{SOURCE2660}
  7701. %__tar -xvf %{SOURCE2661}
  7702. %__tar -xvf %{SOURCE2662}
  7703. %__tar -xvf %{SOURCE2663}
  7704. %__tar -xvf %{SOURCE2664}
  7705. %__tar -xvf %{SOURCE2665}
  7706. %__tar -xvf %{SOURCE2666}
  7707. %__tar -xvf %{SOURCE2667}
  7708. %__tar -xvf %{SOURCE2668}
  7709. %__tar -xvf %{SOURCE2669}
  7710. %__tar -xvf %{SOURCE2670}
  7711. %__tar -xvf %{SOURCE2671}
  7712. %__tar -xvf %{SOURCE2672}
  7713. %__tar -xvf %{SOURCE2673}
  7714. %__tar -xvf %{SOURCE2674}
  7715. %__tar -xvf %{SOURCE2675}
  7716. %__tar -xvf %{SOURCE2676}
  7717. %__tar -xvf %{SOURCE2677}
  7718. %__tar -xvf %{SOURCE2678}
  7719. %__tar -xvf %{SOURCE2679}
  7720. %__tar -xvf %{SOURCE2680}
  7721. %__tar -xvf %{SOURCE2681}
  7722. %__tar -xvf %{SOURCE2682}
  7723. %__tar -xvf %{SOURCE2683}
  7724. %__tar -xvf %{SOURCE2684}
  7725. %__tar -xvf %{SOURCE2685}
  7726. %__tar -xvf %{SOURCE2686}
  7727. %__tar -xvf %{SOURCE2687}
  7728. %__tar -xvf %{SOURCE2688}
  7729. %__tar -xvf %{SOURCE2689}
  7730. %__tar -xvf %{SOURCE2690}
  7731. %__tar -xvf %{SOURCE2691}
  7732. %__tar -xvf %{SOURCE2692}
  7733. %__tar -xvf %{SOURCE2693}
  7734. %__tar -xvf %{SOURCE2694}
  7735. %__tar -xvf %{SOURCE2695}
  7736. %__tar -xvf %{SOURCE2696}
  7737. %__tar -xvf %{SOURCE2697}
  7738. %__tar -xvf %{SOURCE2698}
  7739. %__tar -xvf %{SOURCE2699}
  7740. %__tar -xvf %{SOURCE2700}
  7741. %__tar -xvf %{SOURCE2701}
  7742. %__tar -xvf %{SOURCE2702}
  7743. %__tar -xvf %{SOURCE2703}
  7744. %__tar -xvf %{SOURCE2704}
  7745. %__tar -xvf %{SOURCE2705}
  7746. %__tar -xvf %{SOURCE2706}
  7747. %__tar -xvf %{SOURCE2707}
  7748. %__tar -xvf %{SOURCE2708}
  7749. %__tar -xvf %{SOURCE2709}
  7750. %__tar -xvf %{SOURCE2710}
  7751. %__tar -xvf %{SOURCE2711}
  7752. %__tar -xvf %{SOURCE2712}
  7753. %__tar -xvf %{SOURCE2713}
  7754. %__tar -xvf %{SOURCE2714}
  7755. %__tar -xvf %{SOURCE2715}
  7756. %__tar -xvf %{SOURCE2716}
  7757. %__tar -xvf %{SOURCE2717}
  7758. %__tar -xvf %{SOURCE2718}
  7759. %__tar -xvf %{SOURCE2719}
  7760. %__tar -xvf %{SOURCE2720}
  7761. %__tar -xvf %{SOURCE2721}
  7762. %__tar -xvf %{SOURCE2722}
  7763. %__tar -xvf %{SOURCE2723}
  7764. %__tar -xvf %{SOURCE2724}
  7765. %__tar -xvf %{SOURCE2725}
  7766. %__tar -xvf %{SOURCE2726}
  7767. %__tar -xvf %{SOURCE2727}
  7768. %__tar -xvf %{SOURCE2728}
  7769. %__tar -xvf %{SOURCE2729}
  7770. %__tar -xvf %{SOURCE2730}
  7771. %__tar -xvf %{SOURCE2731}
  7772. %__tar -xvf %{SOURCE2732}
  7773. %__tar -xvf %{SOURCE2733}
  7774. %__tar -xvf %{SOURCE2734}
  7775. %__tar -xvf %{SOURCE2735}
  7776. %__tar -xvf %{SOURCE2736}
  7777. %__tar -xvf %{SOURCE2737}
  7778. %__tar -xvf %{SOURCE2738}
  7779. %__tar -xvf %{SOURCE2739}
  7780. %__tar -xvf %{SOURCE2740}
  7781. %__tar -xvf %{SOURCE2741}
  7782. %__tar -xvf %{SOURCE2742}
  7783. %__tar -xvf %{SOURCE2743}
  7784. %__tar -xvf %{SOURCE2744}
  7785. %__tar -xvf %{SOURCE2745}
  7786. %__tar -xvf %{SOURCE2746}
  7787. %__tar -xvf %{SOURCE2747}
  7788. %__tar -xvf %{SOURCE2748}
  7789. %__tar -xvf %{SOURCE2749}
  7790. %__tar -xvf %{SOURCE2750}
  7791. %__tar -xvf %{SOURCE2751}
  7792. %__tar -xvf %{SOURCE2752}
  7793. %__tar -xvf %{SOURCE2753}
  7794. %__tar -xvf %{SOURCE2754}
  7795. %__tar -xvf %{SOURCE2755}
  7796. %__tar -xvf %{SOURCE2756}
  7797. %__tar -xvf %{SOURCE2757}
  7798. %__tar -xvf %{SOURCE2758}
  7799. %__tar -xvf %{SOURCE2759}
  7800. %__tar -xvf %{SOURCE2760}
  7801. %__tar -xvf %{SOURCE2761}
  7802. %__tar -xvf %{SOURCE2762}
  7803. %__tar -xvf %{SOURCE2763}
  7804. %__tar -xvf %{SOURCE2764}
  7805. %__tar -xvf %{SOURCE2765}
  7806. %__tar -xvf %{SOURCE2766}
  7807. %__tar -xvf %{SOURCE2767}
  7808. %__tar -xvf %{SOURCE2768}
  7809. %__tar -xvf %{SOURCE2769}
  7810. %__tar -xvf %{SOURCE2770}
  7811. %__tar -xvf %{SOURCE2771}
  7812. %__tar -xvf %{SOURCE2772}
  7813. %__tar -xvf %{SOURCE2773}
  7814. %__tar -xvf %{SOURCE2774}
  7815. %__tar -xvf %{SOURCE2775}
  7816. %__tar -xvf %{SOURCE2776}
  7817. %__tar -xvf %{SOURCE2777}
  7818. %__tar -xvf %{SOURCE2778}
  7819. %__tar -xvf %{SOURCE2779}
  7820. %__tar -xvf %{SOURCE2780}
  7821. %__tar -xvf %{SOURCE2781}
  7822. %__tar -xvf %{SOURCE2782}
  7823. %__tar -xvf %{SOURCE2783}
  7824. %__tar -xvf %{SOURCE2784}
  7825. %__tar -xvf %{SOURCE2785}
  7826. %__tar -xvf %{SOURCE2786}
  7827. %__tar -xvf %{SOURCE2787}
  7828. %__tar -xvf %{SOURCE2788}
  7829. %__tar -xvf %{SOURCE2789}
  7830. %__tar -xvf %{SOURCE2790}
  7831. %__tar -xvf %{SOURCE2791}
  7832. %__tar -xvf %{SOURCE2792}
  7833. %__tar -xvf %{SOURCE2793}
  7834. %__tar -xvf %{SOURCE2794}
  7835. %__tar -xvf %{SOURCE2795}
  7836. %__tar -xvf %{SOURCE2796}
  7837. %__tar -xvf %{SOURCE2797}
  7838. %__tar -xvf %{SOURCE2798}
  7839. %__tar -xvf %{SOURCE2799}
  7840. %__tar -xvf %{SOURCE2800}
  7841. %__tar -xvf %{SOURCE2801}
  7842. %__tar -xvf %{SOURCE2802}
  7843. %__tar -xvf %{SOURCE2803}
  7844. %__tar -xvf %{SOURCE2804}
  7845. %__tar -xvf %{SOURCE2805}
  7846. %__tar -xvf %{SOURCE2806}
  7847. %__tar -xvf %{SOURCE2807}
  7848. %__tar -xvf %{SOURCE2808}
  7849. %__tar -xvf %{SOURCE2809}
  7850. %__tar -xvf %{SOURCE2810}
  7851. %__tar -xvf %{SOURCE2811}
  7852. %__tar -xvf %{SOURCE2812}
  7853. %__tar -xvf %{SOURCE2813}
  7854. %__tar -xvf %{SOURCE2814}
  7855. %__tar -xvf %{SOURCE2815}
  7856. %__tar -xvf %{SOURCE2816}
  7857. %__tar -xvf %{SOURCE2817}
  7858. %build
  7859. %install
  7860. [ -n "%{buildroot}" -a "%{buildroot}" != / ] && %__rm -rf %{buildroot}
  7861. %__mkdir_p %{buildroot}%{_datadir}
  7862. ## move texmf-dist to /usr/share/texmf-dist
  7863. [ -d texmf-dist ] && %__mv texmf-dist %{buildroot}%{_tl_texmfdist}/ ||:
  7864. ## move texmf to /usr/share/texmf
  7865. [ -d texmf ] && %__mv texmf %{buildroot}%{_tl_texmfmain}/ ||:
  7866. ## move tlpkg to /usr/share/tlpkg
  7867. [ -d tlpkg ] && %__mv tlpkg %{buildroot}%{_datadir}/ ||:
  7868. ## move all non-arch binaries to /usr/bin
  7869. [ -d bin ] && %__mv bin %{buildroot}%{_prefix}/ ||:
  7870. ## move others into /usr/share/texmf-dist
  7871. %__mkdir_p %{buildroot}%{_tl_texmfdist}
  7872. %__cp -a * %{buildroot}%{_tl_texmfdist}/ ||:
  7873. %__rm -rf * ||:
  7874. ## remove duplicated files between texlive and texlive-collection-*
  7875. ## NOTE: We provides texmf.cnf and updmap{-hdr,}.cfg from texlive
  7876. ## remove unpacked files
  7877. x=(
  7878. dvipdfmx/dvipdfmx.cfg
  7879. scripts/context/stubs/unix/mtxrun
  7880. scripts/latexmk/latexmk.pl
  7881. scripts/ptex2pdf/ptex2pdf.lua
  7882. scripts/texlive/fmtutil.pl
  7883. scripts/texlive/texconfig-dialog.sh
  7884. scripts/texlive/texconfig-sys.sh
  7885. scripts/texlive/texconfig.sh
  7886. scripts/texlive/texlinks.sh
  7887. scripts/texlive/tlmgr.pl
  7888. scripts/texlive/updmap.pl
  7889. texconfig/tcfmgr
  7890. web2c/fmtutil.cnf
  7891. web2c/mktex.opt
  7892. web2c/mktexdir
  7893. web2c/mktexdir.opt
  7894. web2c/mktexnam
  7895. web2c/mktexnam.opt
  7896. web2c/mktexupd
  7897. web2c/texmf.cnf
  7898. web2c/updmap-hdr.cfg
  7899. web2c/updmap.cfg
  7900. install-tl
  7901. #
  7902. scripts/cjk-gs-integrate/cjk-gs-integrate.pl #texlive-collection-langcjk-2015-3vl7.noarch
  7903. scripts/epspdf/epspdf.tlu #texlive-collection-pictures-2015-3vl7.noarch
  7904. scripts/epspdf/epspdftk.tcl #texlive-collection-pictures-2015-3vl7.noarch
  7905. scripts/glossaries/makeglossaries #texlive-collection-latexextra-2015-3vl7.noarch
  7906. scripts/jfontmaps/kanji-config-updmap.pl #texlive-collection-langjapanese-2015-3vl7.noarch
  7907. scripts/jfontmaps/kanji-fontmap-creator.pl #texlive-collection-langjapanese-2015-3vl7.noarch
  7908. scripts/kotex-utils/jamo-normalize.pl #texlive-collection-langkorean-2015-3vl7.noarch
  7909. scripts/kotex-utils/komkindex.pl #texlive-collection-langkorean-2015-3vl7.noarch
  7910. scripts/crossrefware/ltx2crossrefxml.pl #texlive-collection-bibtexextra-2015-3vl7.noarch
  7911. scripts/rubik/rubikrotation.pl #texlive-collection-games-2015-3vl7.noarch
  7912. scripts/musixtex/musixtex.lua #texlive-collection-music-2015-3vl7.noarch
  7913. scripts/pmxchords/pmxchords.lua #texlive-collection-music-2015-3vl7.noarch
  7914. scripts/ctanify/ctanify #texlive-collection-binextra-2015-3vl7.noarch
  7915. scripts/dtxgen/dtxgen #texlive-collection-binextra-2015-3vl7.noarch
  7916. scripts/findhyph/findhyph #texlive-collection-binextra-2015-3vl7.noarch
  7917. scripts/latexpand/latexpand #texlive-collection-binextra-2015-3vl7.noarch
  7918. scripts/ltxfileinfo/ltxfileinfo #texlive-collection-binextra-2015-3vl7.noarch
  7919. scripts/latexdiff/latexdiff-vc.pl #texlive-collection-binextra-2015-3vl7.noarch
  7920. scripts/latexdiff/latexdiff.pl #texlive-collection-binextra-2015-3vl7.noarch
  7921. scripts/texfot/texfot.pl #texlive-collection-binextra-2015-3vl7.noarch
  7922. scripts/fontools/autoinst #texlive-collection-fontutils-2015-3vl7.noarch
  7923. scripts/luaotfload/luaotfload-tool.lua #texlive-collection-luatex-2015-3vl7.noarch
  7924. )
  7925. if [ -d %{buildroot}%{_tl_texmfdist} ]; then
  7926. pushd %{buildroot}%{_tl_texmfdist}
  7927. %__rm -f ${x[@]} ||:
  7928. popd
  7929. fi
  7930. ## Files list
  7931. find %{buildroot} -type f -or -type l | \
  7932. %__sed -e "s|%{buildroot}||g" > filelist.full
  7933. find %{buildroot}%{_tl_texmfdist} -type d | \
  7934. %__sed -e "s|^%{buildroot}|%dir |" \
  7935. -e "s|$|/|" >> filelist.full
  7936. ## subpackages
  7937. grep "/texmf-dist/doc/" filelist.full > filelist.doc
  7938. cat filelist.doc filelist.full | sort | uniq -u > filelist.tmp
  7939. %__mv -f filelist.tmp filelist.full
  7940. %clean
  7941. %__rm -rf %{buildroot}
  7942. %post
  7943. %_tl_touch_run texhash
  7944. %_tl_touch_run mtxrun
  7945. [ -f %{_tl_texmfdist}/web2c/updmap.cfg ] || exit 0
  7946. %_tl_enable_map Map epiolmec.map
  7947. %_tl_enable_map MixedMap esint.map
  7948. exit 0
  7949. %postun
  7950. if [ "$1" = 0 ]; then
  7951. %_tl_touch_run texhash
  7952. [ -f %{_tl_texmfdist}/web2c/updmap.cfg ] || exit 0
  7953. %_tl_disable_map epiolmec.map
  7954. %_tl_disable_map esint.map
  7955. fi
  7956. exit 0
  7957. %posttrans
  7958. %{_tl_exec_texhash}
  7959. %{_tl_exec_mtxrun}
  7960. %{_tl_exec_updmap}
  7961. %{_tl_exec_fmtutil}
  7962. exit 0
  7963. %files -f filelist.full
  7964. %defattr(-,root,root,-)
  7965. %files -f filelist.doc doc
  7966. %defattr(-,root,root,-)
  7967. %changelog
  7968. * Tue May 10 2016 Munehiro Yamamoto <munepi@vinelinux.org> 2016-2
  7969. - synced tlnet to 20160510 (TeX Live 2016/pretest)
  7970. * Thu Apr 28 2016 Munehiro Yamamoto <munepi@vinelinux.org> 2016-1
  7971. - TeX Live 2016/pretest
  7972. - synced tlnet to 20160428 (TeX Live 2016/pretest)
  7973. * Wed Jan 13 2016 Munehiro Yamamoto <munepi@vinelinux.org> 2015-4
  7974. - remove duplicated files from texlive-collection-*
  7975. - synced tlnet to 20160113 (TeX Live 2015)
  7976. * Sun Jan 10 2016 Munehiro Yamamoto <munepi@vinelinux.org> 2015-3
  7977. - TeX Live 2016/dev
  7978. - synced tlnet to 20160110 (TeX Live 2016/dev)
  7979. * Sun May 24 2015 Munehiro Yamamoto <munepi@vinelinux.org> 2015-2
  7980. - TeX Live 2015/pretest
  7981. - synced tlnet to 20150522 (TeX Live 2015/pretest)
  7982. * Sun Apr 26 2015 Munehiro Yamamoto <munepi@vinelinux.org> 2015-1
  7983. - TeX Live 2015/pretest
  7984. - synced tlnet to 20150426 (TeX Live 2015/pretest)
  7985. * Wed Apr 01 2015 Munehiro Yamamoto <munepi@vinelinux.org> 2014-4
  7986. - synced tlnet to 20150401
  7987. * Tue Oct 28 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-3
  7988. - synced tlnet to 20141028
  7989. * Sun Jul 06 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-2
  7990. - synced tlnet to 20140706
  7991. * Sun May 25 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2014-1
  7992. - upgraded to TeX Live 2014
  7993. * Sun Apr 06 2014 Munehiro Yamamoto <munepi@vinelinux.org> 2013-6
  7994. - synced tlnet to 20140406
  7995. * Wed Dec 18 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-5
  7996. - synced tlnet to 20131218
  7997. * Fri Nov 01 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-4
  7998. - synced tlnet to 20131101
  7999. * Wed Oct 02 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-3
  8000. - synced tlnet to 20131002
  8001. * Thu Sep 19 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-2
  8002. - synced tlnet to 20130919
  8003. * Fri Aug 23 2013 Munehiro Yamamoto <munepi@vinelinux.org> 2013-1
  8004. - upgraded to TeX Live 2013
  8005. - used tlnet archives
  8006. - synced tlnet to 20130823
  8007. - added macros.texlive
  8008. * Fri Aug 10 2012 Munehiro Yamamoto <munepi@vinelinux.org> 2012-1
  8009. - updated to TeX Live 2012
  8010. * Sat Dec 03 2011 Munehiro Yamamoto <munepi@vinelinux.org> 2011-2
  8011. - updated tlpdb2rpmspec.sh.in and dot.vtlpkg.conf.in:
  8012. - set external dependencies (texlive-collection-binextra,
  8013. texlive-collection-fontutils)
  8014. * Sun Oct 30 2011 Munehiro Yamamoto <munepi@vinelinux.org> 2011-1
  8015. - updated to TeX Live 2011
  8016. - merged texlive-vtlpkg-2009-osx.patch from OSXWS
  8017. - added %doc README (%files)
  8018. * Wed Mar 23 2011 Munehiro Yamamoto <munepi@vinelinux.org> 2009-4
  8019. - applied texlive-vtlpkg-2009-vine.patch
  8020. - remove arch dependent binaries
  8021. - updated tlpdb2rpmspec.sh.in:
  8022. - improved tlpdb4a()
  8023. - make symlinks of core script utils (texlive-collection-binextra,
  8024. texlive-collection-context, texlive-collection-fontutils,
  8025. texlive-collection-langgreek, texlive-collection-langindic,
  8026. texlive-collection-latex, texlive-collection-latexextra,
  8027. texlive-collection-latexrecommended, texlive-collection-pictures,
  8028. texlive-collection-pstricks, texlive-collection-science)
  8029. * Wed Jan 12 2011 Munehiro Yamamoto <munepi@vinelinux.org> 2009-3
  8030. - updated tlpdb2rpmspec.sh.in:
  8031. - improved %post
  8032. * Sun Sep 26 2010 Munehiro Yamamoto <munepi@vinelinux.org> 2009-2
  8033. - updated tlpdb2rpmspec.sh.in:
  8034. - removed arch dependent binaries (texlive-collection-latexextra)
  8035. - improved updmap process in %post and %postun
  8036. - fixed perl path
  8037. * Fri Jul 30 2010 Munehiro Yamamoto <munepi@vinelinux.org> 2009-1
  8038. - initial build