ConvertLog.deps.json 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v6.0/linux-x64",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v6.0": {},
  9. ".NETCoreApp,Version=v6.0/linux-x64": {
  10. "ConvertLog/1.0.0": {
  11. "dependencies": {
  12. "CommonObj": "1.0.0",
  13. "Microsoft.Extensions.Configuration": "9.0.1",
  14. "Microsoft.Extensions.Configuration.Json": "9.0.0",
  15. "Newtonsoft.Json": "13.0.3",
  16. "Oracle.ManagedDataAccess.Core": "3.21.100",
  17. "log4net": "2.0.11",
  18. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "6.0.32"
  19. },
  20. "runtime": {
  21. "ConvertLog.dll": {}
  22. }
  23. },
  24. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.32": {
  25. "runtime": {
  26. "Microsoft.CSharp.dll": {
  27. "assemblyVersion": "6.0.0.0",
  28. "fileVersion": "6.0.3224.31407"
  29. },
  30. "Microsoft.VisualBasic.Core.dll": {
  31. "assemblyVersion": "11.0.0.0",
  32. "fileVersion": "11.100.3224.31407"
  33. },
  34. "Microsoft.VisualBasic.dll": {
  35. "assemblyVersion": "10.0.0.0",
  36. "fileVersion": "6.0.3224.31407"
  37. },
  38. "Microsoft.Win32.Primitives.dll": {
  39. "assemblyVersion": "6.0.0.0",
  40. "fileVersion": "6.0.3224.31407"
  41. },
  42. "Microsoft.Win32.Registry.dll": {
  43. "assemblyVersion": "6.0.0.0",
  44. "fileVersion": "6.0.3224.31407"
  45. },
  46. "System.AppContext.dll": {
  47. "assemblyVersion": "6.0.0.0",
  48. "fileVersion": "6.0.3224.31407"
  49. },
  50. "System.Buffers.dll": {
  51. "assemblyVersion": "6.0.0.0",
  52. "fileVersion": "6.0.3224.31407"
  53. },
  54. "System.Collections.Concurrent.dll": {
  55. "assemblyVersion": "6.0.0.0",
  56. "fileVersion": "6.0.3224.31407"
  57. },
  58. "System.Collections.Immutable.dll": {
  59. "assemblyVersion": "6.0.0.0",
  60. "fileVersion": "6.0.3224.31407"
  61. },
  62. "System.Collections.NonGeneric.dll": {
  63. "assemblyVersion": "6.0.0.0",
  64. "fileVersion": "6.0.3224.31407"
  65. },
  66. "System.Collections.Specialized.dll": {
  67. "assemblyVersion": "6.0.0.0",
  68. "fileVersion": "6.0.3224.31407"
  69. },
  70. "System.Collections.dll": {
  71. "assemblyVersion": "6.0.0.0",
  72. "fileVersion": "6.0.3224.31407"
  73. },
  74. "System.ComponentModel.Annotations.dll": {
  75. "assemblyVersion": "6.0.0.0",
  76. "fileVersion": "6.0.3224.31407"
  77. },
  78. "System.ComponentModel.DataAnnotations.dll": {
  79. "assemblyVersion": "4.0.0.0",
  80. "fileVersion": "6.0.3224.31407"
  81. },
  82. "System.ComponentModel.EventBasedAsync.dll": {
  83. "assemblyVersion": "6.0.0.0",
  84. "fileVersion": "6.0.3224.31407"
  85. },
  86. "System.ComponentModel.Primitives.dll": {
  87. "assemblyVersion": "6.0.0.0",
  88. "fileVersion": "6.0.3224.31407"
  89. },
  90. "System.ComponentModel.TypeConverter.dll": {
  91. "assemblyVersion": "6.0.0.0",
  92. "fileVersion": "6.0.3224.31407"
  93. },
  94. "System.ComponentModel.dll": {
  95. "assemblyVersion": "6.0.0.0",
  96. "fileVersion": "6.0.3224.31407"
  97. },
  98. "System.Configuration.dll": {
  99. "assemblyVersion": "4.0.0.0",
  100. "fileVersion": "6.0.3224.31407"
  101. },
  102. "System.Console.dll": {
  103. "assemblyVersion": "6.0.0.0",
  104. "fileVersion": "6.0.3224.31407"
  105. },
  106. "System.Core.dll": {
  107. "assemblyVersion": "4.0.0.0",
  108. "fileVersion": "6.0.3224.31407"
  109. },
  110. "System.Data.Common.dll": {
  111. "assemblyVersion": "6.0.0.0",
  112. "fileVersion": "6.0.3224.31407"
  113. },
  114. "System.Data.DataSetExtensions.dll": {
  115. "assemblyVersion": "4.0.0.0",
  116. "fileVersion": "6.0.3224.31407"
  117. },
  118. "System.Data.dll": {
  119. "assemblyVersion": "4.0.0.0",
  120. "fileVersion": "6.0.3224.31407"
  121. },
  122. "System.Diagnostics.Contracts.dll": {
  123. "assemblyVersion": "6.0.0.0",
  124. "fileVersion": "6.0.3224.31407"
  125. },
  126. "System.Diagnostics.Debug.dll": {
  127. "assemblyVersion": "6.0.0.0",
  128. "fileVersion": "6.0.3224.31407"
  129. },
  130. "System.Diagnostics.DiagnosticSource.dll": {
  131. "assemblyVersion": "6.0.0.0",
  132. "fileVersion": "6.0.3224.31407"
  133. },
  134. "System.Diagnostics.FileVersionInfo.dll": {
  135. "assemblyVersion": "6.0.0.0",
  136. "fileVersion": "6.0.3224.31407"
  137. },
  138. "System.Diagnostics.Process.dll": {
  139. "assemblyVersion": "6.0.0.0",
  140. "fileVersion": "6.0.3224.31407"
  141. },
  142. "System.Diagnostics.StackTrace.dll": {
  143. "assemblyVersion": "6.0.0.0",
  144. "fileVersion": "6.0.3224.31407"
  145. },
  146. "System.Diagnostics.TextWriterTraceListener.dll": {
  147. "assemblyVersion": "6.0.0.0",
  148. "fileVersion": "6.0.3224.31407"
  149. },
  150. "System.Diagnostics.Tools.dll": {
  151. "assemblyVersion": "6.0.0.0",
  152. "fileVersion": "6.0.3224.31407"
  153. },
  154. "System.Diagnostics.TraceSource.dll": {
  155. "assemblyVersion": "6.0.0.0",
  156. "fileVersion": "6.0.3224.31407"
  157. },
  158. "System.Diagnostics.Tracing.dll": {
  159. "assemblyVersion": "6.0.0.0",
  160. "fileVersion": "6.0.3224.31407"
  161. },
  162. "System.Drawing.Primitives.dll": {
  163. "assemblyVersion": "6.0.0.0",
  164. "fileVersion": "6.0.3224.31407"
  165. },
  166. "System.Drawing.dll": {
  167. "assemblyVersion": "4.0.0.0",
  168. "fileVersion": "6.0.3224.31407"
  169. },
  170. "System.Dynamic.Runtime.dll": {
  171. "assemblyVersion": "6.0.0.0",
  172. "fileVersion": "6.0.3224.31407"
  173. },
  174. "System.Formats.Asn1.dll": {
  175. "assemblyVersion": "6.0.0.0",
  176. "fileVersion": "6.0.3224.31407"
  177. },
  178. "System.Globalization.Calendars.dll": {
  179. "assemblyVersion": "6.0.0.0",
  180. "fileVersion": "6.0.3224.31407"
  181. },
  182. "System.Globalization.Extensions.dll": {
  183. "assemblyVersion": "6.0.0.0",
  184. "fileVersion": "6.0.3224.31407"
  185. },
  186. "System.Globalization.dll": {
  187. "assemblyVersion": "6.0.0.0",
  188. "fileVersion": "6.0.3224.31407"
  189. },
  190. "System.IO.Compression.Brotli.dll": {
  191. "assemblyVersion": "6.0.0.0",
  192. "fileVersion": "6.0.3224.31407"
  193. },
  194. "System.IO.Compression.FileSystem.dll": {
  195. "assemblyVersion": "4.0.0.0",
  196. "fileVersion": "6.0.3224.31407"
  197. },
  198. "System.IO.Compression.ZipFile.dll": {
  199. "assemblyVersion": "6.0.0.0",
  200. "fileVersion": "6.0.3224.31407"
  201. },
  202. "System.IO.Compression.dll": {
  203. "assemblyVersion": "6.0.0.0",
  204. "fileVersion": "6.0.3224.31407"
  205. },
  206. "System.IO.FileSystem.AccessControl.dll": {
  207. "assemblyVersion": "6.0.0.0",
  208. "fileVersion": "6.0.3224.31407"
  209. },
  210. "System.IO.FileSystem.DriveInfo.dll": {
  211. "assemblyVersion": "6.0.0.0",
  212. "fileVersion": "6.0.3224.31407"
  213. },
  214. "System.IO.FileSystem.Primitives.dll": {
  215. "assemblyVersion": "6.0.0.0",
  216. "fileVersion": "6.0.3224.31407"
  217. },
  218. "System.IO.FileSystem.Watcher.dll": {
  219. "assemblyVersion": "6.0.0.0",
  220. "fileVersion": "6.0.3224.31407"
  221. },
  222. "System.IO.FileSystem.dll": {
  223. "assemblyVersion": "6.0.0.0",
  224. "fileVersion": "6.0.3224.31407"
  225. },
  226. "System.IO.IsolatedStorage.dll": {
  227. "assemblyVersion": "6.0.0.0",
  228. "fileVersion": "6.0.3224.31407"
  229. },
  230. "System.IO.MemoryMappedFiles.dll": {
  231. "assemblyVersion": "6.0.0.0",
  232. "fileVersion": "6.0.3224.31407"
  233. },
  234. "System.IO.Pipes.AccessControl.dll": {
  235. "assemblyVersion": "6.0.0.0",
  236. "fileVersion": "6.0.3224.31407"
  237. },
  238. "System.IO.Pipes.dll": {
  239. "assemblyVersion": "6.0.0.0",
  240. "fileVersion": "6.0.3224.31407"
  241. },
  242. "System.IO.UnmanagedMemoryStream.dll": {
  243. "assemblyVersion": "6.0.0.0",
  244. "fileVersion": "6.0.3224.31407"
  245. },
  246. "System.IO.dll": {
  247. "assemblyVersion": "6.0.0.0",
  248. "fileVersion": "6.0.3224.31407"
  249. },
  250. "System.Linq.Expressions.dll": {
  251. "assemblyVersion": "6.0.0.0",
  252. "fileVersion": "6.0.3224.31407"
  253. },
  254. "System.Linq.Parallel.dll": {
  255. "assemblyVersion": "6.0.0.0",
  256. "fileVersion": "6.0.3224.31407"
  257. },
  258. "System.Linq.Queryable.dll": {
  259. "assemblyVersion": "6.0.0.0",
  260. "fileVersion": "6.0.3224.31407"
  261. },
  262. "System.Linq.dll": {
  263. "assemblyVersion": "6.0.0.0",
  264. "fileVersion": "6.0.3224.31407"
  265. },
  266. "System.Memory.dll": {
  267. "assemblyVersion": "6.0.0.0",
  268. "fileVersion": "6.0.3224.31407"
  269. },
  270. "System.Net.Http.Json.dll": {
  271. "assemblyVersion": "6.0.0.0",
  272. "fileVersion": "6.0.3224.31407"
  273. },
  274. "System.Net.Http.dll": {
  275. "assemblyVersion": "6.0.0.0",
  276. "fileVersion": "6.0.3224.31407"
  277. },
  278. "System.Net.HttpListener.dll": {
  279. "assemblyVersion": "6.0.0.0",
  280. "fileVersion": "6.0.3224.31407"
  281. },
  282. "System.Net.Mail.dll": {
  283. "assemblyVersion": "6.0.0.0",
  284. "fileVersion": "6.0.3224.31407"
  285. },
  286. "System.Net.NameResolution.dll": {
  287. "assemblyVersion": "6.0.0.0",
  288. "fileVersion": "6.0.3224.31407"
  289. },
  290. "System.Net.NetworkInformation.dll": {
  291. "assemblyVersion": "6.0.0.0",
  292. "fileVersion": "6.0.3224.31407"
  293. },
  294. "System.Net.Ping.dll": {
  295. "assemblyVersion": "6.0.0.0",
  296. "fileVersion": "6.0.3224.31407"
  297. },
  298. "System.Net.Primitives.dll": {
  299. "assemblyVersion": "6.0.0.0",
  300. "fileVersion": "6.0.3224.31407"
  301. },
  302. "System.Net.Quic.dll": {
  303. "assemblyVersion": "6.0.0.0",
  304. "fileVersion": "6.0.3224.31407"
  305. },
  306. "System.Net.Requests.dll": {
  307. "assemblyVersion": "6.0.0.0",
  308. "fileVersion": "6.0.3224.31407"
  309. },
  310. "System.Net.Security.dll": {
  311. "assemblyVersion": "6.0.0.0",
  312. "fileVersion": "6.0.3224.31407"
  313. },
  314. "System.Net.ServicePoint.dll": {
  315. "assemblyVersion": "6.0.0.0",
  316. "fileVersion": "6.0.3224.31407"
  317. },
  318. "System.Net.Sockets.dll": {
  319. "assemblyVersion": "6.0.0.0",
  320. "fileVersion": "6.0.3224.31407"
  321. },
  322. "System.Net.WebClient.dll": {
  323. "assemblyVersion": "6.0.0.0",
  324. "fileVersion": "6.0.3224.31407"
  325. },
  326. "System.Net.WebHeaderCollection.dll": {
  327. "assemblyVersion": "6.0.0.0",
  328. "fileVersion": "6.0.3224.31407"
  329. },
  330. "System.Net.WebProxy.dll": {
  331. "assemblyVersion": "6.0.0.0",
  332. "fileVersion": "6.0.3224.31407"
  333. },
  334. "System.Net.WebSockets.Client.dll": {
  335. "assemblyVersion": "6.0.0.0",
  336. "fileVersion": "6.0.3224.31407"
  337. },
  338. "System.Net.WebSockets.dll": {
  339. "assemblyVersion": "6.0.0.0",
  340. "fileVersion": "6.0.3224.31407"
  341. },
  342. "System.Net.dll": {
  343. "assemblyVersion": "4.0.0.0",
  344. "fileVersion": "6.0.3224.31407"
  345. },
  346. "System.Numerics.Vectors.dll": {
  347. "assemblyVersion": "6.0.0.0",
  348. "fileVersion": "6.0.3224.31407"
  349. },
  350. "System.Numerics.dll": {
  351. "assemblyVersion": "4.0.0.0",
  352. "fileVersion": "6.0.3224.31407"
  353. },
  354. "System.ObjectModel.dll": {
  355. "assemblyVersion": "6.0.0.0",
  356. "fileVersion": "6.0.3224.31407"
  357. },
  358. "System.Private.CoreLib.dll": {
  359. "assemblyVersion": "6.0.0.0",
  360. "fileVersion": "6.0.3224.31407"
  361. },
  362. "System.Private.DataContractSerialization.dll": {
  363. "assemblyVersion": "6.0.0.0",
  364. "fileVersion": "6.0.3224.31407"
  365. },
  366. "System.Private.Uri.dll": {
  367. "assemblyVersion": "6.0.0.0",
  368. "fileVersion": "6.0.3224.31407"
  369. },
  370. "System.Private.Xml.Linq.dll": {
  371. "assemblyVersion": "6.0.0.0",
  372. "fileVersion": "6.0.3224.31407"
  373. },
  374. "System.Private.Xml.dll": {
  375. "assemblyVersion": "6.0.0.0",
  376. "fileVersion": "6.0.3224.31407"
  377. },
  378. "System.Reflection.DispatchProxy.dll": {
  379. "assemblyVersion": "6.0.0.0",
  380. "fileVersion": "6.0.3224.31407"
  381. },
  382. "System.Reflection.Emit.ILGeneration.dll": {
  383. "assemblyVersion": "6.0.0.0",
  384. "fileVersion": "6.0.3224.31407"
  385. },
  386. "System.Reflection.Emit.Lightweight.dll": {
  387. "assemblyVersion": "6.0.0.0",
  388. "fileVersion": "6.0.3224.31407"
  389. },
  390. "System.Reflection.Emit.dll": {
  391. "assemblyVersion": "6.0.0.0",
  392. "fileVersion": "6.0.3224.31407"
  393. },
  394. "System.Reflection.Extensions.dll": {
  395. "assemblyVersion": "6.0.0.0",
  396. "fileVersion": "6.0.3224.31407"
  397. },
  398. "System.Reflection.Metadata.dll": {
  399. "assemblyVersion": "6.0.0.0",
  400. "fileVersion": "6.0.3224.31407"
  401. },
  402. "System.Reflection.Primitives.dll": {
  403. "assemblyVersion": "6.0.0.0",
  404. "fileVersion": "6.0.3224.31407"
  405. },
  406. "System.Reflection.TypeExtensions.dll": {
  407. "assemblyVersion": "6.0.0.0",
  408. "fileVersion": "6.0.3224.31407"
  409. },
  410. "System.Reflection.dll": {
  411. "assemblyVersion": "6.0.0.0",
  412. "fileVersion": "6.0.3224.31407"
  413. },
  414. "System.Resources.Reader.dll": {
  415. "assemblyVersion": "6.0.0.0",
  416. "fileVersion": "6.0.3224.31407"
  417. },
  418. "System.Resources.ResourceManager.dll": {
  419. "assemblyVersion": "6.0.0.0",
  420. "fileVersion": "6.0.3224.31407"
  421. },
  422. "System.Resources.Writer.dll": {
  423. "assemblyVersion": "6.0.0.0",
  424. "fileVersion": "6.0.3224.31407"
  425. },
  426. "System.Runtime.CompilerServices.Unsafe.dll": {
  427. "assemblyVersion": "6.0.0.0",
  428. "fileVersion": "0.0.0.0"
  429. },
  430. "System.Runtime.CompilerServices.VisualC.dll": {
  431. "assemblyVersion": "6.0.0.0",
  432. "fileVersion": "6.0.3224.31407"
  433. },
  434. "System.Runtime.Extensions.dll": {
  435. "assemblyVersion": "6.0.0.0",
  436. "fileVersion": "6.0.3224.31407"
  437. },
  438. "System.Runtime.Handles.dll": {
  439. "assemblyVersion": "6.0.0.0",
  440. "fileVersion": "6.0.3224.31407"
  441. },
  442. "System.Runtime.InteropServices.RuntimeInformation.dll": {
  443. "assemblyVersion": "6.0.0.0",
  444. "fileVersion": "6.0.3224.31407"
  445. },
  446. "System.Runtime.InteropServices.dll": {
  447. "assemblyVersion": "6.0.0.0",
  448. "fileVersion": "6.0.3224.31407"
  449. },
  450. "System.Runtime.Intrinsics.dll": {
  451. "assemblyVersion": "6.0.0.0",
  452. "fileVersion": "6.0.3224.31407"
  453. },
  454. "System.Runtime.Loader.dll": {
  455. "assemblyVersion": "6.0.0.0",
  456. "fileVersion": "6.0.3224.31407"
  457. },
  458. "System.Runtime.Numerics.dll": {
  459. "assemblyVersion": "6.0.0.0",
  460. "fileVersion": "6.0.3224.31407"
  461. },
  462. "System.Runtime.Serialization.Formatters.dll": {
  463. "assemblyVersion": "6.0.0.0",
  464. "fileVersion": "6.0.3224.31407"
  465. },
  466. "System.Runtime.Serialization.Json.dll": {
  467. "assemblyVersion": "6.0.0.0",
  468. "fileVersion": "6.0.3224.31407"
  469. },
  470. "System.Runtime.Serialization.Primitives.dll": {
  471. "assemblyVersion": "6.0.0.0",
  472. "fileVersion": "6.0.3224.31407"
  473. },
  474. "System.Runtime.Serialization.Xml.dll": {
  475. "assemblyVersion": "6.0.0.0",
  476. "fileVersion": "6.0.3224.31407"
  477. },
  478. "System.Runtime.Serialization.dll": {
  479. "assemblyVersion": "4.0.0.0",
  480. "fileVersion": "6.0.3224.31407"
  481. },
  482. "System.Runtime.dll": {
  483. "assemblyVersion": "6.0.0.0",
  484. "fileVersion": "6.0.3224.31407"
  485. },
  486. "System.Security.AccessControl.dll": {
  487. "assemblyVersion": "6.0.0.0",
  488. "fileVersion": "6.0.3224.31407"
  489. },
  490. "System.Security.Claims.dll": {
  491. "assemblyVersion": "6.0.0.0",
  492. "fileVersion": "6.0.3224.31407"
  493. },
  494. "System.Security.Cryptography.Algorithms.dll": {
  495. "assemblyVersion": "6.0.0.0",
  496. "fileVersion": "6.0.3224.31407"
  497. },
  498. "System.Security.Cryptography.Cng.dll": {
  499. "assemblyVersion": "6.0.0.0",
  500. "fileVersion": "6.0.3224.31407"
  501. },
  502. "System.Security.Cryptography.Csp.dll": {
  503. "assemblyVersion": "6.0.0.0",
  504. "fileVersion": "6.0.3224.31407"
  505. },
  506. "System.Security.Cryptography.Encoding.dll": {
  507. "assemblyVersion": "6.0.0.0",
  508. "fileVersion": "6.0.3224.31407"
  509. },
  510. "System.Security.Cryptography.OpenSsl.dll": {
  511. "assemblyVersion": "6.0.0.0",
  512. "fileVersion": "6.0.3224.31407"
  513. },
  514. "System.Security.Cryptography.Primitives.dll": {
  515. "assemblyVersion": "6.0.0.0",
  516. "fileVersion": "6.0.3224.31407"
  517. },
  518. "System.Security.Cryptography.X509Certificates.dll": {
  519. "assemblyVersion": "6.0.0.0",
  520. "fileVersion": "6.0.3224.31407"
  521. },
  522. "System.Security.Principal.Windows.dll": {
  523. "assemblyVersion": "6.0.0.0",
  524. "fileVersion": "6.0.3224.31407"
  525. },
  526. "System.Security.Principal.dll": {
  527. "assemblyVersion": "6.0.0.0",
  528. "fileVersion": "6.0.3224.31407"
  529. },
  530. "System.Security.SecureString.dll": {
  531. "assemblyVersion": "6.0.0.0",
  532. "fileVersion": "6.0.3224.31407"
  533. },
  534. "System.Security.dll": {
  535. "assemblyVersion": "4.0.0.0",
  536. "fileVersion": "6.0.3224.31407"
  537. },
  538. "System.ServiceModel.Web.dll": {
  539. "assemblyVersion": "4.0.0.0",
  540. "fileVersion": "6.0.3224.31407"
  541. },
  542. "System.ServiceProcess.dll": {
  543. "assemblyVersion": "4.0.0.0",
  544. "fileVersion": "6.0.3224.31407"
  545. },
  546. "System.Text.Encoding.CodePages.dll": {
  547. "assemblyVersion": "6.0.0.0",
  548. "fileVersion": "6.0.3224.31407"
  549. },
  550. "System.Text.Encoding.Extensions.dll": {
  551. "assemblyVersion": "6.0.0.0",
  552. "fileVersion": "6.0.3224.31407"
  553. },
  554. "System.Text.Encoding.dll": {
  555. "assemblyVersion": "6.0.0.0",
  556. "fileVersion": "6.0.3224.31407"
  557. },
  558. "System.Text.RegularExpressions.dll": {
  559. "assemblyVersion": "6.0.0.0",
  560. "fileVersion": "6.0.3224.31407"
  561. },
  562. "System.Threading.Channels.dll": {
  563. "assemblyVersion": "6.0.0.0",
  564. "fileVersion": "6.0.3224.31407"
  565. },
  566. "System.Threading.Overlapped.dll": {
  567. "assemblyVersion": "6.0.0.0",
  568. "fileVersion": "6.0.3224.31407"
  569. },
  570. "System.Threading.Tasks.Dataflow.dll": {
  571. "assemblyVersion": "6.0.0.0",
  572. "fileVersion": "6.0.3224.31407"
  573. },
  574. "System.Threading.Tasks.Extensions.dll": {
  575. "assemblyVersion": "6.0.0.0",
  576. "fileVersion": "6.0.3224.31407"
  577. },
  578. "System.Threading.Tasks.Parallel.dll": {
  579. "assemblyVersion": "6.0.0.0",
  580. "fileVersion": "6.0.3224.31407"
  581. },
  582. "System.Threading.Tasks.dll": {
  583. "assemblyVersion": "6.0.0.0",
  584. "fileVersion": "6.0.3224.31407"
  585. },
  586. "System.Threading.Thread.dll": {
  587. "assemblyVersion": "6.0.0.0",
  588. "fileVersion": "6.0.3224.31407"
  589. },
  590. "System.Threading.ThreadPool.dll": {
  591. "assemblyVersion": "6.0.0.0",
  592. "fileVersion": "6.0.3224.31407"
  593. },
  594. "System.Threading.Timer.dll": {
  595. "assemblyVersion": "6.0.0.0",
  596. "fileVersion": "6.0.3224.31407"
  597. },
  598. "System.Threading.dll": {
  599. "assemblyVersion": "6.0.0.0",
  600. "fileVersion": "6.0.3224.31407"
  601. },
  602. "System.Transactions.Local.dll": {
  603. "assemblyVersion": "6.0.0.0",
  604. "fileVersion": "6.0.3224.31407"
  605. },
  606. "System.Transactions.dll": {
  607. "assemblyVersion": "4.0.0.0",
  608. "fileVersion": "6.0.3224.31407"
  609. },
  610. "System.ValueTuple.dll": {
  611. "assemblyVersion": "6.0.0.0",
  612. "fileVersion": "6.0.3224.31407"
  613. },
  614. "System.Web.HttpUtility.dll": {
  615. "assemblyVersion": "6.0.0.0",
  616. "fileVersion": "6.0.3224.31407"
  617. },
  618. "System.Web.dll": {
  619. "assemblyVersion": "4.0.0.0",
  620. "fileVersion": "6.0.3224.31407"
  621. },
  622. "System.Windows.dll": {
  623. "assemblyVersion": "4.0.0.0",
  624. "fileVersion": "6.0.3224.31407"
  625. },
  626. "System.Xml.Linq.dll": {
  627. "assemblyVersion": "4.0.0.0",
  628. "fileVersion": "6.0.3224.31407"
  629. },
  630. "System.Xml.ReaderWriter.dll": {
  631. "assemblyVersion": "6.0.0.0",
  632. "fileVersion": "6.0.3224.31407"
  633. },
  634. "System.Xml.Serialization.dll": {
  635. "assemblyVersion": "4.0.0.0",
  636. "fileVersion": "6.0.3224.31407"
  637. },
  638. "System.Xml.XDocument.dll": {
  639. "assemblyVersion": "6.0.0.0",
  640. "fileVersion": "6.0.3224.31407"
  641. },
  642. "System.Xml.XPath.XDocument.dll": {
  643. "assemblyVersion": "6.0.0.0",
  644. "fileVersion": "6.0.3224.31407"
  645. },
  646. "System.Xml.XPath.dll": {
  647. "assemblyVersion": "6.0.0.0",
  648. "fileVersion": "6.0.3224.31407"
  649. },
  650. "System.Xml.XmlDocument.dll": {
  651. "assemblyVersion": "6.0.0.0",
  652. "fileVersion": "6.0.3224.31407"
  653. },
  654. "System.Xml.XmlSerializer.dll": {
  655. "assemblyVersion": "6.0.0.0",
  656. "fileVersion": "6.0.3224.31407"
  657. },
  658. "System.Xml.dll": {
  659. "assemblyVersion": "4.0.0.0",
  660. "fileVersion": "6.0.3224.31407"
  661. },
  662. "System.dll": {
  663. "assemblyVersion": "4.0.0.0",
  664. "fileVersion": "6.0.3224.31407"
  665. },
  666. "WindowsBase.dll": {
  667. "assemblyVersion": "4.0.0.0",
  668. "fileVersion": "6.0.3224.31407"
  669. },
  670. "mscorlib.dll": {
  671. "assemblyVersion": "4.0.0.0",
  672. "fileVersion": "6.0.3224.31407"
  673. },
  674. "netstandard.dll": {
  675. "assemblyVersion": "2.1.0.0",
  676. "fileVersion": "6.0.3224.31407"
  677. }
  678. },
  679. "native": {
  680. "createdump": {
  681. "fileVersion": "0.0.0.0"
  682. },
  683. "libSystem.Globalization.Native.so": {
  684. "fileVersion": "0.0.0.0"
  685. },
  686. "libSystem.IO.Compression.Native.so": {
  687. "fileVersion": "0.0.0.0"
  688. },
  689. "libSystem.Native.so": {
  690. "fileVersion": "0.0.0.0"
  691. },
  692. "libSystem.Net.Security.Native.so": {
  693. "fileVersion": "0.0.0.0"
  694. },
  695. "libSystem.Security.Cryptography.Native.OpenSsl.so": {
  696. "fileVersion": "0.0.0.0"
  697. },
  698. "libclrjit.so": {
  699. "fileVersion": "0.0.0.0"
  700. },
  701. "libcoreclr.so": {
  702. "fileVersion": "0.0.0.0"
  703. },
  704. "libcoreclrtraceptprovider.so": {
  705. "fileVersion": "0.0.0.0"
  706. },
  707. "libdbgshim.so": {
  708. "fileVersion": "0.0.0.0"
  709. },
  710. "libhostfxr.so": {
  711. "fileVersion": "0.0.0.0"
  712. },
  713. "libhostpolicy.so": {
  714. "fileVersion": "0.0.0.0"
  715. },
  716. "libmscordaccore.so": {
  717. "fileVersion": "0.0.0.0"
  718. },
  719. "libmscordbi.so": {
  720. "fileVersion": "0.0.0.0"
  721. }
  722. }
  723. },
  724. "log4net/2.0.11": {
  725. "dependencies": {
  726. "System.Configuration.ConfigurationManager": "6.0.0"
  727. },
  728. "runtime": {
  729. "lib/netstandard2.0/log4net.dll": {
  730. "assemblyVersion": "2.0.11.0",
  731. "fileVersion": "2.0.11.0"
  732. }
  733. }
  734. },
  735. "Microsoft.Bcl.AsyncInterfaces/9.0.0": {
  736. "runtime": {
  737. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  738. "assemblyVersion": "9.0.0.0",
  739. "fileVersion": "9.0.24.52809"
  740. }
  741. }
  742. },
  743. "Microsoft.Extensions.Configuration/9.0.1": {
  744. "dependencies": {
  745. "Microsoft.Extensions.Configuration.Abstractions": "9.0.1",
  746. "Microsoft.Extensions.Primitives": "9.0.1"
  747. },
  748. "runtime": {
  749. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  750. "assemblyVersion": "9.0.0.0",
  751. "fileVersion": "9.0.124.61010"
  752. }
  753. }
  754. },
  755. "Microsoft.Extensions.Configuration.Abstractions/9.0.1": {
  756. "dependencies": {
  757. "Microsoft.Extensions.Primitives": "9.0.1"
  758. },
  759. "runtime": {
  760. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  761. "assemblyVersion": "9.0.0.0",
  762. "fileVersion": "9.0.124.61010"
  763. }
  764. }
  765. },
  766. "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
  767. "dependencies": {
  768. "Microsoft.Extensions.Configuration": "9.0.1",
  769. "Microsoft.Extensions.Configuration.Abstractions": "9.0.1",
  770. "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
  771. "Microsoft.Extensions.FileProviders.Physical": "9.0.0",
  772. "Microsoft.Extensions.Primitives": "9.0.1"
  773. },
  774. "runtime": {
  775. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  776. "assemblyVersion": "9.0.0.0",
  777. "fileVersion": "9.0.24.52809"
  778. }
  779. }
  780. },
  781. "Microsoft.Extensions.Configuration.Json/9.0.0": {
  782. "dependencies": {
  783. "Microsoft.Extensions.Configuration": "9.0.1",
  784. "Microsoft.Extensions.Configuration.Abstractions": "9.0.1",
  785. "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0",
  786. "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
  787. "System.Text.Json": "9.0.0"
  788. },
  789. "runtime": {
  790. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  791. "assemblyVersion": "9.0.0.0",
  792. "fileVersion": "9.0.24.52809"
  793. }
  794. }
  795. },
  796. "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
  797. "dependencies": {
  798. "Microsoft.Extensions.Primitives": "9.0.1"
  799. },
  800. "runtime": {
  801. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  802. "assemblyVersion": "9.0.0.0",
  803. "fileVersion": "9.0.24.52809"
  804. }
  805. }
  806. },
  807. "Microsoft.Extensions.FileProviders.Physical/9.0.0": {
  808. "dependencies": {
  809. "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0",
  810. "Microsoft.Extensions.FileSystemGlobbing": "9.0.0",
  811. "Microsoft.Extensions.Primitives": "9.0.1"
  812. },
  813. "runtime": {
  814. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  815. "assemblyVersion": "9.0.0.0",
  816. "fileVersion": "9.0.24.52809"
  817. }
  818. }
  819. },
  820. "Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
  821. "runtime": {
  822. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  823. "assemblyVersion": "9.0.0.0",
  824. "fileVersion": "9.0.24.52809"
  825. }
  826. }
  827. },
  828. "Microsoft.Extensions.Primitives/9.0.1": {
  829. "dependencies": {
  830. "System.Memory": "4.5.5",
  831. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  832. },
  833. "runtime": {
  834. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  835. "assemblyVersion": "9.0.0.0",
  836. "fileVersion": "9.0.124.61010"
  837. }
  838. }
  839. },
  840. "Microsoft.Win32.SystemEvents/6.0.0": {
  841. "runtime": {
  842. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  843. "assemblyVersion": "6.0.0.0",
  844. "fileVersion": "6.0.21.52210"
  845. }
  846. }
  847. },
  848. "Newtonsoft.Json/13.0.3": {
  849. "runtime": {
  850. "lib/net6.0/Newtonsoft.Json.dll": {
  851. "assemblyVersion": "13.0.0.0",
  852. "fileVersion": "13.0.3.27908"
  853. }
  854. }
  855. },
  856. "Oracle.ManagedDataAccess.Core/3.21.100": {
  857. "dependencies": {
  858. "System.Diagnostics.PerformanceCounter": "6.0.1",
  859. "System.DirectoryServices": "6.0.1",
  860. "System.DirectoryServices.Protocols": "6.0.1"
  861. },
  862. "runtime": {
  863. "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {
  864. "assemblyVersion": "3.1.21.1",
  865. "fileVersion": "3.1.21.1"
  866. }
  867. }
  868. },
  869. "Pipelines.Sockets.Unofficial/2.2.0": {
  870. "dependencies": {
  871. "System.IO.Pipelines": "9.0.0"
  872. },
  873. "runtime": {
  874. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  875. "assemblyVersion": "1.0.0.0",
  876. "fileVersion": "2.2.0.45337"
  877. }
  878. }
  879. },
  880. "StackExchange.Redis/2.2.88": {
  881. "dependencies": {
  882. "Pipelines.Sockets.Unofficial": "2.2.0",
  883. "System.Diagnostics.PerformanceCounter": "6.0.1"
  884. },
  885. "runtime": {
  886. "lib/net5.0/StackExchange.Redis.dll": {
  887. "assemblyVersion": "2.0.0.0",
  888. "fileVersion": "2.2.88.56325"
  889. }
  890. }
  891. },
  892. "System.Buffers/4.5.1": {},
  893. "System.Configuration.ConfigurationManager/6.0.0": {
  894. "dependencies": {
  895. "System.Security.Cryptography.ProtectedData": "6.0.0",
  896. "System.Security.Permissions": "6.0.0"
  897. },
  898. "runtime": {
  899. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  900. "assemblyVersion": "6.0.0.0",
  901. "fileVersion": "6.0.21.52210"
  902. }
  903. }
  904. },
  905. "System.Diagnostics.PerformanceCounter/6.0.1": {
  906. "dependencies": {
  907. "System.Configuration.ConfigurationManager": "6.0.0"
  908. },
  909. "runtime": {
  910. "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {
  911. "assemblyVersion": "6.0.0.0",
  912. "fileVersion": "6.0.422.16404"
  913. }
  914. }
  915. },
  916. "System.DirectoryServices/6.0.1": {
  917. "dependencies": {
  918. "System.Security.AccessControl": "6.0.0",
  919. "System.Security.Permissions": "6.0.0"
  920. },
  921. "runtime": {
  922. "lib/net6.0/System.DirectoryServices.dll": {
  923. "assemblyVersion": "4.0.0.0",
  924. "fileVersion": "6.0.1423.7309"
  925. }
  926. }
  927. },
  928. "System.DirectoryServices.Protocols/6.0.1": {
  929. "runtime": {
  930. "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": {
  931. "assemblyVersion": "6.0.0.1",
  932. "fileVersion": "6.0.222.6406"
  933. }
  934. }
  935. },
  936. "System.Drawing.Common/6.0.0": {
  937. "dependencies": {
  938. "Microsoft.Win32.SystemEvents": "6.0.0"
  939. },
  940. "runtime": {
  941. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  942. "assemblyVersion": "6.0.0.0",
  943. "fileVersion": "6.0.21.52210"
  944. }
  945. }
  946. },
  947. "System.IO.Pipelines/9.0.0": {
  948. "dependencies": {
  949. "System.Buffers": "4.5.1",
  950. "System.Memory": "4.5.5",
  951. "System.Threading.Tasks.Extensions": "4.5.4"
  952. },
  953. "runtime": {
  954. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  955. "assemblyVersion": "9.0.0.0",
  956. "fileVersion": "9.0.24.52809"
  957. }
  958. }
  959. },
  960. "System.Memory/4.5.5": {},
  961. "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
  962. "System.Security.AccessControl/6.0.0": {},
  963. "System.Security.Cryptography.ProtectedData/6.0.0": {
  964. "runtime": {
  965. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  966. "assemblyVersion": "6.0.0.0",
  967. "fileVersion": "6.0.21.52210"
  968. }
  969. }
  970. },
  971. "System.Security.Permissions/6.0.0": {
  972. "dependencies": {
  973. "System.Security.AccessControl": "6.0.0",
  974. "System.Windows.Extensions": "6.0.0"
  975. },
  976. "runtime": {
  977. "lib/net6.0/System.Security.Permissions.dll": {
  978. "assemblyVersion": "6.0.0.0",
  979. "fileVersion": "6.0.21.52210"
  980. }
  981. }
  982. },
  983. "System.Text.Encodings.Web/9.0.0": {
  984. "dependencies": {
  985. "System.Buffers": "4.5.1",
  986. "System.Memory": "4.5.5",
  987. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  988. },
  989. "runtime": {
  990. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  991. "assemblyVersion": "9.0.0.0",
  992. "fileVersion": "9.0.24.52809"
  993. }
  994. }
  995. },
  996. "System.Text.Json/9.0.0": {
  997. "dependencies": {
  998. "Microsoft.Bcl.AsyncInterfaces": "9.0.0",
  999. "System.Buffers": "4.5.1",
  1000. "System.IO.Pipelines": "9.0.0",
  1001. "System.Memory": "4.5.5",
  1002. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  1003. "System.Text.Encodings.Web": "9.0.0",
  1004. "System.Threading.Tasks.Extensions": "4.5.4"
  1005. },
  1006. "runtime": {
  1007. "lib/netstandard2.0/System.Text.Json.dll": {
  1008. "assemblyVersion": "9.0.0.0",
  1009. "fileVersion": "9.0.24.52809"
  1010. }
  1011. }
  1012. },
  1013. "System.Threading.Tasks.Extensions/4.5.4": {},
  1014. "System.Windows.Extensions/6.0.0": {
  1015. "dependencies": {
  1016. "System.Drawing.Common": "6.0.0"
  1017. },
  1018. "runtime": {
  1019. "lib/net6.0/System.Windows.Extensions.dll": {
  1020. "assemblyVersion": "6.0.0.0",
  1021. "fileVersion": "6.0.21.52210"
  1022. }
  1023. }
  1024. },
  1025. "CommonObj/1.0.0": {
  1026. "dependencies": {
  1027. "StackExchange.Redis": "2.2.88",
  1028. "log4net": "2.0.11"
  1029. },
  1030. "runtime": {
  1031. "CommonObj.dll": {}
  1032. }
  1033. }
  1034. }
  1035. },
  1036. "libraries": {
  1037. "ConvertLog/1.0.0": {
  1038. "type": "project",
  1039. "serviceable": false,
  1040. "sha512": ""
  1041. },
  1042. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.32": {
  1043. "type": "runtimepack",
  1044. "serviceable": false,
  1045. "sha512": ""
  1046. },
  1047. "log4net/2.0.11": {
  1048. "type": "package",
  1049. "serviceable": true,
  1050. "sha512": "sha512-4MEfp6dSN/Cl4XHRqBo8eOkhlH9AOt/ydmPRaj/FHuKHTNoPuKjbaT97aACmePpkW5QHQ+YudhYYvVStabOZmQ==",
  1051. "path": "log4net/2.0.11",
  1052. "hashPath": "log4net.2.0.11.nupkg.sha512"
  1053. },
  1054. "Microsoft.Bcl.AsyncInterfaces/9.0.0": {
  1055. "type": "package",
  1056. "serviceable": true,
  1057. "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==",
  1058. "path": "microsoft.bcl.asyncinterfaces/9.0.0",
  1059. "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512"
  1060. },
  1061. "Microsoft.Extensions.Configuration/9.0.1": {
  1062. "type": "package",
  1063. "serviceable": true,
  1064. "sha512": "sha512-VuthqFS+ju6vT8W4wevdhEFiRi1trvQtkzWLonApfF5USVzzDcTBoY3F24WvN/tffLSrycArVfX1bThm/9xY2A==",
  1065. "path": "microsoft.extensions.configuration/9.0.1",
  1066. "hashPath": "microsoft.extensions.configuration.9.0.1.nupkg.sha512"
  1067. },
  1068. "Microsoft.Extensions.Configuration.Abstractions/9.0.1": {
  1069. "type": "package",
  1070. "serviceable": true,
  1071. "sha512": "sha512-+4hfFIY1UjBCXFTTOd+ojlDPq6mep3h5Vq5SYE3Pjucr7dNXmq4S/6P/LoVnZFz2e/5gWp/om4svUFgznfULcA==",
  1072. "path": "microsoft.extensions.configuration.abstractions/9.0.1",
  1073. "hashPath": "microsoft.extensions.configuration.abstractions.9.0.1.nupkg.sha512"
  1074. },
  1075. "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": {
  1076. "type": "package",
  1077. "serviceable": true,
  1078. "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==",
  1079. "path": "microsoft.extensions.configuration.fileextensions/9.0.0",
  1080. "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512"
  1081. },
  1082. "Microsoft.Extensions.Configuration.Json/9.0.0": {
  1083. "type": "package",
  1084. "serviceable": true,
  1085. "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==",
  1086. "path": "microsoft.extensions.configuration.json/9.0.0",
  1087. "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512"
  1088. },
  1089. "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": {
  1090. "type": "package",
  1091. "serviceable": true,
  1092. "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==",
  1093. "path": "microsoft.extensions.fileproviders.abstractions/9.0.0",
  1094. "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512"
  1095. },
  1096. "Microsoft.Extensions.FileProviders.Physical/9.0.0": {
  1097. "type": "package",
  1098. "serviceable": true,
  1099. "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==",
  1100. "path": "microsoft.extensions.fileproviders.physical/9.0.0",
  1101. "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512"
  1102. },
  1103. "Microsoft.Extensions.FileSystemGlobbing/9.0.0": {
  1104. "type": "package",
  1105. "serviceable": true,
  1106. "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==",
  1107. "path": "microsoft.extensions.filesystemglobbing/9.0.0",
  1108. "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512"
  1109. },
  1110. "Microsoft.Extensions.Primitives/9.0.1": {
  1111. "type": "package",
  1112. "serviceable": true,
  1113. "sha512": "sha512-bHtTesA4lrSGD1ZUaMIx6frU3wyy0vYtTa/hM6gGQu5QNrydObv8T5COiGUWsisflAfmsaFOe9Xvw5NSO99z0g==",
  1114. "path": "microsoft.extensions.primitives/9.0.1",
  1115. "hashPath": "microsoft.extensions.primitives.9.0.1.nupkg.sha512"
  1116. },
  1117. "Microsoft.Win32.SystemEvents/6.0.0": {
  1118. "type": "package",
  1119. "serviceable": true,
  1120. "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  1121. "path": "microsoft.win32.systemevents/6.0.0",
  1122. "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
  1123. },
  1124. "Newtonsoft.Json/13.0.3": {
  1125. "type": "package",
  1126. "serviceable": true,
  1127. "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1128. "path": "newtonsoft.json/13.0.3",
  1129. "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
  1130. },
  1131. "Oracle.ManagedDataAccess.Core/3.21.100": {
  1132. "type": "package",
  1133. "serviceable": true,
  1134. "sha512": "sha512-nsqyUE+v246WB0SOnR1u9lfZxYoNcdj1fRjTt7TOhCN0JurEc6+qu+mMe+dl1sySB2UpyWdfqHG1iSQJYaXEfA==",
  1135. "path": "oracle.manageddataaccess.core/3.21.100",
  1136. "hashPath": "oracle.manageddataaccess.core.3.21.100.nupkg.sha512"
  1137. },
  1138. "Pipelines.Sockets.Unofficial/2.2.0": {
  1139. "type": "package",
  1140. "serviceable": true,
  1141. "sha512": "sha512-7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==",
  1142. "path": "pipelines.sockets.unofficial/2.2.0",
  1143. "hashPath": "pipelines.sockets.unofficial.2.2.0.nupkg.sha512"
  1144. },
  1145. "StackExchange.Redis/2.2.88": {
  1146. "type": "package",
  1147. "serviceable": true,
  1148. "sha512": "sha512-JJi1jcO3/ZiamBhlsC/TR8aZmYf+nqpGzMi0HRRCy5wJkUPmMnRp0kBA6V84uhU8b531FHSdTDaFCAyCUJomjA==",
  1149. "path": "stackexchange.redis/2.2.88",
  1150. "hashPath": "stackexchange.redis.2.2.88.nupkg.sha512"
  1151. },
  1152. "System.Buffers/4.5.1": {
  1153. "type": "package",
  1154. "serviceable": true,
  1155. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  1156. "path": "system.buffers/4.5.1",
  1157. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  1158. },
  1159. "System.Configuration.ConfigurationManager/6.0.0": {
  1160. "type": "package",
  1161. "serviceable": true,
  1162. "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
  1163. "path": "system.configuration.configurationmanager/6.0.0",
  1164. "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512"
  1165. },
  1166. "System.Diagnostics.PerformanceCounter/6.0.1": {
  1167. "type": "package",
  1168. "serviceable": true,
  1169. "sha512": "sha512-dDl7Gx3bmSrM2k2ZIm+ucEJnLloZRyvfQF1DvfvATcGF3jtaUBiPvChma+6ZcZzxWMirN3kCywkW7PILphXyMQ==",
  1170. "path": "system.diagnostics.performancecounter/6.0.1",
  1171. "hashPath": "system.diagnostics.performancecounter.6.0.1.nupkg.sha512"
  1172. },
  1173. "System.DirectoryServices/6.0.1": {
  1174. "type": "package",
  1175. "serviceable": true,
  1176. "sha512": "sha512-935IbO7h5FDGYxeO3cbx/CuvBBuk/VI8sENlfmXlh1pupNOB3LAGzdYdPY8CawGJFP7KNrHK5eUlsFoz3F6cuA==",
  1177. "path": "system.directoryservices/6.0.1",
  1178. "hashPath": "system.directoryservices.6.0.1.nupkg.sha512"
  1179. },
  1180. "System.DirectoryServices.Protocols/6.0.1": {
  1181. "type": "package",
  1182. "serviceable": true,
  1183. "sha512": "sha512-ndUZlEkAMc1XzM0xGN++SsJrNhRkIHaKI8+te325vrUgoLT1ufWNI6KB8FFrL7NpRMHPrdxP99aF3fHbAPxW0A==",
  1184. "path": "system.directoryservices.protocols/6.0.1",
  1185. "hashPath": "system.directoryservices.protocols.6.0.1.nupkg.sha512"
  1186. },
  1187. "System.Drawing.Common/6.0.0": {
  1188. "type": "package",
  1189. "serviceable": true,
  1190. "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  1191. "path": "system.drawing.common/6.0.0",
  1192. "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
  1193. },
  1194. "System.IO.Pipelines/9.0.0": {
  1195. "type": "package",
  1196. "serviceable": true,
  1197. "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==",
  1198. "path": "system.io.pipelines/9.0.0",
  1199. "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512"
  1200. },
  1201. "System.Memory/4.5.5": {
  1202. "type": "package",
  1203. "serviceable": true,
  1204. "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  1205. "path": "system.memory/4.5.5",
  1206. "hashPath": "system.memory.4.5.5.nupkg.sha512"
  1207. },
  1208. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1209. "type": "package",
  1210. "serviceable": true,
  1211. "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  1212. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  1213. "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
  1214. },
  1215. "System.Security.AccessControl/6.0.0": {
  1216. "type": "package",
  1217. "serviceable": true,
  1218. "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  1219. "path": "system.security.accesscontrol/6.0.0",
  1220. "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
  1221. },
  1222. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1223. "type": "package",
  1224. "serviceable": true,
  1225. "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  1226. "path": "system.security.cryptography.protecteddata/6.0.0",
  1227. "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
  1228. },
  1229. "System.Security.Permissions/6.0.0": {
  1230. "type": "package",
  1231. "serviceable": true,
  1232. "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  1233. "path": "system.security.permissions/6.0.0",
  1234. "hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
  1235. },
  1236. "System.Text.Encodings.Web/9.0.0": {
  1237. "type": "package",
  1238. "serviceable": true,
  1239. "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==",
  1240. "path": "system.text.encodings.web/9.0.0",
  1241. "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512"
  1242. },
  1243. "System.Text.Json/9.0.0": {
  1244. "type": "package",
  1245. "serviceable": true,
  1246. "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==",
  1247. "path": "system.text.json/9.0.0",
  1248. "hashPath": "system.text.json.9.0.0.nupkg.sha512"
  1249. },
  1250. "System.Threading.Tasks.Extensions/4.5.4": {
  1251. "type": "package",
  1252. "serviceable": true,
  1253. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  1254. "path": "system.threading.tasks.extensions/4.5.4",
  1255. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  1256. },
  1257. "System.Windows.Extensions/6.0.0": {
  1258. "type": "package",
  1259. "serviceable": true,
  1260. "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  1261. "path": "system.windows.extensions/6.0.0",
  1262. "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
  1263. },
  1264. "CommonObj/1.0.0": {
  1265. "type": "project",
  1266. "serviceable": false,
  1267. "sha512": ""
  1268. }
  1269. },
  1270. "runtimes": {
  1271. "alpine-x64": [
  1272. "alpine",
  1273. "linux-musl-x64",
  1274. "linux-musl",
  1275. "linux-x64",
  1276. "linux",
  1277. "unix-x64",
  1278. "unix",
  1279. "any",
  1280. "base"
  1281. ],
  1282. "alpine.3.10-x64": [
  1283. "alpine.3.10",
  1284. "alpine.3.9-x64",
  1285. "alpine.3.9",
  1286. "alpine.3.8-x64",
  1287. "alpine.3.8",
  1288. "alpine.3.7-x64",
  1289. "alpine.3.7",
  1290. "alpine.3.6-x64",
  1291. "alpine.3.6",
  1292. "alpine-x64",
  1293. "alpine",
  1294. "linux-musl-x64",
  1295. "linux-musl",
  1296. "linux-x64",
  1297. "linux",
  1298. "unix-x64",
  1299. "unix",
  1300. "any",
  1301. "base"
  1302. ],
  1303. "alpine.3.11-x64": [
  1304. "alpine.3.11",
  1305. "alpine.3.10-x64",
  1306. "alpine.3.10",
  1307. "alpine.3.9-x64",
  1308. "alpine.3.9",
  1309. "alpine.3.8-x64",
  1310. "alpine.3.8",
  1311. "alpine.3.7-x64",
  1312. "alpine.3.7",
  1313. "alpine.3.6-x64",
  1314. "alpine.3.6",
  1315. "alpine-x64",
  1316. "alpine",
  1317. "linux-musl-x64",
  1318. "linux-musl",
  1319. "linux-x64",
  1320. "linux",
  1321. "unix-x64",
  1322. "unix",
  1323. "any",
  1324. "base"
  1325. ],
  1326. "alpine.3.12-x64": [
  1327. "alpine.3.12",
  1328. "alpine.3.11-x64",
  1329. "alpine.3.11",
  1330. "alpine.3.10-x64",
  1331. "alpine.3.10",
  1332. "alpine.3.9-x64",
  1333. "alpine.3.9",
  1334. "alpine.3.8-x64",
  1335. "alpine.3.8",
  1336. "alpine.3.7-x64",
  1337. "alpine.3.7",
  1338. "alpine.3.6-x64",
  1339. "alpine.3.6",
  1340. "alpine-x64",
  1341. "alpine",
  1342. "linux-musl-x64",
  1343. "linux-musl",
  1344. "linux-x64",
  1345. "linux",
  1346. "unix-x64",
  1347. "unix",
  1348. "any",
  1349. "base"
  1350. ],
  1351. "alpine.3.13-x64": [
  1352. "alpine.3.13",
  1353. "alpine.3.12-x64",
  1354. "alpine.3.12",
  1355. "alpine.3.11-x64",
  1356. "alpine.3.11",
  1357. "alpine.3.10-x64",
  1358. "alpine.3.10",
  1359. "alpine.3.9-x64",
  1360. "alpine.3.9",
  1361. "alpine.3.8-x64",
  1362. "alpine.3.8",
  1363. "alpine.3.7-x64",
  1364. "alpine.3.7",
  1365. "alpine.3.6-x64",
  1366. "alpine.3.6",
  1367. "alpine-x64",
  1368. "alpine",
  1369. "linux-musl-x64",
  1370. "linux-musl",
  1371. "linux-x64",
  1372. "linux",
  1373. "unix-x64",
  1374. "unix",
  1375. "any",
  1376. "base"
  1377. ],
  1378. "alpine.3.14-x64": [
  1379. "alpine.3.14",
  1380. "alpine.3.13-x64",
  1381. "alpine.3.13",
  1382. "alpine.3.12-x64",
  1383. "alpine.3.12",
  1384. "alpine.3.11-x64",
  1385. "alpine.3.11",
  1386. "alpine.3.10-x64",
  1387. "alpine.3.10",
  1388. "alpine.3.9-x64",
  1389. "alpine.3.9",
  1390. "alpine.3.8-x64",
  1391. "alpine.3.8",
  1392. "alpine.3.7-x64",
  1393. "alpine.3.7",
  1394. "alpine.3.6-x64",
  1395. "alpine.3.6",
  1396. "alpine-x64",
  1397. "alpine",
  1398. "linux-musl-x64",
  1399. "linux-musl",
  1400. "linux-x64",
  1401. "linux",
  1402. "unix-x64",
  1403. "unix",
  1404. "any",
  1405. "base"
  1406. ],
  1407. "alpine.3.15-x64": [
  1408. "alpine.3.15",
  1409. "alpine.3.14-x64",
  1410. "alpine.3.14",
  1411. "alpine.3.13-x64",
  1412. "alpine.3.13",
  1413. "alpine.3.12-x64",
  1414. "alpine.3.12",
  1415. "alpine.3.11-x64",
  1416. "alpine.3.11",
  1417. "alpine.3.10-x64",
  1418. "alpine.3.10",
  1419. "alpine.3.9-x64",
  1420. "alpine.3.9",
  1421. "alpine.3.8-x64",
  1422. "alpine.3.8",
  1423. "alpine.3.7-x64",
  1424. "alpine.3.7",
  1425. "alpine.3.6-x64",
  1426. "alpine.3.6",
  1427. "alpine-x64",
  1428. "alpine",
  1429. "linux-musl-x64",
  1430. "linux-musl",
  1431. "linux-x64",
  1432. "linux",
  1433. "unix-x64",
  1434. "unix",
  1435. "any",
  1436. "base"
  1437. ],
  1438. "alpine.3.16-x64": [
  1439. "alpine.3.16",
  1440. "alpine.3.15-x64",
  1441. "alpine.3.15",
  1442. "alpine.3.14-x64",
  1443. "alpine.3.14",
  1444. "alpine.3.13-x64",
  1445. "alpine.3.13",
  1446. "alpine.3.12-x64",
  1447. "alpine.3.12",
  1448. "alpine.3.11-x64",
  1449. "alpine.3.11",
  1450. "alpine.3.10-x64",
  1451. "alpine.3.10",
  1452. "alpine.3.9-x64",
  1453. "alpine.3.9",
  1454. "alpine.3.8-x64",
  1455. "alpine.3.8",
  1456. "alpine.3.7-x64",
  1457. "alpine.3.7",
  1458. "alpine.3.6-x64",
  1459. "alpine.3.6",
  1460. "alpine-x64",
  1461. "alpine",
  1462. "linux-musl-x64",
  1463. "linux-musl",
  1464. "linux-x64",
  1465. "linux",
  1466. "unix-x64",
  1467. "unix",
  1468. "any",
  1469. "base"
  1470. ],
  1471. "alpine.3.17-x64": [
  1472. "alpine.3.17",
  1473. "alpine.3.16-x64",
  1474. "alpine.3.16",
  1475. "alpine.3.15-x64",
  1476. "alpine.3.15",
  1477. "alpine.3.14-x64",
  1478. "alpine.3.14",
  1479. "alpine.3.13-x64",
  1480. "alpine.3.13",
  1481. "alpine.3.12-x64",
  1482. "alpine.3.12",
  1483. "alpine.3.11-x64",
  1484. "alpine.3.11",
  1485. "alpine.3.10-x64",
  1486. "alpine.3.10",
  1487. "alpine.3.9-x64",
  1488. "alpine.3.9",
  1489. "alpine.3.8-x64",
  1490. "alpine.3.8",
  1491. "alpine.3.7-x64",
  1492. "alpine.3.7",
  1493. "alpine.3.6-x64",
  1494. "alpine.3.6",
  1495. "alpine-x64",
  1496. "alpine",
  1497. "linux-musl-x64",
  1498. "linux-musl",
  1499. "linux-x64",
  1500. "linux",
  1501. "unix-x64",
  1502. "unix",
  1503. "any",
  1504. "base"
  1505. ],
  1506. "alpine.3.18-x64": [
  1507. "alpine.3.18",
  1508. "alpine.3.17-x64",
  1509. "alpine.3.17",
  1510. "alpine.3.16-x64",
  1511. "alpine.3.16",
  1512. "alpine.3.15-x64",
  1513. "alpine.3.15",
  1514. "alpine.3.14-x64",
  1515. "alpine.3.14",
  1516. "alpine.3.13-x64",
  1517. "alpine.3.13",
  1518. "alpine.3.12-x64",
  1519. "alpine.3.12",
  1520. "alpine.3.11-x64",
  1521. "alpine.3.11",
  1522. "alpine.3.10-x64",
  1523. "alpine.3.10",
  1524. "alpine.3.9-x64",
  1525. "alpine.3.9",
  1526. "alpine.3.8-x64",
  1527. "alpine.3.8",
  1528. "alpine.3.7-x64",
  1529. "alpine.3.7",
  1530. "alpine.3.6-x64",
  1531. "alpine.3.6",
  1532. "alpine-x64",
  1533. "alpine",
  1534. "linux-musl-x64",
  1535. "linux-musl",
  1536. "linux-x64",
  1537. "linux",
  1538. "unix-x64",
  1539. "unix",
  1540. "any",
  1541. "base"
  1542. ],
  1543. "alpine.3.6-x64": [
  1544. "alpine.3.6",
  1545. "alpine-x64",
  1546. "alpine",
  1547. "linux-musl-x64",
  1548. "linux-musl",
  1549. "linux-x64",
  1550. "linux",
  1551. "unix-x64",
  1552. "unix",
  1553. "any",
  1554. "base"
  1555. ],
  1556. "alpine.3.7-x64": [
  1557. "alpine.3.7",
  1558. "alpine.3.6-x64",
  1559. "alpine.3.6",
  1560. "alpine-x64",
  1561. "alpine",
  1562. "linux-musl-x64",
  1563. "linux-musl",
  1564. "linux-x64",
  1565. "linux",
  1566. "unix-x64",
  1567. "unix",
  1568. "any",
  1569. "base"
  1570. ],
  1571. "alpine.3.8-x64": [
  1572. "alpine.3.8",
  1573. "alpine.3.7-x64",
  1574. "alpine.3.7",
  1575. "alpine.3.6-x64",
  1576. "alpine.3.6",
  1577. "alpine-x64",
  1578. "alpine",
  1579. "linux-musl-x64",
  1580. "linux-musl",
  1581. "linux-x64",
  1582. "linux",
  1583. "unix-x64",
  1584. "unix",
  1585. "any",
  1586. "base"
  1587. ],
  1588. "alpine.3.9-x64": [
  1589. "alpine.3.9",
  1590. "alpine.3.8-x64",
  1591. "alpine.3.8",
  1592. "alpine.3.7-x64",
  1593. "alpine.3.7",
  1594. "alpine.3.6-x64",
  1595. "alpine.3.6",
  1596. "alpine-x64",
  1597. "alpine",
  1598. "linux-musl-x64",
  1599. "linux-musl",
  1600. "linux-x64",
  1601. "linux",
  1602. "unix-x64",
  1603. "unix",
  1604. "any",
  1605. "base"
  1606. ],
  1607. "android-x64": [
  1608. "android",
  1609. "linux-bionic-x64",
  1610. "linux-bionic",
  1611. "linux-x64",
  1612. "linux",
  1613. "unix-x64",
  1614. "unix",
  1615. "any",
  1616. "base"
  1617. ],
  1618. "android.21-x64": [
  1619. "android.21",
  1620. "android-x64",
  1621. "android",
  1622. "linux-bionic-x64",
  1623. "linux-bionic",
  1624. "linux-x64",
  1625. "linux",
  1626. "unix-x64",
  1627. "unix",
  1628. "any",
  1629. "base"
  1630. ],
  1631. "android.22-x64": [
  1632. "android.22",
  1633. "android.21-x64",
  1634. "android.21",
  1635. "android-x64",
  1636. "android",
  1637. "linux-bionic-x64",
  1638. "linux-bionic",
  1639. "linux-x64",
  1640. "linux",
  1641. "unix-x64",
  1642. "unix",
  1643. "any",
  1644. "base"
  1645. ],
  1646. "android.23-x64": [
  1647. "android.23",
  1648. "android.22-x64",
  1649. "android.22",
  1650. "android.21-x64",
  1651. "android.21",
  1652. "android-x64",
  1653. "android",
  1654. "linux-bionic-x64",
  1655. "linux-bionic",
  1656. "linux-x64",
  1657. "linux",
  1658. "unix-x64",
  1659. "unix",
  1660. "any",
  1661. "base"
  1662. ],
  1663. "android.24-x64": [
  1664. "android.24",
  1665. "android.23-x64",
  1666. "android.23",
  1667. "android.22-x64",
  1668. "android.22",
  1669. "android.21-x64",
  1670. "android.21",
  1671. "android-x64",
  1672. "android",
  1673. "linux-bionic-x64",
  1674. "linux-bionic",
  1675. "linux-x64",
  1676. "linux",
  1677. "unix-x64",
  1678. "unix",
  1679. "any",
  1680. "base"
  1681. ],
  1682. "android.25-x64": [
  1683. "android.25",
  1684. "android.24-x64",
  1685. "android.24",
  1686. "android.23-x64",
  1687. "android.23",
  1688. "android.22-x64",
  1689. "android.22",
  1690. "android.21-x64",
  1691. "android.21",
  1692. "android-x64",
  1693. "android",
  1694. "linux-bionic-x64",
  1695. "linux-bionic",
  1696. "linux-x64",
  1697. "linux",
  1698. "unix-x64",
  1699. "unix",
  1700. "any",
  1701. "base"
  1702. ],
  1703. "android.26-x64": [
  1704. "android.26",
  1705. "android.25-x64",
  1706. "android.25",
  1707. "android.24-x64",
  1708. "android.24",
  1709. "android.23-x64",
  1710. "android.23",
  1711. "android.22-x64",
  1712. "android.22",
  1713. "android.21-x64",
  1714. "android.21",
  1715. "android-x64",
  1716. "android",
  1717. "linux-bionic-x64",
  1718. "linux-bionic",
  1719. "linux-x64",
  1720. "linux",
  1721. "unix-x64",
  1722. "unix",
  1723. "any",
  1724. "base"
  1725. ],
  1726. "android.27-x64": [
  1727. "android.27",
  1728. "android.26-x64",
  1729. "android.26",
  1730. "android.25-x64",
  1731. "android.25",
  1732. "android.24-x64",
  1733. "android.24",
  1734. "android.23-x64",
  1735. "android.23",
  1736. "android.22-x64",
  1737. "android.22",
  1738. "android.21-x64",
  1739. "android.21",
  1740. "android-x64",
  1741. "android",
  1742. "linux-bionic-x64",
  1743. "linux-bionic",
  1744. "linux-x64",
  1745. "linux",
  1746. "unix-x64",
  1747. "unix",
  1748. "any",
  1749. "base"
  1750. ],
  1751. "android.28-x64": [
  1752. "android.28",
  1753. "android.27-x64",
  1754. "android.27",
  1755. "android.26-x64",
  1756. "android.26",
  1757. "android.25-x64",
  1758. "android.25",
  1759. "android.24-x64",
  1760. "android.24",
  1761. "android.23-x64",
  1762. "android.23",
  1763. "android.22-x64",
  1764. "android.22",
  1765. "android.21-x64",
  1766. "android.21",
  1767. "android-x64",
  1768. "android",
  1769. "linux-bionic-x64",
  1770. "linux-bionic",
  1771. "linux-x64",
  1772. "linux",
  1773. "unix-x64",
  1774. "unix",
  1775. "any",
  1776. "base"
  1777. ],
  1778. "android.29-x64": [
  1779. "android.29",
  1780. "android.28-x64",
  1781. "android.28",
  1782. "android.27-x64",
  1783. "android.27",
  1784. "android.26-x64",
  1785. "android.26",
  1786. "android.25-x64",
  1787. "android.25",
  1788. "android.24-x64",
  1789. "android.24",
  1790. "android.23-x64",
  1791. "android.23",
  1792. "android.22-x64",
  1793. "android.22",
  1794. "android.21-x64",
  1795. "android.21",
  1796. "android-x64",
  1797. "android",
  1798. "linux-bionic-x64",
  1799. "linux-bionic",
  1800. "linux-x64",
  1801. "linux",
  1802. "unix-x64",
  1803. "unix",
  1804. "any",
  1805. "base"
  1806. ],
  1807. "android.30-x64": [
  1808. "android.30",
  1809. "android.29-x64",
  1810. "android.29",
  1811. "android.28-x64",
  1812. "android.28",
  1813. "android.27-x64",
  1814. "android.27",
  1815. "android.26-x64",
  1816. "android.26",
  1817. "android.25-x64",
  1818. "android.25",
  1819. "android.24-x64",
  1820. "android.24",
  1821. "android.23-x64",
  1822. "android.23",
  1823. "android.22-x64",
  1824. "android.22",
  1825. "android.21-x64",
  1826. "android.21",
  1827. "android-x64",
  1828. "android",
  1829. "linux-bionic-x64",
  1830. "linux-bionic",
  1831. "linux-x64",
  1832. "linux",
  1833. "unix-x64",
  1834. "unix",
  1835. "any",
  1836. "base"
  1837. ],
  1838. "android.31-x64": [
  1839. "android.31",
  1840. "android.30-x64",
  1841. "android.30",
  1842. "android.29-x64",
  1843. "android.29",
  1844. "android.28-x64",
  1845. "android.28",
  1846. "android.27-x64",
  1847. "android.27",
  1848. "android.26-x64",
  1849. "android.26",
  1850. "android.25-x64",
  1851. "android.25",
  1852. "android.24-x64",
  1853. "android.24",
  1854. "android.23-x64",
  1855. "android.23",
  1856. "android.22-x64",
  1857. "android.22",
  1858. "android.21-x64",
  1859. "android.21",
  1860. "android-x64",
  1861. "android",
  1862. "linux-bionic-x64",
  1863. "linux-bionic",
  1864. "linux-x64",
  1865. "linux",
  1866. "unix-x64",
  1867. "unix",
  1868. "any",
  1869. "base"
  1870. ],
  1871. "android.32-x64": [
  1872. "android.32",
  1873. "android.31-x64",
  1874. "android.31",
  1875. "android.30-x64",
  1876. "android.30",
  1877. "android.29-x64",
  1878. "android.29",
  1879. "android.28-x64",
  1880. "android.28",
  1881. "android.27-x64",
  1882. "android.27",
  1883. "android.26-x64",
  1884. "android.26",
  1885. "android.25-x64",
  1886. "android.25",
  1887. "android.24-x64",
  1888. "android.24",
  1889. "android.23-x64",
  1890. "android.23",
  1891. "android.22-x64",
  1892. "android.22",
  1893. "android.21-x64",
  1894. "android.21",
  1895. "android-x64",
  1896. "android",
  1897. "linux-bionic-x64",
  1898. "linux-bionic",
  1899. "linux-x64",
  1900. "linux",
  1901. "unix-x64",
  1902. "unix",
  1903. "any",
  1904. "base"
  1905. ],
  1906. "arch-x64": [
  1907. "arch",
  1908. "linux-x64",
  1909. "linux",
  1910. "unix-x64",
  1911. "unix",
  1912. "any",
  1913. "base"
  1914. ],
  1915. "centos-x64": [
  1916. "centos",
  1917. "rhel-x64",
  1918. "rhel",
  1919. "linux-x64",
  1920. "linux",
  1921. "unix-x64",
  1922. "unix",
  1923. "any",
  1924. "base"
  1925. ],
  1926. "centos.7-x64": [
  1927. "centos.7",
  1928. "centos-x64",
  1929. "rhel.7-x64",
  1930. "centos",
  1931. "rhel.7",
  1932. "rhel-x64",
  1933. "rhel",
  1934. "linux-x64",
  1935. "linux",
  1936. "unix-x64",
  1937. "unix",
  1938. "any",
  1939. "base"
  1940. ],
  1941. "centos.8-x64": [
  1942. "centos.8",
  1943. "centos-x64",
  1944. "rhel.8-x64",
  1945. "centos",
  1946. "rhel.8",
  1947. "rhel-x64",
  1948. "rhel",
  1949. "linux-x64",
  1950. "linux",
  1951. "unix-x64",
  1952. "unix",
  1953. "any",
  1954. "base"
  1955. ],
  1956. "centos.9-x64": [
  1957. "centos.9",
  1958. "centos-x64",
  1959. "rhel.9-x64",
  1960. "centos",
  1961. "rhel.9",
  1962. "rhel-x64",
  1963. "rhel",
  1964. "linux-x64",
  1965. "linux",
  1966. "unix-x64",
  1967. "unix",
  1968. "any",
  1969. "base"
  1970. ],
  1971. "debian-x64": [
  1972. "debian",
  1973. "linux-x64",
  1974. "linux",
  1975. "unix-x64",
  1976. "unix",
  1977. "any",
  1978. "base"
  1979. ],
  1980. "debian.10-x64": [
  1981. "debian.10",
  1982. "debian-x64",
  1983. "debian",
  1984. "linux-x64",
  1985. "linux",
  1986. "unix-x64",
  1987. "unix",
  1988. "any",
  1989. "base"
  1990. ],
  1991. "debian.11-x64": [
  1992. "debian.11",
  1993. "debian-x64",
  1994. "debian",
  1995. "linux-x64",
  1996. "linux",
  1997. "unix-x64",
  1998. "unix",
  1999. "any",
  2000. "base"
  2001. ],
  2002. "debian.12-x64": [
  2003. "debian.12",
  2004. "debian-x64",
  2005. "debian",
  2006. "linux-x64",
  2007. "linux",
  2008. "unix-x64",
  2009. "unix",
  2010. "any",
  2011. "base"
  2012. ],
  2013. "debian.8-x64": [
  2014. "debian.8",
  2015. "debian-x64",
  2016. "debian",
  2017. "linux-x64",
  2018. "linux",
  2019. "unix-x64",
  2020. "unix",
  2021. "any",
  2022. "base"
  2023. ],
  2024. "debian.9-x64": [
  2025. "debian.9",
  2026. "debian-x64",
  2027. "debian",
  2028. "linux-x64",
  2029. "linux",
  2030. "unix-x64",
  2031. "unix",
  2032. "any",
  2033. "base"
  2034. ],
  2035. "exherbo-x64": [
  2036. "exherbo",
  2037. "linux-x64",
  2038. "linux",
  2039. "unix-x64",
  2040. "unix",
  2041. "any",
  2042. "base"
  2043. ],
  2044. "fedora-x64": [
  2045. "fedora",
  2046. "linux-x64",
  2047. "linux",
  2048. "unix-x64",
  2049. "unix",
  2050. "any",
  2051. "base"
  2052. ],
  2053. "fedora.23-x64": [
  2054. "fedora.23",
  2055. "fedora-x64",
  2056. "fedora",
  2057. "linux-x64",
  2058. "linux",
  2059. "unix-x64",
  2060. "unix",
  2061. "any",
  2062. "base"
  2063. ],
  2064. "fedora.24-x64": [
  2065. "fedora.24",
  2066. "fedora-x64",
  2067. "fedora",
  2068. "linux-x64",
  2069. "linux",
  2070. "unix-x64",
  2071. "unix",
  2072. "any",
  2073. "base"
  2074. ],
  2075. "fedora.25-x64": [
  2076. "fedora.25",
  2077. "fedora-x64",
  2078. "fedora",
  2079. "linux-x64",
  2080. "linux",
  2081. "unix-x64",
  2082. "unix",
  2083. "any",
  2084. "base"
  2085. ],
  2086. "fedora.26-x64": [
  2087. "fedora.26",
  2088. "fedora-x64",
  2089. "fedora",
  2090. "linux-x64",
  2091. "linux",
  2092. "unix-x64",
  2093. "unix",
  2094. "any",
  2095. "base"
  2096. ],
  2097. "fedora.27-x64": [
  2098. "fedora.27",
  2099. "fedora-x64",
  2100. "fedora",
  2101. "linux-x64",
  2102. "linux",
  2103. "unix-x64",
  2104. "unix",
  2105. "any",
  2106. "base"
  2107. ],
  2108. "fedora.28-x64": [
  2109. "fedora.28",
  2110. "fedora-x64",
  2111. "fedora",
  2112. "linux-x64",
  2113. "linux",
  2114. "unix-x64",
  2115. "unix",
  2116. "any",
  2117. "base"
  2118. ],
  2119. "fedora.29-x64": [
  2120. "fedora.29",
  2121. "fedora-x64",
  2122. "fedora",
  2123. "linux-x64",
  2124. "linux",
  2125. "unix-x64",
  2126. "unix",
  2127. "any",
  2128. "base"
  2129. ],
  2130. "fedora.30-x64": [
  2131. "fedora.30",
  2132. "fedora-x64",
  2133. "fedora",
  2134. "linux-x64",
  2135. "linux",
  2136. "unix-x64",
  2137. "unix",
  2138. "any",
  2139. "base"
  2140. ],
  2141. "fedora.31-x64": [
  2142. "fedora.31",
  2143. "fedora-x64",
  2144. "fedora",
  2145. "linux-x64",
  2146. "linux",
  2147. "unix-x64",
  2148. "unix",
  2149. "any",
  2150. "base"
  2151. ],
  2152. "fedora.32-x64": [
  2153. "fedora.32",
  2154. "fedora-x64",
  2155. "fedora",
  2156. "linux-x64",
  2157. "linux",
  2158. "unix-x64",
  2159. "unix",
  2160. "any",
  2161. "base"
  2162. ],
  2163. "fedora.33-x64": [
  2164. "fedora.33",
  2165. "fedora-x64",
  2166. "fedora",
  2167. "linux-x64",
  2168. "linux",
  2169. "unix-x64",
  2170. "unix",
  2171. "any",
  2172. "base"
  2173. ],
  2174. "fedora.34-x64": [
  2175. "fedora.34",
  2176. "fedora-x64",
  2177. "fedora",
  2178. "linux-x64",
  2179. "linux",
  2180. "unix-x64",
  2181. "unix",
  2182. "any",
  2183. "base"
  2184. ],
  2185. "fedora.35-x64": [
  2186. "fedora.35",
  2187. "fedora-x64",
  2188. "fedora",
  2189. "linux-x64",
  2190. "linux",
  2191. "unix-x64",
  2192. "unix",
  2193. "any",
  2194. "base"
  2195. ],
  2196. "fedora.36-x64": [
  2197. "fedora.36",
  2198. "fedora-x64",
  2199. "fedora",
  2200. "linux-x64",
  2201. "linux",
  2202. "unix-x64",
  2203. "unix",
  2204. "any",
  2205. "base"
  2206. ],
  2207. "fedora.37-x64": [
  2208. "fedora.37",
  2209. "fedora-x64",
  2210. "fedora",
  2211. "linux-x64",
  2212. "linux",
  2213. "unix-x64",
  2214. "unix",
  2215. "any",
  2216. "base"
  2217. ],
  2218. "fedora.38-x64": [
  2219. "fedora.38",
  2220. "fedora-x64",
  2221. "fedora",
  2222. "linux-x64",
  2223. "linux",
  2224. "unix-x64",
  2225. "unix",
  2226. "any",
  2227. "base"
  2228. ],
  2229. "fedora.39-x64": [
  2230. "fedora.39",
  2231. "fedora-x64",
  2232. "fedora",
  2233. "linux-x64",
  2234. "linux",
  2235. "unix-x64",
  2236. "unix",
  2237. "any",
  2238. "base"
  2239. ],
  2240. "gentoo-x64": [
  2241. "gentoo",
  2242. "linux-x64",
  2243. "linux",
  2244. "unix-x64",
  2245. "unix",
  2246. "any",
  2247. "base"
  2248. ],
  2249. "linux-bionic-x64": [
  2250. "linux-bionic",
  2251. "linux-x64",
  2252. "linux",
  2253. "unix-x64",
  2254. "unix",
  2255. "any",
  2256. "base"
  2257. ],
  2258. "linux-musl-x64": [
  2259. "linux-musl",
  2260. "linux-x64",
  2261. "linux",
  2262. "unix-x64",
  2263. "unix",
  2264. "any",
  2265. "base"
  2266. ],
  2267. "linux-x64": [
  2268. "linux",
  2269. "unix-x64",
  2270. "unix",
  2271. "any",
  2272. "base"
  2273. ],
  2274. "linuxmint.17-x64": [
  2275. "linuxmint.17",
  2276. "ubuntu.14.04-x64",
  2277. "ubuntu.14.04",
  2278. "ubuntu-x64",
  2279. "ubuntu",
  2280. "debian-x64",
  2281. "debian",
  2282. "linux-x64",
  2283. "linux",
  2284. "unix-x64",
  2285. "unix",
  2286. "any",
  2287. "base"
  2288. ],
  2289. "linuxmint.17.1-x64": [
  2290. "linuxmint.17.1",
  2291. "linuxmint.17-x64",
  2292. "linuxmint.17",
  2293. "ubuntu.14.04-x64",
  2294. "ubuntu.14.04",
  2295. "ubuntu-x64",
  2296. "ubuntu",
  2297. "debian-x64",
  2298. "debian",
  2299. "linux-x64",
  2300. "linux",
  2301. "unix-x64",
  2302. "unix",
  2303. "any",
  2304. "base"
  2305. ],
  2306. "linuxmint.17.2-x64": [
  2307. "linuxmint.17.2",
  2308. "linuxmint.17.1-x64",
  2309. "linuxmint.17.1",
  2310. "linuxmint.17-x64",
  2311. "linuxmint.17",
  2312. "ubuntu.14.04-x64",
  2313. "ubuntu.14.04",
  2314. "ubuntu-x64",
  2315. "ubuntu",
  2316. "debian-x64",
  2317. "debian",
  2318. "linux-x64",
  2319. "linux",
  2320. "unix-x64",
  2321. "unix",
  2322. "any",
  2323. "base"
  2324. ],
  2325. "linuxmint.17.3-x64": [
  2326. "linuxmint.17.3",
  2327. "linuxmint.17.2-x64",
  2328. "linuxmint.17.2",
  2329. "linuxmint.17.1-x64",
  2330. "linuxmint.17.1",
  2331. "linuxmint.17-x64",
  2332. "linuxmint.17",
  2333. "ubuntu.14.04-x64",
  2334. "ubuntu.14.04",
  2335. "ubuntu-x64",
  2336. "ubuntu",
  2337. "debian-x64",
  2338. "debian",
  2339. "linux-x64",
  2340. "linux",
  2341. "unix-x64",
  2342. "unix",
  2343. "any",
  2344. "base"
  2345. ],
  2346. "linuxmint.18-x64": [
  2347. "linuxmint.18",
  2348. "ubuntu.16.04-x64",
  2349. "ubuntu.16.04",
  2350. "ubuntu-x64",
  2351. "ubuntu",
  2352. "debian-x64",
  2353. "debian",
  2354. "linux-x64",
  2355. "linux",
  2356. "unix-x64",
  2357. "unix",
  2358. "any",
  2359. "base"
  2360. ],
  2361. "linuxmint.18.1-x64": [
  2362. "linuxmint.18.1",
  2363. "linuxmint.18-x64",
  2364. "linuxmint.18",
  2365. "ubuntu.16.04-x64",
  2366. "ubuntu.16.04",
  2367. "ubuntu-x64",
  2368. "ubuntu",
  2369. "debian-x64",
  2370. "debian",
  2371. "linux-x64",
  2372. "linux",
  2373. "unix-x64",
  2374. "unix",
  2375. "any",
  2376. "base"
  2377. ],
  2378. "linuxmint.18.2-x64": [
  2379. "linuxmint.18.2",
  2380. "linuxmint.18.1-x64",
  2381. "linuxmint.18.1",
  2382. "linuxmint.18-x64",
  2383. "linuxmint.18",
  2384. "ubuntu.16.04-x64",
  2385. "ubuntu.16.04",
  2386. "ubuntu-x64",
  2387. "ubuntu",
  2388. "debian-x64",
  2389. "debian",
  2390. "linux-x64",
  2391. "linux",
  2392. "unix-x64",
  2393. "unix",
  2394. "any",
  2395. "base"
  2396. ],
  2397. "linuxmint.18.3-x64": [
  2398. "linuxmint.18.3",
  2399. "linuxmint.18.2-x64",
  2400. "linuxmint.18.2",
  2401. "linuxmint.18.1-x64",
  2402. "linuxmint.18.1",
  2403. "linuxmint.18-x64",
  2404. "linuxmint.18",
  2405. "ubuntu.16.04-x64",
  2406. "ubuntu.16.04",
  2407. "ubuntu-x64",
  2408. "ubuntu",
  2409. "debian-x64",
  2410. "debian",
  2411. "linux-x64",
  2412. "linux",
  2413. "unix-x64",
  2414. "unix",
  2415. "any",
  2416. "base"
  2417. ],
  2418. "linuxmint.19-x64": [
  2419. "linuxmint.19",
  2420. "ubuntu.18.04-x64",
  2421. "ubuntu.18.04",
  2422. "ubuntu-x64",
  2423. "ubuntu",
  2424. "debian-x64",
  2425. "debian",
  2426. "linux-x64",
  2427. "linux",
  2428. "unix-x64",
  2429. "unix",
  2430. "any",
  2431. "base"
  2432. ],
  2433. "linuxmint.19.1-x64": [
  2434. "linuxmint.19.1",
  2435. "linuxmint.19-x64",
  2436. "linuxmint.19",
  2437. "ubuntu.18.04-x64",
  2438. "ubuntu.18.04",
  2439. "ubuntu-x64",
  2440. "ubuntu",
  2441. "debian-x64",
  2442. "debian",
  2443. "linux-x64",
  2444. "linux",
  2445. "unix-x64",
  2446. "unix",
  2447. "any",
  2448. "base"
  2449. ],
  2450. "linuxmint.19.2-x64": [
  2451. "linuxmint.19.2",
  2452. "linuxmint.19.1-x64",
  2453. "linuxmint.19.1",
  2454. "linuxmint.19-x64",
  2455. "linuxmint.19",
  2456. "ubuntu.18.04-x64",
  2457. "ubuntu.18.04",
  2458. "ubuntu-x64",
  2459. "ubuntu",
  2460. "debian-x64",
  2461. "debian",
  2462. "linux-x64",
  2463. "linux",
  2464. "unix-x64",
  2465. "unix",
  2466. "any",
  2467. "base"
  2468. ],
  2469. "manjaro-x64": [
  2470. "manjaro",
  2471. "arch-x64",
  2472. "arch",
  2473. "linux-x64",
  2474. "linux",
  2475. "unix-x64",
  2476. "unix",
  2477. "any",
  2478. "base"
  2479. ],
  2480. "miraclelinux-x64": [
  2481. "miraclelinux",
  2482. "rhel-x64",
  2483. "rhel",
  2484. "linux-x64",
  2485. "linux",
  2486. "unix-x64",
  2487. "unix",
  2488. "any",
  2489. "base"
  2490. ],
  2491. "miraclelinux.8-x64": [
  2492. "miraclelinux.8",
  2493. "miraclelinux-x64",
  2494. "rhel.8-x64",
  2495. "miraclelinux",
  2496. "rhel.8",
  2497. "rhel-x64",
  2498. "rhel",
  2499. "linux-x64",
  2500. "linux",
  2501. "unix-x64",
  2502. "unix",
  2503. "any",
  2504. "base"
  2505. ],
  2506. "miraclelinux.9-x64": [
  2507. "miraclelinux.9",
  2508. "miraclelinux-x64",
  2509. "rhel.9-x64",
  2510. "miraclelinux",
  2511. "rhel.9",
  2512. "rhel-x64",
  2513. "rhel",
  2514. "linux-x64",
  2515. "linux",
  2516. "unix-x64",
  2517. "unix",
  2518. "any",
  2519. "base"
  2520. ],
  2521. "ol-x64": [
  2522. "ol",
  2523. "rhel-x64",
  2524. "rhel",
  2525. "linux-x64",
  2526. "linux",
  2527. "unix-x64",
  2528. "unix",
  2529. "any",
  2530. "base"
  2531. ],
  2532. "ol.7-x64": [
  2533. "ol.7",
  2534. "ol-x64",
  2535. "rhel.7-x64",
  2536. "ol",
  2537. "rhel.7",
  2538. "rhel-x64",
  2539. "rhel",
  2540. "linux-x64",
  2541. "linux",
  2542. "unix-x64",
  2543. "unix",
  2544. "any",
  2545. "base"
  2546. ],
  2547. "ol.7.0-x64": [
  2548. "ol.7.0",
  2549. "ol.7-x64",
  2550. "rhel.7.0-x64",
  2551. "ol.7",
  2552. "rhel.7.0",
  2553. "ol-x64",
  2554. "rhel.7-x64",
  2555. "ol",
  2556. "rhel.7",
  2557. "rhel-x64",
  2558. "rhel",
  2559. "linux-x64",
  2560. "linux",
  2561. "unix-x64",
  2562. "unix",
  2563. "any",
  2564. "base"
  2565. ],
  2566. "ol.7.1-x64": [
  2567. "ol.7.1",
  2568. "ol.7.0-x64",
  2569. "rhel.7.1-x64",
  2570. "ol.7.0",
  2571. "rhel.7.1",
  2572. "ol.7-x64",
  2573. "rhel.7.0-x64",
  2574. "ol.7",
  2575. "rhel.7.0",
  2576. "ol-x64",
  2577. "rhel.7-x64",
  2578. "ol",
  2579. "rhel.7",
  2580. "rhel-x64",
  2581. "rhel",
  2582. "linux-x64",
  2583. "linux",
  2584. "unix-x64",
  2585. "unix",
  2586. "any",
  2587. "base"
  2588. ],
  2589. "ol.7.2-x64": [
  2590. "ol.7.2",
  2591. "ol.7.1-x64",
  2592. "rhel.7.2-x64",
  2593. "ol.7.1",
  2594. "rhel.7.2",
  2595. "ol.7.0-x64",
  2596. "rhel.7.1-x64",
  2597. "ol.7.0",
  2598. "rhel.7.1",
  2599. "ol.7-x64",
  2600. "rhel.7.0-x64",
  2601. "ol.7",
  2602. "rhel.7.0",
  2603. "ol-x64",
  2604. "rhel.7-x64",
  2605. "ol",
  2606. "rhel.7",
  2607. "rhel-x64",
  2608. "rhel",
  2609. "linux-x64",
  2610. "linux",
  2611. "unix-x64",
  2612. "unix",
  2613. "any",
  2614. "base"
  2615. ],
  2616. "ol.7.3-x64": [
  2617. "ol.7.3",
  2618. "ol.7.2-x64",
  2619. "rhel.7.3-x64",
  2620. "ol.7.2",
  2621. "rhel.7.3",
  2622. "ol.7.1-x64",
  2623. "rhel.7.2-x64",
  2624. "ol.7.1",
  2625. "rhel.7.2",
  2626. "ol.7.0-x64",
  2627. "rhel.7.1-x64",
  2628. "ol.7.0",
  2629. "rhel.7.1",
  2630. "ol.7-x64",
  2631. "rhel.7.0-x64",
  2632. "ol.7",
  2633. "rhel.7.0",
  2634. "ol-x64",
  2635. "rhel.7-x64",
  2636. "ol",
  2637. "rhel.7",
  2638. "rhel-x64",
  2639. "rhel",
  2640. "linux-x64",
  2641. "linux",
  2642. "unix-x64",
  2643. "unix",
  2644. "any",
  2645. "base"
  2646. ],
  2647. "ol.7.4-x64": [
  2648. "ol.7.4",
  2649. "ol.7.3-x64",
  2650. "rhel.7.4-x64",
  2651. "ol.7.3",
  2652. "rhel.7.4",
  2653. "ol.7.2-x64",
  2654. "rhel.7.3-x64",
  2655. "ol.7.2",
  2656. "rhel.7.3",
  2657. "ol.7.1-x64",
  2658. "rhel.7.2-x64",
  2659. "ol.7.1",
  2660. "rhel.7.2",
  2661. "ol.7.0-x64",
  2662. "rhel.7.1-x64",
  2663. "ol.7.0",
  2664. "rhel.7.1",
  2665. "ol.7-x64",
  2666. "rhel.7.0-x64",
  2667. "ol.7",
  2668. "rhel.7.0",
  2669. "ol-x64",
  2670. "rhel.7-x64",
  2671. "ol",
  2672. "rhel.7",
  2673. "rhel-x64",
  2674. "rhel",
  2675. "linux-x64",
  2676. "linux",
  2677. "unix-x64",
  2678. "unix",
  2679. "any",
  2680. "base"
  2681. ],
  2682. "ol.7.5-x64": [
  2683. "ol.7.5",
  2684. "ol.7.4-x64",
  2685. "rhel.7.5-x64",
  2686. "ol.7.4",
  2687. "rhel.7.5",
  2688. "ol.7.3-x64",
  2689. "rhel.7.4-x64",
  2690. "ol.7.3",
  2691. "rhel.7.4",
  2692. "ol.7.2-x64",
  2693. "rhel.7.3-x64",
  2694. "ol.7.2",
  2695. "rhel.7.3",
  2696. "ol.7.1-x64",
  2697. "rhel.7.2-x64",
  2698. "ol.7.1",
  2699. "rhel.7.2",
  2700. "ol.7.0-x64",
  2701. "rhel.7.1-x64",
  2702. "ol.7.0",
  2703. "rhel.7.1",
  2704. "ol.7-x64",
  2705. "rhel.7.0-x64",
  2706. "ol.7",
  2707. "rhel.7.0",
  2708. "ol-x64",
  2709. "rhel.7-x64",
  2710. "ol",
  2711. "rhel.7",
  2712. "rhel-x64",
  2713. "rhel",
  2714. "linux-x64",
  2715. "linux",
  2716. "unix-x64",
  2717. "unix",
  2718. "any",
  2719. "base"
  2720. ],
  2721. "ol.7.6-x64": [
  2722. "ol.7.6",
  2723. "ol.7.5-x64",
  2724. "rhel.7.6-x64",
  2725. "ol.7.5",
  2726. "rhel.7.6",
  2727. "ol.7.4-x64",
  2728. "rhel.7.5-x64",
  2729. "ol.7.4",
  2730. "rhel.7.5",
  2731. "ol.7.3-x64",
  2732. "rhel.7.4-x64",
  2733. "ol.7.3",
  2734. "rhel.7.4",
  2735. "ol.7.2-x64",
  2736. "rhel.7.3-x64",
  2737. "ol.7.2",
  2738. "rhel.7.3",
  2739. "ol.7.1-x64",
  2740. "rhel.7.2-x64",
  2741. "ol.7.1",
  2742. "rhel.7.2",
  2743. "ol.7.0-x64",
  2744. "rhel.7.1-x64",
  2745. "ol.7.0",
  2746. "rhel.7.1",
  2747. "ol.7-x64",
  2748. "rhel.7.0-x64",
  2749. "ol.7",
  2750. "rhel.7.0",
  2751. "ol-x64",
  2752. "rhel.7-x64",
  2753. "ol",
  2754. "rhel.7",
  2755. "rhel-x64",
  2756. "rhel",
  2757. "linux-x64",
  2758. "linux",
  2759. "unix-x64",
  2760. "unix",
  2761. "any",
  2762. "base"
  2763. ],
  2764. "ol.8-x64": [
  2765. "ol.8",
  2766. "ol-x64",
  2767. "rhel.8-x64",
  2768. "ol",
  2769. "rhel.8",
  2770. "rhel-x64",
  2771. "rhel",
  2772. "linux-x64",
  2773. "linux",
  2774. "unix-x64",
  2775. "unix",
  2776. "any",
  2777. "base"
  2778. ],
  2779. "ol.8.0-x64": [
  2780. "ol.8.0",
  2781. "ol.8-x64",
  2782. "rhel.8.0-x64",
  2783. "ol.8",
  2784. "rhel.8.0",
  2785. "ol-x64",
  2786. "rhel.8-x64",
  2787. "ol",
  2788. "rhel.8",
  2789. "rhel-x64",
  2790. "rhel",
  2791. "linux-x64",
  2792. "linux",
  2793. "unix-x64",
  2794. "unix",
  2795. "any",
  2796. "base"
  2797. ],
  2798. "opensuse-x64": [
  2799. "opensuse",
  2800. "linux-x64",
  2801. "linux",
  2802. "unix-x64",
  2803. "unix",
  2804. "any",
  2805. "base"
  2806. ],
  2807. "opensuse.13.2-x64": [
  2808. "opensuse.13.2",
  2809. "opensuse-x64",
  2810. "opensuse",
  2811. "linux-x64",
  2812. "linux",
  2813. "unix-x64",
  2814. "unix",
  2815. "any",
  2816. "base"
  2817. ],
  2818. "opensuse.15.0-x64": [
  2819. "opensuse.15.0",
  2820. "opensuse-x64",
  2821. "opensuse",
  2822. "linux-x64",
  2823. "linux",
  2824. "unix-x64",
  2825. "unix",
  2826. "any",
  2827. "base"
  2828. ],
  2829. "opensuse.15.1-x64": [
  2830. "opensuse.15.1",
  2831. "opensuse-x64",
  2832. "opensuse",
  2833. "linux-x64",
  2834. "linux",
  2835. "unix-x64",
  2836. "unix",
  2837. "any",
  2838. "base"
  2839. ],
  2840. "opensuse.42.1-x64": [
  2841. "opensuse.42.1",
  2842. "opensuse-x64",
  2843. "opensuse",
  2844. "linux-x64",
  2845. "linux",
  2846. "unix-x64",
  2847. "unix",
  2848. "any",
  2849. "base"
  2850. ],
  2851. "opensuse.42.2-x64": [
  2852. "opensuse.42.2",
  2853. "opensuse-x64",
  2854. "opensuse",
  2855. "linux-x64",
  2856. "linux",
  2857. "unix-x64",
  2858. "unix",
  2859. "any",
  2860. "base"
  2861. ],
  2862. "opensuse.42.3-x64": [
  2863. "opensuse.42.3",
  2864. "opensuse-x64",
  2865. "opensuse",
  2866. "linux-x64",
  2867. "linux",
  2868. "unix-x64",
  2869. "unix",
  2870. "any",
  2871. "base"
  2872. ],
  2873. "rhel-x64": [
  2874. "rhel",
  2875. "linux-x64",
  2876. "linux",
  2877. "unix-x64",
  2878. "unix",
  2879. "any",
  2880. "base"
  2881. ],
  2882. "rhel.6-x64": [
  2883. "rhel.6",
  2884. "rhel-x64",
  2885. "rhel",
  2886. "linux-x64",
  2887. "linux",
  2888. "unix-x64",
  2889. "unix",
  2890. "any",
  2891. "base"
  2892. ],
  2893. "rhel.7-x64": [
  2894. "rhel.7",
  2895. "rhel-x64",
  2896. "rhel",
  2897. "linux-x64",
  2898. "linux",
  2899. "unix-x64",
  2900. "unix",
  2901. "any",
  2902. "base"
  2903. ],
  2904. "rhel.7.0-x64": [
  2905. "rhel.7.0",
  2906. "rhel.7-x64",
  2907. "rhel.7",
  2908. "rhel-x64",
  2909. "rhel",
  2910. "linux-x64",
  2911. "linux",
  2912. "unix-x64",
  2913. "unix",
  2914. "any",
  2915. "base"
  2916. ],
  2917. "rhel.7.1-x64": [
  2918. "rhel.7.1",
  2919. "rhel.7.0-x64",
  2920. "rhel.7.0",
  2921. "rhel.7-x64",
  2922. "rhel.7",
  2923. "rhel-x64",
  2924. "rhel",
  2925. "linux-x64",
  2926. "linux",
  2927. "unix-x64",
  2928. "unix",
  2929. "any",
  2930. "base"
  2931. ],
  2932. "rhel.7.2-x64": [
  2933. "rhel.7.2",
  2934. "rhel.7.1-x64",
  2935. "rhel.7.1",
  2936. "rhel.7.0-x64",
  2937. "rhel.7.0",
  2938. "rhel.7-x64",
  2939. "rhel.7",
  2940. "rhel-x64",
  2941. "rhel",
  2942. "linux-x64",
  2943. "linux",
  2944. "unix-x64",
  2945. "unix",
  2946. "any",
  2947. "base"
  2948. ],
  2949. "rhel.7.3-x64": [
  2950. "rhel.7.3",
  2951. "rhel.7.2-x64",
  2952. "rhel.7.2",
  2953. "rhel.7.1-x64",
  2954. "rhel.7.1",
  2955. "rhel.7.0-x64",
  2956. "rhel.7.0",
  2957. "rhel.7-x64",
  2958. "rhel.7",
  2959. "rhel-x64",
  2960. "rhel",
  2961. "linux-x64",
  2962. "linux",
  2963. "unix-x64",
  2964. "unix",
  2965. "any",
  2966. "base"
  2967. ],
  2968. "rhel.7.4-x64": [
  2969. "rhel.7.4",
  2970. "rhel.7.3-x64",
  2971. "rhel.7.3",
  2972. "rhel.7.2-x64",
  2973. "rhel.7.2",
  2974. "rhel.7.1-x64",
  2975. "rhel.7.1",
  2976. "rhel.7.0-x64",
  2977. "rhel.7.0",
  2978. "rhel.7-x64",
  2979. "rhel.7",
  2980. "rhel-x64",
  2981. "rhel",
  2982. "linux-x64",
  2983. "linux",
  2984. "unix-x64",
  2985. "unix",
  2986. "any",
  2987. "base"
  2988. ],
  2989. "rhel.7.5-x64": [
  2990. "rhel.7.5",
  2991. "rhel.7.4-x64",
  2992. "rhel.7.4",
  2993. "rhel.7.3-x64",
  2994. "rhel.7.3",
  2995. "rhel.7.2-x64",
  2996. "rhel.7.2",
  2997. "rhel.7.1-x64",
  2998. "rhel.7.1",
  2999. "rhel.7.0-x64",
  3000. "rhel.7.0",
  3001. "rhel.7-x64",
  3002. "rhel.7",
  3003. "rhel-x64",
  3004. "rhel",
  3005. "linux-x64",
  3006. "linux",
  3007. "unix-x64",
  3008. "unix",
  3009. "any",
  3010. "base"
  3011. ],
  3012. "rhel.7.6-x64": [
  3013. "rhel.7.6",
  3014. "rhel.7.5-x64",
  3015. "rhel.7.5",
  3016. "rhel.7.4-x64",
  3017. "rhel.7.4",
  3018. "rhel.7.3-x64",
  3019. "rhel.7.3",
  3020. "rhel.7.2-x64",
  3021. "rhel.7.2",
  3022. "rhel.7.1-x64",
  3023. "rhel.7.1",
  3024. "rhel.7.0-x64",
  3025. "rhel.7.0",
  3026. "rhel.7-x64",
  3027. "rhel.7",
  3028. "rhel-x64",
  3029. "rhel",
  3030. "linux-x64",
  3031. "linux",
  3032. "unix-x64",
  3033. "unix",
  3034. "any",
  3035. "base"
  3036. ],
  3037. "rhel.8-x64": [
  3038. "rhel.8",
  3039. "rhel-x64",
  3040. "rhel",
  3041. "linux-x64",
  3042. "linux",
  3043. "unix-x64",
  3044. "unix",
  3045. "any",
  3046. "base"
  3047. ],
  3048. "rhel.8.0-x64": [
  3049. "rhel.8.0",
  3050. "rhel.8-x64",
  3051. "rhel.8",
  3052. "rhel-x64",
  3053. "rhel",
  3054. "linux-x64",
  3055. "linux",
  3056. "unix-x64",
  3057. "unix",
  3058. "any",
  3059. "base"
  3060. ],
  3061. "rhel.8.1-x64": [
  3062. "rhel.8.1",
  3063. "rhel.8.0-x64",
  3064. "rhel.8.0",
  3065. "rhel.8-x64",
  3066. "rhel.8",
  3067. "rhel-x64",
  3068. "rhel",
  3069. "linux-x64",
  3070. "linux",
  3071. "unix-x64",
  3072. "unix",
  3073. "any",
  3074. "base"
  3075. ],
  3076. "rhel.9-x64": [
  3077. "rhel.9",
  3078. "rhel-x64",
  3079. "rhel",
  3080. "linux-x64",
  3081. "linux",
  3082. "unix-x64",
  3083. "unix",
  3084. "any",
  3085. "base"
  3086. ],
  3087. "rocky-x64": [
  3088. "rocky",
  3089. "rhel-x64",
  3090. "rhel",
  3091. "linux-x64",
  3092. "linux",
  3093. "unix-x64",
  3094. "unix",
  3095. "any",
  3096. "base"
  3097. ],
  3098. "rocky.8-x64": [
  3099. "rocky.8",
  3100. "rocky-x64",
  3101. "rhel.8-x64",
  3102. "rocky",
  3103. "rhel.8",
  3104. "rhel-x64",
  3105. "rhel",
  3106. "linux-x64",
  3107. "linux",
  3108. "unix-x64",
  3109. "unix",
  3110. "any",
  3111. "base"
  3112. ],
  3113. "rocky.9-x64": [
  3114. "rocky.9",
  3115. "rocky-x64",
  3116. "rhel.9-x64",
  3117. "rocky",
  3118. "rhel.9",
  3119. "rhel-x64",
  3120. "rhel",
  3121. "linux-x64",
  3122. "linux",
  3123. "unix-x64",
  3124. "unix",
  3125. "any",
  3126. "base"
  3127. ],
  3128. "sles-x64": [
  3129. "sles",
  3130. "linux-x64",
  3131. "linux",
  3132. "unix-x64",
  3133. "unix",
  3134. "any",
  3135. "base"
  3136. ],
  3137. "sles.12-x64": [
  3138. "sles.12",
  3139. "sles-x64",
  3140. "sles",
  3141. "linux-x64",
  3142. "linux",
  3143. "unix-x64",
  3144. "unix",
  3145. "any",
  3146. "base"
  3147. ],
  3148. "sles.12.1-x64": [
  3149. "sles.12.1",
  3150. "sles.12-x64",
  3151. "sles.12",
  3152. "sles-x64",
  3153. "sles",
  3154. "linux-x64",
  3155. "linux",
  3156. "unix-x64",
  3157. "unix",
  3158. "any",
  3159. "base"
  3160. ],
  3161. "sles.12.2-x64": [
  3162. "sles.12.2",
  3163. "sles.12.1-x64",
  3164. "sles.12.1",
  3165. "sles.12-x64",
  3166. "sles.12",
  3167. "sles-x64",
  3168. "sles",
  3169. "linux-x64",
  3170. "linux",
  3171. "unix-x64",
  3172. "unix",
  3173. "any",
  3174. "base"
  3175. ],
  3176. "sles.12.3-x64": [
  3177. "sles.12.3",
  3178. "sles.12.2-x64",
  3179. "sles.12.2",
  3180. "sles.12.1-x64",
  3181. "sles.12.1",
  3182. "sles.12-x64",
  3183. "sles.12",
  3184. "sles-x64",
  3185. "sles",
  3186. "linux-x64",
  3187. "linux",
  3188. "unix-x64",
  3189. "unix",
  3190. "any",
  3191. "base"
  3192. ],
  3193. "sles.12.4-x64": [
  3194. "sles.12.4",
  3195. "sles.12.3-x64",
  3196. "sles.12.3",
  3197. "sles.12.2-x64",
  3198. "sles.12.2",
  3199. "sles.12.1-x64",
  3200. "sles.12.1",
  3201. "sles.12-x64",
  3202. "sles.12",
  3203. "sles-x64",
  3204. "sles",
  3205. "linux-x64",
  3206. "linux",
  3207. "unix-x64",
  3208. "unix",
  3209. "any",
  3210. "base"
  3211. ],
  3212. "sles.15-x64": [
  3213. "sles.15",
  3214. "sles.12.4-x64",
  3215. "sles.12.4",
  3216. "sles.12.3-x64",
  3217. "sles.12.3",
  3218. "sles.12.2-x64",
  3219. "sles.12.2",
  3220. "sles.12.1-x64",
  3221. "sles.12.1",
  3222. "sles.12-x64",
  3223. "sles.12",
  3224. "sles-x64",
  3225. "sles",
  3226. "linux-x64",
  3227. "linux",
  3228. "unix-x64",
  3229. "unix",
  3230. "any",
  3231. "base"
  3232. ],
  3233. "sles.15.1-x64": [
  3234. "sles.15.1",
  3235. "sles.15-x64",
  3236. "sles.15",
  3237. "sles.12.4-x64",
  3238. "sles.12.4",
  3239. "sles.12.3-x64",
  3240. "sles.12.3",
  3241. "sles.12.2-x64",
  3242. "sles.12.2",
  3243. "sles.12.1-x64",
  3244. "sles.12.1",
  3245. "sles.12-x64",
  3246. "sles.12",
  3247. "sles-x64",
  3248. "sles",
  3249. "linux-x64",
  3250. "linux",
  3251. "unix-x64",
  3252. "unix",
  3253. "any",
  3254. "base"
  3255. ],
  3256. "ubuntu-x64": [
  3257. "ubuntu",
  3258. "debian-x64",
  3259. "debian",
  3260. "linux-x64",
  3261. "linux",
  3262. "unix-x64",
  3263. "unix",
  3264. "any",
  3265. "base"
  3266. ],
  3267. "ubuntu.14.04-x64": [
  3268. "ubuntu.14.04",
  3269. "ubuntu-x64",
  3270. "ubuntu",
  3271. "debian-x64",
  3272. "debian",
  3273. "linux-x64",
  3274. "linux",
  3275. "unix-x64",
  3276. "unix",
  3277. "any",
  3278. "base"
  3279. ],
  3280. "ubuntu.14.10-x64": [
  3281. "ubuntu.14.10",
  3282. "ubuntu-x64",
  3283. "ubuntu",
  3284. "debian-x64",
  3285. "debian",
  3286. "linux-x64",
  3287. "linux",
  3288. "unix-x64",
  3289. "unix",
  3290. "any",
  3291. "base"
  3292. ],
  3293. "ubuntu.15.04-x64": [
  3294. "ubuntu.15.04",
  3295. "ubuntu-x64",
  3296. "ubuntu",
  3297. "debian-x64",
  3298. "debian",
  3299. "linux-x64",
  3300. "linux",
  3301. "unix-x64",
  3302. "unix",
  3303. "any",
  3304. "base"
  3305. ],
  3306. "ubuntu.15.10-x64": [
  3307. "ubuntu.15.10",
  3308. "ubuntu-x64",
  3309. "ubuntu",
  3310. "debian-x64",
  3311. "debian",
  3312. "linux-x64",
  3313. "linux",
  3314. "unix-x64",
  3315. "unix",
  3316. "any",
  3317. "base"
  3318. ],
  3319. "ubuntu.16.04-x64": [
  3320. "ubuntu.16.04",
  3321. "ubuntu-x64",
  3322. "ubuntu",
  3323. "debian-x64",
  3324. "debian",
  3325. "linux-x64",
  3326. "linux",
  3327. "unix-x64",
  3328. "unix",
  3329. "any",
  3330. "base"
  3331. ],
  3332. "ubuntu.16.10-x64": [
  3333. "ubuntu.16.10",
  3334. "ubuntu-x64",
  3335. "ubuntu",
  3336. "debian-x64",
  3337. "debian",
  3338. "linux-x64",
  3339. "linux",
  3340. "unix-x64",
  3341. "unix",
  3342. "any",
  3343. "base"
  3344. ],
  3345. "ubuntu.17.04-x64": [
  3346. "ubuntu.17.04",
  3347. "ubuntu-x64",
  3348. "ubuntu",
  3349. "debian-x64",
  3350. "debian",
  3351. "linux-x64",
  3352. "linux",
  3353. "unix-x64",
  3354. "unix",
  3355. "any",
  3356. "base"
  3357. ],
  3358. "ubuntu.17.10-x64": [
  3359. "ubuntu.17.10",
  3360. "ubuntu-x64",
  3361. "ubuntu",
  3362. "debian-x64",
  3363. "debian",
  3364. "linux-x64",
  3365. "linux",
  3366. "unix-x64",
  3367. "unix",
  3368. "any",
  3369. "base"
  3370. ],
  3371. "ubuntu.18.04-x64": [
  3372. "ubuntu.18.04",
  3373. "ubuntu-x64",
  3374. "ubuntu",
  3375. "debian-x64",
  3376. "debian",
  3377. "linux-x64",
  3378. "linux",
  3379. "unix-x64",
  3380. "unix",
  3381. "any",
  3382. "base"
  3383. ],
  3384. "ubuntu.18.10-x64": [
  3385. "ubuntu.18.10",
  3386. "ubuntu-x64",
  3387. "ubuntu",
  3388. "debian-x64",
  3389. "debian",
  3390. "linux-x64",
  3391. "linux",
  3392. "unix-x64",
  3393. "unix",
  3394. "any",
  3395. "base"
  3396. ],
  3397. "ubuntu.19.04-x64": [
  3398. "ubuntu.19.04",
  3399. "ubuntu-x64",
  3400. "ubuntu",
  3401. "debian-x64",
  3402. "debian",
  3403. "linux-x64",
  3404. "linux",
  3405. "unix-x64",
  3406. "unix",
  3407. "any",
  3408. "base"
  3409. ],
  3410. "ubuntu.19.10-x64": [
  3411. "ubuntu.19.10",
  3412. "ubuntu-x64",
  3413. "ubuntu",
  3414. "debian-x64",
  3415. "debian",
  3416. "linux-x64",
  3417. "linux",
  3418. "unix-x64",
  3419. "unix",
  3420. "any",
  3421. "base"
  3422. ],
  3423. "ubuntu.20.04-x64": [
  3424. "ubuntu.20.04",
  3425. "ubuntu-x64",
  3426. "ubuntu",
  3427. "debian-x64",
  3428. "debian",
  3429. "linux-x64",
  3430. "linux",
  3431. "unix-x64",
  3432. "unix",
  3433. "any",
  3434. "base"
  3435. ],
  3436. "ubuntu.20.10-x64": [
  3437. "ubuntu.20.10",
  3438. "ubuntu-x64",
  3439. "ubuntu",
  3440. "debian-x64",
  3441. "debian",
  3442. "linux-x64",
  3443. "linux",
  3444. "unix-x64",
  3445. "unix",
  3446. "any",
  3447. "base"
  3448. ],
  3449. "ubuntu.21.04-x64": [
  3450. "ubuntu.21.04",
  3451. "ubuntu-x64",
  3452. "ubuntu",
  3453. "debian-x64",
  3454. "debian",
  3455. "linux-x64",
  3456. "linux",
  3457. "unix-x64",
  3458. "unix",
  3459. "any",
  3460. "base"
  3461. ],
  3462. "ubuntu.21.10-x64": [
  3463. "ubuntu.21.10",
  3464. "ubuntu-x64",
  3465. "ubuntu",
  3466. "debian-x64",
  3467. "debian",
  3468. "linux-x64",
  3469. "linux",
  3470. "unix-x64",
  3471. "unix",
  3472. "any",
  3473. "base"
  3474. ],
  3475. "ubuntu.22.04-x64": [
  3476. "ubuntu.22.04",
  3477. "ubuntu-x64",
  3478. "ubuntu",
  3479. "debian-x64",
  3480. "debian",
  3481. "linux-x64",
  3482. "linux",
  3483. "unix-x64",
  3484. "unix",
  3485. "any",
  3486. "base"
  3487. ],
  3488. "ubuntu.22.10-x64": [
  3489. "ubuntu.22.10",
  3490. "ubuntu-x64",
  3491. "ubuntu",
  3492. "debian-x64",
  3493. "debian",
  3494. "linux-x64",
  3495. "linux",
  3496. "unix-x64",
  3497. "unix",
  3498. "any",
  3499. "base"
  3500. ],
  3501. "ubuntu.23.04-x64": [
  3502. "ubuntu.23.04",
  3503. "ubuntu-x64",
  3504. "ubuntu",
  3505. "debian-x64",
  3506. "debian",
  3507. "linux-x64",
  3508. "linux",
  3509. "unix-x64",
  3510. "unix",
  3511. "any",
  3512. "base"
  3513. ],
  3514. "ubuntu.23.10-x64": [
  3515. "ubuntu.23.10",
  3516. "ubuntu-x64",
  3517. "ubuntu",
  3518. "debian-x64",
  3519. "debian",
  3520. "linux-x64",
  3521. "linux",
  3522. "unix-x64",
  3523. "unix",
  3524. "any",
  3525. "base"
  3526. ]
  3527. }
  3528. }