ApiProcessToken.deps.json 276 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v3.1/linux-x64",
  4. "signature": ""
  5. },
  6. "compilationOptions": {
  7. "defines": [
  8. "TRACE",
  9. "RELEASE",
  10. "NETCOREAPP",
  11. "NETCOREAPP3_1",
  12. "NETCOREAPP1_0_OR_GREATER",
  13. "NETCOREAPP1_1_OR_GREATER",
  14. "NETCOREAPP2_0_OR_GREATER",
  15. "NETCOREAPP2_1_OR_GREATER",
  16. "NETCOREAPP2_2_OR_GREATER",
  17. "NETCOREAPP3_0_OR_GREATER",
  18. "NETCOREAPP3_1_OR_GREATER"
  19. ],
  20. "languageVersion": "8.0",
  21. "platform": "x64",
  22. "allowUnsafe": false,
  23. "warningsAsErrors": false,
  24. "optimize": false,
  25. "keyFile": "",
  26. "emitEntryPoint": true,
  27. "xmlDoc": false,
  28. "debugType": "portable"
  29. },
  30. "targets": {
  31. ".NETCoreApp,Version=v3.1": {
  32. "ApiProcessToken/1.0.0": {
  33. "dependencies": {
  34. "CommonObj": "1.0.0",
  35. "Microsoft.AspNetCore.Mvc.Formatters.Xml": "2.2.0",
  36. "Newtonsoft.Json": "13.0.1",
  37. "Oracle.ManagedDataAccess.Core": "2.19.90",
  38. "StackExchange.Redis": "2.2.88",
  39. "log4net": "2.0.11",
  40. "GenPrizeCode": "1.0.0.0",
  41. "Microsoft.AspNetCore.Antiforgery": "3.1.0.0",
  42. "Microsoft.AspNetCore.Authentication.Abstractions.Reference": "3.1.0.0",
  43. "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0",
  44. "Microsoft.AspNetCore.Authentication.Core.Reference": "3.1.0.0",
  45. "Microsoft.AspNetCore.Authentication": "3.1.0.0",
  46. "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0",
  47. "Microsoft.AspNetCore.Authorization.Reference": "3.1.0.0",
  48. "Microsoft.AspNetCore.Authorization.Policy.Reference": "3.1.0.0",
  49. "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0",
  50. "Microsoft.AspNetCore.Components": "3.1.0.0",
  51. "Microsoft.AspNetCore.Components.Forms": "3.1.0.0",
  52. "Microsoft.AspNetCore.Components.Server": "3.1.0.0",
  53. "Microsoft.AspNetCore.Components.Web": "3.1.0.0",
  54. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0",
  55. "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0",
  56. "Microsoft.AspNetCore.Cors": "3.1.0.0",
  57. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0",
  58. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0",
  59. "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0",
  60. "Microsoft.AspNetCore.DataProtection": "3.1.0.0",
  61. "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0",
  62. "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0",
  63. "Microsoft.AspNetCore.Diagnostics": "3.1.0.0",
  64. "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0",
  65. "Microsoft.AspNetCore": "3.1.0.0",
  66. "Microsoft.AspNetCore.HostFiltering": "3.1.0.0",
  67. "Microsoft.AspNetCore.Hosting.Abstractions.Reference": "3.1.0.0",
  68. "Microsoft.AspNetCore.Hosting": "3.1.0.0",
  69. "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference": "3.1.0.0",
  70. "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0",
  71. "Microsoft.AspNetCore.Http.Abstractions.Reference": "3.1.0.0",
  72. "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0",
  73. "Microsoft.AspNetCore.Http.Connections": "3.1.0.0",
  74. "Microsoft.AspNetCore.Http.Reference": "3.1.0.0",
  75. "Microsoft.AspNetCore.Http.Extensions.Reference": "3.1.0.0",
  76. "Microsoft.AspNetCore.Http.Features.Reference": "3.1.0.0",
  77. "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0",
  78. "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0",
  79. "Microsoft.AspNetCore.Identity": "3.1.0.0",
  80. "Microsoft.AspNetCore.Localization": "3.1.0.0",
  81. "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0",
  82. "Microsoft.AspNetCore.Metadata": "3.1.0.0",
  83. "Microsoft.AspNetCore.Mvc.Abstractions.Reference": "3.1.0.0",
  84. "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0",
  85. "Microsoft.AspNetCore.Mvc.Core.Reference": "3.1.0.0",
  86. "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0",
  87. "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0",
  88. "Microsoft.AspNetCore.Mvc": "3.1.0.0",
  89. "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0",
  90. "Microsoft.AspNetCore.Mvc.Formatters.Xml.Reference": "3.1.0.0",
  91. "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0",
  92. "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0",
  93. "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0",
  94. "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0",
  95. "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0",
  96. "Microsoft.AspNetCore.Razor": "3.1.0.0",
  97. "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0",
  98. "Microsoft.AspNetCore.ResponseCaching.Abstractions.Reference": "3.1.0.0",
  99. "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0",
  100. "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0",
  101. "Microsoft.AspNetCore.Rewrite": "3.1.0.0",
  102. "Microsoft.AspNetCore.Routing.Abstractions.Reference": "3.1.0.0",
  103. "Microsoft.AspNetCore.Routing.Reference": "3.1.0.0",
  104. "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0",
  105. "Microsoft.AspNetCore.Server.IIS": "3.1.0.0",
  106. "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0",
  107. "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0",
  108. "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0",
  109. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0",
  110. "Microsoft.AspNetCore.Session": "3.1.0.0",
  111. "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0",
  112. "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0",
  113. "Microsoft.AspNetCore.SignalR": "3.1.0.0",
  114. "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0",
  115. "Microsoft.AspNetCore.StaticFiles": "3.1.0.0",
  116. "Microsoft.AspNetCore.WebSockets": "3.1.0.0",
  117. "Microsoft.AspNetCore.WebUtilities.Reference": "3.1.0.0",
  118. "Microsoft.CSharp": "4.0.0.0",
  119. "Microsoft.Extensions.Caching.Abstractions": "3.1.0.0",
  120. "Microsoft.Extensions.Caching.Memory": "3.1.0.0",
  121. "Microsoft.Extensions.Configuration.Abstractions.Reference": "3.1.0.0",
  122. "Microsoft.Extensions.Configuration.Binder": "3.1.0.0",
  123. "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0",
  124. "Microsoft.Extensions.Configuration": "3.1.0.0",
  125. "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0",
  126. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0",
  127. "Microsoft.Extensions.Configuration.Ini": "3.1.0.0",
  128. "Microsoft.Extensions.Configuration.Json": "3.1.0.0",
  129. "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0",
  130. "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0",
  131. "Microsoft.Extensions.Configuration.Xml": "3.1.0.0",
  132. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "3.1.0.0",
  133. "Microsoft.Extensions.DependencyInjection.Reference": "3.1.0.0",
  134. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0",
  135. "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0",
  136. "Microsoft.Extensions.FileProviders.Abstractions.Reference": "3.1.0.0",
  137. "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0",
  138. "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0",
  139. "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0",
  140. "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0",
  141. "Microsoft.Extensions.Hosting.Abstractions.Reference": "3.1.0.0",
  142. "Microsoft.Extensions.Hosting": "3.1.0.0",
  143. "Microsoft.Extensions.Http": "3.1.0.0",
  144. "Microsoft.Extensions.Identity.Core": "3.1.0.0",
  145. "Microsoft.Extensions.Identity.Stores": "3.1.0.0",
  146. "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0",
  147. "Microsoft.Extensions.Localization": "3.1.0.0",
  148. "Microsoft.Extensions.Logging.Abstractions.Reference": "3.1.0.0",
  149. "Microsoft.Extensions.Logging.Configuration": "3.1.0.0",
  150. "Microsoft.Extensions.Logging.Console": "3.1.0.0",
  151. "Microsoft.Extensions.Logging.Debug": "3.1.0.0",
  152. "Microsoft.Extensions.Logging": "3.1.0.0",
  153. "Microsoft.Extensions.Logging.EventLog": "3.1.0.0",
  154. "Microsoft.Extensions.Logging.EventSource": "3.1.0.0",
  155. "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0",
  156. "Microsoft.Extensions.ObjectPool.Reference": "3.1.0.0",
  157. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0",
  158. "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0",
  159. "Microsoft.Extensions.Options.Reference": "3.1.0.0",
  160. "Microsoft.Extensions.Primitives.Reference": "3.1.0.0",
  161. "Microsoft.Extensions.WebEncoders": "3.1.0.0",
  162. "Microsoft.JSInterop": "3.1.0.0",
  163. "Microsoft.Net.Http.Headers.Reference": "3.1.0.0",
  164. "Microsoft.VisualBasic.Core": "10.0.5.0",
  165. "Microsoft.VisualBasic": "10.0.0.0",
  166. "Microsoft.Win32.Primitives": "4.1.2.0",
  167. "Microsoft.Win32.Registry.Reference": "4.1.3.0",
  168. "mscorlib": "4.0.0.0",
  169. "netstandard": "2.1.0.0",
  170. "System.AppContext.Reference": "4.2.2.0",
  171. "System.Buffers.Reference": "4.0.2.0",
  172. "System.Collections.Concurrent": "4.0.15.0",
  173. "System.Collections.Reference": "4.1.2.0",
  174. "System.Collections.Immutable": "1.2.5.0",
  175. "System.Collections.NonGeneric": "4.1.2.0",
  176. "System.Collections.Specialized": "4.1.2.0",
  177. "System.ComponentModel.Annotations.Reference": "4.3.1.0",
  178. "System.ComponentModel.DataAnnotations": "4.0.0.0",
  179. "System.ComponentModel": "4.0.4.0",
  180. "System.ComponentModel.EventBasedAsync": "4.1.2.0",
  181. "System.ComponentModel.Primitives": "4.2.2.0",
  182. "System.ComponentModel.TypeConverter": "4.2.2.0",
  183. "System.Configuration": "4.0.0.0",
  184. "System.Console": "4.1.2.0",
  185. "System.Core": "4.0.0.0",
  186. "System.Data.Common": "4.2.2.0",
  187. "System.Data.DataSetExtensions": "4.0.1.0",
  188. "System.Data": "4.0.0.0",
  189. "System.Diagnostics.Contracts": "4.0.4.0",
  190. "System.Diagnostics.Debug.Reference": "4.1.2.0",
  191. "System.Diagnostics.DiagnosticSource.Reference": "4.0.5.0",
  192. "System.Diagnostics.EventLog": "4.0.2.0",
  193. "System.Diagnostics.FileVersionInfo": "4.0.4.0",
  194. "System.Diagnostics.Process": "4.2.2.0",
  195. "System.Diagnostics.StackTrace": "4.1.2.0",
  196. "System.Diagnostics.TextWriterTraceListener": "4.1.2.0",
  197. "System.Diagnostics.Tools": "4.1.2.0",
  198. "System.Diagnostics.TraceSource": "4.1.2.0",
  199. "System.Diagnostics.Tracing": "4.2.2.0",
  200. "System": "4.0.0.0",
  201. "System.Drawing": "4.0.0.0",
  202. "System.Drawing.Primitives": "4.2.1.0",
  203. "System.Dynamic.Runtime.Reference": "4.1.2.0",
  204. "System.Globalization.Calendars": "4.1.2.0",
  205. "System.Globalization.Reference": "4.1.2.0",
  206. "System.Globalization.Extensions": "4.1.2.0",
  207. "System.IO.Compression.Brotli": "4.2.2.0",
  208. "System.IO.Compression": "4.2.2.0",
  209. "System.IO.Compression.FileSystem": "4.0.0.0",
  210. "System.IO.Compression.ZipFile": "4.0.5.0",
  211. "System.IO.Reference": "4.2.2.0",
  212. "System.IO.FileSystem.Reference": "4.1.2.0",
  213. "System.IO.FileSystem.DriveInfo": "4.1.2.0",
  214. "System.IO.FileSystem.Primitives.Reference": "4.1.2.0",
  215. "System.IO.FileSystem.Watcher": "4.1.2.0",
  216. "System.IO.IsolatedStorage": "4.1.2.0",
  217. "System.IO.MemoryMappedFiles": "4.1.2.0",
  218. "System.IO.Pipes": "4.1.2.0",
  219. "System.IO.UnmanagedMemoryStream": "4.1.2.0",
  220. "System.Linq.Reference": "4.2.2.0",
  221. "System.Linq.Expressions.Reference": "4.2.2.0",
  222. "System.Linq.Parallel": "4.0.4.0",
  223. "System.Linq.Queryable": "4.0.4.0",
  224. "System.Memory.Reference": "4.2.1.0",
  225. "System.Net": "4.0.0.0",
  226. "System.Net.Http": "4.2.2.0",
  227. "System.Net.HttpListener": "4.0.2.0",
  228. "System.Net.Mail": "4.0.2.0",
  229. "System.Net.NameResolution": "4.1.2.0",
  230. "System.Net.NetworkInformation": "4.2.2.0",
  231. "System.Net.Ping": "4.1.2.0",
  232. "System.Net.Primitives": "4.1.2.0",
  233. "System.Net.Requests": "4.1.2.0",
  234. "System.Net.Security": "4.1.2.0",
  235. "System.Net.ServicePoint": "4.0.2.0",
  236. "System.Net.Sockets": "4.2.2.0",
  237. "System.Net.WebClient": "4.0.2.0",
  238. "System.Net.WebHeaderCollection": "4.1.2.0",
  239. "System.Net.WebProxy": "4.0.2.0",
  240. "System.Net.WebSockets.Client": "4.1.2.0",
  241. "System.Net.WebSockets": "4.1.2.0",
  242. "System.Numerics": "4.0.0.0",
  243. "System.Numerics.Vectors": "4.1.6.0",
  244. "System.ObjectModel.Reference": "4.1.2.0",
  245. "System.Reflection.DispatchProxy": "4.0.6.0",
  246. "System.Reflection.Reference": "4.2.2.0",
  247. "System.Reflection.Emit.Reference": "4.1.2.0",
  248. "System.Reflection.Emit.ILGeneration.Reference": "4.1.1.0",
  249. "System.Reflection.Emit.Lightweight.Reference": "4.1.1.0",
  250. "System.Reflection.Extensions.Reference": "4.1.2.0",
  251. "System.Reflection.Metadata": "1.4.5.0",
  252. "System.Reflection.Primitives.Reference": "4.1.2.0",
  253. "System.Reflection.TypeExtensions.Reference": "4.1.2.0",
  254. "System.Resources.Reader": "4.1.2.0",
  255. "System.Resources.ResourceManager.Reference": "4.1.2.0",
  256. "System.Resources.Writer": "4.1.2.0",
  257. "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.6.0",
  258. "System.Runtime.CompilerServices.VisualC": "4.1.2.0",
  259. "System.Runtime.Reference": "4.2.2.0",
  260. "System.Runtime.Extensions.Reference": "4.2.2.0",
  261. "System.Runtime.Handles.Reference": "4.1.2.0",
  262. "System.Runtime.InteropServices.Reference": "4.2.2.0",
  263. "System.Runtime.InteropServices.RuntimeInformation.Reference": "4.0.4.0",
  264. "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0",
  265. "System.Runtime.Intrinsics": "4.0.1.0",
  266. "System.Runtime.Loader": "4.1.1.0",
  267. "System.Runtime.Numerics": "4.1.2.0",
  268. "System.Runtime.Serialization": "4.0.0.0",
  269. "System.Runtime.Serialization.Formatters": "4.0.4.0",
  270. "System.Runtime.Serialization.Json": "4.0.5.0",
  271. "System.Runtime.Serialization.Primitives": "4.2.2.0",
  272. "System.Runtime.Serialization.Xml": "4.1.5.0",
  273. "System.Security.Claims": "4.1.2.0",
  274. "System.Security.Cryptography.Algorithms": "4.3.2.0",
  275. "System.Security.Cryptography.Cng": "4.3.3.0",
  276. "System.Security.Cryptography.Csp": "4.1.2.0",
  277. "System.Security.Cryptography.Encoding": "4.1.2.0",
  278. "System.Security.Cryptography.Primitives": "4.1.2.0",
  279. "System.Security.Cryptography.X509Certificates": "4.2.2.0",
  280. "System.Security.Cryptography.Xml": "4.0.3.0",
  281. "System.Security": "4.0.0.0",
  282. "System.Security.Principal": "4.1.2.0",
  283. "System.Security.SecureString": "4.1.2.0",
  284. "System.ServiceModel.Web": "4.0.0.0",
  285. "System.ServiceProcess": "4.0.0.0",
  286. "System.Text.Encoding.CodePages": "4.1.3.0",
  287. "System.Text.Encoding.Reference": "4.1.2.0",
  288. "System.Text.Encoding.Extensions.Reference": "4.1.2.0",
  289. "System.Text.Encodings.Web.Reference": "4.0.5.0",
  290. "System.Text.Json": "4.0.1.0",
  291. "System.Text.RegularExpressions": "4.2.2.0",
  292. "System.Threading.Channels": "4.0.2.0",
  293. "System.Threading.Reference": "4.1.2.0",
  294. "System.Threading.Overlapped": "4.1.2.0",
  295. "System.Threading.Tasks.Dataflow": "4.6.5.0",
  296. "System.Threading.Tasks.Reference": "4.1.2.0",
  297. "System.Threading.Tasks.Extensions.Reference": "4.3.1.0",
  298. "System.Threading.Tasks.Parallel": "4.0.4.0",
  299. "System.Threading.Thread": "4.1.2.0",
  300. "System.Threading.ThreadPool": "4.1.2.0",
  301. "System.Threading.Timer": "4.1.2.0",
  302. "System.Transactions": "4.0.0.0",
  303. "System.Transactions.Local": "4.0.2.0",
  304. "System.ValueTuple": "4.0.3.0",
  305. "System.Web": "4.0.0.0",
  306. "System.Web.HttpUtility": "4.0.2.0",
  307. "System.Windows": "4.0.0.0",
  308. "System.Xml": "4.0.0.0",
  309. "System.Xml.Linq": "4.0.0.0",
  310. "System.Xml.ReaderWriter": "4.2.2.0",
  311. "System.Xml.Serialization": "4.0.0.0",
  312. "System.Xml.XDocument": "4.1.2.0",
  313. "System.Xml.XmlDocument": "4.1.2.0",
  314. "System.Xml.XmlSerializer": "4.1.2.0",
  315. "System.Xml.XPath": "4.1.2.0",
  316. "System.Xml.XPath.XDocument": "4.1.2.0",
  317. "WindowsBase": "4.0.0.0"
  318. },
  319. "compile": {
  320. "ApiProcessToken.dll": {}
  321. }
  322. },
  323. "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
  324. "compile": {
  325. "Microsoft.AspNetCore.Antiforgery.dll": {}
  326. }
  327. },
  328. "Microsoft.AspNetCore.Authentication.Abstractions.Reference/3.1.0.0": {
  329. "compile": {
  330. "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
  331. }
  332. },
  333. "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
  334. "compile": {
  335. "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
  336. }
  337. },
  338. "Microsoft.AspNetCore.Authentication.Core.Reference/3.1.0.0": {
  339. "compile": {
  340. "Microsoft.AspNetCore.Authentication.Core.dll": {}
  341. }
  342. },
  343. "Microsoft.AspNetCore.Authentication/3.1.0.0": {
  344. "compile": {
  345. "Microsoft.AspNetCore.Authentication.dll": {}
  346. }
  347. },
  348. "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
  349. "compile": {
  350. "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
  351. }
  352. },
  353. "Microsoft.AspNetCore.Authorization.Reference/3.1.0.0": {
  354. "compile": {
  355. "Microsoft.AspNetCore.Authorization.dll": {}
  356. }
  357. },
  358. "Microsoft.AspNetCore.Authorization.Policy.Reference/3.1.0.0": {
  359. "compile": {
  360. "Microsoft.AspNetCore.Authorization.Policy.dll": {}
  361. }
  362. },
  363. "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
  364. "compile": {
  365. "Microsoft.AspNetCore.Components.Authorization.dll": {}
  366. }
  367. },
  368. "Microsoft.AspNetCore.Components/3.1.0.0": {
  369. "compile": {
  370. "Microsoft.AspNetCore.Components.dll": {}
  371. }
  372. },
  373. "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
  374. "compile": {
  375. "Microsoft.AspNetCore.Components.Forms.dll": {}
  376. }
  377. },
  378. "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
  379. "compile": {
  380. "Microsoft.AspNetCore.Components.Server.dll": {}
  381. }
  382. },
  383. "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
  384. "compile": {
  385. "Microsoft.AspNetCore.Components.Web.dll": {}
  386. }
  387. },
  388. "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
  389. "compile": {
  390. "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
  391. }
  392. },
  393. "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
  394. "compile": {
  395. "Microsoft.AspNetCore.CookiePolicy.dll": {}
  396. }
  397. },
  398. "Microsoft.AspNetCore.Cors/3.1.0.0": {
  399. "compile": {
  400. "Microsoft.AspNetCore.Cors.dll": {}
  401. }
  402. },
  403. "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
  404. "compile": {
  405. "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  406. }
  407. },
  408. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
  409. "compile": {
  410. "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  411. }
  412. },
  413. "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
  414. "compile": {
  415. "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  416. }
  417. },
  418. "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
  419. "compile": {
  420. "Microsoft.AspNetCore.DataProtection.dll": {}
  421. }
  422. },
  423. "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
  424. "compile": {
  425. "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
  426. }
  427. },
  428. "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
  429. "compile": {
  430. "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  431. }
  432. },
  433. "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
  434. "compile": {
  435. "Microsoft.AspNetCore.Diagnostics.dll": {}
  436. }
  437. },
  438. "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
  439. "compile": {
  440. "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
  441. }
  442. },
  443. "Microsoft.AspNetCore/3.1.0.0": {
  444. "compile": {
  445. "Microsoft.AspNetCore.dll": {}
  446. }
  447. },
  448. "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
  449. "compile": {
  450. "Microsoft.AspNetCore.HostFiltering.dll": {}
  451. }
  452. },
  453. "Microsoft.AspNetCore.Hosting.Abstractions.Reference/3.1.0.0": {
  454. "compile": {
  455. "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  456. }
  457. },
  458. "Microsoft.AspNetCore.Hosting/3.1.0.0": {
  459. "compile": {
  460. "Microsoft.AspNetCore.Hosting.dll": {}
  461. }
  462. },
  463. "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference/3.1.0.0": {
  464. "compile": {
  465. "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  466. }
  467. },
  468. "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
  469. "compile": {
  470. "Microsoft.AspNetCore.Html.Abstractions.dll": {}
  471. }
  472. },
  473. "Microsoft.AspNetCore.Http.Abstractions.Reference/3.1.0.0": {
  474. "compile": {
  475. "Microsoft.AspNetCore.Http.Abstractions.dll": {}
  476. }
  477. },
  478. "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
  479. "compile": {
  480. "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
  481. }
  482. },
  483. "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
  484. "compile": {
  485. "Microsoft.AspNetCore.Http.Connections.dll": {}
  486. }
  487. },
  488. "Microsoft.AspNetCore.Http.Reference/3.1.0.0": {
  489. "compile": {
  490. "Microsoft.AspNetCore.Http.dll": {}
  491. }
  492. },
  493. "Microsoft.AspNetCore.Http.Extensions.Reference/3.1.0.0": {
  494. "compile": {
  495. "Microsoft.AspNetCore.Http.Extensions.dll": {}
  496. }
  497. },
  498. "Microsoft.AspNetCore.Http.Features.Reference/3.1.0.0": {
  499. "compile": {
  500. "Microsoft.AspNetCore.Http.Features.dll": {}
  501. }
  502. },
  503. "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
  504. "compile": {
  505. "Microsoft.AspNetCore.HttpOverrides.dll": {}
  506. }
  507. },
  508. "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
  509. "compile": {
  510. "Microsoft.AspNetCore.HttpsPolicy.dll": {}
  511. }
  512. },
  513. "Microsoft.AspNetCore.Identity/3.1.0.0": {
  514. "compile": {
  515. "Microsoft.AspNetCore.Identity.dll": {}
  516. }
  517. },
  518. "Microsoft.AspNetCore.Localization/3.1.0.0": {
  519. "compile": {
  520. "Microsoft.AspNetCore.Localization.dll": {}
  521. }
  522. },
  523. "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
  524. "compile": {
  525. "Microsoft.AspNetCore.Localization.Routing.dll": {}
  526. }
  527. },
  528. "Microsoft.AspNetCore.Metadata/3.1.0.0": {
  529. "compile": {
  530. "Microsoft.AspNetCore.Metadata.dll": {}
  531. }
  532. },
  533. "Microsoft.AspNetCore.Mvc.Abstractions.Reference/3.1.0.0": {
  534. "compile": {
  535. "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  536. }
  537. },
  538. "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
  539. "compile": {
  540. "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  541. }
  542. },
  543. "Microsoft.AspNetCore.Mvc.Core.Reference/3.1.0.0": {
  544. "compile": {
  545. "Microsoft.AspNetCore.Mvc.Core.dll": {}
  546. }
  547. },
  548. "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
  549. "compile": {
  550. "Microsoft.AspNetCore.Mvc.Cors.dll": {}
  551. }
  552. },
  553. "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
  554. "compile": {
  555. "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  556. }
  557. },
  558. "Microsoft.AspNetCore.Mvc/3.1.0.0": {
  559. "compile": {
  560. "Microsoft.AspNetCore.Mvc.dll": {}
  561. }
  562. },
  563. "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
  564. "compile": {
  565. "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  566. }
  567. },
  568. "Microsoft.AspNetCore.Mvc.Formatters.Xml.Reference/3.1.0.0": {
  569. "compile": {
  570. "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
  571. }
  572. },
  573. "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
  574. "compile": {
  575. "Microsoft.AspNetCore.Mvc.Localization.dll": {}
  576. }
  577. },
  578. "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
  579. "compile": {
  580. "Microsoft.AspNetCore.Mvc.Razor.dll": {}
  581. }
  582. },
  583. "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
  584. "compile": {
  585. "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
  586. }
  587. },
  588. "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
  589. "compile": {
  590. "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  591. }
  592. },
  593. "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
  594. "compile": {
  595. "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  596. }
  597. },
  598. "Microsoft.AspNetCore.Razor/3.1.0.0": {
  599. "compile": {
  600. "Microsoft.AspNetCore.Razor.dll": {}
  601. }
  602. },
  603. "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
  604. "compile": {
  605. "Microsoft.AspNetCore.Razor.Runtime.dll": {}
  606. }
  607. },
  608. "Microsoft.AspNetCore.ResponseCaching.Abstractions.Reference/3.1.0.0": {
  609. "compile": {
  610. "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  611. }
  612. },
  613. "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
  614. "compile": {
  615. "Microsoft.AspNetCore.ResponseCaching.dll": {}
  616. }
  617. },
  618. "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
  619. "compile": {
  620. "Microsoft.AspNetCore.ResponseCompression.dll": {}
  621. }
  622. },
  623. "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
  624. "compile": {
  625. "Microsoft.AspNetCore.Rewrite.dll": {}
  626. }
  627. },
  628. "Microsoft.AspNetCore.Routing.Abstractions.Reference/3.1.0.0": {
  629. "compile": {
  630. "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  631. }
  632. },
  633. "Microsoft.AspNetCore.Routing.Reference/3.1.0.0": {
  634. "compile": {
  635. "Microsoft.AspNetCore.Routing.dll": {}
  636. }
  637. },
  638. "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
  639. "compile": {
  640. "Microsoft.AspNetCore.Server.HttpSys.dll": {}
  641. }
  642. },
  643. "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
  644. "compile": {
  645. "Microsoft.AspNetCore.Server.IIS.dll": {}
  646. }
  647. },
  648. "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
  649. "compile": {
  650. "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  651. }
  652. },
  653. "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
  654. "compile": {
  655. "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
  656. }
  657. },
  658. "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
  659. "compile": {
  660. "Microsoft.AspNetCore.Server.Kestrel.dll": {}
  661. }
  662. },
  663. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
  664. "compile": {
  665. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
  666. }
  667. },
  668. "Microsoft.AspNetCore.Session/3.1.0.0": {
  669. "compile": {
  670. "Microsoft.AspNetCore.Session.dll": {}
  671. }
  672. },
  673. "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
  674. "compile": {
  675. "Microsoft.AspNetCore.SignalR.Common.dll": {}
  676. }
  677. },
  678. "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
  679. "compile": {
  680. "Microsoft.AspNetCore.SignalR.Core.dll": {}
  681. }
  682. },
  683. "Microsoft.AspNetCore.SignalR/3.1.0.0": {
  684. "compile": {
  685. "Microsoft.AspNetCore.SignalR.dll": {}
  686. }
  687. },
  688. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
  689. "compile": {
  690. "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
  691. }
  692. },
  693. "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
  694. "compile": {
  695. "Microsoft.AspNetCore.StaticFiles.dll": {}
  696. }
  697. },
  698. "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
  699. "compile": {
  700. "Microsoft.AspNetCore.WebSockets.dll": {}
  701. }
  702. },
  703. "Microsoft.AspNetCore.WebUtilities.Reference/3.1.0.0": {
  704. "compile": {
  705. "Microsoft.AspNetCore.WebUtilities.dll": {}
  706. }
  707. },
  708. "Microsoft.CSharp/4.0.0.0": {
  709. "compile": {
  710. "Microsoft.CSharp.dll": {}
  711. }
  712. },
  713. "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": {
  714. "compile": {
  715. "Microsoft.Extensions.Caching.Abstractions.dll": {}
  716. }
  717. },
  718. "Microsoft.Extensions.Caching.Memory/3.1.0.0": {
  719. "compile": {
  720. "Microsoft.Extensions.Caching.Memory.dll": {}
  721. }
  722. },
  723. "Microsoft.Extensions.Configuration.Abstractions.Reference/3.1.0.0": {
  724. "compile": {
  725. "Microsoft.Extensions.Configuration.Abstractions.dll": {}
  726. }
  727. },
  728. "Microsoft.Extensions.Configuration.Binder/3.1.0.0": {
  729. "compile": {
  730. "Microsoft.Extensions.Configuration.Binder.dll": {}
  731. }
  732. },
  733. "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
  734. "compile": {
  735. "Microsoft.Extensions.Configuration.CommandLine.dll": {}
  736. }
  737. },
  738. "Microsoft.Extensions.Configuration/3.1.0.0": {
  739. "compile": {
  740. "Microsoft.Extensions.Configuration.dll": {}
  741. }
  742. },
  743. "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
  744. "compile": {
  745. "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  746. }
  747. },
  748. "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
  749. "compile": {
  750. "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  751. }
  752. },
  753. "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
  754. "compile": {
  755. "Microsoft.Extensions.Configuration.Ini.dll": {}
  756. }
  757. },
  758. "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
  759. "compile": {
  760. "Microsoft.Extensions.Configuration.Json.dll": {}
  761. }
  762. },
  763. "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
  764. "compile": {
  765. "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
  766. }
  767. },
  768. "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
  769. "compile": {
  770. "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  771. }
  772. },
  773. "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
  774. "compile": {
  775. "Microsoft.Extensions.Configuration.Xml.dll": {}
  776. }
  777. },
  778. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/3.1.0.0": {
  779. "compile": {
  780. "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  781. }
  782. },
  783. "Microsoft.Extensions.DependencyInjection.Reference/3.1.0.0": {
  784. "compile": {
  785. "Microsoft.Extensions.DependencyInjection.dll": {}
  786. }
  787. },
  788. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
  789. "compile": {
  790. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
  791. }
  792. },
  793. "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
  794. "compile": {
  795. "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
  796. }
  797. },
  798. "Microsoft.Extensions.FileProviders.Abstractions.Reference/3.1.0.0": {
  799. "compile": {
  800. "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  801. }
  802. },
  803. "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
  804. "compile": {
  805. "Microsoft.Extensions.FileProviders.Composite.dll": {}
  806. }
  807. },
  808. "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
  809. "compile": {
  810. "Microsoft.Extensions.FileProviders.Embedded.dll": {}
  811. }
  812. },
  813. "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
  814. "compile": {
  815. "Microsoft.Extensions.FileProviders.Physical.dll": {}
  816. }
  817. },
  818. "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
  819. "compile": {
  820. "Microsoft.Extensions.FileSystemGlobbing.dll": {}
  821. }
  822. },
  823. "Microsoft.Extensions.Hosting.Abstractions.Reference/3.1.0.0": {
  824. "compile": {
  825. "Microsoft.Extensions.Hosting.Abstractions.dll": {}
  826. }
  827. },
  828. "Microsoft.Extensions.Hosting/3.1.0.0": {
  829. "compile": {
  830. "Microsoft.Extensions.Hosting.dll": {}
  831. }
  832. },
  833. "Microsoft.Extensions.Http/3.1.0.0": {
  834. "compile": {
  835. "Microsoft.Extensions.Http.dll": {}
  836. }
  837. },
  838. "Microsoft.Extensions.Identity.Core/3.1.0.0": {
  839. "compile": {
  840. "Microsoft.Extensions.Identity.Core.dll": {}
  841. }
  842. },
  843. "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
  844. "compile": {
  845. "Microsoft.Extensions.Identity.Stores.dll": {}
  846. }
  847. },
  848. "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
  849. "compile": {
  850. "Microsoft.Extensions.Localization.Abstractions.dll": {}
  851. }
  852. },
  853. "Microsoft.Extensions.Localization/3.1.0.0": {
  854. "compile": {
  855. "Microsoft.Extensions.Localization.dll": {}
  856. }
  857. },
  858. "Microsoft.Extensions.Logging.Abstractions.Reference/3.1.0.0": {
  859. "compile": {
  860. "Microsoft.Extensions.Logging.Abstractions.dll": {}
  861. }
  862. },
  863. "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
  864. "compile": {
  865. "Microsoft.Extensions.Logging.Configuration.dll": {}
  866. }
  867. },
  868. "Microsoft.Extensions.Logging.Console/3.1.0.0": {
  869. "compile": {
  870. "Microsoft.Extensions.Logging.Console.dll": {}
  871. }
  872. },
  873. "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
  874. "compile": {
  875. "Microsoft.Extensions.Logging.Debug.dll": {}
  876. }
  877. },
  878. "Microsoft.Extensions.Logging/3.1.0.0": {
  879. "compile": {
  880. "Microsoft.Extensions.Logging.dll": {}
  881. }
  882. },
  883. "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
  884. "compile": {
  885. "Microsoft.Extensions.Logging.EventLog.dll": {}
  886. }
  887. },
  888. "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
  889. "compile": {
  890. "Microsoft.Extensions.Logging.EventSource.dll": {}
  891. }
  892. },
  893. "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
  894. "compile": {
  895. "Microsoft.Extensions.Logging.TraceSource.dll": {}
  896. }
  897. },
  898. "Microsoft.Extensions.ObjectPool.Reference/3.1.0.0": {
  899. "compile": {
  900. "Microsoft.Extensions.ObjectPool.dll": {}
  901. }
  902. },
  903. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
  904. "compile": {
  905. "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  906. }
  907. },
  908. "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
  909. "compile": {
  910. "Microsoft.Extensions.Options.DataAnnotations.dll": {}
  911. }
  912. },
  913. "Microsoft.Extensions.Options.Reference/3.1.0.0": {
  914. "compile": {
  915. "Microsoft.Extensions.Options.dll": {}
  916. }
  917. },
  918. "Microsoft.Extensions.Primitives.Reference/3.1.0.0": {
  919. "compile": {
  920. "Microsoft.Extensions.Primitives.dll": {}
  921. }
  922. },
  923. "Microsoft.Extensions.WebEncoders/3.1.0.0": {
  924. "compile": {
  925. "Microsoft.Extensions.WebEncoders.dll": {}
  926. }
  927. },
  928. "Microsoft.JSInterop/3.1.0.0": {
  929. "compile": {
  930. "Microsoft.JSInterop.dll": {}
  931. }
  932. },
  933. "Microsoft.Net.Http.Headers.Reference/3.1.0.0": {
  934. "compile": {
  935. "Microsoft.Net.Http.Headers.dll": {}
  936. }
  937. },
  938. "Microsoft.VisualBasic.Core/10.0.5.0": {
  939. "compile": {
  940. "Microsoft.VisualBasic.Core.dll": {}
  941. }
  942. },
  943. "Microsoft.VisualBasic/10.0.0.0": {
  944. "compile": {
  945. "Microsoft.VisualBasic.dll": {}
  946. }
  947. },
  948. "Microsoft.Win32.Primitives/4.1.2.0": {
  949. "compile": {
  950. "Microsoft.Win32.Primitives.dll": {}
  951. }
  952. },
  953. "Microsoft.Win32.Registry.Reference/4.1.3.0": {
  954. "compile": {
  955. "Microsoft.Win32.Registry.dll": {}
  956. }
  957. },
  958. "mscorlib/4.0.0.0": {
  959. "compile": {
  960. "mscorlib.dll": {}
  961. }
  962. },
  963. "netstandard/2.1.0.0": {
  964. "compile": {
  965. "netstandard.dll": {}
  966. }
  967. },
  968. "System.AppContext.Reference/4.2.2.0": {
  969. "compile": {
  970. "System.AppContext.dll": {}
  971. }
  972. },
  973. "System.Buffers.Reference/4.0.2.0": {
  974. "compile": {
  975. "System.Buffers.dll": {}
  976. }
  977. },
  978. "System.Collections.Concurrent/4.0.15.0": {
  979. "compile": {
  980. "System.Collections.Concurrent.dll": {}
  981. }
  982. },
  983. "System.Collections.Reference/4.1.2.0": {
  984. "compile": {
  985. "System.Collections.dll": {}
  986. }
  987. },
  988. "System.Collections.Immutable/1.2.5.0": {
  989. "compile": {
  990. "System.Collections.Immutable.dll": {}
  991. }
  992. },
  993. "System.Collections.NonGeneric/4.1.2.0": {
  994. "compile": {
  995. "System.Collections.NonGeneric.dll": {}
  996. }
  997. },
  998. "System.Collections.Specialized/4.1.2.0": {
  999. "compile": {
  1000. "System.Collections.Specialized.dll": {}
  1001. }
  1002. },
  1003. "System.ComponentModel.Annotations.Reference/4.3.1.0": {
  1004. "compile": {
  1005. "System.ComponentModel.Annotations.dll": {}
  1006. }
  1007. },
  1008. "System.ComponentModel.DataAnnotations/4.0.0.0": {
  1009. "compile": {
  1010. "System.ComponentModel.DataAnnotations.dll": {}
  1011. }
  1012. },
  1013. "System.ComponentModel/4.0.4.0": {
  1014. "compile": {
  1015. "System.ComponentModel.dll": {}
  1016. }
  1017. },
  1018. "System.ComponentModel.EventBasedAsync/4.1.2.0": {
  1019. "compile": {
  1020. "System.ComponentModel.EventBasedAsync.dll": {}
  1021. }
  1022. },
  1023. "System.ComponentModel.Primitives/4.2.2.0": {
  1024. "compile": {
  1025. "System.ComponentModel.Primitives.dll": {}
  1026. }
  1027. },
  1028. "System.ComponentModel.TypeConverter/4.2.2.0": {
  1029. "compile": {
  1030. "System.ComponentModel.TypeConverter.dll": {}
  1031. }
  1032. },
  1033. "System.Configuration/4.0.0.0": {
  1034. "compile": {
  1035. "System.Configuration.dll": {}
  1036. }
  1037. },
  1038. "System.Console/4.1.2.0": {
  1039. "compile": {
  1040. "System.Console.dll": {}
  1041. }
  1042. },
  1043. "System.Core/4.0.0.0": {
  1044. "compile": {
  1045. "System.Core.dll": {}
  1046. }
  1047. },
  1048. "System.Data.Common/4.2.2.0": {
  1049. "compile": {
  1050. "System.Data.Common.dll": {}
  1051. }
  1052. },
  1053. "System.Data.DataSetExtensions/4.0.1.0": {
  1054. "compile": {
  1055. "System.Data.DataSetExtensions.dll": {}
  1056. }
  1057. },
  1058. "System.Data/4.0.0.0": {
  1059. "compile": {
  1060. "System.Data.dll": {}
  1061. }
  1062. },
  1063. "System.Diagnostics.Contracts/4.0.4.0": {
  1064. "compile": {
  1065. "System.Diagnostics.Contracts.dll": {}
  1066. }
  1067. },
  1068. "System.Diagnostics.Debug.Reference/4.1.2.0": {
  1069. "compile": {
  1070. "System.Diagnostics.Debug.dll": {}
  1071. }
  1072. },
  1073. "System.Diagnostics.DiagnosticSource.Reference/4.0.5.0": {
  1074. "compile": {
  1075. "System.Diagnostics.DiagnosticSource.dll": {}
  1076. }
  1077. },
  1078. "System.Diagnostics.EventLog/4.0.2.0": {
  1079. "compile": {
  1080. "System.Diagnostics.EventLog.dll": {}
  1081. }
  1082. },
  1083. "System.Diagnostics.FileVersionInfo/4.0.4.0": {
  1084. "compile": {
  1085. "System.Diagnostics.FileVersionInfo.dll": {}
  1086. }
  1087. },
  1088. "System.Diagnostics.Process/4.2.2.0": {
  1089. "compile": {
  1090. "System.Diagnostics.Process.dll": {}
  1091. }
  1092. },
  1093. "System.Diagnostics.StackTrace/4.1.2.0": {
  1094. "compile": {
  1095. "System.Diagnostics.StackTrace.dll": {}
  1096. }
  1097. },
  1098. "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
  1099. "compile": {
  1100. "System.Diagnostics.TextWriterTraceListener.dll": {}
  1101. }
  1102. },
  1103. "System.Diagnostics.Tools/4.1.2.0": {
  1104. "compile": {
  1105. "System.Diagnostics.Tools.dll": {}
  1106. }
  1107. },
  1108. "System.Diagnostics.TraceSource/4.1.2.0": {
  1109. "compile": {
  1110. "System.Diagnostics.TraceSource.dll": {}
  1111. }
  1112. },
  1113. "System.Diagnostics.Tracing/4.2.2.0": {
  1114. "compile": {
  1115. "System.Diagnostics.Tracing.dll": {}
  1116. }
  1117. },
  1118. "System/4.0.0.0": {
  1119. "compile": {
  1120. "System.dll": {}
  1121. }
  1122. },
  1123. "System.Drawing/4.0.0.0": {
  1124. "compile": {
  1125. "System.Drawing.dll": {}
  1126. }
  1127. },
  1128. "System.Drawing.Primitives/4.2.1.0": {
  1129. "compile": {
  1130. "System.Drawing.Primitives.dll": {}
  1131. }
  1132. },
  1133. "System.Dynamic.Runtime.Reference/4.1.2.0": {
  1134. "compile": {
  1135. "System.Dynamic.Runtime.dll": {}
  1136. }
  1137. },
  1138. "System.Globalization.Calendars/4.1.2.0": {
  1139. "compile": {
  1140. "System.Globalization.Calendars.dll": {}
  1141. }
  1142. },
  1143. "System.Globalization.Reference/4.1.2.0": {
  1144. "compile": {
  1145. "System.Globalization.dll": {}
  1146. }
  1147. },
  1148. "System.Globalization.Extensions/4.1.2.0": {
  1149. "compile": {
  1150. "System.Globalization.Extensions.dll": {}
  1151. }
  1152. },
  1153. "System.IO.Compression.Brotli/4.2.2.0": {
  1154. "compile": {
  1155. "System.IO.Compression.Brotli.dll": {}
  1156. }
  1157. },
  1158. "System.IO.Compression/4.2.2.0": {
  1159. "compile": {
  1160. "System.IO.Compression.dll": {}
  1161. }
  1162. },
  1163. "System.IO.Compression.FileSystem/4.0.0.0": {
  1164. "compile": {
  1165. "System.IO.Compression.FileSystem.dll": {}
  1166. }
  1167. },
  1168. "System.IO.Compression.ZipFile/4.0.5.0": {
  1169. "compile": {
  1170. "System.IO.Compression.ZipFile.dll": {}
  1171. }
  1172. },
  1173. "System.IO.Reference/4.2.2.0": {
  1174. "compile": {
  1175. "System.IO.dll": {}
  1176. }
  1177. },
  1178. "System.IO.FileSystem.Reference/4.1.2.0": {
  1179. "compile": {
  1180. "System.IO.FileSystem.dll": {}
  1181. }
  1182. },
  1183. "System.IO.FileSystem.DriveInfo/4.1.2.0": {
  1184. "compile": {
  1185. "System.IO.FileSystem.DriveInfo.dll": {}
  1186. }
  1187. },
  1188. "System.IO.FileSystem.Primitives.Reference/4.1.2.0": {
  1189. "compile": {
  1190. "System.IO.FileSystem.Primitives.dll": {}
  1191. }
  1192. },
  1193. "System.IO.FileSystem.Watcher/4.1.2.0": {
  1194. "compile": {
  1195. "System.IO.FileSystem.Watcher.dll": {}
  1196. }
  1197. },
  1198. "System.IO.IsolatedStorage/4.1.2.0": {
  1199. "compile": {
  1200. "System.IO.IsolatedStorage.dll": {}
  1201. }
  1202. },
  1203. "System.IO.MemoryMappedFiles/4.1.2.0": {
  1204. "compile": {
  1205. "System.IO.MemoryMappedFiles.dll": {}
  1206. }
  1207. },
  1208. "System.IO.Pipes/4.1.2.0": {
  1209. "compile": {
  1210. "System.IO.Pipes.dll": {}
  1211. }
  1212. },
  1213. "System.IO.UnmanagedMemoryStream/4.1.2.0": {
  1214. "compile": {
  1215. "System.IO.UnmanagedMemoryStream.dll": {}
  1216. }
  1217. },
  1218. "System.Linq.Reference/4.2.2.0": {
  1219. "compile": {
  1220. "System.Linq.dll": {}
  1221. }
  1222. },
  1223. "System.Linq.Expressions.Reference/4.2.2.0": {
  1224. "compile": {
  1225. "System.Linq.Expressions.dll": {}
  1226. }
  1227. },
  1228. "System.Linq.Parallel/4.0.4.0": {
  1229. "compile": {
  1230. "System.Linq.Parallel.dll": {}
  1231. }
  1232. },
  1233. "System.Linq.Queryable/4.0.4.0": {
  1234. "compile": {
  1235. "System.Linq.Queryable.dll": {}
  1236. }
  1237. },
  1238. "System.Memory.Reference/4.2.1.0": {
  1239. "compile": {
  1240. "System.Memory.dll": {}
  1241. }
  1242. },
  1243. "System.Net/4.0.0.0": {
  1244. "compile": {
  1245. "System.Net.dll": {}
  1246. }
  1247. },
  1248. "System.Net.Http/4.2.2.0": {
  1249. "compile": {
  1250. "System.Net.Http.dll": {}
  1251. }
  1252. },
  1253. "System.Net.HttpListener/4.0.2.0": {
  1254. "compile": {
  1255. "System.Net.HttpListener.dll": {}
  1256. }
  1257. },
  1258. "System.Net.Mail/4.0.2.0": {
  1259. "compile": {
  1260. "System.Net.Mail.dll": {}
  1261. }
  1262. },
  1263. "System.Net.NameResolution/4.1.2.0": {
  1264. "compile": {
  1265. "System.Net.NameResolution.dll": {}
  1266. }
  1267. },
  1268. "System.Net.NetworkInformation/4.2.2.0": {
  1269. "compile": {
  1270. "System.Net.NetworkInformation.dll": {}
  1271. }
  1272. },
  1273. "System.Net.Ping/4.1.2.0": {
  1274. "compile": {
  1275. "System.Net.Ping.dll": {}
  1276. }
  1277. },
  1278. "System.Net.Primitives/4.1.2.0": {
  1279. "compile": {
  1280. "System.Net.Primitives.dll": {}
  1281. }
  1282. },
  1283. "System.Net.Requests/4.1.2.0": {
  1284. "compile": {
  1285. "System.Net.Requests.dll": {}
  1286. }
  1287. },
  1288. "System.Net.Security/4.1.2.0": {
  1289. "compile": {
  1290. "System.Net.Security.dll": {}
  1291. }
  1292. },
  1293. "System.Net.ServicePoint/4.0.2.0": {
  1294. "compile": {
  1295. "System.Net.ServicePoint.dll": {}
  1296. }
  1297. },
  1298. "System.Net.Sockets/4.2.2.0": {
  1299. "compile": {
  1300. "System.Net.Sockets.dll": {}
  1301. }
  1302. },
  1303. "System.Net.WebClient/4.0.2.0": {
  1304. "compile": {
  1305. "System.Net.WebClient.dll": {}
  1306. }
  1307. },
  1308. "System.Net.WebHeaderCollection/4.1.2.0": {
  1309. "compile": {
  1310. "System.Net.WebHeaderCollection.dll": {}
  1311. }
  1312. },
  1313. "System.Net.WebProxy/4.0.2.0": {
  1314. "compile": {
  1315. "System.Net.WebProxy.dll": {}
  1316. }
  1317. },
  1318. "System.Net.WebSockets.Client/4.1.2.0": {
  1319. "compile": {
  1320. "System.Net.WebSockets.Client.dll": {}
  1321. }
  1322. },
  1323. "System.Net.WebSockets/4.1.2.0": {
  1324. "compile": {
  1325. "System.Net.WebSockets.dll": {}
  1326. }
  1327. },
  1328. "System.Numerics/4.0.0.0": {
  1329. "compile": {
  1330. "System.Numerics.dll": {}
  1331. }
  1332. },
  1333. "System.Numerics.Vectors/4.1.6.0": {
  1334. "compile": {
  1335. "System.Numerics.Vectors.dll": {}
  1336. }
  1337. },
  1338. "System.ObjectModel.Reference/4.1.2.0": {
  1339. "compile": {
  1340. "System.ObjectModel.dll": {}
  1341. }
  1342. },
  1343. "System.Reflection.DispatchProxy/4.0.6.0": {
  1344. "compile": {
  1345. "System.Reflection.DispatchProxy.dll": {}
  1346. }
  1347. },
  1348. "System.Reflection.Reference/4.2.2.0": {
  1349. "compile": {
  1350. "System.Reflection.dll": {}
  1351. }
  1352. },
  1353. "System.Reflection.Emit.Reference/4.1.2.0": {
  1354. "compile": {
  1355. "System.Reflection.Emit.dll": {}
  1356. }
  1357. },
  1358. "System.Reflection.Emit.ILGeneration.Reference/4.1.1.0": {
  1359. "compile": {
  1360. "System.Reflection.Emit.ILGeneration.dll": {}
  1361. }
  1362. },
  1363. "System.Reflection.Emit.Lightweight.Reference/4.1.1.0": {
  1364. "compile": {
  1365. "System.Reflection.Emit.Lightweight.dll": {}
  1366. }
  1367. },
  1368. "System.Reflection.Extensions.Reference/4.1.2.0": {
  1369. "compile": {
  1370. "System.Reflection.Extensions.dll": {}
  1371. }
  1372. },
  1373. "System.Reflection.Metadata/1.4.5.0": {
  1374. "compile": {
  1375. "System.Reflection.Metadata.dll": {}
  1376. }
  1377. },
  1378. "System.Reflection.Primitives.Reference/4.1.2.0": {
  1379. "compile": {
  1380. "System.Reflection.Primitives.dll": {}
  1381. }
  1382. },
  1383. "System.Reflection.TypeExtensions.Reference/4.1.2.0": {
  1384. "compile": {
  1385. "System.Reflection.TypeExtensions.dll": {}
  1386. }
  1387. },
  1388. "System.Resources.Reader/4.1.2.0": {
  1389. "compile": {
  1390. "System.Resources.Reader.dll": {}
  1391. }
  1392. },
  1393. "System.Resources.ResourceManager.Reference/4.1.2.0": {
  1394. "compile": {
  1395. "System.Resources.ResourceManager.dll": {}
  1396. }
  1397. },
  1398. "System.Resources.Writer/4.1.2.0": {
  1399. "compile": {
  1400. "System.Resources.Writer.dll": {}
  1401. }
  1402. },
  1403. "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": {
  1404. "compile": {
  1405. "System.Runtime.CompilerServices.Unsafe.dll": {}
  1406. }
  1407. },
  1408. "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
  1409. "compile": {
  1410. "System.Runtime.CompilerServices.VisualC.dll": {}
  1411. }
  1412. },
  1413. "System.Runtime.Reference/4.2.2.0": {
  1414. "compile": {
  1415. "System.Runtime.dll": {}
  1416. }
  1417. },
  1418. "System.Runtime.Extensions.Reference/4.2.2.0": {
  1419. "compile": {
  1420. "System.Runtime.Extensions.dll": {}
  1421. }
  1422. },
  1423. "System.Runtime.Handles.Reference/4.1.2.0": {
  1424. "compile": {
  1425. "System.Runtime.Handles.dll": {}
  1426. }
  1427. },
  1428. "System.Runtime.InteropServices.Reference/4.2.2.0": {
  1429. "compile": {
  1430. "System.Runtime.InteropServices.dll": {}
  1431. }
  1432. },
  1433. "System.Runtime.InteropServices.RuntimeInformation.Reference/4.0.4.0": {
  1434. "compile": {
  1435. "System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1436. }
  1437. },
  1438. "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
  1439. "compile": {
  1440. "System.Runtime.InteropServices.WindowsRuntime.dll": {}
  1441. }
  1442. },
  1443. "System.Runtime.Intrinsics/4.0.1.0": {
  1444. "compile": {
  1445. "System.Runtime.Intrinsics.dll": {}
  1446. }
  1447. },
  1448. "System.Runtime.Loader/4.1.1.0": {
  1449. "compile": {
  1450. "System.Runtime.Loader.dll": {}
  1451. }
  1452. },
  1453. "System.Runtime.Numerics/4.1.2.0": {
  1454. "compile": {
  1455. "System.Runtime.Numerics.dll": {}
  1456. }
  1457. },
  1458. "System.Runtime.Serialization/4.0.0.0": {
  1459. "compile": {
  1460. "System.Runtime.Serialization.dll": {}
  1461. }
  1462. },
  1463. "System.Runtime.Serialization.Formatters/4.0.4.0": {
  1464. "compile": {
  1465. "System.Runtime.Serialization.Formatters.dll": {}
  1466. }
  1467. },
  1468. "System.Runtime.Serialization.Json/4.0.5.0": {
  1469. "compile": {
  1470. "System.Runtime.Serialization.Json.dll": {}
  1471. }
  1472. },
  1473. "System.Runtime.Serialization.Primitives/4.2.2.0": {
  1474. "compile": {
  1475. "System.Runtime.Serialization.Primitives.dll": {}
  1476. }
  1477. },
  1478. "System.Runtime.Serialization.Xml/4.1.5.0": {
  1479. "compile": {
  1480. "System.Runtime.Serialization.Xml.dll": {}
  1481. }
  1482. },
  1483. "System.Security.Claims/4.1.2.0": {
  1484. "compile": {
  1485. "System.Security.Claims.dll": {}
  1486. }
  1487. },
  1488. "System.Security.Cryptography.Algorithms/4.3.2.0": {
  1489. "compile": {
  1490. "System.Security.Cryptography.Algorithms.dll": {}
  1491. }
  1492. },
  1493. "System.Security.Cryptography.Cng/4.3.3.0": {
  1494. "compile": {
  1495. "System.Security.Cryptography.Cng.dll": {}
  1496. }
  1497. },
  1498. "System.Security.Cryptography.Csp/4.1.2.0": {
  1499. "compile": {
  1500. "System.Security.Cryptography.Csp.dll": {}
  1501. }
  1502. },
  1503. "System.Security.Cryptography.Encoding/4.1.2.0": {
  1504. "compile": {
  1505. "System.Security.Cryptography.Encoding.dll": {}
  1506. }
  1507. },
  1508. "System.Security.Cryptography.Primitives/4.1.2.0": {
  1509. "compile": {
  1510. "System.Security.Cryptography.Primitives.dll": {}
  1511. }
  1512. },
  1513. "System.Security.Cryptography.X509Certificates/4.2.2.0": {
  1514. "compile": {
  1515. "System.Security.Cryptography.X509Certificates.dll": {}
  1516. }
  1517. },
  1518. "System.Security.Cryptography.Xml/4.0.3.0": {
  1519. "compile": {
  1520. "System.Security.Cryptography.Xml.dll": {}
  1521. }
  1522. },
  1523. "System.Security/4.0.0.0": {
  1524. "compile": {
  1525. "System.Security.dll": {}
  1526. }
  1527. },
  1528. "System.Security.Principal/4.1.2.0": {
  1529. "compile": {
  1530. "System.Security.Principal.dll": {}
  1531. }
  1532. },
  1533. "System.Security.SecureString/4.1.2.0": {
  1534. "compile": {
  1535. "System.Security.SecureString.dll": {}
  1536. }
  1537. },
  1538. "System.ServiceModel.Web/4.0.0.0": {
  1539. "compile": {
  1540. "System.ServiceModel.Web.dll": {}
  1541. }
  1542. },
  1543. "System.ServiceProcess/4.0.0.0": {
  1544. "compile": {
  1545. "System.ServiceProcess.dll": {}
  1546. }
  1547. },
  1548. "System.Text.Encoding.CodePages/4.1.3.0": {
  1549. "compile": {
  1550. "System.Text.Encoding.CodePages.dll": {}
  1551. }
  1552. },
  1553. "System.Text.Encoding.Reference/4.1.2.0": {
  1554. "compile": {
  1555. "System.Text.Encoding.dll": {}
  1556. }
  1557. },
  1558. "System.Text.Encoding.Extensions.Reference/4.1.2.0": {
  1559. "compile": {
  1560. "System.Text.Encoding.Extensions.dll": {}
  1561. }
  1562. },
  1563. "System.Text.Encodings.Web.Reference/4.0.5.0": {
  1564. "compile": {
  1565. "System.Text.Encodings.Web.dll": {}
  1566. }
  1567. },
  1568. "System.Text.Json/4.0.1.0": {
  1569. "compile": {
  1570. "System.Text.Json.dll": {}
  1571. }
  1572. },
  1573. "System.Text.RegularExpressions/4.2.2.0": {
  1574. "compile": {
  1575. "System.Text.RegularExpressions.dll": {}
  1576. }
  1577. },
  1578. "System.Threading.Channels/4.0.2.0": {
  1579. "compile": {
  1580. "System.Threading.Channels.dll": {}
  1581. }
  1582. },
  1583. "System.Threading.Reference/4.1.2.0": {
  1584. "compile": {
  1585. "System.Threading.dll": {}
  1586. }
  1587. },
  1588. "System.Threading.Overlapped/4.1.2.0": {
  1589. "compile": {
  1590. "System.Threading.Overlapped.dll": {}
  1591. }
  1592. },
  1593. "System.Threading.Tasks.Dataflow/4.6.5.0": {
  1594. "compile": {
  1595. "System.Threading.Tasks.Dataflow.dll": {}
  1596. }
  1597. },
  1598. "System.Threading.Tasks.Reference/4.1.2.0": {
  1599. "compile": {
  1600. "System.Threading.Tasks.dll": {}
  1601. }
  1602. },
  1603. "System.Threading.Tasks.Extensions.Reference/4.3.1.0": {
  1604. "compile": {
  1605. "System.Threading.Tasks.Extensions.dll": {}
  1606. }
  1607. },
  1608. "System.Threading.Tasks.Parallel/4.0.4.0": {
  1609. "compile": {
  1610. "System.Threading.Tasks.Parallel.dll": {}
  1611. }
  1612. },
  1613. "System.Threading.Thread/4.1.2.0": {
  1614. "compile": {
  1615. "System.Threading.Thread.dll": {}
  1616. }
  1617. },
  1618. "System.Threading.ThreadPool/4.1.2.0": {
  1619. "compile": {
  1620. "System.Threading.ThreadPool.dll": {}
  1621. }
  1622. },
  1623. "System.Threading.Timer/4.1.2.0": {
  1624. "compile": {
  1625. "System.Threading.Timer.dll": {}
  1626. }
  1627. },
  1628. "System.Transactions/4.0.0.0": {
  1629. "compile": {
  1630. "System.Transactions.dll": {}
  1631. }
  1632. },
  1633. "System.Transactions.Local/4.0.2.0": {
  1634. "compile": {
  1635. "System.Transactions.Local.dll": {}
  1636. }
  1637. },
  1638. "System.ValueTuple/4.0.3.0": {
  1639. "compile": {
  1640. "System.ValueTuple.dll": {}
  1641. }
  1642. },
  1643. "System.Web/4.0.0.0": {
  1644. "compile": {
  1645. "System.Web.dll": {}
  1646. }
  1647. },
  1648. "System.Web.HttpUtility/4.0.2.0": {
  1649. "compile": {
  1650. "System.Web.HttpUtility.dll": {}
  1651. }
  1652. },
  1653. "System.Windows/4.0.0.0": {
  1654. "compile": {
  1655. "System.Windows.dll": {}
  1656. }
  1657. },
  1658. "System.Xml/4.0.0.0": {
  1659. "compile": {
  1660. "System.Xml.dll": {}
  1661. }
  1662. },
  1663. "System.Xml.Linq/4.0.0.0": {
  1664. "compile": {
  1665. "System.Xml.Linq.dll": {}
  1666. }
  1667. },
  1668. "System.Xml.ReaderWriter/4.2.2.0": {
  1669. "compile": {
  1670. "System.Xml.ReaderWriter.dll": {}
  1671. }
  1672. },
  1673. "System.Xml.Serialization/4.0.0.0": {
  1674. "compile": {
  1675. "System.Xml.Serialization.dll": {}
  1676. }
  1677. },
  1678. "System.Xml.XDocument/4.1.2.0": {
  1679. "compile": {
  1680. "System.Xml.XDocument.dll": {}
  1681. }
  1682. },
  1683. "System.Xml.XmlDocument/4.1.2.0": {
  1684. "compile": {
  1685. "System.Xml.XmlDocument.dll": {}
  1686. }
  1687. },
  1688. "System.Xml.XmlSerializer/4.1.2.0": {
  1689. "compile": {
  1690. "System.Xml.XmlSerializer.dll": {}
  1691. }
  1692. },
  1693. "System.Xml.XPath/4.1.2.0": {
  1694. "compile": {
  1695. "System.Xml.XPath.dll": {}
  1696. }
  1697. },
  1698. "System.Xml.XPath.XDocument/4.1.2.0": {
  1699. "compile": {
  1700. "System.Xml.XPath.XDocument.dll": {}
  1701. }
  1702. },
  1703. "WindowsBase/4.0.0.0": {
  1704. "compile": {
  1705. "WindowsBase.dll": {}
  1706. }
  1707. },
  1708. "log4net/2.0.11": {
  1709. "dependencies": {
  1710. "System.Configuration.ConfigurationManager": "5.0.0"
  1711. },
  1712. "compile": {
  1713. "lib/netstandard2.0/log4net.dll": {}
  1714. }
  1715. },
  1716. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  1717. "dependencies": {
  1718. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  1719. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  1720. "Microsoft.Extensions.Options": "2.2.0"
  1721. }
  1722. },
  1723. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  1724. "dependencies": {
  1725. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  1726. "Microsoft.AspNetCore.Http": "2.2.0",
  1727. "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
  1728. }
  1729. },
  1730. "Microsoft.AspNetCore.Authorization/2.2.0": {
  1731. "dependencies": {
  1732. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  1733. "Microsoft.Extensions.Options": "2.2.0"
  1734. }
  1735. },
  1736. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  1737. "dependencies": {
  1738. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  1739. "Microsoft.AspNetCore.Authorization": "2.2.0"
  1740. }
  1741. },
  1742. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  1743. "dependencies": {
  1744. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  1745. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  1746. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  1747. }
  1748. },
  1749. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  1750. "dependencies": {
  1751. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  1752. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  1753. }
  1754. },
  1755. "Microsoft.AspNetCore.Http/2.2.0": {
  1756. "dependencies": {
  1757. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  1758. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  1759. "Microsoft.Extensions.ObjectPool": "2.2.0",
  1760. "Microsoft.Extensions.Options": "2.2.0",
  1761. "Microsoft.Net.Http.Headers": "2.2.0"
  1762. }
  1763. },
  1764. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1765. "dependencies": {
  1766. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  1767. "System.Text.Encodings.Web": "4.5.0"
  1768. }
  1769. },
  1770. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  1771. "dependencies": {
  1772. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  1773. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  1774. "Microsoft.Net.Http.Headers": "2.2.0",
  1775. "System.Buffers": "4.5.0"
  1776. }
  1777. },
  1778. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  1779. "dependencies": {
  1780. "Microsoft.Extensions.Primitives": "2.2.0"
  1781. }
  1782. },
  1783. "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
  1784. "dependencies": {
  1785. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  1786. "Microsoft.Net.Http.Headers": "2.2.0"
  1787. }
  1788. },
  1789. "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
  1790. "dependencies": {
  1791. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  1792. "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
  1793. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  1794. "Microsoft.AspNetCore.Http": "2.2.0",
  1795. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  1796. "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0",
  1797. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0",
  1798. "Microsoft.AspNetCore.Routing": "2.2.0",
  1799. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  1800. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  1801. "Microsoft.Extensions.DependencyModel": "2.1.0",
  1802. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  1803. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  1804. "System.Diagnostics.DiagnosticSource": "4.5.0",
  1805. "System.Threading.Tasks.Extensions": "4.5.1"
  1806. }
  1807. },
  1808. "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": {
  1809. "dependencies": {
  1810. "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
  1811. }
  1812. },
  1813. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
  1814. "dependencies": {
  1815. "Microsoft.Extensions.Primitives": "2.2.0"
  1816. }
  1817. },
  1818. "Microsoft.AspNetCore.Routing/2.2.0": {
  1819. "dependencies": {
  1820. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  1821. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  1822. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  1823. "Microsoft.Extensions.ObjectPool": "2.2.0",
  1824. "Microsoft.Extensions.Options": "2.2.0"
  1825. }
  1826. },
  1827. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  1828. "dependencies": {
  1829. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  1830. }
  1831. },
  1832. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  1833. "dependencies": {
  1834. "Microsoft.Net.Http.Headers": "2.2.0",
  1835. "System.Text.Encodings.Web": "4.5.0"
  1836. }
  1837. },
  1838. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  1839. "dependencies": {
  1840. "System.AppContext": "4.1.0",
  1841. "System.Collections": "4.0.11",
  1842. "System.IO": "4.1.0",
  1843. "System.IO.FileSystem": "4.0.1",
  1844. "System.Reflection.TypeExtensions": "4.1.0",
  1845. "System.Runtime.Extensions": "4.1.0",
  1846. "System.Runtime.InteropServices": "4.1.0",
  1847. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  1848. },
  1849. "compile": {
  1850. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  1851. }
  1852. },
  1853. "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
  1854. "dependencies": {
  1855. "Microsoft.Extensions.Primitives": "2.2.0"
  1856. }
  1857. },
  1858. "Microsoft.Extensions.DependencyInjection/2.2.0": {
  1859. "dependencies": {
  1860. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
  1861. }
  1862. },
  1863. "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {},
  1864. "Microsoft.Extensions.DependencyModel/2.1.0": {
  1865. "dependencies": {
  1866. "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
  1867. "Newtonsoft.Json": "13.0.1",
  1868. "System.Diagnostics.Debug": "4.0.11",
  1869. "System.Dynamic.Runtime": "4.0.11",
  1870. "System.Linq": "4.1.0"
  1871. },
  1872. "compile": {
  1873. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1874. }
  1875. },
  1876. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  1877. "dependencies": {
  1878. "Microsoft.Extensions.Primitives": "2.2.0"
  1879. }
  1880. },
  1881. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  1882. "dependencies": {
  1883. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  1884. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1885. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  1886. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  1887. }
  1888. },
  1889. "Microsoft.Extensions.Logging.Abstractions/2.2.0": {},
  1890. "Microsoft.Extensions.ObjectPool/2.2.0": {},
  1891. "Microsoft.Extensions.Options/2.2.0": {
  1892. "dependencies": {
  1893. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1894. "Microsoft.Extensions.Primitives": "2.2.0",
  1895. "System.ComponentModel.Annotations": "4.5.0"
  1896. }
  1897. },
  1898. "Microsoft.Extensions.Primitives/2.2.0": {
  1899. "dependencies": {
  1900. "System.Memory": "4.5.1",
  1901. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  1902. }
  1903. },
  1904. "Microsoft.Net.Http.Headers/2.2.0": {
  1905. "dependencies": {
  1906. "Microsoft.Extensions.Primitives": "2.2.0",
  1907. "System.Buffers": "4.5.0"
  1908. }
  1909. },
  1910. "Microsoft.NETCore.Platforms/5.0.0": {},
  1911. "Microsoft.NETCore.Targets/1.0.1": {},
  1912. "Microsoft.Win32.Registry/5.0.0": {
  1913. "dependencies": {
  1914. "System.Security.AccessControl": "5.0.0",
  1915. "System.Security.Principal.Windows": "5.0.0"
  1916. }
  1917. },
  1918. "Microsoft.Win32.SystemEvents/5.0.0": {
  1919. "dependencies": {
  1920. "Microsoft.NETCore.Platforms": "5.0.0"
  1921. }
  1922. },
  1923. "Newtonsoft.Json/13.0.1": {
  1924. "compile": {
  1925. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  1926. }
  1927. },
  1928. "Oracle.ManagedDataAccess.Core/2.19.90": {
  1929. "compile": {
  1930. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1931. }
  1932. },
  1933. "Pipelines.Sockets.Unofficial/2.2.0": {
  1934. "dependencies": {
  1935. "System.IO.Pipelines": "5.0.0"
  1936. },
  1937. "compile": {
  1938. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {}
  1939. }
  1940. },
  1941. "runtime.any.System.Collections/4.0.11": {
  1942. "dependencies": {
  1943. "System.Runtime": "4.1.0"
  1944. }
  1945. },
  1946. "runtime.any.System.Globalization/4.0.11": {},
  1947. "runtime.any.System.IO/4.1.0": {},
  1948. "runtime.any.System.Reflection/4.1.0": {},
  1949. "runtime.any.System.Reflection.Extensions/4.0.1": {},
  1950. "runtime.any.System.Reflection.Primitives/4.0.1": {},
  1951. "runtime.any.System.Resources.ResourceManager/4.0.1": {},
  1952. "runtime.any.System.Runtime/4.1.0": {
  1953. "dependencies": {
  1954. "System.Private.Uri": "4.0.1"
  1955. }
  1956. },
  1957. "runtime.any.System.Runtime.Handles/4.0.1": {},
  1958. "runtime.any.System.Runtime.InteropServices/4.1.0": {},
  1959. "runtime.any.System.Text.Encoding/4.0.11": {},
  1960. "runtime.any.System.Text.Encoding.Extensions/4.0.11": {},
  1961. "runtime.any.System.Threading.Tasks/4.0.11": {},
  1962. "runtime.native.System/4.0.0": {
  1963. "dependencies": {
  1964. "Microsoft.NETCore.Platforms": "5.0.0",
  1965. "Microsoft.NETCore.Targets": "1.0.1"
  1966. }
  1967. },
  1968. "runtime.native.System.Security.Cryptography/4.0.0": {
  1969. "dependencies": {
  1970. "Microsoft.NETCore.Platforms": "5.0.0",
  1971. "Microsoft.NETCore.Targets": "1.0.1"
  1972. }
  1973. },
  1974. "runtime.unix.System.Diagnostics.Debug/4.0.11": {
  1975. "dependencies": {
  1976. "runtime.native.System": "4.0.0"
  1977. }
  1978. },
  1979. "runtime.unix.System.IO.FileSystem/4.0.1": {
  1980. "dependencies": {
  1981. "System.Collections": "4.0.11",
  1982. "System.Diagnostics.Debug": "4.0.11",
  1983. "System.IO": "4.1.0",
  1984. "System.IO.FileSystem.Primitives": "4.0.1",
  1985. "System.Resources.ResourceManager": "4.0.1",
  1986. "System.Runtime": "4.1.0",
  1987. "System.Runtime.Extensions": "4.1.0",
  1988. "System.Runtime.Handles": "4.0.1",
  1989. "System.Runtime.InteropServices": "4.1.0",
  1990. "System.Text.Encoding": "4.0.11",
  1991. "System.Text.Encoding.Extensions": "4.0.11",
  1992. "System.Threading": "4.0.11",
  1993. "System.Threading.Tasks": "4.0.11",
  1994. "runtime.native.System": "4.0.0"
  1995. }
  1996. },
  1997. "runtime.unix.System.Private.Uri/4.0.1": {
  1998. "dependencies": {
  1999. "runtime.native.System": "4.0.0"
  2000. }
  2001. },
  2002. "runtime.unix.System.Runtime.Extensions/4.1.0": {
  2003. "dependencies": {
  2004. "System.Private.Uri": "4.0.1",
  2005. "runtime.native.System": "4.0.0",
  2006. "runtime.native.System.Security.Cryptography": "4.0.0"
  2007. }
  2008. },
  2009. "StackExchange.Redis/2.2.88": {
  2010. "dependencies": {
  2011. "Pipelines.Sockets.Unofficial": "2.2.0",
  2012. "System.Diagnostics.PerformanceCounter": "5.0.0"
  2013. },
  2014. "compile": {
  2015. "lib/netcoreapp3.1/StackExchange.Redis.dll": {}
  2016. }
  2017. },
  2018. "System.AppContext/4.1.0": {
  2019. "dependencies": {
  2020. "System.Runtime": "4.1.0"
  2021. }
  2022. },
  2023. "System.Buffers/4.5.0": {},
  2024. "System.Collections/4.0.11": {
  2025. "dependencies": {
  2026. "Microsoft.NETCore.Platforms": "5.0.0",
  2027. "Microsoft.NETCore.Targets": "1.0.1",
  2028. "System.Runtime": "4.1.0",
  2029. "runtime.any.System.Collections": "4.0.11"
  2030. }
  2031. },
  2032. "System.ComponentModel.Annotations/4.5.0": {},
  2033. "System.Configuration.ConfigurationManager/5.0.0": {
  2034. "dependencies": {
  2035. "System.Security.Cryptography.ProtectedData": "5.0.0",
  2036. "System.Security.Permissions": "5.0.0"
  2037. },
  2038. "compile": {
  2039. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  2040. }
  2041. },
  2042. "System.Diagnostics.Debug/4.0.11": {
  2043. "dependencies": {
  2044. "Microsoft.NETCore.Platforms": "5.0.0",
  2045. "Microsoft.NETCore.Targets": "1.0.1",
  2046. "System.Runtime": "4.1.0",
  2047. "runtime.unix.System.Diagnostics.Debug": "4.0.11"
  2048. }
  2049. },
  2050. "System.Diagnostics.DiagnosticSource/4.5.0": {},
  2051. "System.Diagnostics.PerformanceCounter/5.0.0": {
  2052. "dependencies": {
  2053. "Microsoft.NETCore.Platforms": "5.0.0",
  2054. "Microsoft.Win32.Registry": "5.0.0",
  2055. "System.Configuration.ConfigurationManager": "5.0.0",
  2056. "System.Security.Principal.Windows": "5.0.0"
  2057. },
  2058. "compile": {
  2059. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  2060. }
  2061. },
  2062. "System.Drawing.Common/5.0.0": {
  2063. "dependencies": {
  2064. "Microsoft.Win32.SystemEvents": "5.0.0"
  2065. },
  2066. "compile": {
  2067. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  2068. }
  2069. },
  2070. "System.Dynamic.Runtime/4.0.11": {
  2071. "dependencies": {
  2072. "System.Collections": "4.0.11",
  2073. "System.Diagnostics.Debug": "4.0.11",
  2074. "System.Globalization": "4.0.11",
  2075. "System.Linq": "4.1.0",
  2076. "System.Linq.Expressions": "4.1.0",
  2077. "System.ObjectModel": "4.0.12",
  2078. "System.Reflection": "4.1.0",
  2079. "System.Reflection.Emit": "4.0.1",
  2080. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2081. "System.Reflection.Primitives": "4.0.1",
  2082. "System.Reflection.TypeExtensions": "4.1.0",
  2083. "System.Resources.ResourceManager": "4.0.1",
  2084. "System.Runtime": "4.1.0",
  2085. "System.Runtime.Extensions": "4.1.0",
  2086. "System.Threading": "4.0.11"
  2087. }
  2088. },
  2089. "System.Globalization/4.0.11": {
  2090. "dependencies": {
  2091. "Microsoft.NETCore.Platforms": "5.0.0",
  2092. "Microsoft.NETCore.Targets": "1.0.1",
  2093. "System.Runtime": "4.1.0",
  2094. "runtime.any.System.Globalization": "4.0.11"
  2095. }
  2096. },
  2097. "System.IO/4.1.0": {
  2098. "dependencies": {
  2099. "Microsoft.NETCore.Platforms": "5.0.0",
  2100. "Microsoft.NETCore.Targets": "1.0.1",
  2101. "System.Runtime": "4.1.0",
  2102. "System.Text.Encoding": "4.0.11",
  2103. "System.Threading.Tasks": "4.0.11",
  2104. "runtime.any.System.IO": "4.1.0"
  2105. }
  2106. },
  2107. "System.IO.FileSystem/4.0.1": {
  2108. "dependencies": {
  2109. "Microsoft.NETCore.Platforms": "5.0.0",
  2110. "Microsoft.NETCore.Targets": "1.0.1",
  2111. "System.IO": "4.1.0",
  2112. "System.IO.FileSystem.Primitives": "4.0.1",
  2113. "System.Runtime": "4.1.0",
  2114. "System.Runtime.Handles": "4.0.1",
  2115. "System.Text.Encoding": "4.0.11",
  2116. "System.Threading.Tasks": "4.0.11",
  2117. "runtime.unix.System.IO.FileSystem": "4.0.1"
  2118. }
  2119. },
  2120. "System.IO.FileSystem.Primitives/4.0.1": {
  2121. "dependencies": {
  2122. "System.Runtime": "4.1.0"
  2123. }
  2124. },
  2125. "System.IO.Pipelines/5.0.0": {
  2126. "compile": {
  2127. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {}
  2128. }
  2129. },
  2130. "System.Linq/4.1.0": {
  2131. "dependencies": {
  2132. "System.Collections": "4.0.11",
  2133. "System.Diagnostics.Debug": "4.0.11",
  2134. "System.Resources.ResourceManager": "4.0.1",
  2135. "System.Runtime": "4.1.0",
  2136. "System.Runtime.Extensions": "4.1.0"
  2137. }
  2138. },
  2139. "System.Linq.Expressions/4.1.0": {
  2140. "dependencies": {
  2141. "System.Collections": "4.0.11",
  2142. "System.Diagnostics.Debug": "4.0.11",
  2143. "System.Globalization": "4.0.11",
  2144. "System.IO": "4.1.0",
  2145. "System.Linq": "4.1.0",
  2146. "System.ObjectModel": "4.0.12",
  2147. "System.Reflection": "4.1.0",
  2148. "System.Reflection.Emit": "4.0.1",
  2149. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2150. "System.Reflection.Emit.Lightweight": "4.0.1",
  2151. "System.Reflection.Extensions": "4.0.1",
  2152. "System.Reflection.Primitives": "4.0.1",
  2153. "System.Reflection.TypeExtensions": "4.1.0",
  2154. "System.Resources.ResourceManager": "4.0.1",
  2155. "System.Runtime": "4.1.0",
  2156. "System.Runtime.Extensions": "4.1.0",
  2157. "System.Threading": "4.0.11"
  2158. }
  2159. },
  2160. "System.Memory/4.5.1": {},
  2161. "System.ObjectModel/4.0.12": {
  2162. "dependencies": {
  2163. "System.Collections": "4.0.11",
  2164. "System.Diagnostics.Debug": "4.0.11",
  2165. "System.Resources.ResourceManager": "4.0.1",
  2166. "System.Runtime": "4.1.0",
  2167. "System.Threading": "4.0.11"
  2168. }
  2169. },
  2170. "System.Private.Uri/4.0.1": {
  2171. "dependencies": {
  2172. "Microsoft.NETCore.Platforms": "5.0.0",
  2173. "Microsoft.NETCore.Targets": "1.0.1",
  2174. "runtime.unix.System.Private.Uri": "4.0.1"
  2175. }
  2176. },
  2177. "System.Reflection/4.1.0": {
  2178. "dependencies": {
  2179. "Microsoft.NETCore.Platforms": "5.0.0",
  2180. "Microsoft.NETCore.Targets": "1.0.1",
  2181. "System.IO": "4.1.0",
  2182. "System.Reflection.Primitives": "4.0.1",
  2183. "System.Runtime": "4.1.0",
  2184. "runtime.any.System.Reflection": "4.1.0"
  2185. }
  2186. },
  2187. "System.Reflection.Emit/4.0.1": {
  2188. "dependencies": {
  2189. "System.IO": "4.1.0",
  2190. "System.Reflection": "4.1.0",
  2191. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2192. "System.Reflection.Primitives": "4.0.1",
  2193. "System.Runtime": "4.1.0"
  2194. }
  2195. },
  2196. "System.Reflection.Emit.ILGeneration/4.0.1": {
  2197. "dependencies": {
  2198. "System.Reflection": "4.1.0",
  2199. "System.Reflection.Primitives": "4.0.1",
  2200. "System.Runtime": "4.1.0"
  2201. }
  2202. },
  2203. "System.Reflection.Emit.Lightweight/4.0.1": {
  2204. "dependencies": {
  2205. "System.Reflection": "4.1.0",
  2206. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2207. "System.Reflection.Primitives": "4.0.1",
  2208. "System.Runtime": "4.1.0"
  2209. }
  2210. },
  2211. "System.Reflection.Extensions/4.0.1": {
  2212. "dependencies": {
  2213. "Microsoft.NETCore.Platforms": "5.0.0",
  2214. "Microsoft.NETCore.Targets": "1.0.1",
  2215. "System.Reflection": "4.1.0",
  2216. "System.Runtime": "4.1.0",
  2217. "runtime.any.System.Reflection.Extensions": "4.0.1"
  2218. }
  2219. },
  2220. "System.Reflection.Primitives/4.0.1": {
  2221. "dependencies": {
  2222. "Microsoft.NETCore.Platforms": "5.0.0",
  2223. "Microsoft.NETCore.Targets": "1.0.1",
  2224. "System.Runtime": "4.1.0",
  2225. "runtime.any.System.Reflection.Primitives": "4.0.1"
  2226. }
  2227. },
  2228. "System.Reflection.TypeExtensions/4.1.0": {
  2229. "dependencies": {
  2230. "System.Reflection": "4.1.0",
  2231. "System.Runtime": "4.1.0"
  2232. }
  2233. },
  2234. "System.Resources.ResourceManager/4.0.1": {
  2235. "dependencies": {
  2236. "Microsoft.NETCore.Platforms": "5.0.0",
  2237. "Microsoft.NETCore.Targets": "1.0.1",
  2238. "System.Globalization": "4.0.11",
  2239. "System.Reflection": "4.1.0",
  2240. "System.Runtime": "4.1.0",
  2241. "runtime.any.System.Resources.ResourceManager": "4.0.1"
  2242. }
  2243. },
  2244. "System.Runtime/4.1.0": {
  2245. "dependencies": {
  2246. "Microsoft.NETCore.Platforms": "5.0.0",
  2247. "Microsoft.NETCore.Targets": "1.0.1",
  2248. "runtime.any.System.Runtime": "4.1.0"
  2249. }
  2250. },
  2251. "System.Runtime.CompilerServices.Unsafe/4.5.1": {},
  2252. "System.Runtime.Extensions/4.1.0": {
  2253. "dependencies": {
  2254. "Microsoft.NETCore.Platforms": "5.0.0",
  2255. "Microsoft.NETCore.Targets": "1.0.1",
  2256. "System.Runtime": "4.1.0",
  2257. "runtime.unix.System.Runtime.Extensions": "4.1.0"
  2258. }
  2259. },
  2260. "System.Runtime.Handles/4.0.1": {
  2261. "dependencies": {
  2262. "Microsoft.NETCore.Platforms": "5.0.0",
  2263. "Microsoft.NETCore.Targets": "1.0.1",
  2264. "System.Runtime": "4.1.0",
  2265. "runtime.any.System.Runtime.Handles": "4.0.1"
  2266. }
  2267. },
  2268. "System.Runtime.InteropServices/4.1.0": {
  2269. "dependencies": {
  2270. "Microsoft.NETCore.Platforms": "5.0.0",
  2271. "Microsoft.NETCore.Targets": "1.0.1",
  2272. "System.Reflection": "4.1.0",
  2273. "System.Reflection.Primitives": "4.0.1",
  2274. "System.Runtime": "4.1.0",
  2275. "System.Runtime.Handles": "4.0.1",
  2276. "runtime.any.System.Runtime.InteropServices": "4.1.0"
  2277. }
  2278. },
  2279. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  2280. "dependencies": {
  2281. "Microsoft.NETCore.Platforms": "5.0.0",
  2282. "System.Reflection": "4.1.0",
  2283. "System.Resources.ResourceManager": "4.0.1",
  2284. "System.Runtime": "4.1.0",
  2285. "System.Runtime.InteropServices": "4.1.0",
  2286. "System.Threading": "4.0.11",
  2287. "runtime.native.System": "4.0.0"
  2288. }
  2289. },
  2290. "System.Security.AccessControl/5.0.0": {
  2291. "dependencies": {
  2292. "Microsoft.NETCore.Platforms": "5.0.0",
  2293. "System.Security.Principal.Windows": "5.0.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2297. }
  2298. },
  2299. "System.Security.Cryptography.ProtectedData/5.0.0": {},
  2300. "System.Security.Permissions/5.0.0": {
  2301. "dependencies": {
  2302. "System.Security.AccessControl": "5.0.0",
  2303. "System.Windows.Extensions": "5.0.0"
  2304. },
  2305. "compile": {
  2306. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2307. }
  2308. },
  2309. "System.Security.Principal.Windows/5.0.0": {
  2310. "compile": {
  2311. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2312. }
  2313. },
  2314. "System.Text.Encoding/4.0.11": {
  2315. "dependencies": {
  2316. "Microsoft.NETCore.Platforms": "5.0.0",
  2317. "Microsoft.NETCore.Targets": "1.0.1",
  2318. "System.Runtime": "4.1.0",
  2319. "runtime.any.System.Text.Encoding": "4.0.11"
  2320. }
  2321. },
  2322. "System.Text.Encoding.Extensions/4.0.11": {
  2323. "dependencies": {
  2324. "Microsoft.NETCore.Platforms": "5.0.0",
  2325. "Microsoft.NETCore.Targets": "1.0.1",
  2326. "System.Runtime": "4.1.0",
  2327. "System.Text.Encoding": "4.0.11",
  2328. "runtime.any.System.Text.Encoding.Extensions": "4.0.11"
  2329. }
  2330. },
  2331. "System.Text.Encodings.Web/4.5.0": {},
  2332. "System.Threading/4.0.11": {
  2333. "dependencies": {
  2334. "System.Runtime": "4.1.0",
  2335. "System.Threading.Tasks": "4.0.11"
  2336. }
  2337. },
  2338. "System.Threading.Tasks/4.0.11": {
  2339. "dependencies": {
  2340. "Microsoft.NETCore.Platforms": "5.0.0",
  2341. "Microsoft.NETCore.Targets": "1.0.1",
  2342. "System.Runtime": "4.1.0",
  2343. "runtime.any.System.Threading.Tasks": "4.0.11"
  2344. }
  2345. },
  2346. "System.Threading.Tasks.Extensions/4.5.1": {},
  2347. "System.Windows.Extensions/5.0.0": {
  2348. "dependencies": {
  2349. "System.Drawing.Common": "5.0.0"
  2350. },
  2351. "compile": {
  2352. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2353. }
  2354. },
  2355. "CommonObj/1.0.0": {
  2356. "dependencies": {
  2357. "StackExchange.Redis": "2.2.88",
  2358. "log4net": "2.0.11"
  2359. },
  2360. "compile": {
  2361. "CommonObj.dll": {}
  2362. }
  2363. },
  2364. "GenPrizeCode/1.0.0.0": {
  2365. "compile": {
  2366. "GenPrizeCode.dll": {}
  2367. }
  2368. }
  2369. },
  2370. ".NETCoreApp,Version=v3.1/linux-x64": {
  2371. "ApiProcessToken/1.0.0": {
  2372. "dependencies": {
  2373. "CommonObj": "1.0.0",
  2374. "Microsoft.AspNetCore.Mvc.Formatters.Xml": "2.2.0",
  2375. "Newtonsoft.Json": "13.0.1",
  2376. "Oracle.ManagedDataAccess.Core": "2.19.90",
  2377. "StackExchange.Redis": "2.2.88",
  2378. "log4net": "2.0.11",
  2379. "GenPrizeCode": "1.0.0.0",
  2380. "Microsoft.AspNetCore.Antiforgery": "3.1.0.0",
  2381. "Microsoft.AspNetCore.Authentication.Abstractions.Reference": "3.1.0.0",
  2382. "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0",
  2383. "Microsoft.AspNetCore.Authentication.Core.Reference": "3.1.0.0",
  2384. "Microsoft.AspNetCore.Authentication": "3.1.0.0",
  2385. "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0",
  2386. "Microsoft.AspNetCore.Authorization.Reference": "3.1.0.0",
  2387. "Microsoft.AspNetCore.Authorization.Policy.Reference": "3.1.0.0",
  2388. "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0",
  2389. "Microsoft.AspNetCore.Components": "3.1.0.0",
  2390. "Microsoft.AspNetCore.Components.Forms": "3.1.0.0",
  2391. "Microsoft.AspNetCore.Components.Server": "3.1.0.0",
  2392. "Microsoft.AspNetCore.Components.Web": "3.1.0.0",
  2393. "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0",
  2394. "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0",
  2395. "Microsoft.AspNetCore.Cors": "3.1.0.0",
  2396. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0",
  2397. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0",
  2398. "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0",
  2399. "Microsoft.AspNetCore.DataProtection": "3.1.0.0",
  2400. "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0",
  2401. "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0",
  2402. "Microsoft.AspNetCore.Diagnostics": "3.1.0.0",
  2403. "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0",
  2404. "Microsoft.AspNetCore": "3.1.0.0",
  2405. "Microsoft.AspNetCore.HostFiltering": "3.1.0.0",
  2406. "Microsoft.AspNetCore.Hosting.Abstractions.Reference": "3.1.0.0",
  2407. "Microsoft.AspNetCore.Hosting": "3.1.0.0",
  2408. "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference": "3.1.0.0",
  2409. "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0",
  2410. "Microsoft.AspNetCore.Http.Abstractions.Reference": "3.1.0.0",
  2411. "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0",
  2412. "Microsoft.AspNetCore.Http.Connections": "3.1.0.0",
  2413. "Microsoft.AspNetCore.Http.Reference": "3.1.0.0",
  2414. "Microsoft.AspNetCore.Http.Extensions.Reference": "3.1.0.0",
  2415. "Microsoft.AspNetCore.Http.Features.Reference": "3.1.0.0",
  2416. "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0",
  2417. "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0",
  2418. "Microsoft.AspNetCore.Identity": "3.1.0.0",
  2419. "Microsoft.AspNetCore.Localization": "3.1.0.0",
  2420. "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0",
  2421. "Microsoft.AspNetCore.Metadata": "3.1.0.0",
  2422. "Microsoft.AspNetCore.Mvc.Abstractions.Reference": "3.1.0.0",
  2423. "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0",
  2424. "Microsoft.AspNetCore.Mvc.Core.Reference": "3.1.0.0",
  2425. "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0",
  2426. "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0",
  2427. "Microsoft.AspNetCore.Mvc": "3.1.0.0",
  2428. "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0",
  2429. "Microsoft.AspNetCore.Mvc.Formatters.Xml.Reference": "3.1.0.0",
  2430. "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0",
  2431. "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0",
  2432. "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0",
  2433. "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0",
  2434. "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0",
  2435. "Microsoft.AspNetCore.Razor": "3.1.0.0",
  2436. "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0",
  2437. "Microsoft.AspNetCore.ResponseCaching.Abstractions.Reference": "3.1.0.0",
  2438. "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0",
  2439. "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0",
  2440. "Microsoft.AspNetCore.Rewrite": "3.1.0.0",
  2441. "Microsoft.AspNetCore.Routing.Abstractions.Reference": "3.1.0.0",
  2442. "Microsoft.AspNetCore.Routing.Reference": "3.1.0.0",
  2443. "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0",
  2444. "Microsoft.AspNetCore.Server.IIS": "3.1.0.0",
  2445. "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0",
  2446. "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0",
  2447. "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0",
  2448. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0",
  2449. "Microsoft.AspNetCore.Session": "3.1.0.0",
  2450. "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0",
  2451. "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0",
  2452. "Microsoft.AspNetCore.SignalR": "3.1.0.0",
  2453. "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0",
  2454. "Microsoft.AspNetCore.StaticFiles": "3.1.0.0",
  2455. "Microsoft.AspNetCore.WebSockets": "3.1.0.0",
  2456. "Microsoft.AspNetCore.WebUtilities.Reference": "3.1.0.0",
  2457. "Microsoft.CSharp": "4.0.0.0",
  2458. "Microsoft.Extensions.Caching.Abstractions": "3.1.0.0",
  2459. "Microsoft.Extensions.Caching.Memory": "3.1.0.0",
  2460. "Microsoft.Extensions.Configuration.Abstractions.Reference": "3.1.0.0",
  2461. "Microsoft.Extensions.Configuration.Binder": "3.1.0.0",
  2462. "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0",
  2463. "Microsoft.Extensions.Configuration": "3.1.0.0",
  2464. "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0",
  2465. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0",
  2466. "Microsoft.Extensions.Configuration.Ini": "3.1.0.0",
  2467. "Microsoft.Extensions.Configuration.Json": "3.1.0.0",
  2468. "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0",
  2469. "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0",
  2470. "Microsoft.Extensions.Configuration.Xml": "3.1.0.0",
  2471. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "3.1.0.0",
  2472. "Microsoft.Extensions.DependencyInjection.Reference": "3.1.0.0",
  2473. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0",
  2474. "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0",
  2475. "Microsoft.Extensions.FileProviders.Abstractions.Reference": "3.1.0.0",
  2476. "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0",
  2477. "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0",
  2478. "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0",
  2479. "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0",
  2480. "Microsoft.Extensions.Hosting.Abstractions.Reference": "3.1.0.0",
  2481. "Microsoft.Extensions.Hosting": "3.1.0.0",
  2482. "Microsoft.Extensions.Http": "3.1.0.0",
  2483. "Microsoft.Extensions.Identity.Core": "3.1.0.0",
  2484. "Microsoft.Extensions.Identity.Stores": "3.1.0.0",
  2485. "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0",
  2486. "Microsoft.Extensions.Localization": "3.1.0.0",
  2487. "Microsoft.Extensions.Logging.Abstractions.Reference": "3.1.0.0",
  2488. "Microsoft.Extensions.Logging.Configuration": "3.1.0.0",
  2489. "Microsoft.Extensions.Logging.Console": "3.1.0.0",
  2490. "Microsoft.Extensions.Logging.Debug": "3.1.0.0",
  2491. "Microsoft.Extensions.Logging": "3.1.0.0",
  2492. "Microsoft.Extensions.Logging.EventLog": "3.1.0.0",
  2493. "Microsoft.Extensions.Logging.EventSource": "3.1.0.0",
  2494. "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0",
  2495. "Microsoft.Extensions.ObjectPool.Reference": "3.1.0.0",
  2496. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0",
  2497. "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0",
  2498. "Microsoft.Extensions.Options.Reference": "3.1.0.0",
  2499. "Microsoft.Extensions.Primitives.Reference": "3.1.0.0",
  2500. "Microsoft.Extensions.WebEncoders": "3.1.0.0",
  2501. "Microsoft.JSInterop": "3.1.0.0",
  2502. "Microsoft.Net.Http.Headers.Reference": "3.1.0.0",
  2503. "Microsoft.VisualBasic.Core": "10.0.5.0",
  2504. "Microsoft.VisualBasic": "10.0.0.0",
  2505. "Microsoft.Win32.Primitives": "4.1.2.0",
  2506. "Microsoft.Win32.Registry.Reference": "4.1.3.0",
  2507. "mscorlib": "4.0.0.0",
  2508. "netstandard": "2.1.0.0",
  2509. "System.AppContext.Reference": "4.2.2.0",
  2510. "System.Buffers.Reference": "4.0.2.0",
  2511. "System.Collections.Concurrent": "4.0.15.0",
  2512. "System.Collections.Reference": "4.1.2.0",
  2513. "System.Collections.Immutable": "1.2.5.0",
  2514. "System.Collections.NonGeneric": "4.1.2.0",
  2515. "System.Collections.Specialized": "4.1.2.0",
  2516. "System.ComponentModel.Annotations.Reference": "4.3.1.0",
  2517. "System.ComponentModel.DataAnnotations": "4.0.0.0",
  2518. "System.ComponentModel": "4.0.4.0",
  2519. "System.ComponentModel.EventBasedAsync": "4.1.2.0",
  2520. "System.ComponentModel.Primitives": "4.2.2.0",
  2521. "System.ComponentModel.TypeConverter": "4.2.2.0",
  2522. "System.Configuration": "4.0.0.0",
  2523. "System.Console": "4.1.2.0",
  2524. "System.Core": "4.0.0.0",
  2525. "System.Data.Common": "4.2.2.0",
  2526. "System.Data.DataSetExtensions": "4.0.1.0",
  2527. "System.Data": "4.0.0.0",
  2528. "System.Diagnostics.Contracts": "4.0.4.0",
  2529. "System.Diagnostics.Debug.Reference": "4.1.2.0",
  2530. "System.Diagnostics.DiagnosticSource.Reference": "4.0.5.0",
  2531. "System.Diagnostics.EventLog": "4.0.2.0",
  2532. "System.Diagnostics.FileVersionInfo": "4.0.4.0",
  2533. "System.Diagnostics.Process": "4.2.2.0",
  2534. "System.Diagnostics.StackTrace": "4.1.2.0",
  2535. "System.Diagnostics.TextWriterTraceListener": "4.1.2.0",
  2536. "System.Diagnostics.Tools": "4.1.2.0",
  2537. "System.Diagnostics.TraceSource": "4.1.2.0",
  2538. "System.Diagnostics.Tracing": "4.2.2.0",
  2539. "System": "4.0.0.0",
  2540. "System.Drawing": "4.0.0.0",
  2541. "System.Drawing.Primitives": "4.2.1.0",
  2542. "System.Dynamic.Runtime.Reference": "4.1.2.0",
  2543. "System.Globalization.Calendars": "4.1.2.0",
  2544. "System.Globalization.Reference": "4.1.2.0",
  2545. "System.Globalization.Extensions": "4.1.2.0",
  2546. "System.IO.Compression.Brotli": "4.2.2.0",
  2547. "System.IO.Compression": "4.2.2.0",
  2548. "System.IO.Compression.FileSystem": "4.0.0.0",
  2549. "System.IO.Compression.ZipFile": "4.0.5.0",
  2550. "System.IO.Reference": "4.2.2.0",
  2551. "System.IO.FileSystem.Reference": "4.1.2.0",
  2552. "System.IO.FileSystem.DriveInfo": "4.1.2.0",
  2553. "System.IO.FileSystem.Primitives.Reference": "4.1.2.0",
  2554. "System.IO.FileSystem.Watcher": "4.1.2.0",
  2555. "System.IO.IsolatedStorage": "4.1.2.0",
  2556. "System.IO.MemoryMappedFiles": "4.1.2.0",
  2557. "System.IO.Pipes": "4.1.2.0",
  2558. "System.IO.UnmanagedMemoryStream": "4.1.2.0",
  2559. "System.Linq.Reference": "4.2.2.0",
  2560. "System.Linq.Expressions.Reference": "4.2.2.0",
  2561. "System.Linq.Parallel": "4.0.4.0",
  2562. "System.Linq.Queryable": "4.0.4.0",
  2563. "System.Memory.Reference": "4.2.1.0",
  2564. "System.Net": "4.0.0.0",
  2565. "System.Net.Http": "4.2.2.0",
  2566. "System.Net.HttpListener": "4.0.2.0",
  2567. "System.Net.Mail": "4.0.2.0",
  2568. "System.Net.NameResolution": "4.1.2.0",
  2569. "System.Net.NetworkInformation": "4.2.2.0",
  2570. "System.Net.Ping": "4.1.2.0",
  2571. "System.Net.Primitives": "4.1.2.0",
  2572. "System.Net.Requests": "4.1.2.0",
  2573. "System.Net.Security": "4.1.2.0",
  2574. "System.Net.ServicePoint": "4.0.2.0",
  2575. "System.Net.Sockets": "4.2.2.0",
  2576. "System.Net.WebClient": "4.0.2.0",
  2577. "System.Net.WebHeaderCollection": "4.1.2.0",
  2578. "System.Net.WebProxy": "4.0.2.0",
  2579. "System.Net.WebSockets.Client": "4.1.2.0",
  2580. "System.Net.WebSockets": "4.1.2.0",
  2581. "System.Numerics": "4.0.0.0",
  2582. "System.Numerics.Vectors": "4.1.6.0",
  2583. "System.ObjectModel.Reference": "4.1.2.0",
  2584. "System.Reflection.DispatchProxy": "4.0.6.0",
  2585. "System.Reflection.Reference": "4.2.2.0",
  2586. "System.Reflection.Emit.Reference": "4.1.2.0",
  2587. "System.Reflection.Emit.ILGeneration.Reference": "4.1.1.0",
  2588. "System.Reflection.Emit.Lightweight.Reference": "4.1.1.0",
  2589. "System.Reflection.Extensions.Reference": "4.1.2.0",
  2590. "System.Reflection.Metadata": "1.4.5.0",
  2591. "System.Reflection.Primitives.Reference": "4.1.2.0",
  2592. "System.Reflection.TypeExtensions.Reference": "4.1.2.0",
  2593. "System.Resources.Reader": "4.1.2.0",
  2594. "System.Resources.ResourceManager.Reference": "4.1.2.0",
  2595. "System.Resources.Writer": "4.1.2.0",
  2596. "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.6.0",
  2597. "System.Runtime.CompilerServices.VisualC": "4.1.2.0",
  2598. "System.Runtime.Reference": "4.2.2.0",
  2599. "System.Runtime.Extensions.Reference": "4.2.2.0",
  2600. "System.Runtime.Handles.Reference": "4.1.2.0",
  2601. "System.Runtime.InteropServices.Reference": "4.2.2.0",
  2602. "System.Runtime.InteropServices.RuntimeInformation.Reference": "4.0.4.0",
  2603. "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0",
  2604. "System.Runtime.Intrinsics": "4.0.1.0",
  2605. "System.Runtime.Loader": "4.1.1.0",
  2606. "System.Runtime.Numerics": "4.1.2.0",
  2607. "System.Runtime.Serialization": "4.0.0.0",
  2608. "System.Runtime.Serialization.Formatters": "4.0.4.0",
  2609. "System.Runtime.Serialization.Json": "4.0.5.0",
  2610. "System.Runtime.Serialization.Primitives": "4.2.2.0",
  2611. "System.Runtime.Serialization.Xml": "4.1.5.0",
  2612. "System.Security.Claims": "4.1.2.0",
  2613. "System.Security.Cryptography.Algorithms": "4.3.2.0",
  2614. "System.Security.Cryptography.Cng": "4.3.3.0",
  2615. "System.Security.Cryptography.Csp": "4.1.2.0",
  2616. "System.Security.Cryptography.Encoding": "4.1.2.0",
  2617. "System.Security.Cryptography.Primitives": "4.1.2.0",
  2618. "System.Security.Cryptography.X509Certificates": "4.2.2.0",
  2619. "System.Security.Cryptography.Xml": "4.0.3.0",
  2620. "System.Security": "4.0.0.0",
  2621. "System.Security.Principal": "4.1.2.0",
  2622. "System.Security.SecureString": "4.1.2.0",
  2623. "System.ServiceModel.Web": "4.0.0.0",
  2624. "System.ServiceProcess": "4.0.0.0",
  2625. "System.Text.Encoding.CodePages": "4.1.3.0",
  2626. "System.Text.Encoding.Reference": "4.1.2.0",
  2627. "System.Text.Encoding.Extensions.Reference": "4.1.2.0",
  2628. "System.Text.Encodings.Web.Reference": "4.0.5.0",
  2629. "System.Text.Json": "4.0.1.0",
  2630. "System.Text.RegularExpressions": "4.2.2.0",
  2631. "System.Threading.Channels": "4.0.2.0",
  2632. "System.Threading.Reference": "4.1.2.0",
  2633. "System.Threading.Overlapped": "4.1.2.0",
  2634. "System.Threading.Tasks.Dataflow": "4.6.5.0",
  2635. "System.Threading.Tasks.Reference": "4.1.2.0",
  2636. "System.Threading.Tasks.Extensions.Reference": "4.3.1.0",
  2637. "System.Threading.Tasks.Parallel": "4.0.4.0",
  2638. "System.Threading.Thread": "4.1.2.0",
  2639. "System.Threading.ThreadPool": "4.1.2.0",
  2640. "System.Threading.Timer": "4.1.2.0",
  2641. "System.Transactions": "4.0.0.0",
  2642. "System.Transactions.Local": "4.0.2.0",
  2643. "System.ValueTuple": "4.0.3.0",
  2644. "System.Web": "4.0.0.0",
  2645. "System.Web.HttpUtility": "4.0.2.0",
  2646. "System.Windows": "4.0.0.0",
  2647. "System.Xml": "4.0.0.0",
  2648. "System.Xml.Linq": "4.0.0.0",
  2649. "System.Xml.ReaderWriter": "4.2.2.0",
  2650. "System.Xml.Serialization": "4.0.0.0",
  2651. "System.Xml.XDocument": "4.1.2.0",
  2652. "System.Xml.XmlDocument": "4.1.2.0",
  2653. "System.Xml.XmlSerializer": "4.1.2.0",
  2654. "System.Xml.XPath": "4.1.2.0",
  2655. "System.Xml.XPath.XDocument": "4.1.2.0",
  2656. "WindowsBase": "4.0.0.0",
  2657. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "3.1.0",
  2658. "runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64": "3.1.0"
  2659. },
  2660. "runtime": {
  2661. "ApiProcessToken.dll": {}
  2662. }
  2663. },
  2664. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.1.0": {
  2665. "runtime": {
  2666. "Microsoft.CSharp.dll": {
  2667. "assemblyVersion": "4.0.5.0",
  2668. "fileVersion": "4.700.19.56404"
  2669. },
  2670. "Microsoft.VisualBasic.Core.dll": {
  2671. "assemblyVersion": "10.0.5.0",
  2672. "fileVersion": "4.700.19.56404"
  2673. },
  2674. "Microsoft.VisualBasic.dll": {
  2675. "assemblyVersion": "10.0.0.0",
  2676. "fileVersion": "4.700.19.56404"
  2677. },
  2678. "Microsoft.Win32.Primitives.dll": {
  2679. "assemblyVersion": "4.1.2.0",
  2680. "fileVersion": "4.700.19.56404"
  2681. },
  2682. "System.AppContext.dll": {
  2683. "assemblyVersion": "4.2.2.0",
  2684. "fileVersion": "4.700.19.56404"
  2685. },
  2686. "System.Buffers.dll": {
  2687. "assemblyVersion": "4.0.5.0",
  2688. "fileVersion": "4.700.19.56404"
  2689. },
  2690. "System.Collections.Concurrent.dll": {
  2691. "assemblyVersion": "4.0.15.0",
  2692. "fileVersion": "4.700.19.56404"
  2693. },
  2694. "System.Collections.Immutable.dll": {
  2695. "assemblyVersion": "1.2.5.0",
  2696. "fileVersion": "4.700.19.56404"
  2697. },
  2698. "System.Collections.NonGeneric.dll": {
  2699. "assemblyVersion": "4.1.2.0",
  2700. "fileVersion": "4.700.19.56404"
  2701. },
  2702. "System.Collections.Specialized.dll": {
  2703. "assemblyVersion": "4.1.2.0",
  2704. "fileVersion": "4.700.19.56404"
  2705. },
  2706. "System.Collections.dll": {
  2707. "assemblyVersion": "4.1.2.0",
  2708. "fileVersion": "4.700.19.56404"
  2709. },
  2710. "System.ComponentModel.Annotations.dll": {
  2711. "assemblyVersion": "4.3.1.0",
  2712. "fileVersion": "4.700.19.56404"
  2713. },
  2714. "System.ComponentModel.DataAnnotations.dll": {
  2715. "assemblyVersion": "4.0.0.0",
  2716. "fileVersion": "4.700.19.56404"
  2717. },
  2718. "System.ComponentModel.EventBasedAsync.dll": {
  2719. "assemblyVersion": "4.1.2.0",
  2720. "fileVersion": "4.700.19.56404"
  2721. },
  2722. "System.ComponentModel.Primitives.dll": {
  2723. "assemblyVersion": "4.2.2.0",
  2724. "fileVersion": "4.700.19.56404"
  2725. },
  2726. "System.ComponentModel.TypeConverter.dll": {
  2727. "assemblyVersion": "4.2.2.0",
  2728. "fileVersion": "4.700.19.56404"
  2729. },
  2730. "System.ComponentModel.dll": {
  2731. "assemblyVersion": "4.0.4.0",
  2732. "fileVersion": "4.700.19.56404"
  2733. },
  2734. "System.Configuration.dll": {
  2735. "assemblyVersion": "4.0.0.0",
  2736. "fileVersion": "4.700.19.56404"
  2737. },
  2738. "System.Console.dll": {
  2739. "assemblyVersion": "4.1.2.0",
  2740. "fileVersion": "4.700.19.56404"
  2741. },
  2742. "System.Core.dll": {
  2743. "assemblyVersion": "4.0.0.0",
  2744. "fileVersion": "4.700.19.56404"
  2745. },
  2746. "System.Data.Common.dll": {
  2747. "assemblyVersion": "4.2.2.0",
  2748. "fileVersion": "4.700.19.56404"
  2749. },
  2750. "System.Data.DataSetExtensions.dll": {
  2751. "assemblyVersion": "4.0.1.0",
  2752. "fileVersion": "4.700.19.56404"
  2753. },
  2754. "System.Data.dll": {
  2755. "assemblyVersion": "4.0.0.0",
  2756. "fileVersion": "4.700.19.56404"
  2757. },
  2758. "System.Diagnostics.Contracts.dll": {
  2759. "assemblyVersion": "4.0.4.0",
  2760. "fileVersion": "4.700.19.56404"
  2761. },
  2762. "System.Diagnostics.Debug.dll": {
  2763. "assemblyVersion": "4.1.2.0",
  2764. "fileVersion": "4.700.19.56404"
  2765. },
  2766. "System.Diagnostics.DiagnosticSource.dll": {
  2767. "assemblyVersion": "4.0.5.0",
  2768. "fileVersion": "4.700.19.56404"
  2769. },
  2770. "System.Diagnostics.FileVersionInfo.dll": {
  2771. "assemblyVersion": "4.0.4.0",
  2772. "fileVersion": "4.700.19.56404"
  2773. },
  2774. "System.Diagnostics.Process.dll": {
  2775. "assemblyVersion": "4.2.2.0",
  2776. "fileVersion": "4.700.19.56404"
  2777. },
  2778. "System.Diagnostics.StackTrace.dll": {
  2779. "assemblyVersion": "4.1.2.0",
  2780. "fileVersion": "4.700.19.56404"
  2781. },
  2782. "System.Diagnostics.TextWriterTraceListener.dll": {
  2783. "assemblyVersion": "4.1.2.0",
  2784. "fileVersion": "4.700.19.56404"
  2785. },
  2786. "System.Diagnostics.Tools.dll": {
  2787. "assemblyVersion": "4.1.2.0",
  2788. "fileVersion": "4.700.19.56404"
  2789. },
  2790. "System.Diagnostics.TraceSource.dll": {
  2791. "assemblyVersion": "4.1.2.0",
  2792. "fileVersion": "4.700.19.56404"
  2793. },
  2794. "System.Diagnostics.Tracing.dll": {
  2795. "assemblyVersion": "4.2.2.0",
  2796. "fileVersion": "4.700.19.56404"
  2797. },
  2798. "System.Drawing.Primitives.dll": {
  2799. "assemblyVersion": "4.2.1.0",
  2800. "fileVersion": "4.700.19.56404"
  2801. },
  2802. "System.Drawing.dll": {
  2803. "assemblyVersion": "4.0.0.0",
  2804. "fileVersion": "4.700.19.56404"
  2805. },
  2806. "System.Dynamic.Runtime.dll": {
  2807. "assemblyVersion": "4.1.2.0",
  2808. "fileVersion": "4.700.19.56404"
  2809. },
  2810. "System.Globalization.Calendars.dll": {
  2811. "assemblyVersion": "4.1.2.0",
  2812. "fileVersion": "4.700.19.56404"
  2813. },
  2814. "System.Globalization.Extensions.dll": {
  2815. "assemblyVersion": "4.1.2.0",
  2816. "fileVersion": "4.700.19.56404"
  2817. },
  2818. "System.Globalization.dll": {
  2819. "assemblyVersion": "4.1.2.0",
  2820. "fileVersion": "4.700.19.56404"
  2821. },
  2822. "System.IO.Compression.Brotli.dll": {
  2823. "assemblyVersion": "4.2.2.0",
  2824. "fileVersion": "4.700.19.56404"
  2825. },
  2826. "System.IO.Compression.FileSystem.dll": {
  2827. "assemblyVersion": "4.0.0.0",
  2828. "fileVersion": "4.700.19.56404"
  2829. },
  2830. "System.IO.Compression.ZipFile.dll": {
  2831. "assemblyVersion": "4.0.5.0",
  2832. "fileVersion": "4.700.19.56404"
  2833. },
  2834. "System.IO.Compression.dll": {
  2835. "assemblyVersion": "4.2.2.0",
  2836. "fileVersion": "4.700.19.56404"
  2837. },
  2838. "System.IO.FileSystem.AccessControl.dll": {
  2839. "assemblyVersion": "4.0.5.0",
  2840. "fileVersion": "4.700.19.56404"
  2841. },
  2842. "System.IO.FileSystem.DriveInfo.dll": {
  2843. "assemblyVersion": "4.1.2.0",
  2844. "fileVersion": "4.700.19.56404"
  2845. },
  2846. "System.IO.FileSystem.Primitives.dll": {
  2847. "assemblyVersion": "4.1.2.0",
  2848. "fileVersion": "4.700.19.56404"
  2849. },
  2850. "System.IO.FileSystem.Watcher.dll": {
  2851. "assemblyVersion": "4.1.2.0",
  2852. "fileVersion": "4.700.19.56404"
  2853. },
  2854. "System.IO.FileSystem.dll": {
  2855. "assemblyVersion": "4.1.2.0",
  2856. "fileVersion": "4.700.19.56404"
  2857. },
  2858. "System.IO.IsolatedStorage.dll": {
  2859. "assemblyVersion": "4.1.2.0",
  2860. "fileVersion": "4.700.19.56404"
  2861. },
  2862. "System.IO.MemoryMappedFiles.dll": {
  2863. "assemblyVersion": "4.1.2.0",
  2864. "fileVersion": "4.700.19.56404"
  2865. },
  2866. "System.IO.Pipes.AccessControl.dll": {
  2867. "assemblyVersion": "4.0.5.0",
  2868. "fileVersion": "4.700.19.56404"
  2869. },
  2870. "System.IO.Pipes.dll": {
  2871. "assemblyVersion": "4.1.2.0",
  2872. "fileVersion": "4.700.19.56404"
  2873. },
  2874. "System.IO.UnmanagedMemoryStream.dll": {
  2875. "assemblyVersion": "4.1.2.0",
  2876. "fileVersion": "4.700.19.56404"
  2877. },
  2878. "System.IO.dll": {
  2879. "assemblyVersion": "4.2.2.0",
  2880. "fileVersion": "4.700.19.56404"
  2881. },
  2882. "System.Linq.Expressions.dll": {
  2883. "assemblyVersion": "4.2.2.0",
  2884. "fileVersion": "4.700.19.56404"
  2885. },
  2886. "System.Linq.Parallel.dll": {
  2887. "assemblyVersion": "4.0.4.0",
  2888. "fileVersion": "4.700.19.56404"
  2889. },
  2890. "System.Linq.Queryable.dll": {
  2891. "assemblyVersion": "4.0.4.0",
  2892. "fileVersion": "4.700.19.56404"
  2893. },
  2894. "System.Linq.dll": {
  2895. "assemblyVersion": "4.2.2.0",
  2896. "fileVersion": "4.700.19.56404"
  2897. },
  2898. "System.Memory.dll": {
  2899. "assemblyVersion": "4.2.1.0",
  2900. "fileVersion": "4.700.19.56404"
  2901. },
  2902. "System.Net.Http.dll": {
  2903. "assemblyVersion": "4.2.2.0",
  2904. "fileVersion": "4.700.19.56404"
  2905. },
  2906. "System.Net.HttpListener.dll": {
  2907. "assemblyVersion": "4.0.2.0",
  2908. "fileVersion": "4.700.19.56404"
  2909. },
  2910. "System.Net.Mail.dll": {
  2911. "assemblyVersion": "4.0.2.0",
  2912. "fileVersion": "4.700.19.56404"
  2913. },
  2914. "System.Net.NameResolution.dll": {
  2915. "assemblyVersion": "4.1.2.0",
  2916. "fileVersion": "4.700.19.56404"
  2917. },
  2918. "System.Net.NetworkInformation.dll": {
  2919. "assemblyVersion": "4.2.2.0",
  2920. "fileVersion": "4.700.19.56404"
  2921. },
  2922. "System.Net.Ping.dll": {
  2923. "assemblyVersion": "4.1.2.0",
  2924. "fileVersion": "4.700.19.56404"
  2925. },
  2926. "System.Net.Primitives.dll": {
  2927. "assemblyVersion": "4.1.2.0",
  2928. "fileVersion": "4.700.19.56404"
  2929. },
  2930. "System.Net.Requests.dll": {
  2931. "assemblyVersion": "4.1.2.0",
  2932. "fileVersion": "4.700.19.56404"
  2933. },
  2934. "System.Net.Security.dll": {
  2935. "assemblyVersion": "4.1.2.0",
  2936. "fileVersion": "4.700.19.56404"
  2937. },
  2938. "System.Net.ServicePoint.dll": {
  2939. "assemblyVersion": "4.0.2.0",
  2940. "fileVersion": "4.700.19.56404"
  2941. },
  2942. "System.Net.Sockets.dll": {
  2943. "assemblyVersion": "4.2.2.0",
  2944. "fileVersion": "4.700.19.56404"
  2945. },
  2946. "System.Net.WebClient.dll": {
  2947. "assemblyVersion": "4.0.2.0",
  2948. "fileVersion": "4.700.19.56404"
  2949. },
  2950. "System.Net.WebHeaderCollection.dll": {
  2951. "assemblyVersion": "4.1.2.0",
  2952. "fileVersion": "4.700.19.56404"
  2953. },
  2954. "System.Net.WebProxy.dll": {
  2955. "assemblyVersion": "4.0.2.0",
  2956. "fileVersion": "4.700.19.56404"
  2957. },
  2958. "System.Net.WebSockets.Client.dll": {
  2959. "assemblyVersion": "4.1.2.0",
  2960. "fileVersion": "4.700.19.56404"
  2961. },
  2962. "System.Net.WebSockets.dll": {
  2963. "assemblyVersion": "4.1.2.0",
  2964. "fileVersion": "4.700.19.56404"
  2965. },
  2966. "System.Net.dll": {
  2967. "assemblyVersion": "4.0.0.0",
  2968. "fileVersion": "4.700.19.56404"
  2969. },
  2970. "System.Numerics.Vectors.dll": {
  2971. "assemblyVersion": "4.1.6.0",
  2972. "fileVersion": "4.700.19.56404"
  2973. },
  2974. "System.Numerics.dll": {
  2975. "assemblyVersion": "4.0.0.0",
  2976. "fileVersion": "4.700.19.56404"
  2977. },
  2978. "System.ObjectModel.dll": {
  2979. "assemblyVersion": "4.1.2.0",
  2980. "fileVersion": "4.700.19.56404"
  2981. },
  2982. "System.Private.DataContractSerialization.dll": {
  2983. "assemblyVersion": "4.1.5.0",
  2984. "fileVersion": "4.700.19.56404"
  2985. },
  2986. "System.Private.Uri.dll": {
  2987. "assemblyVersion": "4.0.6.0",
  2988. "fileVersion": "4.700.19.56404"
  2989. },
  2990. "System.Private.Xml.Linq.dll": {
  2991. "assemblyVersion": "4.0.2.0",
  2992. "fileVersion": "4.700.19.56404"
  2993. },
  2994. "System.Private.Xml.dll": {
  2995. "assemblyVersion": "4.0.2.0",
  2996. "fileVersion": "4.700.19.56404"
  2997. },
  2998. "System.Reflection.DispatchProxy.dll": {
  2999. "assemblyVersion": "4.0.6.0",
  3000. "fileVersion": "4.700.19.56404"
  3001. },
  3002. "System.Reflection.Emit.ILGeneration.dll": {
  3003. "assemblyVersion": "4.1.1.0",
  3004. "fileVersion": "4.700.19.56404"
  3005. },
  3006. "System.Reflection.Emit.Lightweight.dll": {
  3007. "assemblyVersion": "4.1.1.0",
  3008. "fileVersion": "4.700.19.56404"
  3009. },
  3010. "System.Reflection.Emit.dll": {
  3011. "assemblyVersion": "4.1.2.0",
  3012. "fileVersion": "4.700.19.56404"
  3013. },
  3014. "System.Reflection.Extensions.dll": {
  3015. "assemblyVersion": "4.1.2.0",
  3016. "fileVersion": "4.700.19.56404"
  3017. },
  3018. "System.Reflection.Metadata.dll": {
  3019. "assemblyVersion": "1.4.5.0",
  3020. "fileVersion": "4.700.19.56404"
  3021. },
  3022. "System.Reflection.Primitives.dll": {
  3023. "assemblyVersion": "4.1.2.0",
  3024. "fileVersion": "4.700.19.56404"
  3025. },
  3026. "System.Reflection.TypeExtensions.dll": {
  3027. "assemblyVersion": "4.1.5.0",
  3028. "fileVersion": "4.700.19.56404"
  3029. },
  3030. "System.Reflection.dll": {
  3031. "assemblyVersion": "4.2.2.0",
  3032. "fileVersion": "4.700.19.56404"
  3033. },
  3034. "System.Resources.Reader.dll": {
  3035. "assemblyVersion": "4.1.2.0",
  3036. "fileVersion": "4.700.19.56404"
  3037. },
  3038. "System.Resources.ResourceManager.dll": {
  3039. "assemblyVersion": "4.1.2.0",
  3040. "fileVersion": "4.700.19.56404"
  3041. },
  3042. "System.Resources.Writer.dll": {
  3043. "assemblyVersion": "4.1.2.0",
  3044. "fileVersion": "4.700.19.56404"
  3045. },
  3046. "System.Runtime.CompilerServices.Unsafe.dll": {
  3047. "assemblyVersion": "4.0.6.0",
  3048. "fileVersion": "0.0.0.0"
  3049. },
  3050. "System.Runtime.CompilerServices.VisualC.dll": {
  3051. "assemblyVersion": "4.1.2.0",
  3052. "fileVersion": "4.700.19.56404"
  3053. },
  3054. "System.Runtime.Extensions.dll": {
  3055. "assemblyVersion": "4.2.2.0",
  3056. "fileVersion": "4.700.19.56404"
  3057. },
  3058. "System.Runtime.Handles.dll": {
  3059. "assemblyVersion": "4.1.2.0",
  3060. "fileVersion": "4.700.19.56404"
  3061. },
  3062. "System.Runtime.InteropServices.RuntimeInformation.dll": {
  3063. "assemblyVersion": "4.0.4.0",
  3064. "fileVersion": "4.700.19.56404"
  3065. },
  3066. "System.Runtime.InteropServices.WindowsRuntime.dll": {
  3067. "assemblyVersion": "4.0.4.0",
  3068. "fileVersion": "4.700.19.56404"
  3069. },
  3070. "System.Runtime.InteropServices.dll": {
  3071. "assemblyVersion": "4.2.2.0",
  3072. "fileVersion": "4.700.19.56404"
  3073. },
  3074. "System.Runtime.Intrinsics.dll": {
  3075. "assemblyVersion": "4.0.1.0",
  3076. "fileVersion": "4.700.19.56404"
  3077. },
  3078. "System.Runtime.Loader.dll": {
  3079. "assemblyVersion": "4.1.1.0",
  3080. "fileVersion": "4.700.19.56404"
  3081. },
  3082. "System.Runtime.Numerics.dll": {
  3083. "assemblyVersion": "4.1.2.0",
  3084. "fileVersion": "4.700.19.56404"
  3085. },
  3086. "System.Runtime.Serialization.Formatters.dll": {
  3087. "assemblyVersion": "4.0.4.0",
  3088. "fileVersion": "4.700.19.56404"
  3089. },
  3090. "System.Runtime.Serialization.Json.dll": {
  3091. "assemblyVersion": "4.0.5.0",
  3092. "fileVersion": "4.700.19.56404"
  3093. },
  3094. "System.Runtime.Serialization.Primitives.dll": {
  3095. "assemblyVersion": "4.2.2.0",
  3096. "fileVersion": "4.700.19.56404"
  3097. },
  3098. "System.Runtime.Serialization.Xml.dll": {
  3099. "assemblyVersion": "4.1.5.0",
  3100. "fileVersion": "4.700.19.56404"
  3101. },
  3102. "System.Runtime.Serialization.dll": {
  3103. "assemblyVersion": "4.0.0.0",
  3104. "fileVersion": "4.700.19.56404"
  3105. },
  3106. "System.Runtime.WindowsRuntime.UI.Xaml.dll": {
  3107. "assemblyVersion": "4.0.5.0",
  3108. "fileVersion": "4.700.19.56404"
  3109. },
  3110. "System.Runtime.WindowsRuntime.dll": {
  3111. "assemblyVersion": "4.0.15.0",
  3112. "fileVersion": "4.700.19.56404"
  3113. },
  3114. "System.Runtime.dll": {
  3115. "assemblyVersion": "4.2.2.0",
  3116. "fileVersion": "4.700.19.56404"
  3117. },
  3118. "System.Security.Claims.dll": {
  3119. "assemblyVersion": "4.1.2.0",
  3120. "fileVersion": "4.700.19.56404"
  3121. },
  3122. "System.Security.Cryptography.Algorithms.dll": {
  3123. "assemblyVersion": "4.3.2.0",
  3124. "fileVersion": "4.700.19.56404"
  3125. },
  3126. "System.Security.Cryptography.Cng.dll": {
  3127. "assemblyVersion": "4.3.3.0",
  3128. "fileVersion": "4.700.19.56404"
  3129. },
  3130. "System.Security.Cryptography.Csp.dll": {
  3131. "assemblyVersion": "4.1.2.0",
  3132. "fileVersion": "4.700.19.56404"
  3133. },
  3134. "System.Security.Cryptography.Encoding.dll": {
  3135. "assemblyVersion": "4.1.2.0",
  3136. "fileVersion": "4.700.19.56404"
  3137. },
  3138. "System.Security.Cryptography.OpenSsl.dll": {
  3139. "assemblyVersion": "4.1.3.0",
  3140. "fileVersion": "4.700.19.56404"
  3141. },
  3142. "System.Security.Cryptography.Primitives.dll": {
  3143. "assemblyVersion": "4.1.2.0",
  3144. "fileVersion": "4.700.19.56404"
  3145. },
  3146. "System.Security.Cryptography.X509Certificates.dll": {
  3147. "assemblyVersion": "4.2.2.0",
  3148. "fileVersion": "4.700.19.56404"
  3149. },
  3150. "System.Security.Principal.dll": {
  3151. "assemblyVersion": "4.1.2.0",
  3152. "fileVersion": "4.700.19.56404"
  3153. },
  3154. "System.Security.SecureString.dll": {
  3155. "assemblyVersion": "4.1.2.0",
  3156. "fileVersion": "4.700.19.56404"
  3157. },
  3158. "System.Security.dll": {
  3159. "assemblyVersion": "4.0.0.0",
  3160. "fileVersion": "4.700.19.56404"
  3161. },
  3162. "System.ServiceModel.Web.dll": {
  3163. "assemblyVersion": "4.0.0.0",
  3164. "fileVersion": "4.700.19.56404"
  3165. },
  3166. "System.ServiceProcess.dll": {
  3167. "assemblyVersion": "4.0.0.0",
  3168. "fileVersion": "4.700.19.56404"
  3169. },
  3170. "System.Text.Encoding.CodePages.dll": {
  3171. "assemblyVersion": "4.1.3.0",
  3172. "fileVersion": "4.700.19.56404"
  3173. },
  3174. "System.Text.Encoding.Extensions.dll": {
  3175. "assemblyVersion": "4.1.2.0",
  3176. "fileVersion": "4.700.19.56404"
  3177. },
  3178. "System.Text.Encoding.dll": {
  3179. "assemblyVersion": "4.1.2.0",
  3180. "fileVersion": "4.700.19.56404"
  3181. },
  3182. "System.Text.Encodings.Web.dll": {
  3183. "assemblyVersion": "4.0.5.0",
  3184. "fileVersion": "4.700.19.56404"
  3185. },
  3186. "System.Text.Json.dll": {
  3187. "assemblyVersion": "4.0.1.0",
  3188. "fileVersion": "4.700.19.56404"
  3189. },
  3190. "System.Text.RegularExpressions.dll": {
  3191. "assemblyVersion": "4.2.2.0",
  3192. "fileVersion": "4.700.19.56404"
  3193. },
  3194. "System.Threading.Channels.dll": {
  3195. "assemblyVersion": "4.0.2.0",
  3196. "fileVersion": "4.700.19.56404"
  3197. },
  3198. "System.Threading.Overlapped.dll": {
  3199. "assemblyVersion": "4.1.2.0",
  3200. "fileVersion": "4.700.19.56404"
  3201. },
  3202. "System.Threading.Tasks.Dataflow.dll": {
  3203. "assemblyVersion": "4.6.5.0",
  3204. "fileVersion": "4.700.19.56404"
  3205. },
  3206. "System.Threading.Tasks.Extensions.dll": {
  3207. "assemblyVersion": "4.3.1.0",
  3208. "fileVersion": "4.700.19.56404"
  3209. },
  3210. "System.Threading.Tasks.Parallel.dll": {
  3211. "assemblyVersion": "4.0.4.0",
  3212. "fileVersion": "4.700.19.56404"
  3213. },
  3214. "System.Threading.Tasks.dll": {
  3215. "assemblyVersion": "4.1.2.0",
  3216. "fileVersion": "4.700.19.56404"
  3217. },
  3218. "System.Threading.Thread.dll": {
  3219. "assemblyVersion": "4.1.2.0",
  3220. "fileVersion": "4.700.19.56404"
  3221. },
  3222. "System.Threading.ThreadPool.dll": {
  3223. "assemblyVersion": "4.1.2.0",
  3224. "fileVersion": "4.700.19.56404"
  3225. },
  3226. "System.Threading.Timer.dll": {
  3227. "assemblyVersion": "4.1.2.0",
  3228. "fileVersion": "4.700.19.56404"
  3229. },
  3230. "System.Threading.dll": {
  3231. "assemblyVersion": "4.1.2.0",
  3232. "fileVersion": "4.700.19.56404"
  3233. },
  3234. "System.Transactions.Local.dll": {
  3235. "assemblyVersion": "4.0.2.0",
  3236. "fileVersion": "4.700.19.56404"
  3237. },
  3238. "System.Transactions.dll": {
  3239. "assemblyVersion": "4.0.0.0",
  3240. "fileVersion": "4.700.19.56404"
  3241. },
  3242. "System.ValueTuple.dll": {
  3243. "assemblyVersion": "4.0.5.0",
  3244. "fileVersion": "4.700.19.56404"
  3245. },
  3246. "System.Web.HttpUtility.dll": {
  3247. "assemblyVersion": "4.0.2.0",
  3248. "fileVersion": "4.700.19.56404"
  3249. },
  3250. "System.Web.dll": {
  3251. "assemblyVersion": "4.0.0.0",
  3252. "fileVersion": "4.700.19.56404"
  3253. },
  3254. "System.Windows.dll": {
  3255. "assemblyVersion": "4.0.0.0",
  3256. "fileVersion": "4.700.19.56404"
  3257. },
  3258. "System.Xml.Linq.dll": {
  3259. "assemblyVersion": "4.0.0.0",
  3260. "fileVersion": "4.700.19.56404"
  3261. },
  3262. "System.Xml.ReaderWriter.dll": {
  3263. "assemblyVersion": "4.2.2.0",
  3264. "fileVersion": "4.700.19.56404"
  3265. },
  3266. "System.Xml.Serialization.dll": {
  3267. "assemblyVersion": "4.0.0.0",
  3268. "fileVersion": "4.700.19.56404"
  3269. },
  3270. "System.Xml.XDocument.dll": {
  3271. "assemblyVersion": "4.1.2.0",
  3272. "fileVersion": "4.700.19.56404"
  3273. },
  3274. "System.Xml.XPath.XDocument.dll": {
  3275. "assemblyVersion": "4.1.2.0",
  3276. "fileVersion": "4.700.19.56404"
  3277. },
  3278. "System.Xml.XPath.dll": {
  3279. "assemblyVersion": "4.1.2.0",
  3280. "fileVersion": "4.700.19.56404"
  3281. },
  3282. "System.Xml.XmlDocument.dll": {
  3283. "assemblyVersion": "4.1.2.0",
  3284. "fileVersion": "4.700.19.56404"
  3285. },
  3286. "System.Xml.XmlSerializer.dll": {
  3287. "assemblyVersion": "4.1.2.0",
  3288. "fileVersion": "4.700.19.56404"
  3289. },
  3290. "System.Xml.dll": {
  3291. "assemblyVersion": "4.0.0.0",
  3292. "fileVersion": "4.700.19.56404"
  3293. },
  3294. "System.dll": {
  3295. "assemblyVersion": "4.0.0.0",
  3296. "fileVersion": "4.700.19.56404"
  3297. },
  3298. "WindowsBase.dll": {
  3299. "assemblyVersion": "4.0.0.0",
  3300. "fileVersion": "4.700.19.56404"
  3301. },
  3302. "mscorlib.dll": {
  3303. "assemblyVersion": "4.0.0.0",
  3304. "fileVersion": "4.700.19.56404"
  3305. },
  3306. "netstandard.dll": {
  3307. "assemblyVersion": "2.1.0.0",
  3308. "fileVersion": "4.700.19.56404"
  3309. }
  3310. },
  3311. "native": {
  3312. "SOS_README.md": {
  3313. "fileVersion": "0.0.0.0"
  3314. },
  3315. "System.Globalization.Native.so": {
  3316. "fileVersion": "0.0.0.0"
  3317. },
  3318. "System.IO.Compression.Native.a": {
  3319. "fileVersion": "0.0.0.0"
  3320. },
  3321. "System.IO.Compression.Native.so": {
  3322. "fileVersion": "0.0.0.0"
  3323. },
  3324. "System.Native.a": {
  3325. "fileVersion": "0.0.0.0"
  3326. },
  3327. "System.Native.so": {
  3328. "fileVersion": "0.0.0.0"
  3329. },
  3330. "System.Net.Http.Native.a": {
  3331. "fileVersion": "0.0.0.0"
  3332. },
  3333. "System.Net.Http.Native.so": {
  3334. "fileVersion": "0.0.0.0"
  3335. },
  3336. "System.Net.Security.Native.a": {
  3337. "fileVersion": "0.0.0.0"
  3338. },
  3339. "System.Net.Security.Native.so": {
  3340. "fileVersion": "0.0.0.0"
  3341. },
  3342. "System.Private.CoreLib.dll": {
  3343. "assemblyVersion": "4.0.0.0",
  3344. "fileVersion": "4.700.19.56402"
  3345. },
  3346. "System.Security.Cryptography.Native.OpenSsl.a": {
  3347. "fileVersion": "0.0.0.0"
  3348. },
  3349. "System.Security.Cryptography.Native.OpenSsl.so": {
  3350. "fileVersion": "0.0.0.0"
  3351. },
  3352. "createdump": {
  3353. "fileVersion": "0.0.0.0"
  3354. },
  3355. "libclrjit.so": {
  3356. "fileVersion": "0.0.0.0"
  3357. },
  3358. "libcoreclr.so": {
  3359. "fileVersion": "0.0.0.0"
  3360. },
  3361. "libcoreclrtraceptprovider.so": {
  3362. "fileVersion": "0.0.0.0"
  3363. },
  3364. "libdbgshim.so": {
  3365. "fileVersion": "0.0.0.0"
  3366. },
  3367. "libhostfxr.so": {
  3368. "fileVersion": "0.0.0.0"
  3369. },
  3370. "libhostpolicy.so": {
  3371. "fileVersion": "0.0.0.0"
  3372. },
  3373. "libmscordaccore.so": {
  3374. "fileVersion": "0.0.0.0"
  3375. },
  3376. "libmscordbi.so": {
  3377. "fileVersion": "0.0.0.0"
  3378. }
  3379. }
  3380. },
  3381. "runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64/3.1.0": {
  3382. "runtime": {
  3383. "Microsoft.AspNetCore.Antiforgery.dll": {
  3384. "assemblyVersion": "3.1.0.0",
  3385. "fileVersion": "3.100.19.56601"
  3386. },
  3387. "Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  3388. "assemblyVersion": "3.1.0.0",
  3389. "fileVersion": "3.100.19.56601"
  3390. },
  3391. "Microsoft.AspNetCore.Authentication.Cookies.dll": {
  3392. "assemblyVersion": "3.1.0.0",
  3393. "fileVersion": "3.100.19.56601"
  3394. },
  3395. "Microsoft.AspNetCore.Authentication.Core.dll": {
  3396. "assemblyVersion": "3.1.0.0",
  3397. "fileVersion": "3.100.19.56601"
  3398. },
  3399. "Microsoft.AspNetCore.Authentication.OAuth.dll": {
  3400. "assemblyVersion": "3.1.0.0",
  3401. "fileVersion": "3.100.19.56601"
  3402. },
  3403. "Microsoft.AspNetCore.Authentication.dll": {
  3404. "assemblyVersion": "3.1.0.0",
  3405. "fileVersion": "3.100.19.56601"
  3406. },
  3407. "Microsoft.AspNetCore.Authorization.Policy.dll": {
  3408. "assemblyVersion": "3.1.0.0",
  3409. "fileVersion": "3.100.19.56601"
  3410. },
  3411. "Microsoft.AspNetCore.Authorization.dll": {
  3412. "assemblyVersion": "3.1.0.0",
  3413. "fileVersion": "3.100.19.56601"
  3414. },
  3415. "Microsoft.AspNetCore.Components.Authorization.dll": {
  3416. "assemblyVersion": "3.1.0.0",
  3417. "fileVersion": "3.100.19.56601"
  3418. },
  3419. "Microsoft.AspNetCore.Components.Forms.dll": {
  3420. "assemblyVersion": "3.1.0.0",
  3421. "fileVersion": "3.100.19.56601"
  3422. },
  3423. "Microsoft.AspNetCore.Components.Server.dll": {
  3424. "assemblyVersion": "3.1.0.0",
  3425. "fileVersion": "3.100.19.56601"
  3426. },
  3427. "Microsoft.AspNetCore.Components.Web.dll": {
  3428. "assemblyVersion": "3.1.0.0",
  3429. "fileVersion": "3.100.19.56601"
  3430. },
  3431. "Microsoft.AspNetCore.Components.dll": {
  3432. "assemblyVersion": "3.1.0.0",
  3433. "fileVersion": "3.100.19.56601"
  3434. },
  3435. "Microsoft.AspNetCore.Connections.Abstractions.dll": {
  3436. "assemblyVersion": "3.1.0.0",
  3437. "fileVersion": "3.100.19.56601"
  3438. },
  3439. "Microsoft.AspNetCore.CookiePolicy.dll": {
  3440. "assemblyVersion": "3.1.0.0",
  3441. "fileVersion": "3.100.19.56601"
  3442. },
  3443. "Microsoft.AspNetCore.Cors.dll": {
  3444. "assemblyVersion": "3.1.0.0",
  3445. "fileVersion": "3.100.19.56601"
  3446. },
  3447. "Microsoft.AspNetCore.Cryptography.Internal.dll": {
  3448. "assemblyVersion": "3.1.0.0",
  3449. "fileVersion": "3.100.19.56601"
  3450. },
  3451. "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  3452. "assemblyVersion": "3.1.0.0",
  3453. "fileVersion": "3.100.19.56601"
  3454. },
  3455. "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  3456. "assemblyVersion": "3.1.0.0",
  3457. "fileVersion": "3.100.19.56601"
  3458. },
  3459. "Microsoft.AspNetCore.DataProtection.Extensions.dll": {
  3460. "assemblyVersion": "3.1.0.0",
  3461. "fileVersion": "3.100.19.56601"
  3462. },
  3463. "Microsoft.AspNetCore.DataProtection.dll": {
  3464. "assemblyVersion": "3.1.0.0",
  3465. "fileVersion": "3.100.19.56601"
  3466. },
  3467. "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  3468. "assemblyVersion": "3.1.0.0",
  3469. "fileVersion": "3.100.19.56601"
  3470. },
  3471. "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {
  3472. "assemblyVersion": "3.1.0.0",
  3473. "fileVersion": "3.100.19.56601"
  3474. },
  3475. "Microsoft.AspNetCore.Diagnostics.dll": {
  3476. "assemblyVersion": "3.1.0.0",
  3477. "fileVersion": "3.100.19.56601"
  3478. },
  3479. "Microsoft.AspNetCore.HostFiltering.dll": {
  3480. "assemblyVersion": "3.1.0.0",
  3481. "fileVersion": "3.100.19.56601"
  3482. },
  3483. "Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  3484. "assemblyVersion": "3.1.0.0",
  3485. "fileVersion": "3.100.19.56601"
  3486. },
  3487. "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  3488. "assemblyVersion": "3.1.0.0",
  3489. "fileVersion": "3.100.19.56601"
  3490. },
  3491. "Microsoft.AspNetCore.Hosting.dll": {
  3492. "assemblyVersion": "3.1.0.0",
  3493. "fileVersion": "3.100.19.56601"
  3494. },
  3495. "Microsoft.AspNetCore.Html.Abstractions.dll": {
  3496. "assemblyVersion": "3.1.0.0",
  3497. "fileVersion": "3.100.19.56601"
  3498. },
  3499. "Microsoft.AspNetCore.Http.Abstractions.dll": {
  3500. "assemblyVersion": "3.1.0.0",
  3501. "fileVersion": "3.100.19.56601"
  3502. },
  3503. "Microsoft.AspNetCore.Http.Connections.Common.dll": {
  3504. "assemblyVersion": "3.1.0.0",
  3505. "fileVersion": "3.100.19.56601"
  3506. },
  3507. "Microsoft.AspNetCore.Http.Connections.dll": {
  3508. "assemblyVersion": "3.1.0.0",
  3509. "fileVersion": "3.100.19.56601"
  3510. },
  3511. "Microsoft.AspNetCore.Http.Extensions.dll": {
  3512. "assemblyVersion": "3.1.0.0",
  3513. "fileVersion": "3.100.19.56601"
  3514. },
  3515. "Microsoft.AspNetCore.Http.Features.dll": {
  3516. "assemblyVersion": "3.1.0.0",
  3517. "fileVersion": "3.100.19.56601"
  3518. },
  3519. "Microsoft.AspNetCore.Http.dll": {
  3520. "assemblyVersion": "3.1.0.0",
  3521. "fileVersion": "3.100.19.56601"
  3522. },
  3523. "Microsoft.AspNetCore.HttpOverrides.dll": {
  3524. "assemblyVersion": "3.1.0.0",
  3525. "fileVersion": "3.100.19.56601"
  3526. },
  3527. "Microsoft.AspNetCore.HttpsPolicy.dll": {
  3528. "assemblyVersion": "3.1.0.0",
  3529. "fileVersion": "3.100.19.56601"
  3530. },
  3531. "Microsoft.AspNetCore.Identity.dll": {
  3532. "assemblyVersion": "3.1.0.0",
  3533. "fileVersion": "3.100.19.56601"
  3534. },
  3535. "Microsoft.AspNetCore.Localization.Routing.dll": {
  3536. "assemblyVersion": "3.1.0.0",
  3537. "fileVersion": "3.100.19.56601"
  3538. },
  3539. "Microsoft.AspNetCore.Localization.dll": {
  3540. "assemblyVersion": "3.1.0.0",
  3541. "fileVersion": "3.100.19.56601"
  3542. },
  3543. "Microsoft.AspNetCore.Metadata.dll": {
  3544. "assemblyVersion": "3.1.0.0",
  3545. "fileVersion": "3.100.19.56601"
  3546. },
  3547. "Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  3548. "assemblyVersion": "3.1.0.0",
  3549. "fileVersion": "3.100.19.56601"
  3550. },
  3551. "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  3552. "assemblyVersion": "3.1.0.0",
  3553. "fileVersion": "3.100.19.56601"
  3554. },
  3555. "Microsoft.AspNetCore.Mvc.Core.dll": {
  3556. "assemblyVersion": "3.1.0.0",
  3557. "fileVersion": "3.100.19.56601"
  3558. },
  3559. "Microsoft.AspNetCore.Mvc.Cors.dll": {
  3560. "assemblyVersion": "3.1.0.0",
  3561. "fileVersion": "3.100.19.56601"
  3562. },
  3563. "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  3564. "assemblyVersion": "3.1.0.0",
  3565. "fileVersion": "3.100.19.56601"
  3566. },
  3567. "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  3568. "assemblyVersion": "3.1.0.0",
  3569. "fileVersion": "3.100.19.56601"
  3570. },
  3571. "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {
  3572. "assemblyVersion": "3.1.0.0",
  3573. "fileVersion": "3.100.19.56601"
  3574. },
  3575. "Microsoft.AspNetCore.Mvc.Localization.dll": {
  3576. "assemblyVersion": "3.1.0.0",
  3577. "fileVersion": "3.100.19.56601"
  3578. },
  3579. "Microsoft.AspNetCore.Mvc.Razor.dll": {
  3580. "assemblyVersion": "3.1.0.0",
  3581. "fileVersion": "3.100.19.56601"
  3582. },
  3583. "Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  3584. "assemblyVersion": "3.1.0.0",
  3585. "fileVersion": "3.100.19.56601"
  3586. },
  3587. "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  3588. "assemblyVersion": "3.1.0.0",
  3589. "fileVersion": "3.100.19.56601"
  3590. },
  3591. "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  3592. "assemblyVersion": "3.1.0.0",
  3593. "fileVersion": "3.100.19.56601"
  3594. },
  3595. "Microsoft.AspNetCore.Mvc.dll": {
  3596. "assemblyVersion": "3.1.0.0",
  3597. "fileVersion": "3.100.19.56601"
  3598. },
  3599. "Microsoft.AspNetCore.Razor.Runtime.dll": {
  3600. "assemblyVersion": "3.1.0.0",
  3601. "fileVersion": "3.100.19.56601"
  3602. },
  3603. "Microsoft.AspNetCore.Razor.dll": {
  3604. "assemblyVersion": "3.1.0.0",
  3605. "fileVersion": "3.100.19.56601"
  3606. },
  3607. "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  3608. "assemblyVersion": "3.1.0.0",
  3609. "fileVersion": "3.100.19.56601"
  3610. },
  3611. "Microsoft.AspNetCore.ResponseCaching.dll": {
  3612. "assemblyVersion": "3.1.0.0",
  3613. "fileVersion": "3.100.19.56601"
  3614. },
  3615. "Microsoft.AspNetCore.ResponseCompression.dll": {
  3616. "assemblyVersion": "3.1.0.0",
  3617. "fileVersion": "3.100.19.56601"
  3618. },
  3619. "Microsoft.AspNetCore.Rewrite.dll": {
  3620. "assemblyVersion": "3.1.0.0",
  3621. "fileVersion": "3.100.19.56601"
  3622. },
  3623. "Microsoft.AspNetCore.Routing.Abstractions.dll": {
  3624. "assemblyVersion": "3.1.0.0",
  3625. "fileVersion": "3.100.19.56601"
  3626. },
  3627. "Microsoft.AspNetCore.Routing.dll": {
  3628. "assemblyVersion": "3.1.0.0",
  3629. "fileVersion": "3.100.19.56601"
  3630. },
  3631. "Microsoft.AspNetCore.Server.HttpSys.dll": {
  3632. "assemblyVersion": "3.1.0.0",
  3633. "fileVersion": "3.100.19.56601"
  3634. },
  3635. "Microsoft.AspNetCore.Server.IIS.dll": {
  3636. "assemblyVersion": "3.1.0.0",
  3637. "fileVersion": "3.100.19.56601"
  3638. },
  3639. "Microsoft.AspNetCore.Server.IISIntegration.dll": {
  3640. "assemblyVersion": "3.1.0.0",
  3641. "fileVersion": "3.100.19.56601"
  3642. },
  3643. "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
  3644. "assemblyVersion": "3.1.0.0",
  3645. "fileVersion": "3.100.19.56601"
  3646. },
  3647. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
  3648. "assemblyVersion": "3.1.0.0",
  3649. "fileVersion": "3.100.19.56601"
  3650. },
  3651. "Microsoft.AspNetCore.Server.Kestrel.dll": {
  3652. "assemblyVersion": "3.1.0.0",
  3653. "fileVersion": "3.100.19.56601"
  3654. },
  3655. "Microsoft.AspNetCore.Session.dll": {
  3656. "assemblyVersion": "3.1.0.0",
  3657. "fileVersion": "3.100.19.56601"
  3658. },
  3659. "Microsoft.AspNetCore.SignalR.Common.dll": {
  3660. "assemblyVersion": "3.1.0.0",
  3661. "fileVersion": "3.100.19.56601"
  3662. },
  3663. "Microsoft.AspNetCore.SignalR.Core.dll": {
  3664. "assemblyVersion": "3.1.0.0",
  3665. "fileVersion": "3.100.19.56601"
  3666. },
  3667. "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {
  3668. "assemblyVersion": "3.1.0.0",
  3669. "fileVersion": "3.100.19.56601"
  3670. },
  3671. "Microsoft.AspNetCore.SignalR.dll": {
  3672. "assemblyVersion": "3.1.0.0",
  3673. "fileVersion": "3.100.19.56601"
  3674. },
  3675. "Microsoft.AspNetCore.StaticFiles.dll": {
  3676. "assemblyVersion": "3.1.0.0",
  3677. "fileVersion": "3.100.19.56601"
  3678. },
  3679. "Microsoft.AspNetCore.WebSockets.dll": {
  3680. "assemblyVersion": "3.1.0.0",
  3681. "fileVersion": "3.100.19.56601"
  3682. },
  3683. "Microsoft.AspNetCore.WebUtilities.dll": {
  3684. "assemblyVersion": "3.1.0.0",
  3685. "fileVersion": "3.100.19.56601"
  3686. },
  3687. "Microsoft.AspNetCore.dll": {
  3688. "assemblyVersion": "3.1.0.0",
  3689. "fileVersion": "3.100.19.56601"
  3690. },
  3691. "Microsoft.Extensions.Caching.Abstractions.dll": {
  3692. "assemblyVersion": "3.1.0.0",
  3693. "fileVersion": "3.100.19.56504"
  3694. },
  3695. "Microsoft.Extensions.Caching.Memory.dll": {
  3696. "assemblyVersion": "3.1.0.0",
  3697. "fileVersion": "3.100.19.56504"
  3698. },
  3699. "Microsoft.Extensions.Configuration.Abstractions.dll": {
  3700. "assemblyVersion": "3.1.0.0",
  3701. "fileVersion": "3.100.19.56504"
  3702. },
  3703. "Microsoft.Extensions.Configuration.Binder.dll": {
  3704. "assemblyVersion": "3.1.0.0",
  3705. "fileVersion": "3.100.19.56504"
  3706. },
  3707. "Microsoft.Extensions.Configuration.CommandLine.dll": {
  3708. "assemblyVersion": "3.1.0.0",
  3709. "fileVersion": "3.100.19.56504"
  3710. },
  3711. "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  3712. "assemblyVersion": "3.1.0.0",
  3713. "fileVersion": "3.100.19.56504"
  3714. },
  3715. "Microsoft.Extensions.Configuration.FileExtensions.dll": {
  3716. "assemblyVersion": "3.1.0.0",
  3717. "fileVersion": "3.100.19.56504"
  3718. },
  3719. "Microsoft.Extensions.Configuration.Ini.dll": {
  3720. "assemblyVersion": "3.1.0.0",
  3721. "fileVersion": "3.100.19.56504"
  3722. },
  3723. "Microsoft.Extensions.Configuration.Json.dll": {
  3724. "assemblyVersion": "3.1.0.0",
  3725. "fileVersion": "3.100.19.56504"
  3726. },
  3727. "Microsoft.Extensions.Configuration.KeyPerFile.dll": {
  3728. "assemblyVersion": "3.1.0.0",
  3729. "fileVersion": "3.100.19.56504"
  3730. },
  3731. "Microsoft.Extensions.Configuration.UserSecrets.dll": {
  3732. "assemblyVersion": "3.1.0.0",
  3733. "fileVersion": "3.100.19.56504"
  3734. },
  3735. "Microsoft.Extensions.Configuration.Xml.dll": {
  3736. "assemblyVersion": "3.1.0.0",
  3737. "fileVersion": "3.100.19.56504"
  3738. },
  3739. "Microsoft.Extensions.Configuration.dll": {
  3740. "assemblyVersion": "3.1.0.0",
  3741. "fileVersion": "3.100.19.56504"
  3742. },
  3743. "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  3744. "assemblyVersion": "3.1.0.0",
  3745. "fileVersion": "3.100.19.56504"
  3746. },
  3747. "Microsoft.Extensions.DependencyInjection.dll": {
  3748. "assemblyVersion": "3.1.0.0",
  3749. "fileVersion": "3.100.19.56504"
  3750. },
  3751. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {
  3752. "assemblyVersion": "3.1.0.0",
  3753. "fileVersion": "3.100.19.56504"
  3754. },
  3755. "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {
  3756. "assemblyVersion": "3.1.0.0",
  3757. "fileVersion": "3.100.19.56504"
  3758. },
  3759. "Microsoft.Extensions.FileProviders.Abstractions.dll": {
  3760. "assemblyVersion": "3.1.0.0",
  3761. "fileVersion": "3.100.19.56504"
  3762. },
  3763. "Microsoft.Extensions.FileProviders.Composite.dll": {
  3764. "assemblyVersion": "3.1.0.0",
  3765. "fileVersion": "3.100.19.56504"
  3766. },
  3767. "Microsoft.Extensions.FileProviders.Embedded.dll": {
  3768. "assemblyVersion": "3.1.0.0",
  3769. "fileVersion": "3.100.19.56504"
  3770. },
  3771. "Microsoft.Extensions.FileProviders.Physical.dll": {
  3772. "assemblyVersion": "3.1.0.0",
  3773. "fileVersion": "3.100.19.56504"
  3774. },
  3775. "Microsoft.Extensions.FileSystemGlobbing.dll": {
  3776. "assemblyVersion": "3.1.0.0",
  3777. "fileVersion": "3.100.19.56504"
  3778. },
  3779. "Microsoft.Extensions.Hosting.Abstractions.dll": {
  3780. "assemblyVersion": "3.1.0.0",
  3781. "fileVersion": "3.100.19.56504"
  3782. },
  3783. "Microsoft.Extensions.Hosting.dll": {
  3784. "assemblyVersion": "3.1.0.0",
  3785. "fileVersion": "3.100.19.56504"
  3786. },
  3787. "Microsoft.Extensions.Http.dll": {
  3788. "assemblyVersion": "3.1.0.0",
  3789. "fileVersion": "3.100.19.56504"
  3790. },
  3791. "Microsoft.Extensions.Identity.Core.dll": {
  3792. "assemblyVersion": "3.1.0.0",
  3793. "fileVersion": "3.100.19.56601"
  3794. },
  3795. "Microsoft.Extensions.Identity.Stores.dll": {
  3796. "assemblyVersion": "3.1.0.0",
  3797. "fileVersion": "3.100.19.56601"
  3798. },
  3799. "Microsoft.Extensions.Localization.Abstractions.dll": {
  3800. "assemblyVersion": "3.1.0.0",
  3801. "fileVersion": "3.100.19.56504"
  3802. },
  3803. "Microsoft.Extensions.Localization.dll": {
  3804. "assemblyVersion": "3.1.0.0",
  3805. "fileVersion": "3.100.19.56504"
  3806. },
  3807. "Microsoft.Extensions.Logging.Abstractions.dll": {
  3808. "assemblyVersion": "3.1.0.0",
  3809. "fileVersion": "3.100.19.56504"
  3810. },
  3811. "Microsoft.Extensions.Logging.Configuration.dll": {
  3812. "assemblyVersion": "3.1.0.0",
  3813. "fileVersion": "3.100.19.56504"
  3814. },
  3815. "Microsoft.Extensions.Logging.Console.dll": {
  3816. "assemblyVersion": "3.1.0.0",
  3817. "fileVersion": "3.100.19.56504"
  3818. },
  3819. "Microsoft.Extensions.Logging.Debug.dll": {
  3820. "assemblyVersion": "3.1.0.0",
  3821. "fileVersion": "3.100.19.56504"
  3822. },
  3823. "Microsoft.Extensions.Logging.EventLog.dll": {
  3824. "assemblyVersion": "3.1.0.0",
  3825. "fileVersion": "3.100.19.56504"
  3826. },
  3827. "Microsoft.Extensions.Logging.EventSource.dll": {
  3828. "assemblyVersion": "3.1.0.0",
  3829. "fileVersion": "3.100.19.56504"
  3830. },
  3831. "Microsoft.Extensions.Logging.TraceSource.dll": {
  3832. "assemblyVersion": "3.1.0.0",
  3833. "fileVersion": "3.100.19.56504"
  3834. },
  3835. "Microsoft.Extensions.Logging.dll": {
  3836. "assemblyVersion": "3.1.0.0",
  3837. "fileVersion": "3.100.19.56504"
  3838. },
  3839. "Microsoft.Extensions.ObjectPool.dll": {
  3840. "assemblyVersion": "3.1.0.0",
  3841. "fileVersion": "3.100.19.56504"
  3842. },
  3843. "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  3844. "assemblyVersion": "3.1.0.0",
  3845. "fileVersion": "3.100.19.56504"
  3846. },
  3847. "Microsoft.Extensions.Options.DataAnnotations.dll": {
  3848. "assemblyVersion": "3.1.0.0",
  3849. "fileVersion": "3.100.19.56504"
  3850. },
  3851. "Microsoft.Extensions.Options.dll": {
  3852. "assemblyVersion": "3.1.0.0",
  3853. "fileVersion": "3.100.19.56504"
  3854. },
  3855. "Microsoft.Extensions.Primitives.dll": {
  3856. "assemblyVersion": "3.1.0.0",
  3857. "fileVersion": "3.100.19.56504"
  3858. },
  3859. "Microsoft.Extensions.WebEncoders.dll": {
  3860. "assemblyVersion": "3.1.0.0",
  3861. "fileVersion": "3.100.19.56504"
  3862. },
  3863. "Microsoft.JSInterop.dll": {
  3864. "assemblyVersion": "3.1.0.0",
  3865. "fileVersion": "3.100.19.56504"
  3866. },
  3867. "Microsoft.Net.Http.Headers.dll": {
  3868. "assemblyVersion": "3.1.0.0",
  3869. "fileVersion": "3.100.19.56601"
  3870. },
  3871. "System.Diagnostics.EventLog.dll": {
  3872. "assemblyVersion": "4.0.2.0",
  3873. "fileVersion": "4.700.19.56404"
  3874. },
  3875. "System.Security.Cryptography.Pkcs.dll": {
  3876. "assemblyVersion": "4.1.1.0",
  3877. "fileVersion": "4.700.19.56404"
  3878. },
  3879. "System.Security.Cryptography.Xml.dll": {
  3880. "assemblyVersion": "4.0.3.0",
  3881. "fileVersion": "4.700.19.56404"
  3882. }
  3883. }
  3884. },
  3885. "log4net/2.0.11": {
  3886. "dependencies": {
  3887. "System.Configuration.ConfigurationManager": "5.0.0"
  3888. },
  3889. "runtime": {
  3890. "lib/netstandard2.0/log4net.dll": {
  3891. "assemblyVersion": "2.0.11.0",
  3892. "fileVersion": "2.0.11.0"
  3893. }
  3894. }
  3895. },
  3896. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  3897. "dependencies": {
  3898. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3899. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  3900. "Microsoft.Extensions.Options": "2.2.0"
  3901. }
  3902. },
  3903. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  3904. "dependencies": {
  3905. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  3906. "Microsoft.AspNetCore.Http": "2.2.0",
  3907. "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
  3908. }
  3909. },
  3910. "Microsoft.AspNetCore.Authorization/2.2.0": {
  3911. "dependencies": {
  3912. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  3913. "Microsoft.Extensions.Options": "2.2.0"
  3914. }
  3915. },
  3916. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  3917. "dependencies": {
  3918. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  3919. "Microsoft.AspNetCore.Authorization": "2.2.0"
  3920. }
  3921. },
  3922. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3923. "dependencies": {
  3924. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  3925. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3926. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  3927. }
  3928. },
  3929. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3930. "dependencies": {
  3931. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  3932. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  3933. }
  3934. },
  3935. "Microsoft.AspNetCore.Http/2.2.0": {
  3936. "dependencies": {
  3937. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3938. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  3939. "Microsoft.Extensions.ObjectPool": "2.2.0",
  3940. "Microsoft.Extensions.Options": "2.2.0",
  3941. "Microsoft.Net.Http.Headers": "2.2.0"
  3942. }
  3943. },
  3944. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3945. "dependencies": {
  3946. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  3947. "System.Text.Encodings.Web": "4.5.0"
  3948. }
  3949. },
  3950. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  3951. "dependencies": {
  3952. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  3953. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  3954. "Microsoft.Net.Http.Headers": "2.2.0",
  3955. "System.Buffers": "4.5.0"
  3956. }
  3957. },
  3958. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3959. "dependencies": {
  3960. "Microsoft.Extensions.Primitives": "2.2.0"
  3961. }
  3962. },
  3963. "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
  3964. "dependencies": {
  3965. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  3966. "Microsoft.Net.Http.Headers": "2.2.0"
  3967. }
  3968. },
  3969. "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
  3970. "dependencies": {
  3971. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  3972. "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
  3973. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  3974. "Microsoft.AspNetCore.Http": "2.2.0",
  3975. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  3976. "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0",
  3977. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0",
  3978. "Microsoft.AspNetCore.Routing": "2.2.0",
  3979. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  3980. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  3981. "Microsoft.Extensions.DependencyModel": "2.1.0",
  3982. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  3983. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  3984. "System.Diagnostics.DiagnosticSource": "4.5.0",
  3985. "System.Threading.Tasks.Extensions": "4.5.1"
  3986. }
  3987. },
  3988. "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": {
  3989. "dependencies": {
  3990. "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
  3991. }
  3992. },
  3993. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
  3994. "dependencies": {
  3995. "Microsoft.Extensions.Primitives": "2.2.0"
  3996. }
  3997. },
  3998. "Microsoft.AspNetCore.Routing/2.2.0": {
  3999. "dependencies": {
  4000. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  4001. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  4002. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  4003. "Microsoft.Extensions.ObjectPool": "2.2.0",
  4004. "Microsoft.Extensions.Options": "2.2.0"
  4005. }
  4006. },
  4007. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  4008. "dependencies": {
  4009. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  4010. }
  4011. },
  4012. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  4013. "dependencies": {
  4014. "Microsoft.Net.Http.Headers": "2.2.0",
  4015. "System.Text.Encodings.Web": "4.5.0"
  4016. }
  4017. },
  4018. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  4019. "dependencies": {
  4020. "System.AppContext": "4.1.0",
  4021. "System.Collections": "4.0.11",
  4022. "System.IO": "4.1.0",
  4023. "System.IO.FileSystem": "4.0.1",
  4024. "System.Reflection.TypeExtensions": "4.1.0",
  4025. "System.Runtime.Extensions": "4.1.0",
  4026. "System.Runtime.InteropServices": "4.1.0",
  4027. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  4028. },
  4029. "runtime": {
  4030. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {
  4031. "assemblyVersion": "2.1.0.0",
  4032. "fileVersion": "2.1.0.0"
  4033. }
  4034. }
  4035. },
  4036. "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
  4037. "dependencies": {
  4038. "Microsoft.Extensions.Primitives": "2.2.0"
  4039. }
  4040. },
  4041. "Microsoft.Extensions.DependencyInjection/2.2.0": {
  4042. "dependencies": {
  4043. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
  4044. }
  4045. },
  4046. "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {},
  4047. "Microsoft.Extensions.DependencyModel/2.1.0": {
  4048. "dependencies": {
  4049. "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
  4050. "Newtonsoft.Json": "13.0.1",
  4051. "System.Diagnostics.Debug": "4.0.11",
  4052. "System.Dynamic.Runtime": "4.0.11",
  4053. "System.Linq": "4.1.0"
  4054. },
  4055. "runtime": {
  4056. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {
  4057. "assemblyVersion": "2.1.0.0",
  4058. "fileVersion": "2.1.0.0"
  4059. }
  4060. }
  4061. },
  4062. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  4063. "dependencies": {
  4064. "Microsoft.Extensions.Primitives": "2.2.0"
  4065. }
  4066. },
  4067. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  4068. "dependencies": {
  4069. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  4070. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  4071. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  4072. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  4073. }
  4074. },
  4075. "Microsoft.Extensions.Logging.Abstractions/2.2.0": {},
  4076. "Microsoft.Extensions.ObjectPool/2.2.0": {},
  4077. "Microsoft.Extensions.Options/2.2.0": {
  4078. "dependencies": {
  4079. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  4080. "Microsoft.Extensions.Primitives": "2.2.0",
  4081. "System.ComponentModel.Annotations": "4.5.0"
  4082. }
  4083. },
  4084. "Microsoft.Extensions.Primitives/2.2.0": {
  4085. "dependencies": {
  4086. "System.Memory": "4.5.1",
  4087. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  4088. }
  4089. },
  4090. "Microsoft.Net.Http.Headers/2.2.0": {
  4091. "dependencies": {
  4092. "Microsoft.Extensions.Primitives": "2.2.0",
  4093. "System.Buffers": "4.5.0"
  4094. }
  4095. },
  4096. "Microsoft.NETCore.Platforms/5.0.0": {},
  4097. "Microsoft.NETCore.Targets/1.0.1": {},
  4098. "Microsoft.Win32.Registry/5.0.0": {
  4099. "dependencies": {
  4100. "System.Security.AccessControl": "5.0.0",
  4101. "System.Security.Principal.Windows": "5.0.0"
  4102. },
  4103. "runtime": {
  4104. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  4105. "assemblyVersion": "5.0.0.0",
  4106. "fileVersion": "5.0.20.51904"
  4107. }
  4108. }
  4109. },
  4110. "Microsoft.Win32.SystemEvents/5.0.0": {
  4111. "dependencies": {
  4112. "Microsoft.NETCore.Platforms": "5.0.0"
  4113. },
  4114. "runtime": {
  4115. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  4116. "assemblyVersion": "5.0.0.0",
  4117. "fileVersion": "5.0.20.51904"
  4118. }
  4119. }
  4120. },
  4121. "Newtonsoft.Json/13.0.1": {
  4122. "runtime": {
  4123. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  4124. "assemblyVersion": "13.0.0.0",
  4125. "fileVersion": "13.0.1.25517"
  4126. }
  4127. }
  4128. },
  4129. "Oracle.ManagedDataAccess.Core/2.19.90": {
  4130. "runtime": {
  4131. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {
  4132. "assemblyVersion": "2.0.19.1",
  4133. "fileVersion": "2.0.19.1"
  4134. }
  4135. }
  4136. },
  4137. "Pipelines.Sockets.Unofficial/2.2.0": {
  4138. "dependencies": {
  4139. "System.IO.Pipelines": "5.0.0"
  4140. },
  4141. "runtime": {
  4142. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  4143. "assemblyVersion": "1.0.0.0",
  4144. "fileVersion": "2.2.0.45337"
  4145. }
  4146. }
  4147. },
  4148. "runtime.any.System.Collections/4.0.11": {
  4149. "dependencies": {
  4150. "System.Runtime": "4.1.0"
  4151. }
  4152. },
  4153. "runtime.any.System.Globalization/4.0.11": {},
  4154. "runtime.any.System.IO/4.1.0": {},
  4155. "runtime.any.System.Reflection/4.1.0": {},
  4156. "runtime.any.System.Reflection.Extensions/4.0.1": {},
  4157. "runtime.any.System.Reflection.Primitives/4.0.1": {},
  4158. "runtime.any.System.Resources.ResourceManager/4.0.1": {},
  4159. "runtime.any.System.Runtime/4.1.0": {
  4160. "dependencies": {
  4161. "System.Private.Uri": "4.0.1"
  4162. }
  4163. },
  4164. "runtime.any.System.Runtime.Handles/4.0.1": {},
  4165. "runtime.any.System.Runtime.InteropServices/4.1.0": {},
  4166. "runtime.any.System.Text.Encoding/4.0.11": {},
  4167. "runtime.any.System.Text.Encoding.Extensions/4.0.11": {},
  4168. "runtime.any.System.Threading.Tasks/4.0.11": {},
  4169. "runtime.native.System/4.0.0": {
  4170. "dependencies": {
  4171. "Microsoft.NETCore.Platforms": "5.0.0",
  4172. "Microsoft.NETCore.Targets": "1.0.1"
  4173. }
  4174. },
  4175. "runtime.native.System.Security.Cryptography/4.0.0": {
  4176. "dependencies": {
  4177. "Microsoft.NETCore.Platforms": "5.0.0",
  4178. "Microsoft.NETCore.Targets": "1.0.1"
  4179. }
  4180. },
  4181. "runtime.unix.System.Diagnostics.Debug/4.0.11": {
  4182. "dependencies": {
  4183. "runtime.native.System": "4.0.0"
  4184. }
  4185. },
  4186. "runtime.unix.System.IO.FileSystem/4.0.1": {
  4187. "dependencies": {
  4188. "System.Collections": "4.0.11",
  4189. "System.Diagnostics.Debug": "4.0.11",
  4190. "System.IO": "4.1.0",
  4191. "System.IO.FileSystem.Primitives": "4.0.1",
  4192. "System.Resources.ResourceManager": "4.0.1",
  4193. "System.Runtime": "4.1.0",
  4194. "System.Runtime.Extensions": "4.1.0",
  4195. "System.Runtime.Handles": "4.0.1",
  4196. "System.Runtime.InteropServices": "4.1.0",
  4197. "System.Text.Encoding": "4.0.11",
  4198. "System.Text.Encoding.Extensions": "4.0.11",
  4199. "System.Threading": "4.0.11",
  4200. "System.Threading.Tasks": "4.0.11",
  4201. "runtime.native.System": "4.0.0"
  4202. }
  4203. },
  4204. "runtime.unix.System.Private.Uri/4.0.1": {
  4205. "dependencies": {
  4206. "runtime.native.System": "4.0.0"
  4207. }
  4208. },
  4209. "runtime.unix.System.Runtime.Extensions/4.1.0": {
  4210. "dependencies": {
  4211. "System.Private.Uri": "4.0.1",
  4212. "runtime.native.System": "4.0.0",
  4213. "runtime.native.System.Security.Cryptography": "4.0.0"
  4214. }
  4215. },
  4216. "StackExchange.Redis/2.2.88": {
  4217. "dependencies": {
  4218. "Pipelines.Sockets.Unofficial": "2.2.0",
  4219. "System.Diagnostics.PerformanceCounter": "5.0.0"
  4220. },
  4221. "runtime": {
  4222. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  4223. "assemblyVersion": "2.0.0.0",
  4224. "fileVersion": "2.2.88.56325"
  4225. }
  4226. }
  4227. },
  4228. "System.AppContext/4.1.0": {
  4229. "dependencies": {
  4230. "System.Runtime": "4.1.0"
  4231. }
  4232. },
  4233. "System.Buffers/4.5.0": {},
  4234. "System.Collections/4.0.11": {
  4235. "dependencies": {
  4236. "Microsoft.NETCore.Platforms": "5.0.0",
  4237. "Microsoft.NETCore.Targets": "1.0.1",
  4238. "System.Runtime": "4.1.0",
  4239. "runtime.any.System.Collections": "4.0.11"
  4240. }
  4241. },
  4242. "System.ComponentModel.Annotations/4.5.0": {},
  4243. "System.Configuration.ConfigurationManager/5.0.0": {
  4244. "dependencies": {
  4245. "System.Security.Cryptography.ProtectedData": "5.0.0",
  4246. "System.Security.Permissions": "5.0.0"
  4247. },
  4248. "runtime": {
  4249. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  4250. "assemblyVersion": "5.0.0.0",
  4251. "fileVersion": "5.0.20.51904"
  4252. }
  4253. }
  4254. },
  4255. "System.Diagnostics.Debug/4.0.11": {
  4256. "dependencies": {
  4257. "Microsoft.NETCore.Platforms": "5.0.0",
  4258. "Microsoft.NETCore.Targets": "1.0.1",
  4259. "System.Runtime": "4.1.0",
  4260. "runtime.unix.System.Diagnostics.Debug": "4.0.11"
  4261. }
  4262. },
  4263. "System.Diagnostics.DiagnosticSource/4.5.0": {},
  4264. "System.Diagnostics.PerformanceCounter/5.0.0": {
  4265. "dependencies": {
  4266. "Microsoft.NETCore.Platforms": "5.0.0",
  4267. "Microsoft.Win32.Registry": "5.0.0",
  4268. "System.Configuration.ConfigurationManager": "5.0.0",
  4269. "System.Security.Principal.Windows": "5.0.0"
  4270. },
  4271. "runtime": {
  4272. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  4273. "assemblyVersion": "5.0.0.0",
  4274. "fileVersion": "5.0.20.51904"
  4275. }
  4276. }
  4277. },
  4278. "System.Drawing.Common/5.0.0": {
  4279. "dependencies": {
  4280. "Microsoft.Win32.SystemEvents": "5.0.0"
  4281. },
  4282. "runtime": {
  4283. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  4284. "assemblyVersion": "5.0.0.0",
  4285. "fileVersion": "5.0.20.51904"
  4286. }
  4287. }
  4288. },
  4289. "System.Dynamic.Runtime/4.0.11": {
  4290. "dependencies": {
  4291. "System.Collections": "4.0.11",
  4292. "System.Diagnostics.Debug": "4.0.11",
  4293. "System.Globalization": "4.0.11",
  4294. "System.Linq": "4.1.0",
  4295. "System.Linq.Expressions": "4.1.0",
  4296. "System.ObjectModel": "4.0.12",
  4297. "System.Reflection": "4.1.0",
  4298. "System.Reflection.Emit": "4.0.1",
  4299. "System.Reflection.Emit.ILGeneration": "4.0.1",
  4300. "System.Reflection.Primitives": "4.0.1",
  4301. "System.Reflection.TypeExtensions": "4.1.0",
  4302. "System.Resources.ResourceManager": "4.0.1",
  4303. "System.Runtime": "4.1.0",
  4304. "System.Runtime.Extensions": "4.1.0",
  4305. "System.Threading": "4.0.11"
  4306. }
  4307. },
  4308. "System.Globalization/4.0.11": {
  4309. "dependencies": {
  4310. "Microsoft.NETCore.Platforms": "5.0.0",
  4311. "Microsoft.NETCore.Targets": "1.0.1",
  4312. "System.Runtime": "4.1.0",
  4313. "runtime.any.System.Globalization": "4.0.11"
  4314. }
  4315. },
  4316. "System.IO/4.1.0": {
  4317. "dependencies": {
  4318. "Microsoft.NETCore.Platforms": "5.0.0",
  4319. "Microsoft.NETCore.Targets": "1.0.1",
  4320. "System.Runtime": "4.1.0",
  4321. "System.Text.Encoding": "4.0.11",
  4322. "System.Threading.Tasks": "4.0.11",
  4323. "runtime.any.System.IO": "4.1.0"
  4324. }
  4325. },
  4326. "System.IO.FileSystem/4.0.1": {
  4327. "dependencies": {
  4328. "Microsoft.NETCore.Platforms": "5.0.0",
  4329. "Microsoft.NETCore.Targets": "1.0.1",
  4330. "System.IO": "4.1.0",
  4331. "System.IO.FileSystem.Primitives": "4.0.1",
  4332. "System.Runtime": "4.1.0",
  4333. "System.Runtime.Handles": "4.0.1",
  4334. "System.Text.Encoding": "4.0.11",
  4335. "System.Threading.Tasks": "4.0.11",
  4336. "runtime.unix.System.IO.FileSystem": "4.0.1"
  4337. }
  4338. },
  4339. "System.IO.FileSystem.Primitives/4.0.1": {
  4340. "dependencies": {
  4341. "System.Runtime": "4.1.0"
  4342. }
  4343. },
  4344. "System.IO.Pipelines/5.0.0": {
  4345. "runtime": {
  4346. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  4347. "assemblyVersion": "5.0.0.0",
  4348. "fileVersion": "5.0.20.51904"
  4349. }
  4350. }
  4351. },
  4352. "System.Linq/4.1.0": {
  4353. "dependencies": {
  4354. "System.Collections": "4.0.11",
  4355. "System.Diagnostics.Debug": "4.0.11",
  4356. "System.Resources.ResourceManager": "4.0.1",
  4357. "System.Runtime": "4.1.0",
  4358. "System.Runtime.Extensions": "4.1.0"
  4359. }
  4360. },
  4361. "System.Linq.Expressions/4.1.0": {
  4362. "dependencies": {
  4363. "System.Collections": "4.0.11",
  4364. "System.Diagnostics.Debug": "4.0.11",
  4365. "System.Globalization": "4.0.11",
  4366. "System.IO": "4.1.0",
  4367. "System.Linq": "4.1.0",
  4368. "System.ObjectModel": "4.0.12",
  4369. "System.Reflection": "4.1.0",
  4370. "System.Reflection.Emit": "4.0.1",
  4371. "System.Reflection.Emit.ILGeneration": "4.0.1",
  4372. "System.Reflection.Emit.Lightweight": "4.0.1",
  4373. "System.Reflection.Extensions": "4.0.1",
  4374. "System.Reflection.Primitives": "4.0.1",
  4375. "System.Reflection.TypeExtensions": "4.1.0",
  4376. "System.Resources.ResourceManager": "4.0.1",
  4377. "System.Runtime": "4.1.0",
  4378. "System.Runtime.Extensions": "4.1.0",
  4379. "System.Threading": "4.0.11"
  4380. }
  4381. },
  4382. "System.Memory/4.5.1": {},
  4383. "System.ObjectModel/4.0.12": {
  4384. "dependencies": {
  4385. "System.Collections": "4.0.11",
  4386. "System.Diagnostics.Debug": "4.0.11",
  4387. "System.Resources.ResourceManager": "4.0.1",
  4388. "System.Runtime": "4.1.0",
  4389. "System.Threading": "4.0.11"
  4390. }
  4391. },
  4392. "System.Private.Uri/4.0.1": {
  4393. "dependencies": {
  4394. "Microsoft.NETCore.Platforms": "5.0.0",
  4395. "Microsoft.NETCore.Targets": "1.0.1",
  4396. "runtime.unix.System.Private.Uri": "4.0.1"
  4397. }
  4398. },
  4399. "System.Reflection/4.1.0": {
  4400. "dependencies": {
  4401. "Microsoft.NETCore.Platforms": "5.0.0",
  4402. "Microsoft.NETCore.Targets": "1.0.1",
  4403. "System.IO": "4.1.0",
  4404. "System.Reflection.Primitives": "4.0.1",
  4405. "System.Runtime": "4.1.0",
  4406. "runtime.any.System.Reflection": "4.1.0"
  4407. }
  4408. },
  4409. "System.Reflection.Emit/4.0.1": {
  4410. "dependencies": {
  4411. "System.IO": "4.1.0",
  4412. "System.Reflection": "4.1.0",
  4413. "System.Reflection.Emit.ILGeneration": "4.0.1",
  4414. "System.Reflection.Primitives": "4.0.1",
  4415. "System.Runtime": "4.1.0"
  4416. }
  4417. },
  4418. "System.Reflection.Emit.ILGeneration/4.0.1": {
  4419. "dependencies": {
  4420. "System.Reflection": "4.1.0",
  4421. "System.Reflection.Primitives": "4.0.1",
  4422. "System.Runtime": "4.1.0"
  4423. }
  4424. },
  4425. "System.Reflection.Emit.Lightweight/4.0.1": {
  4426. "dependencies": {
  4427. "System.Reflection": "4.1.0",
  4428. "System.Reflection.Emit.ILGeneration": "4.0.1",
  4429. "System.Reflection.Primitives": "4.0.1",
  4430. "System.Runtime": "4.1.0"
  4431. }
  4432. },
  4433. "System.Reflection.Extensions/4.0.1": {
  4434. "dependencies": {
  4435. "Microsoft.NETCore.Platforms": "5.0.0",
  4436. "Microsoft.NETCore.Targets": "1.0.1",
  4437. "System.Reflection": "4.1.0",
  4438. "System.Runtime": "4.1.0",
  4439. "runtime.any.System.Reflection.Extensions": "4.0.1"
  4440. }
  4441. },
  4442. "System.Reflection.Primitives/4.0.1": {
  4443. "dependencies": {
  4444. "Microsoft.NETCore.Platforms": "5.0.0",
  4445. "Microsoft.NETCore.Targets": "1.0.1",
  4446. "System.Runtime": "4.1.0",
  4447. "runtime.any.System.Reflection.Primitives": "4.0.1"
  4448. }
  4449. },
  4450. "System.Reflection.TypeExtensions/4.1.0": {
  4451. "dependencies": {
  4452. "System.Reflection": "4.1.0",
  4453. "System.Runtime": "4.1.0"
  4454. }
  4455. },
  4456. "System.Resources.ResourceManager/4.0.1": {
  4457. "dependencies": {
  4458. "Microsoft.NETCore.Platforms": "5.0.0",
  4459. "Microsoft.NETCore.Targets": "1.0.1",
  4460. "System.Globalization": "4.0.11",
  4461. "System.Reflection": "4.1.0",
  4462. "System.Runtime": "4.1.0",
  4463. "runtime.any.System.Resources.ResourceManager": "4.0.1"
  4464. }
  4465. },
  4466. "System.Runtime/4.1.0": {
  4467. "dependencies": {
  4468. "Microsoft.NETCore.Platforms": "5.0.0",
  4469. "Microsoft.NETCore.Targets": "1.0.1",
  4470. "runtime.any.System.Runtime": "4.1.0"
  4471. }
  4472. },
  4473. "System.Runtime.CompilerServices.Unsafe/4.5.1": {},
  4474. "System.Runtime.Extensions/4.1.0": {
  4475. "dependencies": {
  4476. "Microsoft.NETCore.Platforms": "5.0.0",
  4477. "Microsoft.NETCore.Targets": "1.0.1",
  4478. "System.Runtime": "4.1.0",
  4479. "runtime.unix.System.Runtime.Extensions": "4.1.0"
  4480. }
  4481. },
  4482. "System.Runtime.Handles/4.0.1": {
  4483. "dependencies": {
  4484. "Microsoft.NETCore.Platforms": "5.0.0",
  4485. "Microsoft.NETCore.Targets": "1.0.1",
  4486. "System.Runtime": "4.1.0",
  4487. "runtime.any.System.Runtime.Handles": "4.0.1"
  4488. }
  4489. },
  4490. "System.Runtime.InteropServices/4.1.0": {
  4491. "dependencies": {
  4492. "Microsoft.NETCore.Platforms": "5.0.0",
  4493. "Microsoft.NETCore.Targets": "1.0.1",
  4494. "System.Reflection": "4.1.0",
  4495. "System.Reflection.Primitives": "4.0.1",
  4496. "System.Runtime": "4.1.0",
  4497. "System.Runtime.Handles": "4.0.1",
  4498. "runtime.any.System.Runtime.InteropServices": "4.1.0"
  4499. }
  4500. },
  4501. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  4502. "dependencies": {
  4503. "Microsoft.NETCore.Platforms": "5.0.0",
  4504. "System.Reflection": "4.1.0",
  4505. "System.Resources.ResourceManager": "4.0.1",
  4506. "System.Runtime": "4.1.0",
  4507. "System.Runtime.InteropServices": "4.1.0",
  4508. "System.Threading": "4.0.11",
  4509. "runtime.native.System": "4.0.0"
  4510. }
  4511. },
  4512. "System.Security.AccessControl/5.0.0": {
  4513. "dependencies": {
  4514. "Microsoft.NETCore.Platforms": "5.0.0",
  4515. "System.Security.Principal.Windows": "5.0.0"
  4516. },
  4517. "runtime": {
  4518. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  4519. "assemblyVersion": "5.0.0.0",
  4520. "fileVersion": "5.0.20.51904"
  4521. }
  4522. }
  4523. },
  4524. "System.Security.Cryptography.ProtectedData/5.0.0": {
  4525. "runtime": {
  4526. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  4527. "assemblyVersion": "5.0.0.0",
  4528. "fileVersion": "5.0.20.51904"
  4529. }
  4530. }
  4531. },
  4532. "System.Security.Permissions/5.0.0": {
  4533. "dependencies": {
  4534. "System.Security.AccessControl": "5.0.0",
  4535. "System.Windows.Extensions": "5.0.0"
  4536. },
  4537. "runtime": {
  4538. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  4539. "assemblyVersion": "5.0.0.0",
  4540. "fileVersion": "5.0.20.51904"
  4541. }
  4542. }
  4543. },
  4544. "System.Security.Principal.Windows/5.0.0": {
  4545. "runtime": {
  4546. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  4547. "assemblyVersion": "5.0.0.0",
  4548. "fileVersion": "5.0.20.51904"
  4549. }
  4550. }
  4551. },
  4552. "System.Text.Encoding/4.0.11": {
  4553. "dependencies": {
  4554. "Microsoft.NETCore.Platforms": "5.0.0",
  4555. "Microsoft.NETCore.Targets": "1.0.1",
  4556. "System.Runtime": "4.1.0",
  4557. "runtime.any.System.Text.Encoding": "4.0.11"
  4558. }
  4559. },
  4560. "System.Text.Encoding.Extensions/4.0.11": {
  4561. "dependencies": {
  4562. "Microsoft.NETCore.Platforms": "5.0.0",
  4563. "Microsoft.NETCore.Targets": "1.0.1",
  4564. "System.Runtime": "4.1.0",
  4565. "System.Text.Encoding": "4.0.11",
  4566. "runtime.any.System.Text.Encoding.Extensions": "4.0.11"
  4567. }
  4568. },
  4569. "System.Text.Encodings.Web/4.5.0": {},
  4570. "System.Threading/4.0.11": {
  4571. "dependencies": {
  4572. "System.Runtime": "4.1.0",
  4573. "System.Threading.Tasks": "4.0.11"
  4574. }
  4575. },
  4576. "System.Threading.Tasks/4.0.11": {
  4577. "dependencies": {
  4578. "Microsoft.NETCore.Platforms": "5.0.0",
  4579. "Microsoft.NETCore.Targets": "1.0.1",
  4580. "System.Runtime": "4.1.0",
  4581. "runtime.any.System.Threading.Tasks": "4.0.11"
  4582. }
  4583. },
  4584. "System.Threading.Tasks.Extensions/4.5.1": {},
  4585. "System.Windows.Extensions/5.0.0": {
  4586. "dependencies": {
  4587. "System.Drawing.Common": "5.0.0"
  4588. },
  4589. "runtime": {
  4590. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  4591. "assemblyVersion": "5.0.0.0",
  4592. "fileVersion": "5.0.20.51904"
  4593. }
  4594. }
  4595. },
  4596. "CommonObj/1.0.0": {
  4597. "dependencies": {
  4598. "StackExchange.Redis": "2.2.88",
  4599. "log4net": "2.0.11"
  4600. },
  4601. "runtime": {
  4602. "CommonObj.dll": {}
  4603. }
  4604. },
  4605. "GenPrizeCode/1.0.0.0": {
  4606. "runtime": {
  4607. "GenPrizeCode.dll": {
  4608. "assemblyVersion": "1.0.0.0",
  4609. "fileVersion": "1.0.0.0"
  4610. }
  4611. }
  4612. }
  4613. }
  4614. },
  4615. "libraries": {
  4616. "ApiProcessToken/1.0.0": {
  4617. "type": "project",
  4618. "serviceable": false,
  4619. "sha512": ""
  4620. },
  4621. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/3.1.0": {
  4622. "type": "runtimepack",
  4623. "serviceable": false,
  4624. "sha512": ""
  4625. },
  4626. "runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64/3.1.0": {
  4627. "type": "runtimepack",
  4628. "serviceable": false,
  4629. "sha512": ""
  4630. },
  4631. "log4net/2.0.11": {
  4632. "type": "package",
  4633. "serviceable": true,
  4634. "sha512": "sha512-4MEfp6dSN/Cl4XHRqBo8eOkhlH9AOt/ydmPRaj/FHuKHTNoPuKjbaT97aACmePpkW5QHQ+YudhYYvVStabOZmQ==",
  4635. "path": "log4net/2.0.11",
  4636. "hashPath": "log4net.2.0.11.nupkg.sha512"
  4637. },
  4638. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  4639. "type": "package",
  4640. "serviceable": true,
  4641. "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  4642. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  4643. "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512"
  4644. },
  4645. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  4646. "type": "package",
  4647. "serviceable": true,
  4648. "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==",
  4649. "path": "microsoft.aspnetcore.authentication.core/2.2.0",
  4650. "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512"
  4651. },
  4652. "Microsoft.AspNetCore.Authorization/2.2.0": {
  4653. "type": "package",
  4654. "serviceable": true,
  4655. "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
  4656. "path": "microsoft.aspnetcore.authorization/2.2.0",
  4657. "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512"
  4658. },
  4659. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  4660. "type": "package",
  4661. "serviceable": true,
  4662. "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
  4663. "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
  4664. "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512"
  4665. },
  4666. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  4667. "type": "package",
  4668. "serviceable": true,
  4669. "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  4670. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  4671. "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512"
  4672. },
  4673. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  4674. "type": "package",
  4675. "serviceable": true,
  4676. "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  4677. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  4678. "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512"
  4679. },
  4680. "Microsoft.AspNetCore.Http/2.2.0": {
  4681. "type": "package",
  4682. "serviceable": true,
  4683. "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  4684. "path": "microsoft.aspnetcore.http/2.2.0",
  4685. "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512"
  4686. },
  4687. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4688. "type": "package",
  4689. "serviceable": true,
  4690. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4691. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4692. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  4693. },
  4694. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  4695. "type": "package",
  4696. "serviceable": true,
  4697. "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  4698. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  4699. "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512"
  4700. },
  4701. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  4702. "type": "package",
  4703. "serviceable": true,
  4704. "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  4705. "path": "microsoft.aspnetcore.http.features/2.2.0",
  4706. "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
  4707. },
  4708. "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
  4709. "type": "package",
  4710. "serviceable": true,
  4711. "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==",
  4712. "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0",
  4713. "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512"
  4714. },
  4715. "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
  4716. "type": "package",
  4717. "serviceable": true,
  4718. "sha512": "sha512-ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==",
  4719. "path": "microsoft.aspnetcore.mvc.core/2.2.0",
  4720. "hashPath": "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512"
  4721. },
  4722. "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.2.0": {
  4723. "type": "package",
  4724. "serviceable": true,
  4725. "sha512": "sha512-4pUhKtqhaNqSeMRRyEw1kGjg/pNLczzd4VAsanMGI539sCdkl1JBaoFojZb1helVdUvX9a1Jo+lYXq0lnwB/GQ==",
  4726. "path": "microsoft.aspnetcore.mvc.formatters.xml/2.2.0",
  4727. "hashPath": "microsoft.aspnetcore.mvc.formatters.xml.2.2.0.nupkg.sha512"
  4728. },
  4729. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
  4730. "type": "package",
  4731. "serviceable": true,
  4732. "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==",
  4733. "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0",
  4734. "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512"
  4735. },
  4736. "Microsoft.AspNetCore.Routing/2.2.0": {
  4737. "type": "package",
  4738. "serviceable": true,
  4739. "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  4740. "path": "microsoft.aspnetcore.routing/2.2.0",
  4741. "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512"
  4742. },
  4743. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  4744. "type": "package",
  4745. "serviceable": true,
  4746. "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  4747. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  4748. "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512"
  4749. },
  4750. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  4751. "type": "package",
  4752. "serviceable": true,
  4753. "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  4754. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  4755. "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512"
  4756. },
  4757. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  4758. "type": "package",
  4759. "serviceable": true,
  4760. "sha512": "sha512-9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==",
  4761. "path": "microsoft.dotnet.platformabstractions/2.1.0",
  4762. "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512"
  4763. },
  4764. "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
  4765. "type": "package",
  4766. "serviceable": true,
  4767. "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==",
  4768. "path": "microsoft.extensions.configuration.abstractions/2.2.0",
  4769. "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512"
  4770. },
  4771. "Microsoft.Extensions.DependencyInjection/2.2.0": {
  4772. "type": "package",
  4773. "serviceable": true,
  4774. "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
  4775. "path": "microsoft.extensions.dependencyinjection/2.2.0",
  4776. "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512"
  4777. },
  4778. "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
  4779. "type": "package",
  4780. "serviceable": true,
  4781. "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==",
  4782. "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0",
  4783. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512"
  4784. },
  4785. "Microsoft.Extensions.DependencyModel/2.1.0": {
  4786. "type": "package",
  4787. "serviceable": true,
  4788. "sha512": "sha512-nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==",
  4789. "path": "microsoft.extensions.dependencymodel/2.1.0",
  4790. "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512"
  4791. },
  4792. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  4793. "type": "package",
  4794. "serviceable": true,
  4795. "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==",
  4796. "path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
  4797. "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512"
  4798. },
  4799. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  4800. "type": "package",
  4801. "serviceable": true,
  4802. "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  4803. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  4804. "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512"
  4805. },
  4806. "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
  4807. "type": "package",
  4808. "serviceable": true,
  4809. "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==",
  4810. "path": "microsoft.extensions.logging.abstractions/2.2.0",
  4811. "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512"
  4812. },
  4813. "Microsoft.Extensions.ObjectPool/2.2.0": {
  4814. "type": "package",
  4815. "serviceable": true,
  4816. "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  4817. "path": "microsoft.extensions.objectpool/2.2.0",
  4818. "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512"
  4819. },
  4820. "Microsoft.Extensions.Options/2.2.0": {
  4821. "type": "package",
  4822. "serviceable": true,
  4823. "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
  4824. "path": "microsoft.extensions.options/2.2.0",
  4825. "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512"
  4826. },
  4827. "Microsoft.Extensions.Primitives/2.2.0": {
  4828. "type": "package",
  4829. "serviceable": true,
  4830. "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==",
  4831. "path": "microsoft.extensions.primitives/2.2.0",
  4832. "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512"
  4833. },
  4834. "Microsoft.Net.Http.Headers/2.2.0": {
  4835. "type": "package",
  4836. "serviceable": true,
  4837. "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  4838. "path": "microsoft.net.http.headers/2.2.0",
  4839. "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512"
  4840. },
  4841. "Microsoft.NETCore.Platforms/5.0.0": {
  4842. "type": "package",
  4843. "serviceable": true,
  4844. "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4845. "path": "microsoft.netcore.platforms/5.0.0",
  4846. "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
  4847. },
  4848. "Microsoft.NETCore.Targets/1.0.1": {
  4849. "type": "package",
  4850. "serviceable": true,
  4851. "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
  4852. "path": "microsoft.netcore.targets/1.0.1",
  4853. "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512"
  4854. },
  4855. "Microsoft.Win32.Registry/5.0.0": {
  4856. "type": "package",
  4857. "serviceable": true,
  4858. "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  4859. "path": "microsoft.win32.registry/5.0.0",
  4860. "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
  4861. },
  4862. "Microsoft.Win32.SystemEvents/5.0.0": {
  4863. "type": "package",
  4864. "serviceable": true,
  4865. "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4866. "path": "microsoft.win32.systemevents/5.0.0",
  4867. "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
  4868. },
  4869. "Newtonsoft.Json/13.0.1": {
  4870. "type": "package",
  4871. "serviceable": true,
  4872. "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  4873. "path": "newtonsoft.json/13.0.1",
  4874. "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
  4875. },
  4876. "Oracle.ManagedDataAccess.Core/2.19.90": {
  4877. "type": "package",
  4878. "serviceable": true,
  4879. "sha512": "sha512-LJubyJGhnAJl4aoZfVva3QMnagOW7k0W5ma1b4Th42l80wx9+h3/jsfTpj6sXCph3VZGZbIsp294z9UNBfkb0Q==",
  4880. "path": "oracle.manageddataaccess.core/2.19.90",
  4881. "hashPath": "oracle.manageddataaccess.core.2.19.90.nupkg.sha512"
  4882. },
  4883. "Pipelines.Sockets.Unofficial/2.2.0": {
  4884. "type": "package",
  4885. "serviceable": true,
  4886. "sha512": "sha512-7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==",
  4887. "path": "pipelines.sockets.unofficial/2.2.0",
  4888. "hashPath": "pipelines.sockets.unofficial.2.2.0.nupkg.sha512"
  4889. },
  4890. "runtime.any.System.Collections/4.0.11": {
  4891. "type": "package",
  4892. "serviceable": true,
  4893. "sha512": "sha512-MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==",
  4894. "path": "runtime.any.system.collections/4.0.11",
  4895. "hashPath": "runtime.any.system.collections.4.0.11.nupkg.sha512"
  4896. },
  4897. "runtime.any.System.Globalization/4.0.11": {
  4898. "type": "package",
  4899. "serviceable": true,
  4900. "sha512": "sha512-cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==",
  4901. "path": "runtime.any.system.globalization/4.0.11",
  4902. "hashPath": "runtime.any.system.globalization.4.0.11.nupkg.sha512"
  4903. },
  4904. "runtime.any.System.IO/4.1.0": {
  4905. "type": "package",
  4906. "serviceable": true,
  4907. "sha512": "sha512-sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==",
  4908. "path": "runtime.any.system.io/4.1.0",
  4909. "hashPath": "runtime.any.system.io.4.1.0.nupkg.sha512"
  4910. },
  4911. "runtime.any.System.Reflection/4.1.0": {
  4912. "type": "package",
  4913. "serviceable": true,
  4914. "sha512": "sha512-eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==",
  4915. "path": "runtime.any.system.reflection/4.1.0",
  4916. "hashPath": "runtime.any.system.reflection.4.1.0.nupkg.sha512"
  4917. },
  4918. "runtime.any.System.Reflection.Extensions/4.0.1": {
  4919. "type": "package",
  4920. "serviceable": true,
  4921. "sha512": "sha512-ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==",
  4922. "path": "runtime.any.system.reflection.extensions/4.0.1",
  4923. "hashPath": "runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512"
  4924. },
  4925. "runtime.any.System.Reflection.Primitives/4.0.1": {
  4926. "type": "package",
  4927. "serviceable": true,
  4928. "sha512": "sha512-oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==",
  4929. "path": "runtime.any.system.reflection.primitives/4.0.1",
  4930. "hashPath": "runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512"
  4931. },
  4932. "runtime.any.System.Resources.ResourceManager/4.0.1": {
  4933. "type": "package",
  4934. "serviceable": true,
  4935. "sha512": "sha512-hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==",
  4936. "path": "runtime.any.system.resources.resourcemanager/4.0.1",
  4937. "hashPath": "runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512"
  4938. },
  4939. "runtime.any.System.Runtime/4.1.0": {
  4940. "type": "package",
  4941. "serviceable": true,
  4942. "sha512": "sha512-0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==",
  4943. "path": "runtime.any.system.runtime/4.1.0",
  4944. "hashPath": "runtime.any.system.runtime.4.1.0.nupkg.sha512"
  4945. },
  4946. "runtime.any.System.Runtime.Handles/4.0.1": {
  4947. "type": "package",
  4948. "serviceable": true,
  4949. "sha512": "sha512-MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==",
  4950. "path": "runtime.any.system.runtime.handles/4.0.1",
  4951. "hashPath": "runtime.any.system.runtime.handles.4.0.1.nupkg.sha512"
  4952. },
  4953. "runtime.any.System.Runtime.InteropServices/4.1.0": {
  4954. "type": "package",
  4955. "serviceable": true,
  4956. "sha512": "sha512-gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==",
  4957. "path": "runtime.any.system.runtime.interopservices/4.1.0",
  4958. "hashPath": "runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512"
  4959. },
  4960. "runtime.any.System.Text.Encoding/4.0.11": {
  4961. "type": "package",
  4962. "serviceable": true,
  4963. "sha512": "sha512-uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==",
  4964. "path": "runtime.any.system.text.encoding/4.0.11",
  4965. "hashPath": "runtime.any.system.text.encoding.4.0.11.nupkg.sha512"
  4966. },
  4967. "runtime.any.System.Text.Encoding.Extensions/4.0.11": {
  4968. "type": "package",
  4969. "serviceable": true,
  4970. "sha512": "sha512-3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==",
  4971. "path": "runtime.any.system.text.encoding.extensions/4.0.11",
  4972. "hashPath": "runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512"
  4973. },
  4974. "runtime.any.System.Threading.Tasks/4.0.11": {
  4975. "type": "package",
  4976. "serviceable": true,
  4977. "sha512": "sha512-CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==",
  4978. "path": "runtime.any.system.threading.tasks/4.0.11",
  4979. "hashPath": "runtime.any.system.threading.tasks.4.0.11.nupkg.sha512"
  4980. },
  4981. "runtime.native.System/4.0.0": {
  4982. "type": "package",
  4983. "serviceable": true,
  4984. "sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  4985. "path": "runtime.native.system/4.0.0",
  4986. "hashPath": "runtime.native.system.4.0.0.nupkg.sha512"
  4987. },
  4988. "runtime.native.System.Security.Cryptography/4.0.0": {
  4989. "type": "package",
  4990. "serviceable": true,
  4991. "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  4992. "path": "runtime.native.system.security.cryptography/4.0.0",
  4993. "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512"
  4994. },
  4995. "runtime.unix.System.Diagnostics.Debug/4.0.11": {
  4996. "type": "package",
  4997. "serviceable": true,
  4998. "sha512": "sha512-dGIYWbyqSlMlZrsqtU/TdvVNp8lieqowdGBVMi6nFTIiCqrL+RbdiJORguexXNjHtFZR30eE6zPWGxuL60NYFw==",
  4999. "path": "runtime.unix.system.diagnostics.debug/4.0.11",
  5000. "hashPath": "runtime.unix.system.diagnostics.debug.4.0.11.nupkg.sha512"
  5001. },
  5002. "runtime.unix.System.IO.FileSystem/4.0.1": {
  5003. "type": "package",
  5004. "serviceable": true,
  5005. "sha512": "sha512-7dft+dHYKOXOAnXExVE6OGmifNnSDCrJymApD0l6t2bZUdpai66La9dNqT2eqPhiQXVR3eV61gzkfaIEsuK0pA==",
  5006. "path": "runtime.unix.system.io.filesystem/4.0.1",
  5007. "hashPath": "runtime.unix.system.io.filesystem.4.0.1.nupkg.sha512"
  5008. },
  5009. "runtime.unix.System.Private.Uri/4.0.1": {
  5010. "type": "package",
  5011. "serviceable": true,
  5012. "sha512": "sha512-m+7TLWWw4cA44vGxcKpMdV2Lgx6HWOe5rUb5RIADE04S6fJNEwXO6u+KY7oWFJQYn5644NyhSxB9oV28fF94NQ==",
  5013. "path": "runtime.unix.system.private.uri/4.0.1",
  5014. "hashPath": "runtime.unix.system.private.uri.4.0.1.nupkg.sha512"
  5015. },
  5016. "runtime.unix.System.Runtime.Extensions/4.1.0": {
  5017. "type": "package",
  5018. "serviceable": true,
  5019. "sha512": "sha512-ouVt2t9k22LcC9HeNX4mu3Ebvp1h+IPKaYiU3tDtOW9YcMR62XQyHsPq5BjBjMHuxjBRL5Hz+BwhSdrY6HjacA==",
  5020. "path": "runtime.unix.system.runtime.extensions/4.1.0",
  5021. "hashPath": "runtime.unix.system.runtime.extensions.4.1.0.nupkg.sha512"
  5022. },
  5023. "StackExchange.Redis/2.2.88": {
  5024. "type": "package",
  5025. "serviceable": true,
  5026. "sha512": "sha512-JJi1jcO3/ZiamBhlsC/TR8aZmYf+nqpGzMi0HRRCy5wJkUPmMnRp0kBA6V84uhU8b531FHSdTDaFCAyCUJomjA==",
  5027. "path": "stackexchange.redis/2.2.88",
  5028. "hashPath": "stackexchange.redis.2.2.88.nupkg.sha512"
  5029. },
  5030. "System.AppContext/4.1.0": {
  5031. "type": "package",
  5032. "serviceable": true,
  5033. "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  5034. "path": "system.appcontext/4.1.0",
  5035. "hashPath": "system.appcontext.4.1.0.nupkg.sha512"
  5036. },
  5037. "System.Buffers/4.5.0": {
  5038. "type": "package",
  5039. "serviceable": true,
  5040. "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  5041. "path": "system.buffers/4.5.0",
  5042. "hashPath": "system.buffers.4.5.0.nupkg.sha512"
  5043. },
  5044. "System.Collections/4.0.11": {
  5045. "type": "package",
  5046. "serviceable": true,
  5047. "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  5048. "path": "system.collections/4.0.11",
  5049. "hashPath": "system.collections.4.0.11.nupkg.sha512"
  5050. },
  5051. "System.ComponentModel.Annotations/4.5.0": {
  5052. "type": "package",
  5053. "serviceable": true,
  5054. "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
  5055. "path": "system.componentmodel.annotations/4.5.0",
  5056. "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
  5057. },
  5058. "System.Configuration.ConfigurationManager/5.0.0": {
  5059. "type": "package",
  5060. "serviceable": true,
  5061. "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==",
  5062. "path": "system.configuration.configurationmanager/5.0.0",
  5063. "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512"
  5064. },
  5065. "System.Diagnostics.Debug/4.0.11": {
  5066. "type": "package",
  5067. "serviceable": true,
  5068. "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  5069. "path": "system.diagnostics.debug/4.0.11",
  5070. "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512"
  5071. },
  5072. "System.Diagnostics.DiagnosticSource/4.5.0": {
  5073. "type": "package",
  5074. "serviceable": true,
  5075. "sha512": "sha512-eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==",
  5076. "path": "system.diagnostics.diagnosticsource/4.5.0",
  5077. "hashPath": "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512"
  5078. },
  5079. "System.Diagnostics.PerformanceCounter/5.0.0": {
  5080. "type": "package",
  5081. "serviceable": true,
  5082. "sha512": "sha512-kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==",
  5083. "path": "system.diagnostics.performancecounter/5.0.0",
  5084. "hashPath": "system.diagnostics.performancecounter.5.0.0.nupkg.sha512"
  5085. },
  5086. "System.Drawing.Common/5.0.0": {
  5087. "type": "package",
  5088. "serviceable": true,
  5089. "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==",
  5090. "path": "system.drawing.common/5.0.0",
  5091. "hashPath": "system.drawing.common.5.0.0.nupkg.sha512"
  5092. },
  5093. "System.Dynamic.Runtime/4.0.11": {
  5094. "type": "package",
  5095. "serviceable": true,
  5096. "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  5097. "path": "system.dynamic.runtime/4.0.11",
  5098. "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512"
  5099. },
  5100. "System.Globalization/4.0.11": {
  5101. "type": "package",
  5102. "serviceable": true,
  5103. "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  5104. "path": "system.globalization/4.0.11",
  5105. "hashPath": "system.globalization.4.0.11.nupkg.sha512"
  5106. },
  5107. "System.IO/4.1.0": {
  5108. "type": "package",
  5109. "serviceable": true,
  5110. "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
  5111. "path": "system.io/4.1.0",
  5112. "hashPath": "system.io.4.1.0.nupkg.sha512"
  5113. },
  5114. "System.IO.FileSystem/4.0.1": {
  5115. "type": "package",
  5116. "serviceable": true,
  5117. "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  5118. "path": "system.io.filesystem/4.0.1",
  5119. "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
  5120. },
  5121. "System.IO.FileSystem.Primitives/4.0.1": {
  5122. "type": "package",
  5123. "serviceable": true,
  5124. "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  5125. "path": "system.io.filesystem.primitives/4.0.1",
  5126. "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
  5127. },
  5128. "System.IO.Pipelines/5.0.0": {
  5129. "type": "package",
  5130. "serviceable": true,
  5131. "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  5132. "path": "system.io.pipelines/5.0.0",
  5133. "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512"
  5134. },
  5135. "System.Linq/4.1.0": {
  5136. "type": "package",
  5137. "serviceable": true,
  5138. "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  5139. "path": "system.linq/4.1.0",
  5140. "hashPath": "system.linq.4.1.0.nupkg.sha512"
  5141. },
  5142. "System.Linq.Expressions/4.1.0": {
  5143. "type": "package",
  5144. "serviceable": true,
  5145. "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  5146. "path": "system.linq.expressions/4.1.0",
  5147. "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512"
  5148. },
  5149. "System.Memory/4.5.1": {
  5150. "type": "package",
  5151. "serviceable": true,
  5152. "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
  5153. "path": "system.memory/4.5.1",
  5154. "hashPath": "system.memory.4.5.1.nupkg.sha512"
  5155. },
  5156. "System.ObjectModel/4.0.12": {
  5157. "type": "package",
  5158. "serviceable": true,
  5159. "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  5160. "path": "system.objectmodel/4.0.12",
  5161. "hashPath": "system.objectmodel.4.0.12.nupkg.sha512"
  5162. },
  5163. "System.Private.Uri/4.0.1": {
  5164. "type": "package",
  5165. "serviceable": true,
  5166. "sha512": "sha512-OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==",
  5167. "path": "system.private.uri/4.0.1",
  5168. "hashPath": "system.private.uri.4.0.1.nupkg.sha512"
  5169. },
  5170. "System.Reflection/4.1.0": {
  5171. "type": "package",
  5172. "serviceable": true,
  5173. "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
  5174. "path": "system.reflection/4.1.0",
  5175. "hashPath": "system.reflection.4.1.0.nupkg.sha512"
  5176. },
  5177. "System.Reflection.Emit/4.0.1": {
  5178. "type": "package",
  5179. "serviceable": true,
  5180. "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  5181. "path": "system.reflection.emit/4.0.1",
  5182. "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512"
  5183. },
  5184. "System.Reflection.Emit.ILGeneration/4.0.1": {
  5185. "type": "package",
  5186. "serviceable": true,
  5187. "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  5188. "path": "system.reflection.emit.ilgeneration/4.0.1",
  5189. "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512"
  5190. },
  5191. "System.Reflection.Emit.Lightweight/4.0.1": {
  5192. "type": "package",
  5193. "serviceable": true,
  5194. "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  5195. "path": "system.reflection.emit.lightweight/4.0.1",
  5196. "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512"
  5197. },
  5198. "System.Reflection.Extensions/4.0.1": {
  5199. "type": "package",
  5200. "serviceable": true,
  5201. "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  5202. "path": "system.reflection.extensions/4.0.1",
  5203. "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512"
  5204. },
  5205. "System.Reflection.Primitives/4.0.1": {
  5206. "type": "package",
  5207. "serviceable": true,
  5208. "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
  5209. "path": "system.reflection.primitives/4.0.1",
  5210. "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512"
  5211. },
  5212. "System.Reflection.TypeExtensions/4.1.0": {
  5213. "type": "package",
  5214. "serviceable": true,
  5215. "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  5216. "path": "system.reflection.typeextensions/4.1.0",
  5217. "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512"
  5218. },
  5219. "System.Resources.ResourceManager/4.0.1": {
  5220. "type": "package",
  5221. "serviceable": true,
  5222. "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  5223. "path": "system.resources.resourcemanager/4.0.1",
  5224. "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512"
  5225. },
  5226. "System.Runtime/4.1.0": {
  5227. "type": "package",
  5228. "serviceable": true,
  5229. "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
  5230. "path": "system.runtime/4.1.0",
  5231. "hashPath": "system.runtime.4.1.0.nupkg.sha512"
  5232. },
  5233. "System.Runtime.CompilerServices.Unsafe/4.5.1": {
  5234. "type": "package",
  5235. "serviceable": true,
  5236. "sha512": "sha512-Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==",
  5237. "path": "system.runtime.compilerservices.unsafe/4.5.1",
  5238. "hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512"
  5239. },
  5240. "System.Runtime.Extensions/4.1.0": {
  5241. "type": "package",
  5242. "serviceable": true,
  5243. "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  5244. "path": "system.runtime.extensions/4.1.0",
  5245. "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512"
  5246. },
  5247. "System.Runtime.Handles/4.0.1": {
  5248. "type": "package",
  5249. "serviceable": true,
  5250. "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  5251. "path": "system.runtime.handles/4.0.1",
  5252. "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512"
  5253. },
  5254. "System.Runtime.InteropServices/4.1.0": {
  5255. "type": "package",
  5256. "serviceable": true,
  5257. "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  5258. "path": "system.runtime.interopservices/4.1.0",
  5259. "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512"
  5260. },
  5261. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  5262. "type": "package",
  5263. "serviceable": true,
  5264. "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  5265. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  5266. "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
  5267. },
  5268. "System.Security.AccessControl/5.0.0": {
  5269. "type": "package",
  5270. "serviceable": true,
  5271. "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  5272. "path": "system.security.accesscontrol/5.0.0",
  5273. "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
  5274. },
  5275. "System.Security.Cryptography.ProtectedData/5.0.0": {
  5276. "type": "package",
  5277. "serviceable": true,
  5278. "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==",
  5279. "path": "system.security.cryptography.protecteddata/5.0.0",
  5280. "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512"
  5281. },
  5282. "System.Security.Permissions/5.0.0": {
  5283. "type": "package",
  5284. "serviceable": true,
  5285. "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
  5286. "path": "system.security.permissions/5.0.0",
  5287. "hashPath": "system.security.permissions.5.0.0.nupkg.sha512"
  5288. },
  5289. "System.Security.Principal.Windows/5.0.0": {
  5290. "type": "package",
  5291. "serviceable": true,
  5292. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  5293. "path": "system.security.principal.windows/5.0.0",
  5294. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  5295. },
  5296. "System.Text.Encoding/4.0.11": {
  5297. "type": "package",
  5298. "serviceable": true,
  5299. "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
  5300. "path": "system.text.encoding/4.0.11",
  5301. "hashPath": "system.text.encoding.4.0.11.nupkg.sha512"
  5302. },
  5303. "System.Text.Encoding.Extensions/4.0.11": {
  5304. "type": "package",
  5305. "serviceable": true,
  5306. "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  5307. "path": "system.text.encoding.extensions/4.0.11",
  5308. "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
  5309. },
  5310. "System.Text.Encodings.Web/4.5.0": {
  5311. "type": "package",
  5312. "serviceable": true,
  5313. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  5314. "path": "system.text.encodings.web/4.5.0",
  5315. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  5316. },
  5317. "System.Threading/4.0.11": {
  5318. "type": "package",
  5319. "serviceable": true,
  5320. "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  5321. "path": "system.threading/4.0.11",
  5322. "hashPath": "system.threading.4.0.11.nupkg.sha512"
  5323. },
  5324. "System.Threading.Tasks/4.0.11": {
  5325. "type": "package",
  5326. "serviceable": true,
  5327. "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
  5328. "path": "system.threading.tasks/4.0.11",
  5329. "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512"
  5330. },
  5331. "System.Threading.Tasks.Extensions/4.5.1": {
  5332. "type": "package",
  5333. "serviceable": true,
  5334. "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
  5335. "path": "system.threading.tasks.extensions/4.5.1",
  5336. "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512"
  5337. },
  5338. "System.Windows.Extensions/5.0.0": {
  5339. "type": "package",
  5340. "serviceable": true,
  5341. "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==",
  5342. "path": "system.windows.extensions/5.0.0",
  5343. "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512"
  5344. },
  5345. "CommonObj/1.0.0": {
  5346. "type": "project",
  5347. "serviceable": false,
  5348. "sha512": ""
  5349. },
  5350. "GenPrizeCode/1.0.0.0": {
  5351. "type": "reference",
  5352. "serviceable": false,
  5353. "sha512": ""
  5354. },
  5355. "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
  5356. "type": "referenceassembly",
  5357. "serviceable": false,
  5358. "sha512": ""
  5359. },
  5360. "Microsoft.AspNetCore.Authentication.Abstractions.Reference/3.1.0.0": {
  5361. "type": "referenceassembly",
  5362. "serviceable": false,
  5363. "sha512": ""
  5364. },
  5365. "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
  5366. "type": "referenceassembly",
  5367. "serviceable": false,
  5368. "sha512": ""
  5369. },
  5370. "Microsoft.AspNetCore.Authentication.Core.Reference/3.1.0.0": {
  5371. "type": "referenceassembly",
  5372. "serviceable": false,
  5373. "sha512": ""
  5374. },
  5375. "Microsoft.AspNetCore.Authentication/3.1.0.0": {
  5376. "type": "referenceassembly",
  5377. "serviceable": false,
  5378. "sha512": ""
  5379. },
  5380. "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
  5381. "type": "referenceassembly",
  5382. "serviceable": false,
  5383. "sha512": ""
  5384. },
  5385. "Microsoft.AspNetCore.Authorization.Reference/3.1.0.0": {
  5386. "type": "referenceassembly",
  5387. "serviceable": false,
  5388. "sha512": ""
  5389. },
  5390. "Microsoft.AspNetCore.Authorization.Policy.Reference/3.1.0.0": {
  5391. "type": "referenceassembly",
  5392. "serviceable": false,
  5393. "sha512": ""
  5394. },
  5395. "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
  5396. "type": "referenceassembly",
  5397. "serviceable": false,
  5398. "sha512": ""
  5399. },
  5400. "Microsoft.AspNetCore.Components/3.1.0.0": {
  5401. "type": "referenceassembly",
  5402. "serviceable": false,
  5403. "sha512": ""
  5404. },
  5405. "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
  5406. "type": "referenceassembly",
  5407. "serviceable": false,
  5408. "sha512": ""
  5409. },
  5410. "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
  5411. "type": "referenceassembly",
  5412. "serviceable": false,
  5413. "sha512": ""
  5414. },
  5415. "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
  5416. "type": "referenceassembly",
  5417. "serviceable": false,
  5418. "sha512": ""
  5419. },
  5420. "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
  5421. "type": "referenceassembly",
  5422. "serviceable": false,
  5423. "sha512": ""
  5424. },
  5425. "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
  5426. "type": "referenceassembly",
  5427. "serviceable": false,
  5428. "sha512": ""
  5429. },
  5430. "Microsoft.AspNetCore.Cors/3.1.0.0": {
  5431. "type": "referenceassembly",
  5432. "serviceable": false,
  5433. "sha512": ""
  5434. },
  5435. "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
  5436. "type": "referenceassembly",
  5437. "serviceable": false,
  5438. "sha512": ""
  5439. },
  5440. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
  5441. "type": "referenceassembly",
  5442. "serviceable": false,
  5443. "sha512": ""
  5444. },
  5445. "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
  5446. "type": "referenceassembly",
  5447. "serviceable": false,
  5448. "sha512": ""
  5449. },
  5450. "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
  5451. "type": "referenceassembly",
  5452. "serviceable": false,
  5453. "sha512": ""
  5454. },
  5455. "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
  5456. "type": "referenceassembly",
  5457. "serviceable": false,
  5458. "sha512": ""
  5459. },
  5460. "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
  5461. "type": "referenceassembly",
  5462. "serviceable": false,
  5463. "sha512": ""
  5464. },
  5465. "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
  5466. "type": "referenceassembly",
  5467. "serviceable": false,
  5468. "sha512": ""
  5469. },
  5470. "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
  5471. "type": "referenceassembly",
  5472. "serviceable": false,
  5473. "sha512": ""
  5474. },
  5475. "Microsoft.AspNetCore/3.1.0.0": {
  5476. "type": "referenceassembly",
  5477. "serviceable": false,
  5478. "sha512": ""
  5479. },
  5480. "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
  5481. "type": "referenceassembly",
  5482. "serviceable": false,
  5483. "sha512": ""
  5484. },
  5485. "Microsoft.AspNetCore.Hosting.Abstractions.Reference/3.1.0.0": {
  5486. "type": "referenceassembly",
  5487. "serviceable": false,
  5488. "sha512": ""
  5489. },
  5490. "Microsoft.AspNetCore.Hosting/3.1.0.0": {
  5491. "type": "referenceassembly",
  5492. "serviceable": false,
  5493. "sha512": ""
  5494. },
  5495. "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference/3.1.0.0": {
  5496. "type": "referenceassembly",
  5497. "serviceable": false,
  5498. "sha512": ""
  5499. },
  5500. "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
  5501. "type": "referenceassembly",
  5502. "serviceable": false,
  5503. "sha512": ""
  5504. },
  5505. "Microsoft.AspNetCore.Http.Abstractions.Reference/3.1.0.0": {
  5506. "type": "referenceassembly",
  5507. "serviceable": false,
  5508. "sha512": ""
  5509. },
  5510. "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
  5511. "type": "referenceassembly",
  5512. "serviceable": false,
  5513. "sha512": ""
  5514. },
  5515. "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
  5516. "type": "referenceassembly",
  5517. "serviceable": false,
  5518. "sha512": ""
  5519. },
  5520. "Microsoft.AspNetCore.Http.Reference/3.1.0.0": {
  5521. "type": "referenceassembly",
  5522. "serviceable": false,
  5523. "sha512": ""
  5524. },
  5525. "Microsoft.AspNetCore.Http.Extensions.Reference/3.1.0.0": {
  5526. "type": "referenceassembly",
  5527. "serviceable": false,
  5528. "sha512": ""
  5529. },
  5530. "Microsoft.AspNetCore.Http.Features.Reference/3.1.0.0": {
  5531. "type": "referenceassembly",
  5532. "serviceable": false,
  5533. "sha512": ""
  5534. },
  5535. "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
  5536. "type": "referenceassembly",
  5537. "serviceable": false,
  5538. "sha512": ""
  5539. },
  5540. "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
  5541. "type": "referenceassembly",
  5542. "serviceable": false,
  5543. "sha512": ""
  5544. },
  5545. "Microsoft.AspNetCore.Identity/3.1.0.0": {
  5546. "type": "referenceassembly",
  5547. "serviceable": false,
  5548. "sha512": ""
  5549. },
  5550. "Microsoft.AspNetCore.Localization/3.1.0.0": {
  5551. "type": "referenceassembly",
  5552. "serviceable": false,
  5553. "sha512": ""
  5554. },
  5555. "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
  5556. "type": "referenceassembly",
  5557. "serviceable": false,
  5558. "sha512": ""
  5559. },
  5560. "Microsoft.AspNetCore.Metadata/3.1.0.0": {
  5561. "type": "referenceassembly",
  5562. "serviceable": false,
  5563. "sha512": ""
  5564. },
  5565. "Microsoft.AspNetCore.Mvc.Abstractions.Reference/3.1.0.0": {
  5566. "type": "referenceassembly",
  5567. "serviceable": false,
  5568. "sha512": ""
  5569. },
  5570. "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
  5571. "type": "referenceassembly",
  5572. "serviceable": false,
  5573. "sha512": ""
  5574. },
  5575. "Microsoft.AspNetCore.Mvc.Core.Reference/3.1.0.0": {
  5576. "type": "referenceassembly",
  5577. "serviceable": false,
  5578. "sha512": ""
  5579. },
  5580. "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
  5581. "type": "referenceassembly",
  5582. "serviceable": false,
  5583. "sha512": ""
  5584. },
  5585. "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
  5586. "type": "referenceassembly",
  5587. "serviceable": false,
  5588. "sha512": ""
  5589. },
  5590. "Microsoft.AspNetCore.Mvc/3.1.0.0": {
  5591. "type": "referenceassembly",
  5592. "serviceable": false,
  5593. "sha512": ""
  5594. },
  5595. "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
  5596. "type": "referenceassembly",
  5597. "serviceable": false,
  5598. "sha512": ""
  5599. },
  5600. "Microsoft.AspNetCore.Mvc.Formatters.Xml.Reference/3.1.0.0": {
  5601. "type": "referenceassembly",
  5602. "serviceable": false,
  5603. "sha512": ""
  5604. },
  5605. "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
  5606. "type": "referenceassembly",
  5607. "serviceable": false,
  5608. "sha512": ""
  5609. },
  5610. "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
  5611. "type": "referenceassembly",
  5612. "serviceable": false,
  5613. "sha512": ""
  5614. },
  5615. "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
  5616. "type": "referenceassembly",
  5617. "serviceable": false,
  5618. "sha512": ""
  5619. },
  5620. "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
  5621. "type": "referenceassembly",
  5622. "serviceable": false,
  5623. "sha512": ""
  5624. },
  5625. "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
  5626. "type": "referenceassembly",
  5627. "serviceable": false,
  5628. "sha512": ""
  5629. },
  5630. "Microsoft.AspNetCore.Razor/3.1.0.0": {
  5631. "type": "referenceassembly",
  5632. "serviceable": false,
  5633. "sha512": ""
  5634. },
  5635. "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
  5636. "type": "referenceassembly",
  5637. "serviceable": false,
  5638. "sha512": ""
  5639. },
  5640. "Microsoft.AspNetCore.ResponseCaching.Abstractions.Reference/3.1.0.0": {
  5641. "type": "referenceassembly",
  5642. "serviceable": false,
  5643. "sha512": ""
  5644. },
  5645. "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
  5646. "type": "referenceassembly",
  5647. "serviceable": false,
  5648. "sha512": ""
  5649. },
  5650. "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
  5651. "type": "referenceassembly",
  5652. "serviceable": false,
  5653. "sha512": ""
  5654. },
  5655. "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
  5656. "type": "referenceassembly",
  5657. "serviceable": false,
  5658. "sha512": ""
  5659. },
  5660. "Microsoft.AspNetCore.Routing.Abstractions.Reference/3.1.0.0": {
  5661. "type": "referenceassembly",
  5662. "serviceable": false,
  5663. "sha512": ""
  5664. },
  5665. "Microsoft.AspNetCore.Routing.Reference/3.1.0.0": {
  5666. "type": "referenceassembly",
  5667. "serviceable": false,
  5668. "sha512": ""
  5669. },
  5670. "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
  5671. "type": "referenceassembly",
  5672. "serviceable": false,
  5673. "sha512": ""
  5674. },
  5675. "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
  5676. "type": "referenceassembly",
  5677. "serviceable": false,
  5678. "sha512": ""
  5679. },
  5680. "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
  5681. "type": "referenceassembly",
  5682. "serviceable": false,
  5683. "sha512": ""
  5684. },
  5685. "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
  5686. "type": "referenceassembly",
  5687. "serviceable": false,
  5688. "sha512": ""
  5689. },
  5690. "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
  5691. "type": "referenceassembly",
  5692. "serviceable": false,
  5693. "sha512": ""
  5694. },
  5695. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
  5696. "type": "referenceassembly",
  5697. "serviceable": false,
  5698. "sha512": ""
  5699. },
  5700. "Microsoft.AspNetCore.Session/3.1.0.0": {
  5701. "type": "referenceassembly",
  5702. "serviceable": false,
  5703. "sha512": ""
  5704. },
  5705. "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
  5706. "type": "referenceassembly",
  5707. "serviceable": false,
  5708. "sha512": ""
  5709. },
  5710. "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
  5711. "type": "referenceassembly",
  5712. "serviceable": false,
  5713. "sha512": ""
  5714. },
  5715. "Microsoft.AspNetCore.SignalR/3.1.0.0": {
  5716. "type": "referenceassembly",
  5717. "serviceable": false,
  5718. "sha512": ""
  5719. },
  5720. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
  5721. "type": "referenceassembly",
  5722. "serviceable": false,
  5723. "sha512": ""
  5724. },
  5725. "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
  5726. "type": "referenceassembly",
  5727. "serviceable": false,
  5728. "sha512": ""
  5729. },
  5730. "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
  5731. "type": "referenceassembly",
  5732. "serviceable": false,
  5733. "sha512": ""
  5734. },
  5735. "Microsoft.AspNetCore.WebUtilities.Reference/3.1.0.0": {
  5736. "type": "referenceassembly",
  5737. "serviceable": false,
  5738. "sha512": ""
  5739. },
  5740. "Microsoft.CSharp/4.0.0.0": {
  5741. "type": "referenceassembly",
  5742. "serviceable": false,
  5743. "sha512": ""
  5744. },
  5745. "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": {
  5746. "type": "referenceassembly",
  5747. "serviceable": false,
  5748. "sha512": ""
  5749. },
  5750. "Microsoft.Extensions.Caching.Memory/3.1.0.0": {
  5751. "type": "referenceassembly",
  5752. "serviceable": false,
  5753. "sha512": ""
  5754. },
  5755. "Microsoft.Extensions.Configuration.Abstractions.Reference/3.1.0.0": {
  5756. "type": "referenceassembly",
  5757. "serviceable": false,
  5758. "sha512": ""
  5759. },
  5760. "Microsoft.Extensions.Configuration.Binder/3.1.0.0": {
  5761. "type": "referenceassembly",
  5762. "serviceable": false,
  5763. "sha512": ""
  5764. },
  5765. "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
  5766. "type": "referenceassembly",
  5767. "serviceable": false,
  5768. "sha512": ""
  5769. },
  5770. "Microsoft.Extensions.Configuration/3.1.0.0": {
  5771. "type": "referenceassembly",
  5772. "serviceable": false,
  5773. "sha512": ""
  5774. },
  5775. "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
  5776. "type": "referenceassembly",
  5777. "serviceable": false,
  5778. "sha512": ""
  5779. },
  5780. "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
  5781. "type": "referenceassembly",
  5782. "serviceable": false,
  5783. "sha512": ""
  5784. },
  5785. "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
  5786. "type": "referenceassembly",
  5787. "serviceable": false,
  5788. "sha512": ""
  5789. },
  5790. "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
  5791. "type": "referenceassembly",
  5792. "serviceable": false,
  5793. "sha512": ""
  5794. },
  5795. "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
  5796. "type": "referenceassembly",
  5797. "serviceable": false,
  5798. "sha512": ""
  5799. },
  5800. "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
  5801. "type": "referenceassembly",
  5802. "serviceable": false,
  5803. "sha512": ""
  5804. },
  5805. "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
  5806. "type": "referenceassembly",
  5807. "serviceable": false,
  5808. "sha512": ""
  5809. },
  5810. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/3.1.0.0": {
  5811. "type": "referenceassembly",
  5812. "serviceable": false,
  5813. "sha512": ""
  5814. },
  5815. "Microsoft.Extensions.DependencyInjection.Reference/3.1.0.0": {
  5816. "type": "referenceassembly",
  5817. "serviceable": false,
  5818. "sha512": ""
  5819. },
  5820. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
  5821. "type": "referenceassembly",
  5822. "serviceable": false,
  5823. "sha512": ""
  5824. },
  5825. "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
  5826. "type": "referenceassembly",
  5827. "serviceable": false,
  5828. "sha512": ""
  5829. },
  5830. "Microsoft.Extensions.FileProviders.Abstractions.Reference/3.1.0.0": {
  5831. "type": "referenceassembly",
  5832. "serviceable": false,
  5833. "sha512": ""
  5834. },
  5835. "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
  5836. "type": "referenceassembly",
  5837. "serviceable": false,
  5838. "sha512": ""
  5839. },
  5840. "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
  5841. "type": "referenceassembly",
  5842. "serviceable": false,
  5843. "sha512": ""
  5844. },
  5845. "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
  5846. "type": "referenceassembly",
  5847. "serviceable": false,
  5848. "sha512": ""
  5849. },
  5850. "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
  5851. "type": "referenceassembly",
  5852. "serviceable": false,
  5853. "sha512": ""
  5854. },
  5855. "Microsoft.Extensions.Hosting.Abstractions.Reference/3.1.0.0": {
  5856. "type": "referenceassembly",
  5857. "serviceable": false,
  5858. "sha512": ""
  5859. },
  5860. "Microsoft.Extensions.Hosting/3.1.0.0": {
  5861. "type": "referenceassembly",
  5862. "serviceable": false,
  5863. "sha512": ""
  5864. },
  5865. "Microsoft.Extensions.Http/3.1.0.0": {
  5866. "type": "referenceassembly",
  5867. "serviceable": false,
  5868. "sha512": ""
  5869. },
  5870. "Microsoft.Extensions.Identity.Core/3.1.0.0": {
  5871. "type": "referenceassembly",
  5872. "serviceable": false,
  5873. "sha512": ""
  5874. },
  5875. "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
  5876. "type": "referenceassembly",
  5877. "serviceable": false,
  5878. "sha512": ""
  5879. },
  5880. "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
  5881. "type": "referenceassembly",
  5882. "serviceable": false,
  5883. "sha512": ""
  5884. },
  5885. "Microsoft.Extensions.Localization/3.1.0.0": {
  5886. "type": "referenceassembly",
  5887. "serviceable": false,
  5888. "sha512": ""
  5889. },
  5890. "Microsoft.Extensions.Logging.Abstractions.Reference/3.1.0.0": {
  5891. "type": "referenceassembly",
  5892. "serviceable": false,
  5893. "sha512": ""
  5894. },
  5895. "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
  5896. "type": "referenceassembly",
  5897. "serviceable": false,
  5898. "sha512": ""
  5899. },
  5900. "Microsoft.Extensions.Logging.Console/3.1.0.0": {
  5901. "type": "referenceassembly",
  5902. "serviceable": false,
  5903. "sha512": ""
  5904. },
  5905. "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
  5906. "type": "referenceassembly",
  5907. "serviceable": false,
  5908. "sha512": ""
  5909. },
  5910. "Microsoft.Extensions.Logging/3.1.0.0": {
  5911. "type": "referenceassembly",
  5912. "serviceable": false,
  5913. "sha512": ""
  5914. },
  5915. "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
  5916. "type": "referenceassembly",
  5917. "serviceable": false,
  5918. "sha512": ""
  5919. },
  5920. "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
  5921. "type": "referenceassembly",
  5922. "serviceable": false,
  5923. "sha512": ""
  5924. },
  5925. "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
  5926. "type": "referenceassembly",
  5927. "serviceable": false,
  5928. "sha512": ""
  5929. },
  5930. "Microsoft.Extensions.ObjectPool.Reference/3.1.0.0": {
  5931. "type": "referenceassembly",
  5932. "serviceable": false,
  5933. "sha512": ""
  5934. },
  5935. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
  5936. "type": "referenceassembly",
  5937. "serviceable": false,
  5938. "sha512": ""
  5939. },
  5940. "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
  5941. "type": "referenceassembly",
  5942. "serviceable": false,
  5943. "sha512": ""
  5944. },
  5945. "Microsoft.Extensions.Options.Reference/3.1.0.0": {
  5946. "type": "referenceassembly",
  5947. "serviceable": false,
  5948. "sha512": ""
  5949. },
  5950. "Microsoft.Extensions.Primitives.Reference/3.1.0.0": {
  5951. "type": "referenceassembly",
  5952. "serviceable": false,
  5953. "sha512": ""
  5954. },
  5955. "Microsoft.Extensions.WebEncoders/3.1.0.0": {
  5956. "type": "referenceassembly",
  5957. "serviceable": false,
  5958. "sha512": ""
  5959. },
  5960. "Microsoft.JSInterop/3.1.0.0": {
  5961. "type": "referenceassembly",
  5962. "serviceable": false,
  5963. "sha512": ""
  5964. },
  5965. "Microsoft.Net.Http.Headers.Reference/3.1.0.0": {
  5966. "type": "referenceassembly",
  5967. "serviceable": false,
  5968. "sha512": ""
  5969. },
  5970. "Microsoft.VisualBasic.Core/10.0.5.0": {
  5971. "type": "referenceassembly",
  5972. "serviceable": false,
  5973. "sha512": ""
  5974. },
  5975. "Microsoft.VisualBasic/10.0.0.0": {
  5976. "type": "referenceassembly",
  5977. "serviceable": false,
  5978. "sha512": ""
  5979. },
  5980. "Microsoft.Win32.Primitives/4.1.2.0": {
  5981. "type": "referenceassembly",
  5982. "serviceable": false,
  5983. "sha512": ""
  5984. },
  5985. "Microsoft.Win32.Registry.Reference/4.1.3.0": {
  5986. "type": "referenceassembly",
  5987. "serviceable": false,
  5988. "sha512": ""
  5989. },
  5990. "mscorlib/4.0.0.0": {
  5991. "type": "referenceassembly",
  5992. "serviceable": false,
  5993. "sha512": ""
  5994. },
  5995. "netstandard/2.1.0.0": {
  5996. "type": "referenceassembly",
  5997. "serviceable": false,
  5998. "sha512": ""
  5999. },
  6000. "System.AppContext.Reference/4.2.2.0": {
  6001. "type": "referenceassembly",
  6002. "serviceable": false,
  6003. "sha512": ""
  6004. },
  6005. "System.Buffers.Reference/4.0.2.0": {
  6006. "type": "referenceassembly",
  6007. "serviceable": false,
  6008. "sha512": ""
  6009. },
  6010. "System.Collections.Concurrent/4.0.15.0": {
  6011. "type": "referenceassembly",
  6012. "serviceable": false,
  6013. "sha512": ""
  6014. },
  6015. "System.Collections.Reference/4.1.2.0": {
  6016. "type": "referenceassembly",
  6017. "serviceable": false,
  6018. "sha512": ""
  6019. },
  6020. "System.Collections.Immutable/1.2.5.0": {
  6021. "type": "referenceassembly",
  6022. "serviceable": false,
  6023. "sha512": ""
  6024. },
  6025. "System.Collections.NonGeneric/4.1.2.0": {
  6026. "type": "referenceassembly",
  6027. "serviceable": false,
  6028. "sha512": ""
  6029. },
  6030. "System.Collections.Specialized/4.1.2.0": {
  6031. "type": "referenceassembly",
  6032. "serviceable": false,
  6033. "sha512": ""
  6034. },
  6035. "System.ComponentModel.Annotations.Reference/4.3.1.0": {
  6036. "type": "referenceassembly",
  6037. "serviceable": false,
  6038. "sha512": ""
  6039. },
  6040. "System.ComponentModel.DataAnnotations/4.0.0.0": {
  6041. "type": "referenceassembly",
  6042. "serviceable": false,
  6043. "sha512": ""
  6044. },
  6045. "System.ComponentModel/4.0.4.0": {
  6046. "type": "referenceassembly",
  6047. "serviceable": false,
  6048. "sha512": ""
  6049. },
  6050. "System.ComponentModel.EventBasedAsync/4.1.2.0": {
  6051. "type": "referenceassembly",
  6052. "serviceable": false,
  6053. "sha512": ""
  6054. },
  6055. "System.ComponentModel.Primitives/4.2.2.0": {
  6056. "type": "referenceassembly",
  6057. "serviceable": false,
  6058. "sha512": ""
  6059. },
  6060. "System.ComponentModel.TypeConverter/4.2.2.0": {
  6061. "type": "referenceassembly",
  6062. "serviceable": false,
  6063. "sha512": ""
  6064. },
  6065. "System.Configuration/4.0.0.0": {
  6066. "type": "referenceassembly",
  6067. "serviceable": false,
  6068. "sha512": ""
  6069. },
  6070. "System.Console/4.1.2.0": {
  6071. "type": "referenceassembly",
  6072. "serviceable": false,
  6073. "sha512": ""
  6074. },
  6075. "System.Core/4.0.0.0": {
  6076. "type": "referenceassembly",
  6077. "serviceable": false,
  6078. "sha512": ""
  6079. },
  6080. "System.Data.Common/4.2.2.0": {
  6081. "type": "referenceassembly",
  6082. "serviceable": false,
  6083. "sha512": ""
  6084. },
  6085. "System.Data.DataSetExtensions/4.0.1.0": {
  6086. "type": "referenceassembly",
  6087. "serviceable": false,
  6088. "sha512": ""
  6089. },
  6090. "System.Data/4.0.0.0": {
  6091. "type": "referenceassembly",
  6092. "serviceable": false,
  6093. "sha512": ""
  6094. },
  6095. "System.Diagnostics.Contracts/4.0.4.0": {
  6096. "type": "referenceassembly",
  6097. "serviceable": false,
  6098. "sha512": ""
  6099. },
  6100. "System.Diagnostics.Debug.Reference/4.1.2.0": {
  6101. "type": "referenceassembly",
  6102. "serviceable": false,
  6103. "sha512": ""
  6104. },
  6105. "System.Diagnostics.DiagnosticSource.Reference/4.0.5.0": {
  6106. "type": "referenceassembly",
  6107. "serviceable": false,
  6108. "sha512": ""
  6109. },
  6110. "System.Diagnostics.EventLog/4.0.2.0": {
  6111. "type": "referenceassembly",
  6112. "serviceable": false,
  6113. "sha512": ""
  6114. },
  6115. "System.Diagnostics.FileVersionInfo/4.0.4.0": {
  6116. "type": "referenceassembly",
  6117. "serviceable": false,
  6118. "sha512": ""
  6119. },
  6120. "System.Diagnostics.Process/4.2.2.0": {
  6121. "type": "referenceassembly",
  6122. "serviceable": false,
  6123. "sha512": ""
  6124. },
  6125. "System.Diagnostics.StackTrace/4.1.2.0": {
  6126. "type": "referenceassembly",
  6127. "serviceable": false,
  6128. "sha512": ""
  6129. },
  6130. "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
  6131. "type": "referenceassembly",
  6132. "serviceable": false,
  6133. "sha512": ""
  6134. },
  6135. "System.Diagnostics.Tools/4.1.2.0": {
  6136. "type": "referenceassembly",
  6137. "serviceable": false,
  6138. "sha512": ""
  6139. },
  6140. "System.Diagnostics.TraceSource/4.1.2.0": {
  6141. "type": "referenceassembly",
  6142. "serviceable": false,
  6143. "sha512": ""
  6144. },
  6145. "System.Diagnostics.Tracing/4.2.2.0": {
  6146. "type": "referenceassembly",
  6147. "serviceable": false,
  6148. "sha512": ""
  6149. },
  6150. "System/4.0.0.0": {
  6151. "type": "referenceassembly",
  6152. "serviceable": false,
  6153. "sha512": ""
  6154. },
  6155. "System.Drawing/4.0.0.0": {
  6156. "type": "referenceassembly",
  6157. "serviceable": false,
  6158. "sha512": ""
  6159. },
  6160. "System.Drawing.Primitives/4.2.1.0": {
  6161. "type": "referenceassembly",
  6162. "serviceable": false,
  6163. "sha512": ""
  6164. },
  6165. "System.Dynamic.Runtime.Reference/4.1.2.0": {
  6166. "type": "referenceassembly",
  6167. "serviceable": false,
  6168. "sha512": ""
  6169. },
  6170. "System.Globalization.Calendars/4.1.2.0": {
  6171. "type": "referenceassembly",
  6172. "serviceable": false,
  6173. "sha512": ""
  6174. },
  6175. "System.Globalization.Reference/4.1.2.0": {
  6176. "type": "referenceassembly",
  6177. "serviceable": false,
  6178. "sha512": ""
  6179. },
  6180. "System.Globalization.Extensions/4.1.2.0": {
  6181. "type": "referenceassembly",
  6182. "serviceable": false,
  6183. "sha512": ""
  6184. },
  6185. "System.IO.Compression.Brotli/4.2.2.0": {
  6186. "type": "referenceassembly",
  6187. "serviceable": false,
  6188. "sha512": ""
  6189. },
  6190. "System.IO.Compression/4.2.2.0": {
  6191. "type": "referenceassembly",
  6192. "serviceable": false,
  6193. "sha512": ""
  6194. },
  6195. "System.IO.Compression.FileSystem/4.0.0.0": {
  6196. "type": "referenceassembly",
  6197. "serviceable": false,
  6198. "sha512": ""
  6199. },
  6200. "System.IO.Compression.ZipFile/4.0.5.0": {
  6201. "type": "referenceassembly",
  6202. "serviceable": false,
  6203. "sha512": ""
  6204. },
  6205. "System.IO.Reference/4.2.2.0": {
  6206. "type": "referenceassembly",
  6207. "serviceable": false,
  6208. "sha512": ""
  6209. },
  6210. "System.IO.FileSystem.Reference/4.1.2.0": {
  6211. "type": "referenceassembly",
  6212. "serviceable": false,
  6213. "sha512": ""
  6214. },
  6215. "System.IO.FileSystem.DriveInfo/4.1.2.0": {
  6216. "type": "referenceassembly",
  6217. "serviceable": false,
  6218. "sha512": ""
  6219. },
  6220. "System.IO.FileSystem.Primitives.Reference/4.1.2.0": {
  6221. "type": "referenceassembly",
  6222. "serviceable": false,
  6223. "sha512": ""
  6224. },
  6225. "System.IO.FileSystem.Watcher/4.1.2.0": {
  6226. "type": "referenceassembly",
  6227. "serviceable": false,
  6228. "sha512": ""
  6229. },
  6230. "System.IO.IsolatedStorage/4.1.2.0": {
  6231. "type": "referenceassembly",
  6232. "serviceable": false,
  6233. "sha512": ""
  6234. },
  6235. "System.IO.MemoryMappedFiles/4.1.2.0": {
  6236. "type": "referenceassembly",
  6237. "serviceable": false,
  6238. "sha512": ""
  6239. },
  6240. "System.IO.Pipes/4.1.2.0": {
  6241. "type": "referenceassembly",
  6242. "serviceable": false,
  6243. "sha512": ""
  6244. },
  6245. "System.IO.UnmanagedMemoryStream/4.1.2.0": {
  6246. "type": "referenceassembly",
  6247. "serviceable": false,
  6248. "sha512": ""
  6249. },
  6250. "System.Linq.Reference/4.2.2.0": {
  6251. "type": "referenceassembly",
  6252. "serviceable": false,
  6253. "sha512": ""
  6254. },
  6255. "System.Linq.Expressions.Reference/4.2.2.0": {
  6256. "type": "referenceassembly",
  6257. "serviceable": false,
  6258. "sha512": ""
  6259. },
  6260. "System.Linq.Parallel/4.0.4.0": {
  6261. "type": "referenceassembly",
  6262. "serviceable": false,
  6263. "sha512": ""
  6264. },
  6265. "System.Linq.Queryable/4.0.4.0": {
  6266. "type": "referenceassembly",
  6267. "serviceable": false,
  6268. "sha512": ""
  6269. },
  6270. "System.Memory.Reference/4.2.1.0": {
  6271. "type": "referenceassembly",
  6272. "serviceable": false,
  6273. "sha512": ""
  6274. },
  6275. "System.Net/4.0.0.0": {
  6276. "type": "referenceassembly",
  6277. "serviceable": false,
  6278. "sha512": ""
  6279. },
  6280. "System.Net.Http/4.2.2.0": {
  6281. "type": "referenceassembly",
  6282. "serviceable": false,
  6283. "sha512": ""
  6284. },
  6285. "System.Net.HttpListener/4.0.2.0": {
  6286. "type": "referenceassembly",
  6287. "serviceable": false,
  6288. "sha512": ""
  6289. },
  6290. "System.Net.Mail/4.0.2.0": {
  6291. "type": "referenceassembly",
  6292. "serviceable": false,
  6293. "sha512": ""
  6294. },
  6295. "System.Net.NameResolution/4.1.2.0": {
  6296. "type": "referenceassembly",
  6297. "serviceable": false,
  6298. "sha512": ""
  6299. },
  6300. "System.Net.NetworkInformation/4.2.2.0": {
  6301. "type": "referenceassembly",
  6302. "serviceable": false,
  6303. "sha512": ""
  6304. },
  6305. "System.Net.Ping/4.1.2.0": {
  6306. "type": "referenceassembly",
  6307. "serviceable": false,
  6308. "sha512": ""
  6309. },
  6310. "System.Net.Primitives/4.1.2.0": {
  6311. "type": "referenceassembly",
  6312. "serviceable": false,
  6313. "sha512": ""
  6314. },
  6315. "System.Net.Requests/4.1.2.0": {
  6316. "type": "referenceassembly",
  6317. "serviceable": false,
  6318. "sha512": ""
  6319. },
  6320. "System.Net.Security/4.1.2.0": {
  6321. "type": "referenceassembly",
  6322. "serviceable": false,
  6323. "sha512": ""
  6324. },
  6325. "System.Net.ServicePoint/4.0.2.0": {
  6326. "type": "referenceassembly",
  6327. "serviceable": false,
  6328. "sha512": ""
  6329. },
  6330. "System.Net.Sockets/4.2.2.0": {
  6331. "type": "referenceassembly",
  6332. "serviceable": false,
  6333. "sha512": ""
  6334. },
  6335. "System.Net.WebClient/4.0.2.0": {
  6336. "type": "referenceassembly",
  6337. "serviceable": false,
  6338. "sha512": ""
  6339. },
  6340. "System.Net.WebHeaderCollection/4.1.2.0": {
  6341. "type": "referenceassembly",
  6342. "serviceable": false,
  6343. "sha512": ""
  6344. },
  6345. "System.Net.WebProxy/4.0.2.0": {
  6346. "type": "referenceassembly",
  6347. "serviceable": false,
  6348. "sha512": ""
  6349. },
  6350. "System.Net.WebSockets.Client/4.1.2.0": {
  6351. "type": "referenceassembly",
  6352. "serviceable": false,
  6353. "sha512": ""
  6354. },
  6355. "System.Net.WebSockets/4.1.2.0": {
  6356. "type": "referenceassembly",
  6357. "serviceable": false,
  6358. "sha512": ""
  6359. },
  6360. "System.Numerics/4.0.0.0": {
  6361. "type": "referenceassembly",
  6362. "serviceable": false,
  6363. "sha512": ""
  6364. },
  6365. "System.Numerics.Vectors/4.1.6.0": {
  6366. "type": "referenceassembly",
  6367. "serviceable": false,
  6368. "sha512": ""
  6369. },
  6370. "System.ObjectModel.Reference/4.1.2.0": {
  6371. "type": "referenceassembly",
  6372. "serviceable": false,
  6373. "sha512": ""
  6374. },
  6375. "System.Reflection.DispatchProxy/4.0.6.0": {
  6376. "type": "referenceassembly",
  6377. "serviceable": false,
  6378. "sha512": ""
  6379. },
  6380. "System.Reflection.Reference/4.2.2.0": {
  6381. "type": "referenceassembly",
  6382. "serviceable": false,
  6383. "sha512": ""
  6384. },
  6385. "System.Reflection.Emit.Reference/4.1.2.0": {
  6386. "type": "referenceassembly",
  6387. "serviceable": false,
  6388. "sha512": ""
  6389. },
  6390. "System.Reflection.Emit.ILGeneration.Reference/4.1.1.0": {
  6391. "type": "referenceassembly",
  6392. "serviceable": false,
  6393. "sha512": ""
  6394. },
  6395. "System.Reflection.Emit.Lightweight.Reference/4.1.1.0": {
  6396. "type": "referenceassembly",
  6397. "serviceable": false,
  6398. "sha512": ""
  6399. },
  6400. "System.Reflection.Extensions.Reference/4.1.2.0": {
  6401. "type": "referenceassembly",
  6402. "serviceable": false,
  6403. "sha512": ""
  6404. },
  6405. "System.Reflection.Metadata/1.4.5.0": {
  6406. "type": "referenceassembly",
  6407. "serviceable": false,
  6408. "sha512": ""
  6409. },
  6410. "System.Reflection.Primitives.Reference/4.1.2.0": {
  6411. "type": "referenceassembly",
  6412. "serviceable": false,
  6413. "sha512": ""
  6414. },
  6415. "System.Reflection.TypeExtensions.Reference/4.1.2.0": {
  6416. "type": "referenceassembly",
  6417. "serviceable": false,
  6418. "sha512": ""
  6419. },
  6420. "System.Resources.Reader/4.1.2.0": {
  6421. "type": "referenceassembly",
  6422. "serviceable": false,
  6423. "sha512": ""
  6424. },
  6425. "System.Resources.ResourceManager.Reference/4.1.2.0": {
  6426. "type": "referenceassembly",
  6427. "serviceable": false,
  6428. "sha512": ""
  6429. },
  6430. "System.Resources.Writer/4.1.2.0": {
  6431. "type": "referenceassembly",
  6432. "serviceable": false,
  6433. "sha512": ""
  6434. },
  6435. "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": {
  6436. "type": "referenceassembly",
  6437. "serviceable": false,
  6438. "sha512": ""
  6439. },
  6440. "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
  6441. "type": "referenceassembly",
  6442. "serviceable": false,
  6443. "sha512": ""
  6444. },
  6445. "System.Runtime.Reference/4.2.2.0": {
  6446. "type": "referenceassembly",
  6447. "serviceable": false,
  6448. "sha512": ""
  6449. },
  6450. "System.Runtime.Extensions.Reference/4.2.2.0": {
  6451. "type": "referenceassembly",
  6452. "serviceable": false,
  6453. "sha512": ""
  6454. },
  6455. "System.Runtime.Handles.Reference/4.1.2.0": {
  6456. "type": "referenceassembly",
  6457. "serviceable": false,
  6458. "sha512": ""
  6459. },
  6460. "System.Runtime.InteropServices.Reference/4.2.2.0": {
  6461. "type": "referenceassembly",
  6462. "serviceable": false,
  6463. "sha512": ""
  6464. },
  6465. "System.Runtime.InteropServices.RuntimeInformation.Reference/4.0.4.0": {
  6466. "type": "referenceassembly",
  6467. "serviceable": false,
  6468. "sha512": ""
  6469. },
  6470. "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
  6471. "type": "referenceassembly",
  6472. "serviceable": false,
  6473. "sha512": ""
  6474. },
  6475. "System.Runtime.Intrinsics/4.0.1.0": {
  6476. "type": "referenceassembly",
  6477. "serviceable": false,
  6478. "sha512": ""
  6479. },
  6480. "System.Runtime.Loader/4.1.1.0": {
  6481. "type": "referenceassembly",
  6482. "serviceable": false,
  6483. "sha512": ""
  6484. },
  6485. "System.Runtime.Numerics/4.1.2.0": {
  6486. "type": "referenceassembly",
  6487. "serviceable": false,
  6488. "sha512": ""
  6489. },
  6490. "System.Runtime.Serialization/4.0.0.0": {
  6491. "type": "referenceassembly",
  6492. "serviceable": false,
  6493. "sha512": ""
  6494. },
  6495. "System.Runtime.Serialization.Formatters/4.0.4.0": {
  6496. "type": "referenceassembly",
  6497. "serviceable": false,
  6498. "sha512": ""
  6499. },
  6500. "System.Runtime.Serialization.Json/4.0.5.0": {
  6501. "type": "referenceassembly",
  6502. "serviceable": false,
  6503. "sha512": ""
  6504. },
  6505. "System.Runtime.Serialization.Primitives/4.2.2.0": {
  6506. "type": "referenceassembly",
  6507. "serviceable": false,
  6508. "sha512": ""
  6509. },
  6510. "System.Runtime.Serialization.Xml/4.1.5.0": {
  6511. "type": "referenceassembly",
  6512. "serviceable": false,
  6513. "sha512": ""
  6514. },
  6515. "System.Security.Claims/4.1.2.0": {
  6516. "type": "referenceassembly",
  6517. "serviceable": false,
  6518. "sha512": ""
  6519. },
  6520. "System.Security.Cryptography.Algorithms/4.3.2.0": {
  6521. "type": "referenceassembly",
  6522. "serviceable": false,
  6523. "sha512": ""
  6524. },
  6525. "System.Security.Cryptography.Cng/4.3.3.0": {
  6526. "type": "referenceassembly",
  6527. "serviceable": false,
  6528. "sha512": ""
  6529. },
  6530. "System.Security.Cryptography.Csp/4.1.2.0": {
  6531. "type": "referenceassembly",
  6532. "serviceable": false,
  6533. "sha512": ""
  6534. },
  6535. "System.Security.Cryptography.Encoding/4.1.2.0": {
  6536. "type": "referenceassembly",
  6537. "serviceable": false,
  6538. "sha512": ""
  6539. },
  6540. "System.Security.Cryptography.Primitives/4.1.2.0": {
  6541. "type": "referenceassembly",
  6542. "serviceable": false,
  6543. "sha512": ""
  6544. },
  6545. "System.Security.Cryptography.X509Certificates/4.2.2.0": {
  6546. "type": "referenceassembly",
  6547. "serviceable": false,
  6548. "sha512": ""
  6549. },
  6550. "System.Security.Cryptography.Xml/4.0.3.0": {
  6551. "type": "referenceassembly",
  6552. "serviceable": false,
  6553. "sha512": ""
  6554. },
  6555. "System.Security/4.0.0.0": {
  6556. "type": "referenceassembly",
  6557. "serviceable": false,
  6558. "sha512": ""
  6559. },
  6560. "System.Security.Principal/4.1.2.0": {
  6561. "type": "referenceassembly",
  6562. "serviceable": false,
  6563. "sha512": ""
  6564. },
  6565. "System.Security.SecureString/4.1.2.0": {
  6566. "type": "referenceassembly",
  6567. "serviceable": false,
  6568. "sha512": ""
  6569. },
  6570. "System.ServiceModel.Web/4.0.0.0": {
  6571. "type": "referenceassembly",
  6572. "serviceable": false,
  6573. "sha512": ""
  6574. },
  6575. "System.ServiceProcess/4.0.0.0": {
  6576. "type": "referenceassembly",
  6577. "serviceable": false,
  6578. "sha512": ""
  6579. },
  6580. "System.Text.Encoding.CodePages/4.1.3.0": {
  6581. "type": "referenceassembly",
  6582. "serviceable": false,
  6583. "sha512": ""
  6584. },
  6585. "System.Text.Encoding.Reference/4.1.2.0": {
  6586. "type": "referenceassembly",
  6587. "serviceable": false,
  6588. "sha512": ""
  6589. },
  6590. "System.Text.Encoding.Extensions.Reference/4.1.2.0": {
  6591. "type": "referenceassembly",
  6592. "serviceable": false,
  6593. "sha512": ""
  6594. },
  6595. "System.Text.Encodings.Web.Reference/4.0.5.0": {
  6596. "type": "referenceassembly",
  6597. "serviceable": false,
  6598. "sha512": ""
  6599. },
  6600. "System.Text.Json/4.0.1.0": {
  6601. "type": "referenceassembly",
  6602. "serviceable": false,
  6603. "sha512": ""
  6604. },
  6605. "System.Text.RegularExpressions/4.2.2.0": {
  6606. "type": "referenceassembly",
  6607. "serviceable": false,
  6608. "sha512": ""
  6609. },
  6610. "System.Threading.Channels/4.0.2.0": {
  6611. "type": "referenceassembly",
  6612. "serviceable": false,
  6613. "sha512": ""
  6614. },
  6615. "System.Threading.Reference/4.1.2.0": {
  6616. "type": "referenceassembly",
  6617. "serviceable": false,
  6618. "sha512": ""
  6619. },
  6620. "System.Threading.Overlapped/4.1.2.0": {
  6621. "type": "referenceassembly",
  6622. "serviceable": false,
  6623. "sha512": ""
  6624. },
  6625. "System.Threading.Tasks.Dataflow/4.6.5.0": {
  6626. "type": "referenceassembly",
  6627. "serviceable": false,
  6628. "sha512": ""
  6629. },
  6630. "System.Threading.Tasks.Reference/4.1.2.0": {
  6631. "type": "referenceassembly",
  6632. "serviceable": false,
  6633. "sha512": ""
  6634. },
  6635. "System.Threading.Tasks.Extensions.Reference/4.3.1.0": {
  6636. "type": "referenceassembly",
  6637. "serviceable": false,
  6638. "sha512": ""
  6639. },
  6640. "System.Threading.Tasks.Parallel/4.0.4.0": {
  6641. "type": "referenceassembly",
  6642. "serviceable": false,
  6643. "sha512": ""
  6644. },
  6645. "System.Threading.Thread/4.1.2.0": {
  6646. "type": "referenceassembly",
  6647. "serviceable": false,
  6648. "sha512": ""
  6649. },
  6650. "System.Threading.ThreadPool/4.1.2.0": {
  6651. "type": "referenceassembly",
  6652. "serviceable": false,
  6653. "sha512": ""
  6654. },
  6655. "System.Threading.Timer/4.1.2.0": {
  6656. "type": "referenceassembly",
  6657. "serviceable": false,
  6658. "sha512": ""
  6659. },
  6660. "System.Transactions/4.0.0.0": {
  6661. "type": "referenceassembly",
  6662. "serviceable": false,
  6663. "sha512": ""
  6664. },
  6665. "System.Transactions.Local/4.0.2.0": {
  6666. "type": "referenceassembly",
  6667. "serviceable": false,
  6668. "sha512": ""
  6669. },
  6670. "System.ValueTuple/4.0.3.0": {
  6671. "type": "referenceassembly",
  6672. "serviceable": false,
  6673. "sha512": ""
  6674. },
  6675. "System.Web/4.0.0.0": {
  6676. "type": "referenceassembly",
  6677. "serviceable": false,
  6678. "sha512": ""
  6679. },
  6680. "System.Web.HttpUtility/4.0.2.0": {
  6681. "type": "referenceassembly",
  6682. "serviceable": false,
  6683. "sha512": ""
  6684. },
  6685. "System.Windows/4.0.0.0": {
  6686. "type": "referenceassembly",
  6687. "serviceable": false,
  6688. "sha512": ""
  6689. },
  6690. "System.Xml/4.0.0.0": {
  6691. "type": "referenceassembly",
  6692. "serviceable": false,
  6693. "sha512": ""
  6694. },
  6695. "System.Xml.Linq/4.0.0.0": {
  6696. "type": "referenceassembly",
  6697. "serviceable": false,
  6698. "sha512": ""
  6699. },
  6700. "System.Xml.ReaderWriter/4.2.2.0": {
  6701. "type": "referenceassembly",
  6702. "serviceable": false,
  6703. "sha512": ""
  6704. },
  6705. "System.Xml.Serialization/4.0.0.0": {
  6706. "type": "referenceassembly",
  6707. "serviceable": false,
  6708. "sha512": ""
  6709. },
  6710. "System.Xml.XDocument/4.1.2.0": {
  6711. "type": "referenceassembly",
  6712. "serviceable": false,
  6713. "sha512": ""
  6714. },
  6715. "System.Xml.XmlDocument/4.1.2.0": {
  6716. "type": "referenceassembly",
  6717. "serviceable": false,
  6718. "sha512": ""
  6719. },
  6720. "System.Xml.XmlSerializer/4.1.2.0": {
  6721. "type": "referenceassembly",
  6722. "serviceable": false,
  6723. "sha512": ""
  6724. },
  6725. "System.Xml.XPath/4.1.2.0": {
  6726. "type": "referenceassembly",
  6727. "serviceable": false,
  6728. "sha512": ""
  6729. },
  6730. "System.Xml.XPath.XDocument/4.1.2.0": {
  6731. "type": "referenceassembly",
  6732. "serviceable": false,
  6733. "sha512": ""
  6734. },
  6735. "WindowsBase/4.0.0.0": {
  6736. "type": "referenceassembly",
  6737. "serviceable": false,
  6738. "sha512": ""
  6739. }
  6740. },
  6741. "runtimes": {
  6742. "alpine-x64": [
  6743. "alpine",
  6744. "linux-musl-x64",
  6745. "linux-musl",
  6746. "linux-x64",
  6747. "linux",
  6748. "unix-x64",
  6749. "unix",
  6750. "any",
  6751. "base"
  6752. ],
  6753. "alpine.3.10-x64": [
  6754. "alpine.3.10",
  6755. "alpine.3.9-x64",
  6756. "alpine.3.9",
  6757. "alpine.3.8-x64",
  6758. "alpine.3.8",
  6759. "alpine.3.7-x64",
  6760. "alpine.3.7",
  6761. "alpine.3.6-x64",
  6762. "alpine.3.6",
  6763. "alpine-x64",
  6764. "alpine",
  6765. "linux-musl-x64",
  6766. "linux-musl",
  6767. "linux-x64",
  6768. "linux",
  6769. "unix-x64",
  6770. "unix",
  6771. "any",
  6772. "base"
  6773. ],
  6774. "alpine.3.11-x64": [
  6775. "alpine.3.11",
  6776. "alpine.3.10-x64",
  6777. "alpine.3.10",
  6778. "alpine.3.9-x64",
  6779. "alpine.3.9",
  6780. "alpine.3.8-x64",
  6781. "alpine.3.8",
  6782. "alpine.3.7-x64",
  6783. "alpine.3.7",
  6784. "alpine.3.6-x64",
  6785. "alpine.3.6",
  6786. "alpine-x64",
  6787. "alpine",
  6788. "linux-musl-x64",
  6789. "linux-musl",
  6790. "linux-x64",
  6791. "linux",
  6792. "unix-x64",
  6793. "unix",
  6794. "any",
  6795. "base"
  6796. ],
  6797. "alpine.3.12-x64": [
  6798. "alpine.3.12",
  6799. "alpine.3.11-x64",
  6800. "alpine.3.11",
  6801. "alpine.3.10-x64",
  6802. "alpine.3.10",
  6803. "alpine.3.9-x64",
  6804. "alpine.3.9",
  6805. "alpine.3.8-x64",
  6806. "alpine.3.8",
  6807. "alpine.3.7-x64",
  6808. "alpine.3.7",
  6809. "alpine.3.6-x64",
  6810. "alpine.3.6",
  6811. "alpine-x64",
  6812. "alpine",
  6813. "linux-musl-x64",
  6814. "linux-musl",
  6815. "linux-x64",
  6816. "linux",
  6817. "unix-x64",
  6818. "unix",
  6819. "any",
  6820. "base"
  6821. ],
  6822. "alpine.3.13-x64": [
  6823. "alpine.3.13",
  6824. "alpine.3.12-x64",
  6825. "alpine.3.12",
  6826. "alpine.3.11-x64",
  6827. "alpine.3.11",
  6828. "alpine.3.10-x64",
  6829. "alpine.3.10",
  6830. "alpine.3.9-x64",
  6831. "alpine.3.9",
  6832. "alpine.3.8-x64",
  6833. "alpine.3.8",
  6834. "alpine.3.7-x64",
  6835. "alpine.3.7",
  6836. "alpine.3.6-x64",
  6837. "alpine.3.6",
  6838. "alpine-x64",
  6839. "alpine",
  6840. "linux-musl-x64",
  6841. "linux-musl",
  6842. "linux-x64",
  6843. "linux",
  6844. "unix-x64",
  6845. "unix",
  6846. "any",
  6847. "base"
  6848. ],
  6849. "alpine.3.14-x64": [
  6850. "alpine.3.14",
  6851. "alpine.3.13-x64",
  6852. "alpine.3.13",
  6853. "alpine.3.12-x64",
  6854. "alpine.3.12",
  6855. "alpine.3.11-x64",
  6856. "alpine.3.11",
  6857. "alpine.3.10-x64",
  6858. "alpine.3.10",
  6859. "alpine.3.9-x64",
  6860. "alpine.3.9",
  6861. "alpine.3.8-x64",
  6862. "alpine.3.8",
  6863. "alpine.3.7-x64",
  6864. "alpine.3.7",
  6865. "alpine.3.6-x64",
  6866. "alpine.3.6",
  6867. "alpine-x64",
  6868. "alpine",
  6869. "linux-musl-x64",
  6870. "linux-musl",
  6871. "linux-x64",
  6872. "linux",
  6873. "unix-x64",
  6874. "unix",
  6875. "any",
  6876. "base"
  6877. ],
  6878. "alpine.3.15-x64": [
  6879. "alpine.3.15",
  6880. "alpine.3.14-x64",
  6881. "alpine.3.14",
  6882. "alpine.3.13-x64",
  6883. "alpine.3.13",
  6884. "alpine.3.12-x64",
  6885. "alpine.3.12",
  6886. "alpine.3.11-x64",
  6887. "alpine.3.11",
  6888. "alpine.3.10-x64",
  6889. "alpine.3.10",
  6890. "alpine.3.9-x64",
  6891. "alpine.3.9",
  6892. "alpine.3.8-x64",
  6893. "alpine.3.8",
  6894. "alpine.3.7-x64",
  6895. "alpine.3.7",
  6896. "alpine.3.6-x64",
  6897. "alpine.3.6",
  6898. "alpine-x64",
  6899. "alpine",
  6900. "linux-musl-x64",
  6901. "linux-musl",
  6902. "linux-x64",
  6903. "linux",
  6904. "unix-x64",
  6905. "unix",
  6906. "any",
  6907. "base"
  6908. ],
  6909. "alpine.3.16-x64": [
  6910. "alpine.3.16",
  6911. "alpine.3.15-x64",
  6912. "alpine.3.15",
  6913. "alpine.3.14-x64",
  6914. "alpine.3.14",
  6915. "alpine.3.13-x64",
  6916. "alpine.3.13",
  6917. "alpine.3.12-x64",
  6918. "alpine.3.12",
  6919. "alpine.3.11-x64",
  6920. "alpine.3.11",
  6921. "alpine.3.10-x64",
  6922. "alpine.3.10",
  6923. "alpine.3.9-x64",
  6924. "alpine.3.9",
  6925. "alpine.3.8-x64",
  6926. "alpine.3.8",
  6927. "alpine.3.7-x64",
  6928. "alpine.3.7",
  6929. "alpine.3.6-x64",
  6930. "alpine.3.6",
  6931. "alpine-x64",
  6932. "alpine",
  6933. "linux-musl-x64",
  6934. "linux-musl",
  6935. "linux-x64",
  6936. "linux",
  6937. "unix-x64",
  6938. "unix",
  6939. "any",
  6940. "base"
  6941. ],
  6942. "alpine.3.17-x64": [
  6943. "alpine.3.17",
  6944. "alpine.3.16-x64",
  6945. "alpine.3.16",
  6946. "alpine.3.15-x64",
  6947. "alpine.3.15",
  6948. "alpine.3.14-x64",
  6949. "alpine.3.14",
  6950. "alpine.3.13-x64",
  6951. "alpine.3.13",
  6952. "alpine.3.12-x64",
  6953. "alpine.3.12",
  6954. "alpine.3.11-x64",
  6955. "alpine.3.11",
  6956. "alpine.3.10-x64",
  6957. "alpine.3.10",
  6958. "alpine.3.9-x64",
  6959. "alpine.3.9",
  6960. "alpine.3.8-x64",
  6961. "alpine.3.8",
  6962. "alpine.3.7-x64",
  6963. "alpine.3.7",
  6964. "alpine.3.6-x64",
  6965. "alpine.3.6",
  6966. "alpine-x64",
  6967. "alpine",
  6968. "linux-musl-x64",
  6969. "linux-musl",
  6970. "linux-x64",
  6971. "linux",
  6972. "unix-x64",
  6973. "unix",
  6974. "any",
  6975. "base"
  6976. ],
  6977. "alpine.3.18-x64": [
  6978. "alpine.3.18",
  6979. "alpine.3.17-x64",
  6980. "alpine.3.17",
  6981. "alpine.3.16-x64",
  6982. "alpine.3.16",
  6983. "alpine.3.15-x64",
  6984. "alpine.3.15",
  6985. "alpine.3.14-x64",
  6986. "alpine.3.14",
  6987. "alpine.3.13-x64",
  6988. "alpine.3.13",
  6989. "alpine.3.12-x64",
  6990. "alpine.3.12",
  6991. "alpine.3.11-x64",
  6992. "alpine.3.11",
  6993. "alpine.3.10-x64",
  6994. "alpine.3.10",
  6995. "alpine.3.9-x64",
  6996. "alpine.3.9",
  6997. "alpine.3.8-x64",
  6998. "alpine.3.8",
  6999. "alpine.3.7-x64",
  7000. "alpine.3.7",
  7001. "alpine.3.6-x64",
  7002. "alpine.3.6",
  7003. "alpine-x64",
  7004. "alpine",
  7005. "linux-musl-x64",
  7006. "linux-musl",
  7007. "linux-x64",
  7008. "linux",
  7009. "unix-x64",
  7010. "unix",
  7011. "any",
  7012. "base"
  7013. ],
  7014. "alpine.3.6-x64": [
  7015. "alpine.3.6",
  7016. "alpine-x64",
  7017. "alpine",
  7018. "linux-musl-x64",
  7019. "linux-musl",
  7020. "linux-x64",
  7021. "linux",
  7022. "unix-x64",
  7023. "unix",
  7024. "any",
  7025. "base"
  7026. ],
  7027. "alpine.3.7-x64": [
  7028. "alpine.3.7",
  7029. "alpine.3.6-x64",
  7030. "alpine.3.6",
  7031. "alpine-x64",
  7032. "alpine",
  7033. "linux-musl-x64",
  7034. "linux-musl",
  7035. "linux-x64",
  7036. "linux",
  7037. "unix-x64",
  7038. "unix",
  7039. "any",
  7040. "base"
  7041. ],
  7042. "alpine.3.8-x64": [
  7043. "alpine.3.8",
  7044. "alpine.3.7-x64",
  7045. "alpine.3.7",
  7046. "alpine.3.6-x64",
  7047. "alpine.3.6",
  7048. "alpine-x64",
  7049. "alpine",
  7050. "linux-musl-x64",
  7051. "linux-musl",
  7052. "linux-x64",
  7053. "linux",
  7054. "unix-x64",
  7055. "unix",
  7056. "any",
  7057. "base"
  7058. ],
  7059. "alpine.3.9-x64": [
  7060. "alpine.3.9",
  7061. "alpine.3.8-x64",
  7062. "alpine.3.8",
  7063. "alpine.3.7-x64",
  7064. "alpine.3.7",
  7065. "alpine.3.6-x64",
  7066. "alpine.3.6",
  7067. "alpine-x64",
  7068. "alpine",
  7069. "linux-musl-x64",
  7070. "linux-musl",
  7071. "linux-x64",
  7072. "linux",
  7073. "unix-x64",
  7074. "unix",
  7075. "any",
  7076. "base"
  7077. ],
  7078. "android-x64": [
  7079. "android",
  7080. "linux-bionic-x64",
  7081. "linux-bionic",
  7082. "linux-x64",
  7083. "linux",
  7084. "unix-x64",
  7085. "unix",
  7086. "any",
  7087. "base"
  7088. ],
  7089. "android.21-x64": [
  7090. "android.21",
  7091. "android-x64",
  7092. "android",
  7093. "linux-bionic-x64",
  7094. "linux-bionic",
  7095. "linux-x64",
  7096. "linux",
  7097. "unix-x64",
  7098. "unix",
  7099. "any",
  7100. "base"
  7101. ],
  7102. "android.22-x64": [
  7103. "android.22",
  7104. "android.21-x64",
  7105. "android.21",
  7106. "android-x64",
  7107. "android",
  7108. "linux-bionic-x64",
  7109. "linux-bionic",
  7110. "linux-x64",
  7111. "linux",
  7112. "unix-x64",
  7113. "unix",
  7114. "any",
  7115. "base"
  7116. ],
  7117. "android.23-x64": [
  7118. "android.23",
  7119. "android.22-x64",
  7120. "android.22",
  7121. "android.21-x64",
  7122. "android.21",
  7123. "android-x64",
  7124. "android",
  7125. "linux-bionic-x64",
  7126. "linux-bionic",
  7127. "linux-x64",
  7128. "linux",
  7129. "unix-x64",
  7130. "unix",
  7131. "any",
  7132. "base"
  7133. ],
  7134. "android.24-x64": [
  7135. "android.24",
  7136. "android.23-x64",
  7137. "android.23",
  7138. "android.22-x64",
  7139. "android.22",
  7140. "android.21-x64",
  7141. "android.21",
  7142. "android-x64",
  7143. "android",
  7144. "linux-bionic-x64",
  7145. "linux-bionic",
  7146. "linux-x64",
  7147. "linux",
  7148. "unix-x64",
  7149. "unix",
  7150. "any",
  7151. "base"
  7152. ],
  7153. "android.25-x64": [
  7154. "android.25",
  7155. "android.24-x64",
  7156. "android.24",
  7157. "android.23-x64",
  7158. "android.23",
  7159. "android.22-x64",
  7160. "android.22",
  7161. "android.21-x64",
  7162. "android.21",
  7163. "android-x64",
  7164. "android",
  7165. "linux-bionic-x64",
  7166. "linux-bionic",
  7167. "linux-x64",
  7168. "linux",
  7169. "unix-x64",
  7170. "unix",
  7171. "any",
  7172. "base"
  7173. ],
  7174. "android.26-x64": [
  7175. "android.26",
  7176. "android.25-x64",
  7177. "android.25",
  7178. "android.24-x64",
  7179. "android.24",
  7180. "android.23-x64",
  7181. "android.23",
  7182. "android.22-x64",
  7183. "android.22",
  7184. "android.21-x64",
  7185. "android.21",
  7186. "android-x64",
  7187. "android",
  7188. "linux-bionic-x64",
  7189. "linux-bionic",
  7190. "linux-x64",
  7191. "linux",
  7192. "unix-x64",
  7193. "unix",
  7194. "any",
  7195. "base"
  7196. ],
  7197. "android.27-x64": [
  7198. "android.27",
  7199. "android.26-x64",
  7200. "android.26",
  7201. "android.25-x64",
  7202. "android.25",
  7203. "android.24-x64",
  7204. "android.24",
  7205. "android.23-x64",
  7206. "android.23",
  7207. "android.22-x64",
  7208. "android.22",
  7209. "android.21-x64",
  7210. "android.21",
  7211. "android-x64",
  7212. "android",
  7213. "linux-bionic-x64",
  7214. "linux-bionic",
  7215. "linux-x64",
  7216. "linux",
  7217. "unix-x64",
  7218. "unix",
  7219. "any",
  7220. "base"
  7221. ],
  7222. "android.28-x64": [
  7223. "android.28",
  7224. "android.27-x64",
  7225. "android.27",
  7226. "android.26-x64",
  7227. "android.26",
  7228. "android.25-x64",
  7229. "android.25",
  7230. "android.24-x64",
  7231. "android.24",
  7232. "android.23-x64",
  7233. "android.23",
  7234. "android.22-x64",
  7235. "android.22",
  7236. "android.21-x64",
  7237. "android.21",
  7238. "android-x64",
  7239. "android",
  7240. "linux-bionic-x64",
  7241. "linux-bionic",
  7242. "linux-x64",
  7243. "linux",
  7244. "unix-x64",
  7245. "unix",
  7246. "any",
  7247. "base"
  7248. ],
  7249. "android.29-x64": [
  7250. "android.29",
  7251. "android.28-x64",
  7252. "android.28",
  7253. "android.27-x64",
  7254. "android.27",
  7255. "android.26-x64",
  7256. "android.26",
  7257. "android.25-x64",
  7258. "android.25",
  7259. "android.24-x64",
  7260. "android.24",
  7261. "android.23-x64",
  7262. "android.23",
  7263. "android.22-x64",
  7264. "android.22",
  7265. "android.21-x64",
  7266. "android.21",
  7267. "android-x64",
  7268. "android",
  7269. "linux-bionic-x64",
  7270. "linux-bionic",
  7271. "linux-x64",
  7272. "linux",
  7273. "unix-x64",
  7274. "unix",
  7275. "any",
  7276. "base"
  7277. ],
  7278. "android.30-x64": [
  7279. "android.30",
  7280. "android.29-x64",
  7281. "android.29",
  7282. "android.28-x64",
  7283. "android.28",
  7284. "android.27-x64",
  7285. "android.27",
  7286. "android.26-x64",
  7287. "android.26",
  7288. "android.25-x64",
  7289. "android.25",
  7290. "android.24-x64",
  7291. "android.24",
  7292. "android.23-x64",
  7293. "android.23",
  7294. "android.22-x64",
  7295. "android.22",
  7296. "android.21-x64",
  7297. "android.21",
  7298. "android-x64",
  7299. "android",
  7300. "linux-bionic-x64",
  7301. "linux-bionic",
  7302. "linux-x64",
  7303. "linux",
  7304. "unix-x64",
  7305. "unix",
  7306. "any",
  7307. "base"
  7308. ],
  7309. "android.31-x64": [
  7310. "android.31",
  7311. "android.30-x64",
  7312. "android.30",
  7313. "android.29-x64",
  7314. "android.29",
  7315. "android.28-x64",
  7316. "android.28",
  7317. "android.27-x64",
  7318. "android.27",
  7319. "android.26-x64",
  7320. "android.26",
  7321. "android.25-x64",
  7322. "android.25",
  7323. "android.24-x64",
  7324. "android.24",
  7325. "android.23-x64",
  7326. "android.23",
  7327. "android.22-x64",
  7328. "android.22",
  7329. "android.21-x64",
  7330. "android.21",
  7331. "android-x64",
  7332. "android",
  7333. "linux-bionic-x64",
  7334. "linux-bionic",
  7335. "linux-x64",
  7336. "linux",
  7337. "unix-x64",
  7338. "unix",
  7339. "any",
  7340. "base"
  7341. ],
  7342. "android.32-x64": [
  7343. "android.32",
  7344. "android.31-x64",
  7345. "android.31",
  7346. "android.30-x64",
  7347. "android.30",
  7348. "android.29-x64",
  7349. "android.29",
  7350. "android.28-x64",
  7351. "android.28",
  7352. "android.27-x64",
  7353. "android.27",
  7354. "android.26-x64",
  7355. "android.26",
  7356. "android.25-x64",
  7357. "android.25",
  7358. "android.24-x64",
  7359. "android.24",
  7360. "android.23-x64",
  7361. "android.23",
  7362. "android.22-x64",
  7363. "android.22",
  7364. "android.21-x64",
  7365. "android.21",
  7366. "android-x64",
  7367. "android",
  7368. "linux-bionic-x64",
  7369. "linux-bionic",
  7370. "linux-x64",
  7371. "linux",
  7372. "unix-x64",
  7373. "unix",
  7374. "any",
  7375. "base"
  7376. ],
  7377. "arch-x64": [
  7378. "arch",
  7379. "linux-x64",
  7380. "linux",
  7381. "unix-x64",
  7382. "unix",
  7383. "any",
  7384. "base"
  7385. ],
  7386. "centos-x64": [
  7387. "centos",
  7388. "rhel-x64",
  7389. "rhel",
  7390. "linux-x64",
  7391. "linux",
  7392. "unix-x64",
  7393. "unix",
  7394. "any",
  7395. "base"
  7396. ],
  7397. "centos.7-x64": [
  7398. "centos.7",
  7399. "centos-x64",
  7400. "rhel.7-x64",
  7401. "centos",
  7402. "rhel.7",
  7403. "rhel-x64",
  7404. "rhel",
  7405. "linux-x64",
  7406. "linux",
  7407. "unix-x64",
  7408. "unix",
  7409. "any",
  7410. "base"
  7411. ],
  7412. "centos.8-x64": [
  7413. "centos.8",
  7414. "centos-x64",
  7415. "rhel.8-x64",
  7416. "centos",
  7417. "rhel.8",
  7418. "rhel-x64",
  7419. "rhel",
  7420. "linux-x64",
  7421. "linux",
  7422. "unix-x64",
  7423. "unix",
  7424. "any",
  7425. "base"
  7426. ],
  7427. "centos.9-x64": [
  7428. "centos.9",
  7429. "centos-x64",
  7430. "rhel.9-x64",
  7431. "centos",
  7432. "rhel.9",
  7433. "rhel-x64",
  7434. "rhel",
  7435. "linux-x64",
  7436. "linux",
  7437. "unix-x64",
  7438. "unix",
  7439. "any",
  7440. "base"
  7441. ],
  7442. "debian-x64": [
  7443. "debian",
  7444. "linux-x64",
  7445. "linux",
  7446. "unix-x64",
  7447. "unix",
  7448. "any",
  7449. "base"
  7450. ],
  7451. "debian.10-x64": [
  7452. "debian.10",
  7453. "debian-x64",
  7454. "debian",
  7455. "linux-x64",
  7456. "linux",
  7457. "unix-x64",
  7458. "unix",
  7459. "any",
  7460. "base"
  7461. ],
  7462. "debian.11-x64": [
  7463. "debian.11",
  7464. "debian-x64",
  7465. "debian",
  7466. "linux-x64",
  7467. "linux",
  7468. "unix-x64",
  7469. "unix",
  7470. "any",
  7471. "base"
  7472. ],
  7473. "debian.12-x64": [
  7474. "debian.12",
  7475. "debian-x64",
  7476. "debian",
  7477. "linux-x64",
  7478. "linux",
  7479. "unix-x64",
  7480. "unix",
  7481. "any",
  7482. "base"
  7483. ],
  7484. "debian.8-x64": [
  7485. "debian.8",
  7486. "debian-x64",
  7487. "debian",
  7488. "linux-x64",
  7489. "linux",
  7490. "unix-x64",
  7491. "unix",
  7492. "any",
  7493. "base"
  7494. ],
  7495. "debian.9-x64": [
  7496. "debian.9",
  7497. "debian-x64",
  7498. "debian",
  7499. "linux-x64",
  7500. "linux",
  7501. "unix-x64",
  7502. "unix",
  7503. "any",
  7504. "base"
  7505. ],
  7506. "exherbo-x64": [
  7507. "exherbo",
  7508. "linux-x64",
  7509. "linux",
  7510. "unix-x64",
  7511. "unix",
  7512. "any",
  7513. "base"
  7514. ],
  7515. "fedora-x64": [
  7516. "fedora",
  7517. "linux-x64",
  7518. "linux",
  7519. "unix-x64",
  7520. "unix",
  7521. "any",
  7522. "base"
  7523. ],
  7524. "fedora.23-x64": [
  7525. "fedora.23",
  7526. "fedora-x64",
  7527. "fedora",
  7528. "linux-x64",
  7529. "linux",
  7530. "unix-x64",
  7531. "unix",
  7532. "any",
  7533. "base"
  7534. ],
  7535. "fedora.24-x64": [
  7536. "fedora.24",
  7537. "fedora-x64",
  7538. "fedora",
  7539. "linux-x64",
  7540. "linux",
  7541. "unix-x64",
  7542. "unix",
  7543. "any",
  7544. "base"
  7545. ],
  7546. "fedora.25-x64": [
  7547. "fedora.25",
  7548. "fedora-x64",
  7549. "fedora",
  7550. "linux-x64",
  7551. "linux",
  7552. "unix-x64",
  7553. "unix",
  7554. "any",
  7555. "base"
  7556. ],
  7557. "fedora.26-x64": [
  7558. "fedora.26",
  7559. "fedora-x64",
  7560. "fedora",
  7561. "linux-x64",
  7562. "linux",
  7563. "unix-x64",
  7564. "unix",
  7565. "any",
  7566. "base"
  7567. ],
  7568. "fedora.27-x64": [
  7569. "fedora.27",
  7570. "fedora-x64",
  7571. "fedora",
  7572. "linux-x64",
  7573. "linux",
  7574. "unix-x64",
  7575. "unix",
  7576. "any",
  7577. "base"
  7578. ],
  7579. "fedora.28-x64": [
  7580. "fedora.28",
  7581. "fedora-x64",
  7582. "fedora",
  7583. "linux-x64",
  7584. "linux",
  7585. "unix-x64",
  7586. "unix",
  7587. "any",
  7588. "base"
  7589. ],
  7590. "fedora.29-x64": [
  7591. "fedora.29",
  7592. "fedora-x64",
  7593. "fedora",
  7594. "linux-x64",
  7595. "linux",
  7596. "unix-x64",
  7597. "unix",
  7598. "any",
  7599. "base"
  7600. ],
  7601. "fedora.30-x64": [
  7602. "fedora.30",
  7603. "fedora-x64",
  7604. "fedora",
  7605. "linux-x64",
  7606. "linux",
  7607. "unix-x64",
  7608. "unix",
  7609. "any",
  7610. "base"
  7611. ],
  7612. "fedora.31-x64": [
  7613. "fedora.31",
  7614. "fedora-x64",
  7615. "fedora",
  7616. "linux-x64",
  7617. "linux",
  7618. "unix-x64",
  7619. "unix",
  7620. "any",
  7621. "base"
  7622. ],
  7623. "fedora.32-x64": [
  7624. "fedora.32",
  7625. "fedora-x64",
  7626. "fedora",
  7627. "linux-x64",
  7628. "linux",
  7629. "unix-x64",
  7630. "unix",
  7631. "any",
  7632. "base"
  7633. ],
  7634. "fedora.33-x64": [
  7635. "fedora.33",
  7636. "fedora-x64",
  7637. "fedora",
  7638. "linux-x64",
  7639. "linux",
  7640. "unix-x64",
  7641. "unix",
  7642. "any",
  7643. "base"
  7644. ],
  7645. "fedora.34-x64": [
  7646. "fedora.34",
  7647. "fedora-x64",
  7648. "fedora",
  7649. "linux-x64",
  7650. "linux",
  7651. "unix-x64",
  7652. "unix",
  7653. "any",
  7654. "base"
  7655. ],
  7656. "fedora.35-x64": [
  7657. "fedora.35",
  7658. "fedora-x64",
  7659. "fedora",
  7660. "linux-x64",
  7661. "linux",
  7662. "unix-x64",
  7663. "unix",
  7664. "any",
  7665. "base"
  7666. ],
  7667. "fedora.36-x64": [
  7668. "fedora.36",
  7669. "fedora-x64",
  7670. "fedora",
  7671. "linux-x64",
  7672. "linux",
  7673. "unix-x64",
  7674. "unix",
  7675. "any",
  7676. "base"
  7677. ],
  7678. "fedora.37-x64": [
  7679. "fedora.37",
  7680. "fedora-x64",
  7681. "fedora",
  7682. "linux-x64",
  7683. "linux",
  7684. "unix-x64",
  7685. "unix",
  7686. "any",
  7687. "base"
  7688. ],
  7689. "fedora.38-x64": [
  7690. "fedora.38",
  7691. "fedora-x64",
  7692. "fedora",
  7693. "linux-x64",
  7694. "linux",
  7695. "unix-x64",
  7696. "unix",
  7697. "any",
  7698. "base"
  7699. ],
  7700. "fedora.39-x64": [
  7701. "fedora.39",
  7702. "fedora-x64",
  7703. "fedora",
  7704. "linux-x64",
  7705. "linux",
  7706. "unix-x64",
  7707. "unix",
  7708. "any",
  7709. "base"
  7710. ],
  7711. "gentoo-x64": [
  7712. "gentoo",
  7713. "linux-x64",
  7714. "linux",
  7715. "unix-x64",
  7716. "unix",
  7717. "any",
  7718. "base"
  7719. ],
  7720. "linux-bionic-x64": [
  7721. "linux-bionic",
  7722. "linux-x64",
  7723. "linux",
  7724. "unix-x64",
  7725. "unix",
  7726. "any",
  7727. "base"
  7728. ],
  7729. "linux-musl-x64": [
  7730. "linux-musl",
  7731. "linux-x64",
  7732. "linux",
  7733. "unix-x64",
  7734. "unix",
  7735. "any",
  7736. "base"
  7737. ],
  7738. "linux-x64": [
  7739. "linux",
  7740. "unix-x64",
  7741. "unix",
  7742. "any",
  7743. "base"
  7744. ],
  7745. "linuxmint.17-x64": [
  7746. "linuxmint.17",
  7747. "ubuntu.14.04-x64",
  7748. "ubuntu.14.04",
  7749. "ubuntu-x64",
  7750. "ubuntu",
  7751. "debian-x64",
  7752. "debian",
  7753. "linux-x64",
  7754. "linux",
  7755. "unix-x64",
  7756. "unix",
  7757. "any",
  7758. "base"
  7759. ],
  7760. "linuxmint.17.1-x64": [
  7761. "linuxmint.17.1",
  7762. "linuxmint.17-x64",
  7763. "linuxmint.17",
  7764. "ubuntu.14.04-x64",
  7765. "ubuntu.14.04",
  7766. "ubuntu-x64",
  7767. "ubuntu",
  7768. "debian-x64",
  7769. "debian",
  7770. "linux-x64",
  7771. "linux",
  7772. "unix-x64",
  7773. "unix",
  7774. "any",
  7775. "base"
  7776. ],
  7777. "linuxmint.17.2-x64": [
  7778. "linuxmint.17.2",
  7779. "linuxmint.17.1-x64",
  7780. "linuxmint.17.1",
  7781. "linuxmint.17-x64",
  7782. "linuxmint.17",
  7783. "ubuntu.14.04-x64",
  7784. "ubuntu.14.04",
  7785. "ubuntu-x64",
  7786. "ubuntu",
  7787. "debian-x64",
  7788. "debian",
  7789. "linux-x64",
  7790. "linux",
  7791. "unix-x64",
  7792. "unix",
  7793. "any",
  7794. "base"
  7795. ],
  7796. "linuxmint.17.3-x64": [
  7797. "linuxmint.17.3",
  7798. "linuxmint.17.2-x64",
  7799. "linuxmint.17.2",
  7800. "linuxmint.17.1-x64",
  7801. "linuxmint.17.1",
  7802. "linuxmint.17-x64",
  7803. "linuxmint.17",
  7804. "ubuntu.14.04-x64",
  7805. "ubuntu.14.04",
  7806. "ubuntu-x64",
  7807. "ubuntu",
  7808. "debian-x64",
  7809. "debian",
  7810. "linux-x64",
  7811. "linux",
  7812. "unix-x64",
  7813. "unix",
  7814. "any",
  7815. "base"
  7816. ],
  7817. "linuxmint.18-x64": [
  7818. "linuxmint.18",
  7819. "ubuntu.16.04-x64",
  7820. "ubuntu.16.04",
  7821. "ubuntu-x64",
  7822. "ubuntu",
  7823. "debian-x64",
  7824. "debian",
  7825. "linux-x64",
  7826. "linux",
  7827. "unix-x64",
  7828. "unix",
  7829. "any",
  7830. "base"
  7831. ],
  7832. "linuxmint.18.1-x64": [
  7833. "linuxmint.18.1",
  7834. "linuxmint.18-x64",
  7835. "linuxmint.18",
  7836. "ubuntu.16.04-x64",
  7837. "ubuntu.16.04",
  7838. "ubuntu-x64",
  7839. "ubuntu",
  7840. "debian-x64",
  7841. "debian",
  7842. "linux-x64",
  7843. "linux",
  7844. "unix-x64",
  7845. "unix",
  7846. "any",
  7847. "base"
  7848. ],
  7849. "linuxmint.18.2-x64": [
  7850. "linuxmint.18.2",
  7851. "linuxmint.18.1-x64",
  7852. "linuxmint.18.1",
  7853. "linuxmint.18-x64",
  7854. "linuxmint.18",
  7855. "ubuntu.16.04-x64",
  7856. "ubuntu.16.04",
  7857. "ubuntu-x64",
  7858. "ubuntu",
  7859. "debian-x64",
  7860. "debian",
  7861. "linux-x64",
  7862. "linux",
  7863. "unix-x64",
  7864. "unix",
  7865. "any",
  7866. "base"
  7867. ],
  7868. "linuxmint.18.3-x64": [
  7869. "linuxmint.18.3",
  7870. "linuxmint.18.2-x64",
  7871. "linuxmint.18.2",
  7872. "linuxmint.18.1-x64",
  7873. "linuxmint.18.1",
  7874. "linuxmint.18-x64",
  7875. "linuxmint.18",
  7876. "ubuntu.16.04-x64",
  7877. "ubuntu.16.04",
  7878. "ubuntu-x64",
  7879. "ubuntu",
  7880. "debian-x64",
  7881. "debian",
  7882. "linux-x64",
  7883. "linux",
  7884. "unix-x64",
  7885. "unix",
  7886. "any",
  7887. "base"
  7888. ],
  7889. "linuxmint.19-x64": [
  7890. "linuxmint.19",
  7891. "ubuntu.18.04-x64",
  7892. "ubuntu.18.04",
  7893. "ubuntu-x64",
  7894. "ubuntu",
  7895. "debian-x64",
  7896. "debian",
  7897. "linux-x64",
  7898. "linux",
  7899. "unix-x64",
  7900. "unix",
  7901. "any",
  7902. "base"
  7903. ],
  7904. "linuxmint.19.1-x64": [
  7905. "linuxmint.19.1",
  7906. "linuxmint.19-x64",
  7907. "linuxmint.19",
  7908. "ubuntu.18.04-x64",
  7909. "ubuntu.18.04",
  7910. "ubuntu-x64",
  7911. "ubuntu",
  7912. "debian-x64",
  7913. "debian",
  7914. "linux-x64",
  7915. "linux",
  7916. "unix-x64",
  7917. "unix",
  7918. "any",
  7919. "base"
  7920. ],
  7921. "linuxmint.19.2-x64": [
  7922. "linuxmint.19.2",
  7923. "linuxmint.19.1-x64",
  7924. "linuxmint.19.1",
  7925. "linuxmint.19-x64",
  7926. "linuxmint.19",
  7927. "ubuntu.18.04-x64",
  7928. "ubuntu.18.04",
  7929. "ubuntu-x64",
  7930. "ubuntu",
  7931. "debian-x64",
  7932. "debian",
  7933. "linux-x64",
  7934. "linux",
  7935. "unix-x64",
  7936. "unix",
  7937. "any",
  7938. "base"
  7939. ],
  7940. "manjaro-x64": [
  7941. "manjaro",
  7942. "arch-x64",
  7943. "arch",
  7944. "linux-x64",
  7945. "linux",
  7946. "unix-x64",
  7947. "unix",
  7948. "any",
  7949. "base"
  7950. ],
  7951. "miraclelinux-x64": [
  7952. "miraclelinux",
  7953. "rhel-x64",
  7954. "rhel",
  7955. "linux-x64",
  7956. "linux",
  7957. "unix-x64",
  7958. "unix",
  7959. "any",
  7960. "base"
  7961. ],
  7962. "miraclelinux.8-x64": [
  7963. "miraclelinux.8",
  7964. "miraclelinux-x64",
  7965. "rhel.8-x64",
  7966. "miraclelinux",
  7967. "rhel.8",
  7968. "rhel-x64",
  7969. "rhel",
  7970. "linux-x64",
  7971. "linux",
  7972. "unix-x64",
  7973. "unix",
  7974. "any",
  7975. "base"
  7976. ],
  7977. "miraclelinux.9-x64": [
  7978. "miraclelinux.9",
  7979. "miraclelinux-x64",
  7980. "rhel.9-x64",
  7981. "miraclelinux",
  7982. "rhel.9",
  7983. "rhel-x64",
  7984. "rhel",
  7985. "linux-x64",
  7986. "linux",
  7987. "unix-x64",
  7988. "unix",
  7989. "any",
  7990. "base"
  7991. ],
  7992. "ol-x64": [
  7993. "ol",
  7994. "rhel-x64",
  7995. "rhel",
  7996. "linux-x64",
  7997. "linux",
  7998. "unix-x64",
  7999. "unix",
  8000. "any",
  8001. "base"
  8002. ],
  8003. "ol.7-x64": [
  8004. "ol.7",
  8005. "ol-x64",
  8006. "rhel.7-x64",
  8007. "ol",
  8008. "rhel.7",
  8009. "rhel-x64",
  8010. "rhel",
  8011. "linux-x64",
  8012. "linux",
  8013. "unix-x64",
  8014. "unix",
  8015. "any",
  8016. "base"
  8017. ],
  8018. "ol.7.0-x64": [
  8019. "ol.7.0",
  8020. "ol.7-x64",
  8021. "rhel.7.0-x64",
  8022. "ol.7",
  8023. "rhel.7.0",
  8024. "ol-x64",
  8025. "rhel.7-x64",
  8026. "ol",
  8027. "rhel.7",
  8028. "rhel-x64",
  8029. "rhel",
  8030. "linux-x64",
  8031. "linux",
  8032. "unix-x64",
  8033. "unix",
  8034. "any",
  8035. "base"
  8036. ],
  8037. "ol.7.1-x64": [
  8038. "ol.7.1",
  8039. "ol.7.0-x64",
  8040. "rhel.7.1-x64",
  8041. "ol.7.0",
  8042. "rhel.7.1",
  8043. "ol.7-x64",
  8044. "rhel.7.0-x64",
  8045. "ol.7",
  8046. "rhel.7.0",
  8047. "ol-x64",
  8048. "rhel.7-x64",
  8049. "ol",
  8050. "rhel.7",
  8051. "rhel-x64",
  8052. "rhel",
  8053. "linux-x64",
  8054. "linux",
  8055. "unix-x64",
  8056. "unix",
  8057. "any",
  8058. "base"
  8059. ],
  8060. "ol.7.2-x64": [
  8061. "ol.7.2",
  8062. "ol.7.1-x64",
  8063. "rhel.7.2-x64",
  8064. "ol.7.1",
  8065. "rhel.7.2",
  8066. "ol.7.0-x64",
  8067. "rhel.7.1-x64",
  8068. "ol.7.0",
  8069. "rhel.7.1",
  8070. "ol.7-x64",
  8071. "rhel.7.0-x64",
  8072. "ol.7",
  8073. "rhel.7.0",
  8074. "ol-x64",
  8075. "rhel.7-x64",
  8076. "ol",
  8077. "rhel.7",
  8078. "rhel-x64",
  8079. "rhel",
  8080. "linux-x64",
  8081. "linux",
  8082. "unix-x64",
  8083. "unix",
  8084. "any",
  8085. "base"
  8086. ],
  8087. "ol.7.3-x64": [
  8088. "ol.7.3",
  8089. "ol.7.2-x64",
  8090. "rhel.7.3-x64",
  8091. "ol.7.2",
  8092. "rhel.7.3",
  8093. "ol.7.1-x64",
  8094. "rhel.7.2-x64",
  8095. "ol.7.1",
  8096. "rhel.7.2",
  8097. "ol.7.0-x64",
  8098. "rhel.7.1-x64",
  8099. "ol.7.0",
  8100. "rhel.7.1",
  8101. "ol.7-x64",
  8102. "rhel.7.0-x64",
  8103. "ol.7",
  8104. "rhel.7.0",
  8105. "ol-x64",
  8106. "rhel.7-x64",
  8107. "ol",
  8108. "rhel.7",
  8109. "rhel-x64",
  8110. "rhel",
  8111. "linux-x64",
  8112. "linux",
  8113. "unix-x64",
  8114. "unix",
  8115. "any",
  8116. "base"
  8117. ],
  8118. "ol.7.4-x64": [
  8119. "ol.7.4",
  8120. "ol.7.3-x64",
  8121. "rhel.7.4-x64",
  8122. "ol.7.3",
  8123. "rhel.7.4",
  8124. "ol.7.2-x64",
  8125. "rhel.7.3-x64",
  8126. "ol.7.2",
  8127. "rhel.7.3",
  8128. "ol.7.1-x64",
  8129. "rhel.7.2-x64",
  8130. "ol.7.1",
  8131. "rhel.7.2",
  8132. "ol.7.0-x64",
  8133. "rhel.7.1-x64",
  8134. "ol.7.0",
  8135. "rhel.7.1",
  8136. "ol.7-x64",
  8137. "rhel.7.0-x64",
  8138. "ol.7",
  8139. "rhel.7.0",
  8140. "ol-x64",
  8141. "rhel.7-x64",
  8142. "ol",
  8143. "rhel.7",
  8144. "rhel-x64",
  8145. "rhel",
  8146. "linux-x64",
  8147. "linux",
  8148. "unix-x64",
  8149. "unix",
  8150. "any",
  8151. "base"
  8152. ],
  8153. "ol.7.5-x64": [
  8154. "ol.7.5",
  8155. "ol.7.4-x64",
  8156. "rhel.7.5-x64",
  8157. "ol.7.4",
  8158. "rhel.7.5",
  8159. "ol.7.3-x64",
  8160. "rhel.7.4-x64",
  8161. "ol.7.3",
  8162. "rhel.7.4",
  8163. "ol.7.2-x64",
  8164. "rhel.7.3-x64",
  8165. "ol.7.2",
  8166. "rhel.7.3",
  8167. "ol.7.1-x64",
  8168. "rhel.7.2-x64",
  8169. "ol.7.1",
  8170. "rhel.7.2",
  8171. "ol.7.0-x64",
  8172. "rhel.7.1-x64",
  8173. "ol.7.0",
  8174. "rhel.7.1",
  8175. "ol.7-x64",
  8176. "rhel.7.0-x64",
  8177. "ol.7",
  8178. "rhel.7.0",
  8179. "ol-x64",
  8180. "rhel.7-x64",
  8181. "ol",
  8182. "rhel.7",
  8183. "rhel-x64",
  8184. "rhel",
  8185. "linux-x64",
  8186. "linux",
  8187. "unix-x64",
  8188. "unix",
  8189. "any",
  8190. "base"
  8191. ],
  8192. "ol.7.6-x64": [
  8193. "ol.7.6",
  8194. "ol.7.5-x64",
  8195. "rhel.7.6-x64",
  8196. "ol.7.5",
  8197. "rhel.7.6",
  8198. "ol.7.4-x64",
  8199. "rhel.7.5-x64",
  8200. "ol.7.4",
  8201. "rhel.7.5",
  8202. "ol.7.3-x64",
  8203. "rhel.7.4-x64",
  8204. "ol.7.3",
  8205. "rhel.7.4",
  8206. "ol.7.2-x64",
  8207. "rhel.7.3-x64",
  8208. "ol.7.2",
  8209. "rhel.7.3",
  8210. "ol.7.1-x64",
  8211. "rhel.7.2-x64",
  8212. "ol.7.1",
  8213. "rhel.7.2",
  8214. "ol.7.0-x64",
  8215. "rhel.7.1-x64",
  8216. "ol.7.0",
  8217. "rhel.7.1",
  8218. "ol.7-x64",
  8219. "rhel.7.0-x64",
  8220. "ol.7",
  8221. "rhel.7.0",
  8222. "ol-x64",
  8223. "rhel.7-x64",
  8224. "ol",
  8225. "rhel.7",
  8226. "rhel-x64",
  8227. "rhel",
  8228. "linux-x64",
  8229. "linux",
  8230. "unix-x64",
  8231. "unix",
  8232. "any",
  8233. "base"
  8234. ],
  8235. "ol.8-x64": [
  8236. "ol.8",
  8237. "ol-x64",
  8238. "rhel.8-x64",
  8239. "ol",
  8240. "rhel.8",
  8241. "rhel-x64",
  8242. "rhel",
  8243. "linux-x64",
  8244. "linux",
  8245. "unix-x64",
  8246. "unix",
  8247. "any",
  8248. "base"
  8249. ],
  8250. "ol.8.0-x64": [
  8251. "ol.8.0",
  8252. "ol.8-x64",
  8253. "rhel.8.0-x64",
  8254. "ol.8",
  8255. "rhel.8.0",
  8256. "ol-x64",
  8257. "rhel.8-x64",
  8258. "ol",
  8259. "rhel.8",
  8260. "rhel-x64",
  8261. "rhel",
  8262. "linux-x64",
  8263. "linux",
  8264. "unix-x64",
  8265. "unix",
  8266. "any",
  8267. "base"
  8268. ],
  8269. "opensuse-x64": [
  8270. "opensuse",
  8271. "linux-x64",
  8272. "linux",
  8273. "unix-x64",
  8274. "unix",
  8275. "any",
  8276. "base"
  8277. ],
  8278. "opensuse.13.2-x64": [
  8279. "opensuse.13.2",
  8280. "opensuse-x64",
  8281. "opensuse",
  8282. "linux-x64",
  8283. "linux",
  8284. "unix-x64",
  8285. "unix",
  8286. "any",
  8287. "base"
  8288. ],
  8289. "opensuse.15.0-x64": [
  8290. "opensuse.15.0",
  8291. "opensuse-x64",
  8292. "opensuse",
  8293. "linux-x64",
  8294. "linux",
  8295. "unix-x64",
  8296. "unix",
  8297. "any",
  8298. "base"
  8299. ],
  8300. "opensuse.15.1-x64": [
  8301. "opensuse.15.1",
  8302. "opensuse-x64",
  8303. "opensuse",
  8304. "linux-x64",
  8305. "linux",
  8306. "unix-x64",
  8307. "unix",
  8308. "any",
  8309. "base"
  8310. ],
  8311. "opensuse.42.1-x64": [
  8312. "opensuse.42.1",
  8313. "opensuse-x64",
  8314. "opensuse",
  8315. "linux-x64",
  8316. "linux",
  8317. "unix-x64",
  8318. "unix",
  8319. "any",
  8320. "base"
  8321. ],
  8322. "opensuse.42.2-x64": [
  8323. "opensuse.42.2",
  8324. "opensuse-x64",
  8325. "opensuse",
  8326. "linux-x64",
  8327. "linux",
  8328. "unix-x64",
  8329. "unix",
  8330. "any",
  8331. "base"
  8332. ],
  8333. "opensuse.42.3-x64": [
  8334. "opensuse.42.3",
  8335. "opensuse-x64",
  8336. "opensuse",
  8337. "linux-x64",
  8338. "linux",
  8339. "unix-x64",
  8340. "unix",
  8341. "any",
  8342. "base"
  8343. ],
  8344. "rhel-x64": [
  8345. "rhel",
  8346. "linux-x64",
  8347. "linux",
  8348. "unix-x64",
  8349. "unix",
  8350. "any",
  8351. "base"
  8352. ],
  8353. "rhel.6-x64": [
  8354. "rhel.6",
  8355. "rhel-x64",
  8356. "rhel",
  8357. "linux-x64",
  8358. "linux",
  8359. "unix-x64",
  8360. "unix",
  8361. "any",
  8362. "base"
  8363. ],
  8364. "rhel.7-x64": [
  8365. "rhel.7",
  8366. "rhel-x64",
  8367. "rhel",
  8368. "linux-x64",
  8369. "linux",
  8370. "unix-x64",
  8371. "unix",
  8372. "any",
  8373. "base"
  8374. ],
  8375. "rhel.7.0-x64": [
  8376. "rhel.7.0",
  8377. "rhel.7-x64",
  8378. "rhel.7",
  8379. "rhel-x64",
  8380. "rhel",
  8381. "linux-x64",
  8382. "linux",
  8383. "unix-x64",
  8384. "unix",
  8385. "any",
  8386. "base"
  8387. ],
  8388. "rhel.7.1-x64": [
  8389. "rhel.7.1",
  8390. "rhel.7.0-x64",
  8391. "rhel.7.0",
  8392. "rhel.7-x64",
  8393. "rhel.7",
  8394. "rhel-x64",
  8395. "rhel",
  8396. "linux-x64",
  8397. "linux",
  8398. "unix-x64",
  8399. "unix",
  8400. "any",
  8401. "base"
  8402. ],
  8403. "rhel.7.2-x64": [
  8404. "rhel.7.2",
  8405. "rhel.7.1-x64",
  8406. "rhel.7.1",
  8407. "rhel.7.0-x64",
  8408. "rhel.7.0",
  8409. "rhel.7-x64",
  8410. "rhel.7",
  8411. "rhel-x64",
  8412. "rhel",
  8413. "linux-x64",
  8414. "linux",
  8415. "unix-x64",
  8416. "unix",
  8417. "any",
  8418. "base"
  8419. ],
  8420. "rhel.7.3-x64": [
  8421. "rhel.7.3",
  8422. "rhel.7.2-x64",
  8423. "rhel.7.2",
  8424. "rhel.7.1-x64",
  8425. "rhel.7.1",
  8426. "rhel.7.0-x64",
  8427. "rhel.7.0",
  8428. "rhel.7-x64",
  8429. "rhel.7",
  8430. "rhel-x64",
  8431. "rhel",
  8432. "linux-x64",
  8433. "linux",
  8434. "unix-x64",
  8435. "unix",
  8436. "any",
  8437. "base"
  8438. ],
  8439. "rhel.7.4-x64": [
  8440. "rhel.7.4",
  8441. "rhel.7.3-x64",
  8442. "rhel.7.3",
  8443. "rhel.7.2-x64",
  8444. "rhel.7.2",
  8445. "rhel.7.1-x64",
  8446. "rhel.7.1",
  8447. "rhel.7.0-x64",
  8448. "rhel.7.0",
  8449. "rhel.7-x64",
  8450. "rhel.7",
  8451. "rhel-x64",
  8452. "rhel",
  8453. "linux-x64",
  8454. "linux",
  8455. "unix-x64",
  8456. "unix",
  8457. "any",
  8458. "base"
  8459. ],
  8460. "rhel.7.5-x64": [
  8461. "rhel.7.5",
  8462. "rhel.7.4-x64",
  8463. "rhel.7.4",
  8464. "rhel.7.3-x64",
  8465. "rhel.7.3",
  8466. "rhel.7.2-x64",
  8467. "rhel.7.2",
  8468. "rhel.7.1-x64",
  8469. "rhel.7.1",
  8470. "rhel.7.0-x64",
  8471. "rhel.7.0",
  8472. "rhel.7-x64",
  8473. "rhel.7",
  8474. "rhel-x64",
  8475. "rhel",
  8476. "linux-x64",
  8477. "linux",
  8478. "unix-x64",
  8479. "unix",
  8480. "any",
  8481. "base"
  8482. ],
  8483. "rhel.7.6-x64": [
  8484. "rhel.7.6",
  8485. "rhel.7.5-x64",
  8486. "rhel.7.5",
  8487. "rhel.7.4-x64",
  8488. "rhel.7.4",
  8489. "rhel.7.3-x64",
  8490. "rhel.7.3",
  8491. "rhel.7.2-x64",
  8492. "rhel.7.2",
  8493. "rhel.7.1-x64",
  8494. "rhel.7.1",
  8495. "rhel.7.0-x64",
  8496. "rhel.7.0",
  8497. "rhel.7-x64",
  8498. "rhel.7",
  8499. "rhel-x64",
  8500. "rhel",
  8501. "linux-x64",
  8502. "linux",
  8503. "unix-x64",
  8504. "unix",
  8505. "any",
  8506. "base"
  8507. ],
  8508. "rhel.8-x64": [
  8509. "rhel.8",
  8510. "rhel-x64",
  8511. "rhel",
  8512. "linux-x64",
  8513. "linux",
  8514. "unix-x64",
  8515. "unix",
  8516. "any",
  8517. "base"
  8518. ],
  8519. "rhel.8.0-x64": [
  8520. "rhel.8.0",
  8521. "rhel.8-x64",
  8522. "rhel.8",
  8523. "rhel-x64",
  8524. "rhel",
  8525. "linux-x64",
  8526. "linux",
  8527. "unix-x64",
  8528. "unix",
  8529. "any",
  8530. "base"
  8531. ],
  8532. "rhel.8.1-x64": [
  8533. "rhel.8.1",
  8534. "rhel.8.0-x64",
  8535. "rhel.8.0",
  8536. "rhel.8-x64",
  8537. "rhel.8",
  8538. "rhel-x64",
  8539. "rhel",
  8540. "linux-x64",
  8541. "linux",
  8542. "unix-x64",
  8543. "unix",
  8544. "any",
  8545. "base"
  8546. ],
  8547. "rhel.9-x64": [
  8548. "rhel.9",
  8549. "rhel-x64",
  8550. "rhel",
  8551. "linux-x64",
  8552. "linux",
  8553. "unix-x64",
  8554. "unix",
  8555. "any",
  8556. "base"
  8557. ],
  8558. "rocky-x64": [
  8559. "rocky",
  8560. "rhel-x64",
  8561. "rhel",
  8562. "linux-x64",
  8563. "linux",
  8564. "unix-x64",
  8565. "unix",
  8566. "any",
  8567. "base"
  8568. ],
  8569. "rocky.8-x64": [
  8570. "rocky.8",
  8571. "rocky-x64",
  8572. "rhel.8-x64",
  8573. "rocky",
  8574. "rhel.8",
  8575. "rhel-x64",
  8576. "rhel",
  8577. "linux-x64",
  8578. "linux",
  8579. "unix-x64",
  8580. "unix",
  8581. "any",
  8582. "base"
  8583. ],
  8584. "rocky.9-x64": [
  8585. "rocky.9",
  8586. "rocky-x64",
  8587. "rhel.9-x64",
  8588. "rocky",
  8589. "rhel.9",
  8590. "rhel-x64",
  8591. "rhel",
  8592. "linux-x64",
  8593. "linux",
  8594. "unix-x64",
  8595. "unix",
  8596. "any",
  8597. "base"
  8598. ],
  8599. "sles-x64": [
  8600. "sles",
  8601. "linux-x64",
  8602. "linux",
  8603. "unix-x64",
  8604. "unix",
  8605. "any",
  8606. "base"
  8607. ],
  8608. "sles.12-x64": [
  8609. "sles.12",
  8610. "sles-x64",
  8611. "sles",
  8612. "linux-x64",
  8613. "linux",
  8614. "unix-x64",
  8615. "unix",
  8616. "any",
  8617. "base"
  8618. ],
  8619. "sles.12.1-x64": [
  8620. "sles.12.1",
  8621. "sles.12-x64",
  8622. "sles.12",
  8623. "sles-x64",
  8624. "sles",
  8625. "linux-x64",
  8626. "linux",
  8627. "unix-x64",
  8628. "unix",
  8629. "any",
  8630. "base"
  8631. ],
  8632. "sles.12.2-x64": [
  8633. "sles.12.2",
  8634. "sles.12.1-x64",
  8635. "sles.12.1",
  8636. "sles.12-x64",
  8637. "sles.12",
  8638. "sles-x64",
  8639. "sles",
  8640. "linux-x64",
  8641. "linux",
  8642. "unix-x64",
  8643. "unix",
  8644. "any",
  8645. "base"
  8646. ],
  8647. "sles.12.3-x64": [
  8648. "sles.12.3",
  8649. "sles.12.2-x64",
  8650. "sles.12.2",
  8651. "sles.12.1-x64",
  8652. "sles.12.1",
  8653. "sles.12-x64",
  8654. "sles.12",
  8655. "sles-x64",
  8656. "sles",
  8657. "linux-x64",
  8658. "linux",
  8659. "unix-x64",
  8660. "unix",
  8661. "any",
  8662. "base"
  8663. ],
  8664. "sles.12.4-x64": [
  8665. "sles.12.4",
  8666. "sles.12.3-x64",
  8667. "sles.12.3",
  8668. "sles.12.2-x64",
  8669. "sles.12.2",
  8670. "sles.12.1-x64",
  8671. "sles.12.1",
  8672. "sles.12-x64",
  8673. "sles.12",
  8674. "sles-x64",
  8675. "sles",
  8676. "linux-x64",
  8677. "linux",
  8678. "unix-x64",
  8679. "unix",
  8680. "any",
  8681. "base"
  8682. ],
  8683. "sles.15-x64": [
  8684. "sles.15",
  8685. "sles.12.4-x64",
  8686. "sles.12.4",
  8687. "sles.12.3-x64",
  8688. "sles.12.3",
  8689. "sles.12.2-x64",
  8690. "sles.12.2",
  8691. "sles.12.1-x64",
  8692. "sles.12.1",
  8693. "sles.12-x64",
  8694. "sles.12",
  8695. "sles-x64",
  8696. "sles",
  8697. "linux-x64",
  8698. "linux",
  8699. "unix-x64",
  8700. "unix",
  8701. "any",
  8702. "base"
  8703. ],
  8704. "sles.15.1-x64": [
  8705. "sles.15.1",
  8706. "sles.15-x64",
  8707. "sles.15",
  8708. "sles.12.4-x64",
  8709. "sles.12.4",
  8710. "sles.12.3-x64",
  8711. "sles.12.3",
  8712. "sles.12.2-x64",
  8713. "sles.12.2",
  8714. "sles.12.1-x64",
  8715. "sles.12.1",
  8716. "sles.12-x64",
  8717. "sles.12",
  8718. "sles-x64",
  8719. "sles",
  8720. "linux-x64",
  8721. "linux",
  8722. "unix-x64",
  8723. "unix",
  8724. "any",
  8725. "base"
  8726. ],
  8727. "ubuntu-x64": [
  8728. "ubuntu",
  8729. "debian-x64",
  8730. "debian",
  8731. "linux-x64",
  8732. "linux",
  8733. "unix-x64",
  8734. "unix",
  8735. "any",
  8736. "base"
  8737. ],
  8738. "ubuntu.14.04-x64": [
  8739. "ubuntu.14.04",
  8740. "ubuntu-x64",
  8741. "ubuntu",
  8742. "debian-x64",
  8743. "debian",
  8744. "linux-x64",
  8745. "linux",
  8746. "unix-x64",
  8747. "unix",
  8748. "any",
  8749. "base"
  8750. ],
  8751. "ubuntu.14.10-x64": [
  8752. "ubuntu.14.10",
  8753. "ubuntu-x64",
  8754. "ubuntu",
  8755. "debian-x64",
  8756. "debian",
  8757. "linux-x64",
  8758. "linux",
  8759. "unix-x64",
  8760. "unix",
  8761. "any",
  8762. "base"
  8763. ],
  8764. "ubuntu.15.04-x64": [
  8765. "ubuntu.15.04",
  8766. "ubuntu-x64",
  8767. "ubuntu",
  8768. "debian-x64",
  8769. "debian",
  8770. "linux-x64",
  8771. "linux",
  8772. "unix-x64",
  8773. "unix",
  8774. "any",
  8775. "base"
  8776. ],
  8777. "ubuntu.15.10-x64": [
  8778. "ubuntu.15.10",
  8779. "ubuntu-x64",
  8780. "ubuntu",
  8781. "debian-x64",
  8782. "debian",
  8783. "linux-x64",
  8784. "linux",
  8785. "unix-x64",
  8786. "unix",
  8787. "any",
  8788. "base"
  8789. ],
  8790. "ubuntu.16.04-x64": [
  8791. "ubuntu.16.04",
  8792. "ubuntu-x64",
  8793. "ubuntu",
  8794. "debian-x64",
  8795. "debian",
  8796. "linux-x64",
  8797. "linux",
  8798. "unix-x64",
  8799. "unix",
  8800. "any",
  8801. "base"
  8802. ],
  8803. "ubuntu.16.10-x64": [
  8804. "ubuntu.16.10",
  8805. "ubuntu-x64",
  8806. "ubuntu",
  8807. "debian-x64",
  8808. "debian",
  8809. "linux-x64",
  8810. "linux",
  8811. "unix-x64",
  8812. "unix",
  8813. "any",
  8814. "base"
  8815. ],
  8816. "ubuntu.17.04-x64": [
  8817. "ubuntu.17.04",
  8818. "ubuntu-x64",
  8819. "ubuntu",
  8820. "debian-x64",
  8821. "debian",
  8822. "linux-x64",
  8823. "linux",
  8824. "unix-x64",
  8825. "unix",
  8826. "any",
  8827. "base"
  8828. ],
  8829. "ubuntu.17.10-x64": [
  8830. "ubuntu.17.10",
  8831. "ubuntu-x64",
  8832. "ubuntu",
  8833. "debian-x64",
  8834. "debian",
  8835. "linux-x64",
  8836. "linux",
  8837. "unix-x64",
  8838. "unix",
  8839. "any",
  8840. "base"
  8841. ],
  8842. "ubuntu.18.04-x64": [
  8843. "ubuntu.18.04",
  8844. "ubuntu-x64",
  8845. "ubuntu",
  8846. "debian-x64",
  8847. "debian",
  8848. "linux-x64",
  8849. "linux",
  8850. "unix-x64",
  8851. "unix",
  8852. "any",
  8853. "base"
  8854. ],
  8855. "ubuntu.18.10-x64": [
  8856. "ubuntu.18.10",
  8857. "ubuntu-x64",
  8858. "ubuntu",
  8859. "debian-x64",
  8860. "debian",
  8861. "linux-x64",
  8862. "linux",
  8863. "unix-x64",
  8864. "unix",
  8865. "any",
  8866. "base"
  8867. ],
  8868. "ubuntu.19.04-x64": [
  8869. "ubuntu.19.04",
  8870. "ubuntu-x64",
  8871. "ubuntu",
  8872. "debian-x64",
  8873. "debian",
  8874. "linux-x64",
  8875. "linux",
  8876. "unix-x64",
  8877. "unix",
  8878. "any",
  8879. "base"
  8880. ],
  8881. "ubuntu.19.10-x64": [
  8882. "ubuntu.19.10",
  8883. "ubuntu-x64",
  8884. "ubuntu",
  8885. "debian-x64",
  8886. "debian",
  8887. "linux-x64",
  8888. "linux",
  8889. "unix-x64",
  8890. "unix",
  8891. "any",
  8892. "base"
  8893. ],
  8894. "ubuntu.20.04-x64": [
  8895. "ubuntu.20.04",
  8896. "ubuntu-x64",
  8897. "ubuntu",
  8898. "debian-x64",
  8899. "debian",
  8900. "linux-x64",
  8901. "linux",
  8902. "unix-x64",
  8903. "unix",
  8904. "any",
  8905. "base"
  8906. ],
  8907. "ubuntu.20.10-x64": [
  8908. "ubuntu.20.10",
  8909. "ubuntu-x64",
  8910. "ubuntu",
  8911. "debian-x64",
  8912. "debian",
  8913. "linux-x64",
  8914. "linux",
  8915. "unix-x64",
  8916. "unix",
  8917. "any",
  8918. "base"
  8919. ],
  8920. "ubuntu.21.04-x64": [
  8921. "ubuntu.21.04",
  8922. "ubuntu-x64",
  8923. "ubuntu",
  8924. "debian-x64",
  8925. "debian",
  8926. "linux-x64",
  8927. "linux",
  8928. "unix-x64",
  8929. "unix",
  8930. "any",
  8931. "base"
  8932. ],
  8933. "ubuntu.21.10-x64": [
  8934. "ubuntu.21.10",
  8935. "ubuntu-x64",
  8936. "ubuntu",
  8937. "debian-x64",
  8938. "debian",
  8939. "linux-x64",
  8940. "linux",
  8941. "unix-x64",
  8942. "unix",
  8943. "any",
  8944. "base"
  8945. ],
  8946. "ubuntu.22.04-x64": [
  8947. "ubuntu.22.04",
  8948. "ubuntu-x64",
  8949. "ubuntu",
  8950. "debian-x64",
  8951. "debian",
  8952. "linux-x64",
  8953. "linux",
  8954. "unix-x64",
  8955. "unix",
  8956. "any",
  8957. "base"
  8958. ],
  8959. "ubuntu.22.10-x64": [
  8960. "ubuntu.22.10",
  8961. "ubuntu-x64",
  8962. "ubuntu",
  8963. "debian-x64",
  8964. "debian",
  8965. "linux-x64",
  8966. "linux",
  8967. "unix-x64",
  8968. "unix",
  8969. "any",
  8970. "base"
  8971. ],
  8972. "ubuntu.23.04-x64": [
  8973. "ubuntu.23.04",
  8974. "ubuntu-x64",
  8975. "ubuntu",
  8976. "debian-x64",
  8977. "debian",
  8978. "linux-x64",
  8979. "linux",
  8980. "unix-x64",
  8981. "unix",
  8982. "any",
  8983. "base"
  8984. ],
  8985. "ubuntu.23.10-x64": [
  8986. "ubuntu.23.10",
  8987. "ubuntu-x64",
  8988. "ubuntu",
  8989. "debian-x64",
  8990. "debian",
  8991. "linux-x64",
  8992. "linux",
  8993. "unix-x64",
  8994. "unix",
  8995. "any",
  8996. "base"
  8997. ]
  8998. }
  8999. }