shear.nativecodeanalysis.sarif 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496
  1. {
  2. "version": "2.1.0",
  3. "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
  4. "runs": [
  5. {
  6. "results": [],
  7. "tool": {
  8. "driver": {
  9. "name": "PREfast",
  10. "fullName": "PREfast Code Analysis",
  11. "version": "14.29.30159.0",
  12. "informationUri": "https://aka.ms/cpp/ca"
  13. }
  14. },
  15. "invocations": [
  16. {
  17. "commandLine": "D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\c1.dll -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF62CE9FC60 -il C:\\Users\\wruser\\AppData\\Local\\Temp\\_CL_1d4e012fast -typedil -f ..\\..\\thirdparty\\leptonica\\src\\shear.c -Ze -D_MSC_EXTENSIONS -Zp16 -pc \\:/ -D_MSC_VER=1929 -D_MSC_FULL_VER=192930159 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\include -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\leptonica\\src -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\scripts\\tesseract -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DHAVE_LEPTONICA -DLEPTONICA_INTERCEPT_ALLOC=1 -DHAVE_LIBPNG=0 -DHAVE_LIBTIFF=0 -DHAVE_LIBJPEG=0 -DHAVE_LIBZ=0 -DHAVE_LIBGIF=0 -DHAVE_LIBUNGIF=0 -DHAVE_LIBWEBP=0 -DHAVE_LIBWEBP_ANIM=0 -DHAVE_LIBJP2K=0 -D_CRT_SECURE_NO_WARNINGS -DNDEBUG -D_LIB -D_UNICODE -D_MT -D_DLL -GS -D_M_FP_PRECISE -Fox64\\Release\\libleptonica\\shear.obj -FdC:\\Users\\wruser\\source\\repos\\SharpMuPDF\\x64\\Release\\libleptonica.pdb -external:W 3 -Gd -wd 4018 -wd 4100 -wd 4101 -wd 4244 -wd 4200 -wd 4267 -wd 4305 -analyze:projectdirectory C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\platform\\win32 -analyze:rulesetdirectory ;D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\\\Rule Sets; -analyze:ruleset D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:quiet -analyze:plugin D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\EspXEngine.dll -FC -errorreport:prompt -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -external:I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -external:I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um",
  18. "executionSuccessful": true
  19. }
  20. ],
  21. "artifacts": [
  22. {
  23. "location": {
  24. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen4.c"
  25. },
  26. "roles": [
  27. "analysisTarget"
  28. ],
  29. "hashes": {
  30. "md5": "3a82f1ac44975b5317cf5d04fa947c01"
  31. }
  32. },
  33. {
  34. "location": {
  35. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/allheaders.h"
  36. },
  37. "hashes": {
  38. "md5": "999d534a4ad60a2b7511196f8e6509e4"
  39. }
  40. },
  41. {
  42. "location": {
  43. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/alltypes.h"
  44. },
  45. "hashes": {
  46. "md5": "a53441277a26b8f0bb926cb17df2dfb7"
  47. }
  48. },
  49. {
  50. "location": {
  51. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/tesseract/endianness.h"
  52. },
  53. "hashes": {
  54. "md5": "c5b34010ae58ee994fb431b8736f6f4c"
  55. }
  56. },
  57. {
  58. "location": {
  59. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/environ.h"
  60. },
  61. "hashes": {
  62. "md5": "f12002e24a0542a8b820943238c03777"
  63. }
  64. },
  65. {
  66. "location": {
  67. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array.h"
  68. },
  69. "hashes": {
  70. "md5": "905c3a077932844148e6ce1a082ad3fd"
  71. }
  72. },
  73. {
  74. "location": {
  75. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.h"
  76. },
  77. "hashes": {
  78. "md5": "9698e12ada03098f0d12a09c12cf6063"
  79. }
  80. },
  81. {
  82. "location": {
  83. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.h"
  84. },
  85. "hashes": {
  86. "md5": "a67f5cea1a1d468a3c082936a3c6ceae"
  87. }
  88. },
  89. {
  90. "location": {
  91. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.h"
  92. },
  93. "hashes": {
  94. "md5": "b4a5a51c54ae3ecf0da810f807a29c83"
  95. }
  96. },
  97. {
  98. "location": {
  99. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.h"
  100. },
  101. "hashes": {
  102. "md5": "c1df1f5c4859fcff277e25e2af485e32"
  103. }
  104. },
  105. {
  106. "location": {
  107. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.h"
  108. },
  109. "hashes": {
  110. "md5": "09b92e82a1ea998e1f7e4023c008cf51"
  111. }
  112. },
  113. {
  114. "location": {
  115. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/queue.h"
  116. },
  117. "hashes": {
  118. "md5": "ceded2bcd4bc2c553683c2643f69e6a5"
  119. }
  120. },
  121. {
  122. "location": {
  123. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rbtree.h"
  124. },
  125. "hashes": {
  126. "md5": "803860fffdd81a3fc3fff30294c8f8cb"
  127. }
  128. },
  129. {
  130. "location": {
  131. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stack.h"
  132. },
  133. "hashes": {
  134. "md5": "0740173ae3e4e7de5f4c6fe821a4f0e7"
  135. }
  136. },
  137. {
  138. "location": {
  139. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.h"
  140. },
  141. "hashes": {
  142. "md5": "dcb43ea7a43e1fddf264fe501878db3d"
  143. }
  144. },
  145. {
  146. "location": {
  147. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.h"
  148. },
  149. "hashes": {
  150. "md5": "e34a65325b94bfa5d1dca2f9424ca1f0"
  151. }
  152. },
  153. {
  154. "location": {
  155. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord.h"
  156. },
  157. "hashes": {
  158. "md5": "90250b263699310ce40909628dbd7758"
  159. }
  160. },
  161. {
  162. "location": {
  163. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorfill.h"
  164. },
  165. "hashes": {
  166. "md5": "c9cf5349852bf9054e7f3c5bbafac76e"
  167. }
  168. },
  169. {
  170. "location": {
  171. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp.h"
  172. },
  173. "hashes": {
  174. "md5": "493b17891572abea870917ab41bf12c6"
  175. }
  176. },
  177. {
  178. "location": {
  179. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.h"
  180. },
  181. "hashes": {
  182. "md5": "55cf40c06fd537d7b8714aaf1f7a0042"
  183. }
  184. },
  185. {
  186. "location": {
  187. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/imageio.h"
  188. },
  189. "hashes": {
  190. "md5": "f517e3d907fee1ec4c974fad7dfdb29d"
  191. }
  192. },
  193. {
  194. "location": {
  195. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jbclass.h"
  196. },
  197. "hashes": {
  198. "md5": "c922deeb8eb844a7a2260f9c0a709218"
  199. }
  200. },
  201. {
  202. "location": {
  203. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morph.h"
  204. },
  205. "hashes": {
  206. "md5": "44855c4ddac6a28583d89947fcdbfdfc"
  207. }
  208. },
  209. {
  210. "location": {
  211. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix.h"
  212. },
  213. "hashes": {
  214. "md5": "1fc6f88f9c79b5158469904b66645f7d"
  215. }
  216. },
  217. {
  218. "location": {
  219. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/recog.h"
  220. },
  221. "hashes": {
  222. "md5": "f49b37b951f9036fb2dcf726b741db4e"
  223. }
  224. },
  225. {
  226. "location": {
  227. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/regutils.h"
  228. },
  229. "hashes": {
  230. "md5": "fe7a3db017220d34590fd29869e5d61c"
  231. }
  232. },
  233. {
  234. "location": {
  235. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stringcode.h"
  236. },
  237. "hashes": {
  238. "md5": "94fce55340931aded34d6d7fd60d842e"
  239. }
  240. },
  241. {
  242. "location": {
  243. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sudoku.h"
  244. },
  245. "hashes": {
  246. "md5": "fb101a2c192580933be1b8236c2bdc15"
  247. }
  248. },
  249. {
  250. "location": {
  251. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/watershed.h"
  252. },
  253. "hashes": {
  254. "md5": "44a71dd892c2fab6459227f7bcc400ee"
  255. }
  256. },
  257. {
  258. "location": {
  259. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen3.c"
  260. },
  261. "roles": [
  262. "analysisTarget"
  263. ],
  264. "hashes": {
  265. "md5": "b48614e975c09a03547e759b911f5359"
  266. }
  267. },
  268. {
  269. "location": {
  270. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen2.c"
  271. },
  272. "roles": [
  273. "analysisTarget"
  274. ],
  275. "hashes": {
  276. "md5": "8ad6891f2edce3383af6916769c41602"
  277. }
  278. },
  279. {
  280. "location": {
  281. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen1.c"
  282. },
  283. "roles": [
  284. "analysisTarget"
  285. ],
  286. "hashes": {
  287. "md5": "b7bcdd2390111aecc3149c70911a9db2"
  288. }
  289. },
  290. {
  291. "location": {
  292. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmpiostub.c"
  293. },
  294. "roles": [
  295. "analysisTarget"
  296. ],
  297. "hashes": {
  298. "md5": "fe53e17707c01ad1ef2333752ebc32ee"
  299. }
  300. },
  301. {
  302. "location": {
  303. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/bmpio.c"
  304. },
  305. "roles": [
  306. "analysisTarget",
  307. "resultFile"
  308. ],
  309. "hashes": {
  310. "md5": "367f3081ffba0952522913b49b13bf52"
  311. }
  312. },
  313. {
  314. "location": {
  315. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix_internal.h"
  316. },
  317. "hashes": {
  318. "md5": "4dd89382186e6b211b4078679810a19e"
  319. }
  320. },
  321. {
  322. "location": {
  323. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmp.h"
  324. },
  325. "hashes": {
  326. "md5": "942e4ba8687e01b1fe5afae65245bd29"
  327. }
  328. },
  329. {
  330. "location": {
  331. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.c"
  332. },
  333. "roles": [
  334. "analysisTarget"
  335. ],
  336. "hashes": {
  337. "md5": "2f5d274fa401e05d5d15d9e58a7ed8a5"
  338. }
  339. },
  340. {
  341. "location": {
  342. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmfdata.h"
  343. },
  344. "hashes": {
  345. "md5": "4ded82c05fb39404bb67e686cd38b9cf"
  346. }
  347. },
  348. {
  349. "location": {
  350. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/blend.c"
  351. },
  352. "roles": [
  353. "analysisTarget",
  354. "resultFile"
  355. ],
  356. "hashes": {
  357. "md5": "f734d4b17d7b51568aa083f8444a8e7d"
  358. }
  359. },
  360. {
  361. "location": {
  362. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binreduce.c"
  363. },
  364. "roles": [
  365. "analysisTarget"
  366. ],
  367. "hashes": {
  368. "md5": "a6bbc62580de9a69daca0ed4a05782ba"
  369. }
  370. },
  371. {
  372. "location": {
  373. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binexpand.c"
  374. },
  375. "roles": [
  376. "analysisTarget"
  377. ],
  378. "hashes": {
  379. "md5": "a91e32559d5d0814d80b73b5bc7df24b"
  380. }
  381. },
  382. {
  383. "location": {
  384. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binarize.c"
  385. },
  386. "roles": [
  387. "analysisTarget"
  388. ],
  389. "hashes": {
  390. "md5": "02c1761dcc6ab4bf416e6055f672ab07"
  391. }
  392. },
  393. {
  394. "location": {
  395. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilinear.c"
  396. },
  397. "roles": [
  398. "analysisTarget"
  399. ],
  400. "hashes": {
  401. "md5": "4a09fe363bcb37df9bb1cd9adbf0c91a"
  402. }
  403. },
  404. {
  405. "location": {
  406. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.c"
  407. },
  408. "roles": [
  409. "analysisTarget"
  410. ],
  411. "hashes": {
  412. "md5": "bc1af17cf793ac23886176cb0d23b029"
  413. }
  414. },
  415. {
  416. "location": {
  417. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.h"
  418. },
  419. "hashes": {
  420. "md5": "d3078c8d7a38ea07d93a58f8a4982a8d"
  421. }
  422. },
  423. {
  424. "location": {
  425. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.c"
  426. },
  427. "roles": [
  428. "analysisTarget"
  429. ],
  430. "hashes": {
  431. "md5": "8fd7f505a82a8b97b29e52618397178d"
  432. }
  433. },
  434. {
  435. "location": {
  436. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/baseline.c"
  437. },
  438. "roles": [
  439. "analysisTarget",
  440. "resultFile"
  441. ],
  442. "hashes": {
  443. "md5": "a4f7bc8214c6a7c7592a2e29d78addc1"
  444. }
  445. },
  446. {
  447. "location": {
  448. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.c"
  449. },
  450. "roles": [
  451. "analysisTarget"
  452. ],
  453. "hashes": {
  454. "md5": "137a526c992e6e6683cf2b6ece5a016d"
  455. }
  456. },
  457. {
  458. "location": {
  459. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affinecompose.c"
  460. },
  461. "roles": [
  462. "analysisTarget"
  463. ],
  464. "hashes": {
  465. "md5": "020190a9b3f19478dfb5484f3d4fc1e5"
  466. }
  467. },
  468. {
  469. "location": {
  470. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affine.c"
  471. },
  472. "roles": [
  473. "analysisTarget"
  474. ],
  475. "hashes": {
  476. "md5": "8cea6c30ebe9cbe0f61f7482e81b4c5c"
  477. }
  478. },
  479. {
  480. "location": {
  481. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/adaptmap.c"
  482. },
  483. "roles": [
  484. "analysisTarget"
  485. ],
  486. "hashes": {
  487. "md5": "69c4c232ba768de8b5d9de5e0d23b399"
  488. }
  489. },
  490. {
  491. "location": {
  492. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.c"
  493. },
  494. "roles": [
  495. "analysisTarget"
  496. ],
  497. "hashes": {
  498. "md5": "7f73dd56f3cfed6d45d19fd442396938"
  499. }
  500. },
  501. {
  502. "location": {
  503. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.h"
  504. },
  505. "hashes": {
  506. "md5": "271e50e32565a028dadd3554dc7d6be9"
  507. }
  508. },
  509. {
  510. "location": {
  511. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz.h"
  512. },
  513. "hashes": {
  514. "md5": "c1da725222ed64f4094c94f9ec5fa9d3"
  515. }
  516. },
  517. {
  518. "location": {
  519. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/version.h"
  520. },
  521. "hashes": {
  522. "md5": "49b087287cd81a61255c9afad5a04a0e"
  523. }
  524. },
  525. {
  526. "location": {
  527. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/config.h"
  528. },
  529. "hashes": {
  530. "md5": "8152555cd3c484684047fd1c533eb1a6"
  531. }
  532. },
  533. {
  534. "location": {
  535. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/system.h"
  536. },
  537. "hashes": {
  538. "md5": "90ae89bc0bb247c30f11092380a6bf84"
  539. }
  540. },
  541. {
  542. "location": {
  543. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/export.h"
  544. },
  545. "hashes": {
  546. "md5": "9392a759e17aa12d7d4516ab296a9110"
  547. }
  548. },
  549. {
  550. "location": {
  551. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/memento.h"
  552. },
  553. "hashes": {
  554. "md5": "09ba15c0fd78518e062db9266c4a1239"
  555. }
  556. },
  557. {
  558. "location": {
  559. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/track-usage.h"
  560. },
  561. "hashes": {
  562. "md5": "9c2721d2c03d4b6e071d4c291e4f8eec"
  563. }
  564. },
  565. {
  566. "location": {
  567. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/context.h"
  568. },
  569. "hashes": {
  570. "md5": "0a8420b8805e435b64f295b16cab53af"
  571. }
  572. },
  573. {
  574. "location": {
  575. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/geometry.h"
  576. },
  577. "hashes": {
  578. "md5": "b90a31a4dca86a00ae7644b0735a3899"
  579. }
  580. },
  581. {
  582. "location": {
  583. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output.h"
  584. },
  585. "hashes": {
  586. "md5": "f73558b9d27504499a5a45e8f3a3584a"
  587. }
  588. },
  589. {
  590. "location": {
  591. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/buffer.h"
  592. },
  593. "hashes": {
  594. "md5": "6fc8c6b8b9a2692519a1d0e505f71c6e"
  595. }
  596. },
  597. {
  598. "location": {
  599. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/string-util.h"
  600. },
  601. "hashes": {
  602. "md5": "4f84321fffde964fbdfa179e97b1fb5b"
  603. }
  604. },
  605. {
  606. "location": {
  607. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/stream.h"
  608. },
  609. "hashes": {
  610. "md5": "17262319f59df230360c31bff22506f4"
  611. }
  612. },
  613. {
  614. "location": {
  615. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/log.h"
  616. },
  617. "hashes": {
  618. "md5": "fdce0ca431e1f40c09081052f1b739cb"
  619. }
  620. },
  621. {
  622. "location": {
  623. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/crypt.h"
  624. },
  625. "hashes": {
  626. "md5": "9ffc8e340c06f2d28aa62b6fcd35dc5d"
  627. }
  628. },
  629. {
  630. "location": {
  631. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/getopt.h"
  632. },
  633. "hashes": {
  634. "md5": "e47118058134aec927847ca9dae5d390"
  635. }
  636. },
  637. {
  638. "location": {
  639. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/hash.h"
  640. },
  641. "hashes": {
  642. "md5": "d9b655ab558a40c18e24c7cdddeab1fc"
  643. }
  644. },
  645. {
  646. "location": {
  647. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pool.h"
  648. },
  649. "hashes": {
  650. "md5": "2f150c59f73344040a7de6455c00529e"
  651. }
  652. },
  653. {
  654. "location": {
  655. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/tree.h"
  656. },
  657. "hashes": {
  658. "md5": "66441b22b31d2cc979eb50d828de8d89"
  659. }
  660. },
  661. {
  662. "location": {
  663. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bidi.h"
  664. },
  665. "hashes": {
  666. "md5": "b3f22e9d6b6250f2a9dfd4c1620af41d"
  667. }
  668. },
  669. {
  670. "location": {
  671. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/xml.h"
  672. },
  673. "hashes": {
  674. "md5": "9e6cf72f1f3c757d8956f19631d1f942"
  675. }
  676. },
  677. {
  678. "location": {
  679. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/archive.h"
  680. },
  681. "hashes": {
  682. "md5": "fe3a9fa4f6093e521afe5b0d4a214e89"
  683. }
  684. },
  685. {
  686. "location": {
  687. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/json.h"
  688. },
  689. "hashes": {
  690. "md5": "1ccd7f1e2c3cf9db156761b2341941bb"
  691. }
  692. },
  693. {
  694. "location": {
  695. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compress.h"
  696. },
  697. "hashes": {
  698. "md5": "870b86535307b1bcf48a05cc86bac4f6"
  699. }
  700. },
  701. {
  702. "location": {
  703. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pixmap.h"
  704. },
  705. "hashes": {
  706. "md5": "4a2994ca7e320d46c91af9462864e472"
  707. }
  708. },
  709. {
  710. "location": {
  711. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/store.h"
  712. },
  713. "hashes": {
  714. "md5": "613e60235eba9e2c0fe6735fbcbf444d"
  715. }
  716. },
  717. {
  718. "location": {
  719. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/separation.h"
  720. },
  721. "hashes": {
  722. "md5": "948f2a79178edd5a86cab9b357cc8f84"
  723. }
  724. },
  725. {
  726. "location": {
  727. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/color.h"
  728. },
  729. "hashes": {
  730. "md5": "c394579670ed653192ccdf07cc810543"
  731. }
  732. },
  733. {
  734. "location": {
  735. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compressed-buffer.h"
  736. },
  737. "hashes": {
  738. "md5": "f0ad50536d7884e3d221498388a145a1"
  739. }
  740. },
  741. {
  742. "location": {
  743. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/filter.h"
  744. },
  745. "hashes": {
  746. "md5": "a20437fde476b45123005b54567b8b3c"
  747. }
  748. },
  749. {
  750. "location": {
  751. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap.h"
  752. },
  753. "hashes": {
  754. "md5": "1cbe01acfade2baf416ab5be1bd1907e"
  755. }
  756. },
  757. {
  758. "location": {
  759. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap-imp.h"
  760. },
  761. "hashes": {
  762. "md5": "9923f50e47c46bd4e02747da6de32946"
  763. }
  764. },
  765. {
  766. "location": {
  767. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/image.h"
  768. },
  769. "hashes": {
  770. "md5": "a987413ff35bef8ce2048369564be0e0"
  771. }
  772. },
  773. {
  774. "location": {
  775. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bitmap.h"
  776. },
  777. "hashes": {
  778. "md5": "0e6ee78ac3a456106ea3ddca63ef5e35"
  779. }
  780. },
  781. {
  782. "location": {
  783. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/shade.h"
  784. },
  785. "hashes": {
  786. "md5": "c06b062bd0326fa40b071527b257ae24"
  787. }
  788. },
  789. {
  790. "location": {
  791. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/font.h"
  792. },
  793. "hashes": {
  794. "md5": "b667092834a21c0abe97b2817ace34a7"
  795. }
  796. },
  797. {
  798. "location": {
  799. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/path.h"
  800. },
  801. "hashes": {
  802. "md5": "200da6c866aa0a7faec7f24f176e47e9"
  803. }
  804. },
  805. {
  806. "location": {
  807. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/text.h"
  808. },
  809. "hashes": {
  810. "md5": "d8f8e0890cc682b0974ec3f779260f6e"
  811. }
  812. },
  813. {
  814. "location": {
  815. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph.h"
  816. },
  817. "hashes": {
  818. "md5": "74fdb3bee7c6f25df43323008fcdf60a"
  819. }
  820. },
  821. {
  822. "location": {
  823. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/device.h"
  824. },
  825. "hashes": {
  826. "md5": "ba44b7292a72479dfe60b62352e57fd5"
  827. }
  828. },
  829. {
  830. "location": {
  831. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/display-list.h"
  832. },
  833. "hashes": {
  834. "md5": "4944d19bf380f14ccda5ced45ab04dcc"
  835. }
  836. },
  837. {
  838. "location": {
  839. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/structured-text.h"
  840. },
  841. "hashes": {
  842. "md5": "fdd5507292d57da0c3c2ee591f5f0d08"
  843. }
  844. },
  845. {
  846. "location": {
  847. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/types.h"
  848. },
  849. "hashes": {
  850. "md5": "385688b131d3b981c11fefca1c6bd08f"
  851. }
  852. },
  853. {
  854. "location": {
  855. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/transition.h"
  856. },
  857. "hashes": {
  858. "md5": "45a1a3da16cfa7a1135ed97b151d59e5"
  859. }
  860. },
  861. {
  862. "location": {
  863. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph-cache.h"
  864. },
  865. "hashes": {
  866. "md5": "f8a51df4e57ec830f97cefefd04beb21"
  867. }
  868. },
  869. {
  870. "location": {
  871. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/link.h"
  872. },
  873. "hashes": {
  874. "md5": "e2beb74537ffa880d751627856f4ec2e"
  875. }
  876. },
  877. {
  878. "location": {
  879. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/outline.h"
  880. },
  881. "hashes": {
  882. "md5": "a4b090458246a9412f1822e8f69861e5"
  883. }
  884. },
  885. {
  886. "location": {
  887. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/document.h"
  888. },
  889. "hashes": {
  890. "md5": "d5dd17e54ecd7a0c4c420b7fba8bbbb8"
  891. }
  892. },
  893. {
  894. "location": {
  895. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/util.h"
  896. },
  897. "hashes": {
  898. "md5": "b52379b9e022798f7ffeb183e593355b"
  899. }
  900. },
  901. {
  902. "location": {
  903. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/writer.h"
  904. },
  905. "hashes": {
  906. "md5": "8f22433f8330cf7094af3c2c0221d1aa"
  907. }
  908. },
  909. {
  910. "location": {
  911. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/band-writer.h"
  912. },
  913. "hashes": {
  914. "md5": "cce70daf29f5059d81d3004bac3a529b"
  915. }
  916. },
  917. {
  918. "location": {
  919. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/write-pixmap.h"
  920. },
  921. "hashes": {
  922. "md5": "55a92a6277d51e8193cb9d68dbc04555"
  923. }
  924. },
  925. {
  926. "location": {
  927. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output-svg.h"
  928. },
  929. "hashes": {
  930. "md5": "562415573a8921b26596771d6c4c5c67"
  931. }
  932. },
  933. {
  934. "location": {
  935. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story.h"
  936. },
  937. "hashes": {
  938. "md5": "103650ee4814b1f96618672e45b766d4"
  939. }
  940. },
  941. {
  942. "location": {
  943. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story-writer.h"
  944. },
  945. "hashes": {
  946. "md5": "aaafb6cf4f48ade004e1d15d06eaffe7"
  947. }
  948. },
  949. {
  950. "location": {
  951. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/deskew.h"
  952. },
  953. "hashes": {
  954. "md5": "9599a8121baecccfd203d91c95561903"
  955. }
  956. },
  957. {
  958. "location": {
  959. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/barcode.h"
  960. },
  961. "hashes": {
  962. "md5": "58fc28d74fa337724ff70a29778ac6ed"
  963. }
  964. },
  965. {
  966. "location": {
  967. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convertfiles.c"
  968. },
  969. "roles": [
  970. "analysisTarget"
  971. ],
  972. "hashes": {
  973. "md5": "724f5d1e2f686dc7a5f62ee87cd4b7c0"
  974. }
  975. },
  976. {
  977. "location": {
  978. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/conncomp.c"
  979. },
  980. "roles": [
  981. "analysisTarget"
  982. ],
  983. "hashes": {
  984. "md5": "439795e422d51c02d86e41c5f2612cca"
  985. }
  986. },
  987. {
  988. "location": {
  989. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/compare.c"
  990. },
  991. "roles": [
  992. "analysisTarget"
  993. ],
  994. "hashes": {
  995. "md5": "32a03abbd3ffed661bfab2965b017a8b"
  996. }
  997. },
  998. {
  999. "location": {
  1000. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorspace.c"
  1001. },
  1002. "roles": [
  1003. "analysisTarget"
  1004. ],
  1005. "hashes": {
  1006. "md5": "4f9001939678a369e7c84460dff9d21b"
  1007. }
  1008. },
  1009. {
  1010. "location": {
  1011. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorseg.c"
  1012. },
  1013. "roles": [
  1014. "analysisTarget",
  1015. "resultFile"
  1016. ],
  1017. "hashes": {
  1018. "md5": "1ab66c018aa504e6fee2bdca55a3da21"
  1019. }
  1020. },
  1021. {
  1022. "location": {
  1023. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorquant2.c"
  1024. },
  1025. "roles": [
  1026. "analysisTarget",
  1027. "resultFile"
  1028. ],
  1029. "hashes": {
  1030. "md5": "08cd6523f246d256d2e5b719eb667fd9"
  1031. }
  1032. },
  1033. {
  1034. "location": {
  1035. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorquant1.c"
  1036. },
  1037. "roles": [
  1038. "analysisTarget"
  1039. ],
  1040. "hashes": {
  1041. "md5": "f40f68bd9d4f0559471f4519d089341c"
  1042. }
  1043. },
  1044. {
  1045. "location": {
  1046. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormorph.c"
  1047. },
  1048. "roles": [
  1049. "analysisTarget"
  1050. ],
  1051. "hashes": {
  1052. "md5": "c7d2b1c8606d5cdc3213275c61eefc08"
  1053. }
  1054. },
  1055. {
  1056. "location": {
  1057. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormap.c"
  1058. },
  1059. "roles": [
  1060. "analysisTarget"
  1061. ],
  1062. "hashes": {
  1063. "md5": "07d58362026f2ee8c4c94a12a850cf55"
  1064. }
  1065. },
  1066. {
  1067. "location": {
  1068. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/coloring.c"
  1069. },
  1070. "roles": [
  1071. "analysisTarget"
  1072. ],
  1073. "hashes": {
  1074. "md5": "0b2cd914abafa50c0a5d70fe0d70bed0"
  1075. }
  1076. },
  1077. {
  1078. "location": {
  1079. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorcontent.c"
  1080. },
  1081. "roles": [
  1082. "analysisTarget"
  1083. ],
  1084. "hashes": {
  1085. "md5": "f323d957cfd0b4804277e990bddc1052"
  1086. }
  1087. },
  1088. {
  1089. "location": {
  1090. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/classapp.c"
  1091. },
  1092. "roles": [
  1093. "analysisTarget"
  1094. ],
  1095. "hashes": {
  1096. "md5": "031c0fa9ce910dbe883833475136f167"
  1097. }
  1098. },
  1099. {
  1100. "location": {
  1101. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1102. },
  1103. "roles": [
  1104. "analysisTarget",
  1105. "resultFile"
  1106. ],
  1107. "hashes": {
  1108. "md5": "698cbb131be6752bb74a9863349ba9f7"
  1109. }
  1110. },
  1111. {
  1112. "location": {
  1113. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord_internal.h"
  1114. },
  1115. "hashes": {
  1116. "md5": "b4ffaa4ab3329f45a74769526364a5bd"
  1117. }
  1118. },
  1119. {
  1120. "location": {
  1121. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bytearray.c"
  1122. },
  1123. "roles": [
  1124. "analysisTarget"
  1125. ],
  1126. "hashes": {
  1127. "md5": "f479426c83e521920ba5ef2a47f9eeea"
  1128. }
  1129. },
  1130. {
  1131. "location": {
  1132. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array_internal.h"
  1133. },
  1134. "hashes": {
  1135. "md5": "47169f561e914a3f80dd1165d0cc9ac5"
  1136. }
  1137. },
  1138. {
  1139. "location": {
  1140. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc5.c"
  1141. },
  1142. "roles": [
  1143. "analysisTarget"
  1144. ],
  1145. "hashes": {
  1146. "md5": "3bd669a71b8039fe8dc1465c6d9451ea"
  1147. }
  1148. },
  1149. {
  1150. "location": {
  1151. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc4.c"
  1152. },
  1153. "roles": [
  1154. "analysisTarget"
  1155. ],
  1156. "hashes": {
  1157. "md5": "4350db99f137393092bb9e127c545533"
  1158. }
  1159. },
  1160. {
  1161. "location": {
  1162. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc3.c"
  1163. },
  1164. "roles": [
  1165. "analysisTarget"
  1166. ],
  1167. "hashes": {
  1168. "md5": "5ffe93f9dac1ac164c76c827d6b99c2b"
  1169. }
  1170. },
  1171. {
  1172. "location": {
  1173. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/boxfunc2.c"
  1174. },
  1175. "roles": [
  1176. "analysisTarget",
  1177. "resultFile"
  1178. ],
  1179. "hashes": {
  1180. "md5": "06017e461354b622a898e964824feb0a"
  1181. }
  1182. },
  1183. {
  1184. "location": {
  1185. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc1.c"
  1186. },
  1187. "roles": [
  1188. "analysisTarget"
  1189. ],
  1190. "hashes": {
  1191. "md5": "53c0cadfd70352d07c7059cb11b8996d"
  1192. }
  1193. },
  1194. {
  1195. "location": {
  1196. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxbasic.c"
  1197. },
  1198. "roles": [
  1199. "analysisTarget"
  1200. ],
  1201. "hashes": {
  1202. "md5": "9499af84bce2d2cec53f010406b849d0"
  1203. }
  1204. },
  1205. {
  1206. "location": {
  1207. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix1.c"
  1208. },
  1209. "roles": [
  1210. "analysisTarget"
  1211. ],
  1212. "hashes": {
  1213. "md5": "32f9040600f84cde037e4633e458e61e"
  1214. }
  1215. },
  1216. {
  1217. "location": {
  1218. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgenlow.1.c"
  1219. },
  1220. "roles": [
  1221. "analysisTarget"
  1222. ],
  1223. "hashes": {
  1224. "md5": "c2e6003fbf822c8846ffdfa4e00d3d97"
  1225. }
  1226. },
  1227. {
  1228. "location": {
  1229. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgen.1.c"
  1230. },
  1231. "roles": [
  1232. "analysisTarget"
  1233. ],
  1234. "hashes": {
  1235. "md5": "1420b32f53bc6448bc82d942625ede55"
  1236. }
  1237. },
  1238. {
  1239. "location": {
  1240. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fmorphauto.c"
  1241. },
  1242. "roles": [
  1243. "analysisTarget",
  1244. "resultFile"
  1245. ],
  1246. "hashes": {
  1247. "md5": "4960763af570d20b74f0b86ca5b79e17"
  1248. }
  1249. },
  1250. {
  1251. "location": {
  1252. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fhmtgenlow.1.c"
  1253. },
  1254. "roles": [
  1255. "analysisTarget"
  1256. ],
  1257. "hashes": {
  1258. "md5": "580542b03b1dc496eb55441227c01c4d"
  1259. }
  1260. },
  1261. {
  1262. "location": {
  1263. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fhmtauto.c"
  1264. },
  1265. "roles": [
  1266. "analysisTarget",
  1267. "resultFile"
  1268. ],
  1269. "hashes": {
  1270. "md5": "407f110417e1da69577f401016c308fa"
  1271. }
  1272. },
  1273. {
  1274. "location": {
  1275. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/enhance.c"
  1276. },
  1277. "roles": [
  1278. "analysisTarget"
  1279. ],
  1280. "hashes": {
  1281. "md5": "1fad11e14f7a7def3488fee226869f47"
  1282. }
  1283. },
  1284. {
  1285. "location": {
  1286. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/encoding.c"
  1287. },
  1288. "roles": [
  1289. "analysisTarget"
  1290. ],
  1291. "hashes": {
  1292. "md5": "663891ec7f132072632069f144467438"
  1293. }
  1294. },
  1295. {
  1296. "location": {
  1297. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/edge.c"
  1298. },
  1299. "roles": [
  1300. "analysisTarget"
  1301. ],
  1302. "hashes": {
  1303. "md5": "16a6b93b118ca74db85d082d2b5dbc30"
  1304. }
  1305. },
  1306. {
  1307. "location": {
  1308. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomblow.2.c"
  1309. },
  1310. "roles": [
  1311. "analysisTarget"
  1312. ],
  1313. "hashes": {
  1314. "md5": "0788c556bc256df2d62891852f16e66e"
  1315. }
  1316. },
  1317. {
  1318. "location": {
  1319. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomb.2.c"
  1320. },
  1321. "roles": [
  1322. "analysisTarget"
  1323. ],
  1324. "hashes": {
  1325. "md5": "ec998985a6538576f25814e7a54b6bc1"
  1326. }
  1327. },
  1328. {
  1329. "location": {
  1330. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnahash.c"
  1331. },
  1332. "roles": [
  1333. "analysisTarget"
  1334. ],
  1335. "hashes": {
  1336. "md5": "a104970312798bb28670ec4b6f1306e5"
  1337. }
  1338. },
  1339. {
  1340. "location": {
  1341. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnafunc1.c"
  1342. },
  1343. "roles": [
  1344. "analysisTarget"
  1345. ],
  1346. "hashes": {
  1347. "md5": "63832a12bd0d51e38cb8fe26df8036ad"
  1348. }
  1349. },
  1350. {
  1351. "location": {
  1352. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnabasic.c"
  1353. },
  1354. "roles": [
  1355. "analysisTarget"
  1356. ],
  1357. "hashes": {
  1358. "md5": "2e8bddfb98a62a2819700b70e3af28da"
  1359. }
  1360. },
  1361. {
  1362. "location": {
  1363. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp4.c"
  1364. },
  1365. "roles": [
  1366. "analysisTarget"
  1367. ],
  1368. "hashes": {
  1369. "md5": "2e5e5727028744821d98f4088779de2a"
  1370. }
  1371. },
  1372. {
  1373. "location": {
  1374. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp3.c"
  1375. },
  1376. "roles": [
  1377. "analysisTarget"
  1378. ],
  1379. "hashes": {
  1380. "md5": "d509becfa83c46484ab01c6acedf06d4"
  1381. }
  1382. },
  1383. {
  1384. "location": {
  1385. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp2.c"
  1386. },
  1387. "roles": [
  1388. "analysisTarget",
  1389. "resultFile"
  1390. ],
  1391. "hashes": {
  1392. "md5": "cfd9a80722d868d9374f4813abab8e96"
  1393. }
  1394. },
  1395. {
  1396. "location": {
  1397. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp1.c"
  1398. },
  1399. "roles": [
  1400. "analysisTarget",
  1401. "resultFile"
  1402. ],
  1403. "hashes": {
  1404. "md5": "674d27d0b21e55fd2d33eeb0ef2b67c3"
  1405. }
  1406. },
  1407. {
  1408. "location": {
  1409. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/correlscore.c"
  1410. },
  1411. "roles": [
  1412. "analysisTarget",
  1413. "resultFile"
  1414. ],
  1415. "hashes": {
  1416. "md5": "4c7a50e236fdc4014526b6de1876117e"
  1417. }
  1418. },
  1419. {
  1420. "location": {
  1421. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convolve.c"
  1422. },
  1423. "roles": [
  1424. "analysisTarget"
  1425. ],
  1426. "hashes": {
  1427. "md5": "3a0ad6a7c7f1268eb3616f2c805cdd1f"
  1428. }
  1429. },
  1430. {
  1431. "location": {
  1432. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morphdwa.c"
  1433. },
  1434. "roles": [
  1435. "analysisTarget",
  1436. "resultFile"
  1437. ],
  1438. "hashes": {
  1439. "md5": "3e4d53bbbcc92987244a35b83b63ab42"
  1440. }
  1441. },
  1442. {
  1443. "location": {
  1444. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morphapp.c"
  1445. },
  1446. "roles": [
  1447. "analysisTarget"
  1448. ],
  1449. "hashes": {
  1450. "md5": "eb8705290a96113560ce5f90dd88b5ce"
  1451. }
  1452. },
  1453. {
  1454. "location": {
  1455. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morph.c"
  1456. },
  1457. "roles": [
  1458. "analysisTarget",
  1459. "resultFile"
  1460. ],
  1461. "hashes": {
  1462. "md5": "69ef8f87618f68b78657248e445f7f09"
  1463. }
  1464. },
  1465. {
  1466. "location": {
  1467. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/map.c"
  1468. },
  1469. "roles": [
  1470. "analysisTarget"
  1471. ],
  1472. "hashes": {
  1473. "md5": "91fe339284bec6b1ee444f7214833ee9"
  1474. }
  1475. },
  1476. {
  1477. "location": {
  1478. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.c"
  1479. },
  1480. "roles": [
  1481. "analysisTarget"
  1482. ],
  1483. "hashes": {
  1484. "md5": "b478579934145f8267478dbf99474df2"
  1485. }
  1486. },
  1487. {
  1488. "location": {
  1489. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/libversions.c"
  1490. },
  1491. "roles": [
  1492. "analysisTarget"
  1493. ],
  1494. "hashes": {
  1495. "md5": "cb12910c25dc7195c3ba4303f814b006"
  1496. }
  1497. },
  1498. {
  1499. "location": {
  1500. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/kernel.c"
  1501. },
  1502. "roles": [
  1503. "analysisTarget"
  1504. ],
  1505. "hashes": {
  1506. "md5": "3129b905f075abf05742d64d347b3c61"
  1507. }
  1508. },
  1509. {
  1510. "location": {
  1511. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jpegiostub.c"
  1512. },
  1513. "roles": [
  1514. "analysisTarget"
  1515. ],
  1516. "hashes": {
  1517. "md5": "4b13eb283323dc6332edae19fd54887a"
  1518. }
  1519. },
  1520. {
  1521. "location": {
  1522. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kiostub.c"
  1523. },
  1524. "roles": [
  1525. "analysisTarget"
  1526. ],
  1527. "hashes": {
  1528. "md5": "d73421f4dd5a240effeab0b7098d9e53"
  1529. }
  1530. },
  1531. {
  1532. "location": {
  1533. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheaderstub.c"
  1534. },
  1535. "roles": [
  1536. "analysisTarget"
  1537. ],
  1538. "hashes": {
  1539. "md5": "0a1cc9e8c5f3d046a2a70703aeb6eff6"
  1540. }
  1541. },
  1542. {
  1543. "location": {
  1544. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheader.c"
  1545. },
  1546. "roles": [
  1547. "analysisTarget"
  1548. ],
  1549. "hashes": {
  1550. "md5": "31483ab4eab5d6a17be23b35406183ec"
  1551. }
  1552. },
  1553. {
  1554. "location": {
  1555. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/jbclass.c"
  1556. },
  1557. "roles": [
  1558. "analysisTarget",
  1559. "resultFile"
  1560. ],
  1561. "hashes": {
  1562. "md5": "39faac93361acf87962e489b12297a8f"
  1563. }
  1564. },
  1565. {
  1566. "location": {
  1567. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.c"
  1568. },
  1569. "roles": [
  1570. "analysisTarget"
  1571. ],
  1572. "hashes": {
  1573. "md5": "9eae6bc65de71970e4bb1436e697fa78"
  1574. }
  1575. },
  1576. {
  1577. "location": {
  1578. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.c"
  1579. },
  1580. "roles": [
  1581. "analysisTarget"
  1582. ],
  1583. "hashes": {
  1584. "md5": "4bd0c129d0c3017ecf74c97f300ff6a4"
  1585. }
  1586. },
  1587. {
  1588. "location": {
  1589. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/grayquant.c"
  1590. },
  1591. "roles": [
  1592. "analysisTarget"
  1593. ],
  1594. "hashes": {
  1595. "md5": "675b975e5cf01bb67bb9bfd141c95112"
  1596. }
  1597. },
  1598. {
  1599. "location": {
  1600. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/graymorph.c"
  1601. },
  1602. "roles": [
  1603. "analysisTarget"
  1604. ],
  1605. "hashes": {
  1606. "md5": "9ff2cc571cafe6e3fb33ec3d558ffd77"
  1607. }
  1608. },
  1609. {
  1610. "location": {
  1611. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  1612. },
  1613. "roles": [
  1614. "analysisTarget",
  1615. "resultFile"
  1616. ],
  1617. "hashes": {
  1618. "md5": "b05809f207b552b8cc275685e53bb0f0"
  1619. }
  1620. },
  1621. {
  1622. "location": {
  1623. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.c"
  1624. },
  1625. "roles": [
  1626. "analysisTarget"
  1627. ],
  1628. "hashes": {
  1629. "md5": "75946f43c0e93cd361e03ef6e001a56c"
  1630. }
  1631. },
  1632. {
  1633. "location": {
  1634. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gifiostub.c"
  1635. },
  1636. "roles": [
  1637. "analysisTarget"
  1638. ],
  1639. "hashes": {
  1640. "md5": "4d08ccc55f0f2be4462075c3293604da"
  1641. }
  1642. },
  1643. {
  1644. "location": {
  1645. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix2.c"
  1646. },
  1647. "roles": [
  1648. "analysisTarget"
  1649. ],
  1650. "hashes": {
  1651. "md5": "1c2d45e72c879edecb32c0592a5f5791"
  1652. }
  1653. },
  1654. {
  1655. "location": {
  1656. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixafunc1.c"
  1657. },
  1658. "roles": [
  1659. "analysisTarget"
  1660. ],
  1661. "hashes": {
  1662. "md5": "4d52abb3948289851f749c429ed3192e"
  1663. }
  1664. },
  1665. {
  1666. "location": {
  1667. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixacc.c"
  1668. },
  1669. "roles": [
  1670. "analysisTarget"
  1671. ],
  1672. "hashes": {
  1673. "md5": "216ab57597611bb9aeb36b806a144645"
  1674. }
  1675. },
  1676. {
  1677. "location": {
  1678. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixabasic.c"
  1679. },
  1680. "roles": [
  1681. "analysisTarget"
  1682. ],
  1683. "hashes": {
  1684. "md5": "58a0ae2bad52778df9263722467a7c44"
  1685. }
  1686. },
  1687. {
  1688. "location": {
  1689. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix5.c"
  1690. },
  1691. "roles": [
  1692. "analysisTarget"
  1693. ],
  1694. "hashes": {
  1695. "md5": "dbaac99b65da51175877c1c29a30365e"
  1696. }
  1697. },
  1698. {
  1699. "location": {
  1700. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix4.c"
  1701. },
  1702. "roles": [
  1703. "analysisTarget"
  1704. ],
  1705. "hashes": {
  1706. "md5": "81c924dd928d7393fe53ff31b97e9ea0"
  1707. }
  1708. },
  1709. {
  1710. "location": {
  1711. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix3.c"
  1712. },
  1713. "roles": [
  1714. "analysisTarget"
  1715. ],
  1716. "hashes": {
  1717. "md5": "c01693b80af9e66439a7627da93496f8"
  1718. }
  1719. },
  1720. {
  1721. "location": {
  1722. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix2.c"
  1723. },
  1724. "roles": [
  1725. "analysisTarget"
  1726. ],
  1727. "hashes": {
  1728. "md5": "46735917afea0b54616f9a66e3690bc3"
  1729. }
  1730. },
  1731. {
  1732. "location": {
  1733. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix1.c"
  1734. },
  1735. "roles": [
  1736. "analysisTarget"
  1737. ],
  1738. "hashes": {
  1739. "md5": "0676ad9f55879ba797211bacbc8abf29"
  1740. }
  1741. },
  1742. {
  1743. "location": {
  1744. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio2stub.c"
  1745. },
  1746. "roles": [
  1747. "analysisTarget"
  1748. ],
  1749. "hashes": {
  1750. "md5": "e76c0edba8cc9774528c9298e480aab9"
  1751. }
  1752. },
  1753. {
  1754. "location": {
  1755. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  1756. },
  1757. "roles": [
  1758. "analysisTarget",
  1759. "resultFile"
  1760. ],
  1761. "hashes": {
  1762. "md5": "48ae9eaaa0a93804838828f3c0615d2f"
  1763. }
  1764. },
  1765. {
  1766. "location": {
  1767. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio1stub.c"
  1768. },
  1769. "roles": [
  1770. "analysisTarget"
  1771. ],
  1772. "hashes": {
  1773. "md5": "1bd2142521ee28d52748796a74159c74"
  1774. }
  1775. },
  1776. {
  1777. "location": {
  1778. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio1.c"
  1779. },
  1780. "roles": [
  1781. "analysisTarget"
  1782. ],
  1783. "hashes": {
  1784. "md5": "4785b305bc75cddc076d099d0572a485"
  1785. }
  1786. },
  1787. {
  1788. "location": {
  1789. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/partition.c"
  1790. },
  1791. "roles": [
  1792. "analysisTarget"
  1793. ],
  1794. "hashes": {
  1795. "md5": "b22988b9e3f810313b20099498260757"
  1796. }
  1797. },
  1798. {
  1799. "location": {
  1800. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/partify.c"
  1801. },
  1802. "roles": [
  1803. "analysisTarget",
  1804. "resultFile"
  1805. ],
  1806. "hashes": {
  1807. "md5": "8223809e766d8a78632bfd68bc334e19"
  1808. }
  1809. },
  1810. {
  1811. "location": {
  1812. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/paintcmap.c"
  1813. },
  1814. "roles": [
  1815. "analysisTarget"
  1816. ],
  1817. "hashes": {
  1818. "md5": "1c6b18af964acf8970b91b9b128fae6b"
  1819. }
  1820. },
  1821. {
  1822. "location": {
  1823. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pageseg.c"
  1824. },
  1825. "roles": [
  1826. "analysisTarget"
  1827. ],
  1828. "hashes": {
  1829. "md5": "e50986593a9ed50e2da7387971dc6a46"
  1830. }
  1831. },
  1832. {
  1833. "location": {
  1834. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/numafunc2.c"
  1835. },
  1836. "roles": [
  1837. "analysisTarget"
  1838. ],
  1839. "hashes": {
  1840. "md5": "bcd70af9e7c601108c05686f4635d624"
  1841. }
  1842. },
  1843. {
  1844. "location": {
  1845. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/numafunc1.c"
  1846. },
  1847. "roles": [
  1848. "analysisTarget",
  1849. "resultFile"
  1850. ],
  1851. "hashes": {
  1852. "md5": "93365a9f528912c5c790d324964a9ff0"
  1853. }
  1854. },
  1855. {
  1856. "location": {
  1857. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/numabasic.c"
  1858. },
  1859. "roles": [
  1860. "analysisTarget"
  1861. ],
  1862. "hashes": {
  1863. "md5": "e3d4e7d2e9aae48518189a9195ab2f4a"
  1864. }
  1865. },
  1866. {
  1867. "location": {
  1868. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morphseq.c"
  1869. },
  1870. "roles": [
  1871. "analysisTarget",
  1872. "resultFile"
  1873. ],
  1874. "hashes": {
  1875. "md5": "504d103e221fc15f4ce693e17fba4ac2"
  1876. }
  1877. },
  1878. {
  1879. "location": {
  1880. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/quadtree.c"
  1881. },
  1882. "roles": [
  1883. "analysisTarget",
  1884. "resultFile"
  1885. ],
  1886. "hashes": {
  1887. "md5": "4497d88041544aab921892de66df843d"
  1888. }
  1889. },
  1890. {
  1891. "location": {
  1892. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.c"
  1893. },
  1894. "roles": [
  1895. "analysisTarget"
  1896. ],
  1897. "hashes": {
  1898. "md5": "82221557e81d38fbc5c248be6d183dad"
  1899. }
  1900. },
  1901. {
  1902. "location": {
  1903. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptafunc2.c"
  1904. },
  1905. "roles": [
  1906. "analysisTarget"
  1907. ],
  1908. "hashes": {
  1909. "md5": "4efd7f1b43359b6d7e3c0be2fc34345e"
  1910. }
  1911. },
  1912. {
  1913. "location": {
  1914. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptafunc1.c"
  1915. },
  1916. "roles": [
  1917. "analysisTarget"
  1918. ],
  1919. "hashes": {
  1920. "md5": "509229ef0daffc3bfec6dd6d360659e3"
  1921. }
  1922. },
  1923. {
  1924. "location": {
  1925. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  1926. },
  1927. "roles": [
  1928. "analysisTarget",
  1929. "resultFile"
  1930. ],
  1931. "hashes": {
  1932. "md5": "f9fb63a9257bfd31540384aa340f8631"
  1933. }
  1934. },
  1935. {
  1936. "location": {
  1937. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/psio2stub.c"
  1938. },
  1939. "roles": [
  1940. "analysisTarget"
  1941. ],
  1942. "hashes": {
  1943. "md5": "330e57d34a37694d0b966a0fb66eae56"
  1944. }
  1945. },
  1946. {
  1947. "location": {
  1948. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/psio2.c"
  1949. },
  1950. "roles": [
  1951. "analysisTarget"
  1952. ],
  1953. "hashes": {
  1954. "md5": "7196b3104cde0d2f4ce0384ab17d4b1c"
  1955. }
  1956. },
  1957. {
  1958. "location": {
  1959. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/psio1stub.c"
  1960. },
  1961. "roles": [
  1962. "analysisTarget"
  1963. ],
  1964. "hashes": {
  1965. "md5": "3fff9ca2d02ae4176c033b5722bc3dd9"
  1966. }
  1967. },
  1968. {
  1969. "location": {
  1970. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/psio1.c"
  1971. },
  1972. "roles": [
  1973. "analysisTarget"
  1974. ],
  1975. "hashes": {
  1976. "md5": "0d5ba59e14a236d6a6c1cc952c5f11b8"
  1977. }
  1978. },
  1979. {
  1980. "location": {
  1981. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/projective.c"
  1982. },
  1983. "roles": [
  1984. "analysisTarget"
  1985. ],
  1986. "hashes": {
  1987. "md5": "8a6e2ebac0e637ebc736b30105f2a6f7"
  1988. }
  1989. },
  1990. {
  1991. "location": {
  1992. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pnmiostub.c"
  1993. },
  1994. "roles": [
  1995. "analysisTarget"
  1996. ],
  1997. "hashes": {
  1998. "md5": "1f552e08dc5c3cf210407dfd298348b1"
  1999. }
  2000. },
  2001. {
  2002. "location": {
  2003. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pnmio.c"
  2004. },
  2005. "roles": [
  2006. "analysisTarget"
  2007. ],
  2008. "hashes": {
  2009. "md5": "6f642f160ae4cfb9d3b978fb12b22a6d"
  2010. }
  2011. },
  2012. {
  2013. "location": {
  2014. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pngiostub.c"
  2015. },
  2016. "roles": [
  2017. "analysisTarget"
  2018. ],
  2019. "hashes": {
  2020. "md5": "4a353a2fb95b8296e0e28b27a6c3b62c"
  2021. }
  2022. },
  2023. {
  2024. "location": {
  2025. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixtiling.c"
  2026. },
  2027. "roles": [
  2028. "analysisTarget"
  2029. ],
  2030. "hashes": {
  2031. "md5": "b3ef8d274431c4bd171d079443daa92a"
  2032. }
  2033. },
  2034. {
  2035. "location": {
  2036. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixlabel.c"
  2037. },
  2038. "roles": [
  2039. "analysisTarget"
  2040. ],
  2041. "hashes": {
  2042. "md5": "63c33e6da783cdad108ef9b3c48aba27"
  2043. }
  2044. },
  2045. {
  2046. "location": {
  2047. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixconv.c"
  2048. },
  2049. "roles": [
  2050. "analysisTarget"
  2051. ],
  2052. "hashes": {
  2053. "md5": "90c5b8f7fd5625d3cc4542453b556eaf"
  2054. }
  2055. },
  2056. {
  2057. "location": {
  2058. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixcomp.c"
  2059. },
  2060. "roles": [
  2061. "analysisTarget"
  2062. ],
  2063. "hashes": {
  2064. "md5": "fa30a63a4e771df43aa4075b7bc4a5ef"
  2065. }
  2066. },
  2067. {
  2068. "location": {
  2069. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixarith.c"
  2070. },
  2071. "roles": [
  2072. "analysisTarget"
  2073. ],
  2074. "hashes": {
  2075. "md5": "38a7a074c58727a9c1bd2e1730c2bc4e"
  2076. }
  2077. },
  2078. {
  2079. "location": {
  2080. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixalloc.c"
  2081. },
  2082. "roles": [
  2083. "analysisTarget"
  2084. ],
  2085. "hashes": {
  2086. "md5": "1a3e5449b0a7c3c2b6b9505644542e1d"
  2087. }
  2088. },
  2089. {
  2090. "location": {
  2091. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pixafunc2.c"
  2092. },
  2093. "roles": [
  2094. "analysisTarget",
  2095. "resultFile"
  2096. ],
  2097. "hashes": {
  2098. "md5": "5e4e629c539211654f61070a07d8f8bf"
  2099. }
  2100. },
  2101. {
  2102. "location": {
  2103. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/selgen.c"
  2104. },
  2105. "roles": [
  2106. "analysisTarget",
  2107. "resultFile"
  2108. ],
  2109. "hashes": {
  2110. "md5": "ec343c8b1c06a28c06afa8de0144e88e"
  2111. }
  2112. },
  2113. {
  2114. "location": {
  2115. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sel2.c"
  2116. },
  2117. "roles": [
  2118. "analysisTarget"
  2119. ],
  2120. "hashes": {
  2121. "md5": "b6715c55cca06b28fefadd5a0b83a09b"
  2122. }
  2123. },
  2124. {
  2125. "location": {
  2126. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/sel1.c"
  2127. },
  2128. "roles": [
  2129. "analysisTarget",
  2130. "resultFile"
  2131. ],
  2132. "hashes": {
  2133. "md5": "e3d38a8e061933f3a4584b17656d7c16"
  2134. }
  2135. },
  2136. {
  2137. "location": {
  2138. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/seedfill.c"
  2139. },
  2140. "roles": [
  2141. "analysisTarget"
  2142. ],
  2143. "hashes": {
  2144. "md5": "4f951c75d0a5f7412b1dc7d6aed39850"
  2145. }
  2146. },
  2147. {
  2148. "location": {
  2149. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/scale2.c"
  2150. },
  2151. "roles": [
  2152. "analysisTarget"
  2153. ],
  2154. "hashes": {
  2155. "md5": "06f9d9074dace5a245a0d11d8feb054e"
  2156. }
  2157. },
  2158. {
  2159. "location": {
  2160. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/scale1.c"
  2161. },
  2162. "roles": [
  2163. "analysisTarget"
  2164. ],
  2165. "hashes": {
  2166. "md5": "2f39b5456233140792d511576efb8d29"
  2167. }
  2168. },
  2169. {
  2170. "location": {
  2171. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sarray2.c"
  2172. },
  2173. "roles": [
  2174. "analysisTarget"
  2175. ],
  2176. "hashes": {
  2177. "md5": "6ac8cdc8f4a4162ccee0b1c7d05165f2"
  2178. }
  2179. },
  2180. {
  2181. "location": {
  2182. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/sarray1.c"
  2183. },
  2184. "roles": [
  2185. "analysisTarget",
  2186. "resultFile"
  2187. ],
  2188. "hashes": {
  2189. "md5": "7ec8ece7860ceb9a1aeaf8a0aed39920"
  2190. }
  2191. },
  2192. {
  2193. "location": {
  2194. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/runlength.c"
  2195. },
  2196. "roles": [
  2197. "analysisTarget"
  2198. ],
  2199. "hashes": {
  2200. "md5": "d921c8039082faa76c64881b8c336eec"
  2201. }
  2202. },
  2203. {
  2204. "location": {
  2205. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rotateshear.c"
  2206. },
  2207. "roles": [
  2208. "analysisTarget"
  2209. ],
  2210. "hashes": {
  2211. "md5": "fa94af9266d9d5a4c4623f42849cb2ce"
  2212. }
  2213. },
  2214. {
  2215. "location": {
  2216. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rotateorth.c"
  2217. },
  2218. "roles": [
  2219. "analysisTarget"
  2220. ],
  2221. "hashes": {
  2222. "md5": "0925378fd888e1a3d1d1b6633850a00a"
  2223. }
  2224. },
  2225. {
  2226. "location": {
  2227. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rotateam.c"
  2228. },
  2229. "roles": [
  2230. "analysisTarget"
  2231. ],
  2232. "hashes": {
  2233. "md5": "899fe0bea0b458c09845a54de74b2912"
  2234. }
  2235. },
  2236. {
  2237. "location": {
  2238. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rotate.c"
  2239. },
  2240. "roles": [
  2241. "analysisTarget"
  2242. ],
  2243. "hashes": {
  2244. "md5": "aae9232d0d5f74399400429e49b23d60"
  2245. }
  2246. },
  2247. {
  2248. "location": {
  2249. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/roplow.c"
  2250. },
  2251. "roles": [
  2252. "analysisTarget",
  2253. "resultFile"
  2254. ],
  2255. "hashes": {
  2256. "md5": "a4c98c96a27ec6e021d5c90aee611e2a"
  2257. }
  2258. },
  2259. {
  2260. "location": {
  2261. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rop.c"
  2262. },
  2263. "roles": [
  2264. "analysisTarget"
  2265. ],
  2266. "hashes": {
  2267. "md5": "bff4c44fd25d8f31517259d3055bf5aa"
  2268. }
  2269. },
  2270. {
  2271. "location": {
  2272. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/regutils.c"
  2273. },
  2274. "roles": [
  2275. "analysisTarget"
  2276. ],
  2277. "hashes": {
  2278. "md5": "8fef45f125a1a9befc9a848c55cbcd64"
  2279. }
  2280. },
  2281. {
  2282. "location": {
  2283. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/readfile.c"
  2284. },
  2285. "roles": [
  2286. "analysisTarget"
  2287. ],
  2288. "hashes": {
  2289. "md5": "3d2e9c5280ce6079fb6a686632bd424e"
  2290. }
  2291. },
  2292. {
  2293. "location": {
  2294. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rbtree.c"
  2295. },
  2296. "roles": [
  2297. "analysisTarget"
  2298. ],
  2299. "hashes": {
  2300. "md5": "5ffef0f5c2a5ff6a9421713176cdd025"
  2301. }
  2302. },
  2303. {
  2304. "location": {
  2305. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rank.c"
  2306. },
  2307. "roles": [
  2308. "analysisTarget"
  2309. ],
  2310. "hashes": {
  2311. "md5": "dfc790deb43f96f14e0fa3c06449dcd1"
  2312. }
  2313. },
  2314. {
  2315. "location": {
  2316. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/queue.c"
  2317. },
  2318. "roles": [
  2319. "analysisTarget"
  2320. ],
  2321. "hashes": {
  2322. "md5": "b3ad98bafd80cb3a9aa994209fa81778"
  2323. }
  2324. },
  2325. {
  2326. "location": {
  2327. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/zlibmemstub.c"
  2328. },
  2329. "roles": [
  2330. "analysisTarget"
  2331. ],
  2332. "hashes": {
  2333. "md5": "98e3c7c59eac70a4952fba417ad51300"
  2334. }
  2335. },
  2336. {
  2337. "location": {
  2338. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/zlibmem.c"
  2339. },
  2340. "roles": [
  2341. "analysisTarget"
  2342. ],
  2343. "hashes": {
  2344. "md5": "fd897883d2ea06f3cbd90ef883851f8f"
  2345. }
  2346. },
  2347. {
  2348. "location": {
  2349. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/writefile.c"
  2350. },
  2351. "roles": [
  2352. "analysisTarget",
  2353. "resultFile"
  2354. ],
  2355. "hashes": {
  2356. "md5": "e07802cbd79def9bdd270846251f3ddd"
  2357. }
  2358. },
  2359. {
  2360. "location": {
  2361. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/webpiostub.c"
  2362. },
  2363. "roles": [
  2364. "analysisTarget"
  2365. ],
  2366. "hashes": {
  2367. "md5": "151e6742f6b43f0d1410b44d47dc2f55"
  2368. }
  2369. },
  2370. {
  2371. "location": {
  2372. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/warper.c"
  2373. },
  2374. "roles": [
  2375. "analysisTarget"
  2376. ],
  2377. "hashes": {
  2378. "md5": "00e4f18bbffa7a84295e24cda3bd2281"
  2379. }
  2380. },
  2381. {
  2382. "location": {
  2383. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/utils2.c"
  2384. },
  2385. "roles": [
  2386. "analysisTarget"
  2387. ],
  2388. "hashes": {
  2389. "md5": "593a6a69daae9d7d9d29ad50f486aa63"
  2390. }
  2391. },
  2392. {
  2393. "location": {
  2394. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  2395. },
  2396. "roles": [
  2397. "analysisTarget",
  2398. "resultFile"
  2399. ],
  2400. "hashes": {
  2401. "md5": "72f1099a67c7cc16d69844098e138a90"
  2402. }
  2403. },
  2404. {
  2405. "location": {
  2406. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/tiffiostub.c"
  2407. },
  2408. "roles": [
  2409. "analysisTarget"
  2410. ],
  2411. "hashes": {
  2412. "md5": "fb2636cc46834f1d12c4983896b6d288"
  2413. }
  2414. },
  2415. {
  2416. "location": {
  2417. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/textops.c"
  2418. },
  2419. "roles": [
  2420. "analysisTarget"
  2421. ],
  2422. "hashes": {
  2423. "md5": "b0c6e38690c2fd85178d732a324d6ec0"
  2424. }
  2425. },
  2426. {
  2427. "location": {
  2428. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/strokes.c"
  2429. },
  2430. "roles": [
  2431. "analysisTarget",
  2432. "resultFile"
  2433. ],
  2434. "hashes": {
  2435. "md5": "2303255eca1e36c8331b959cb7188181"
  2436. }
  2437. },
  2438. {
  2439. "location": {
  2440. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stringcode.c"
  2441. },
  2442. "roles": [
  2443. "analysisTarget"
  2444. ],
  2445. "hashes": {
  2446. "md5": "d374727bd31fc5d0e3d0ef399766a5cb"
  2447. }
  2448. },
  2449. {
  2450. "location": {
  2451. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stack.c"
  2452. },
  2453. "roles": [
  2454. "analysisTarget"
  2455. ],
  2456. "hashes": {
  2457. "md5": "277725945ef9754f50691158a4fa42eb"
  2458. }
  2459. },
  2460. {
  2461. "location": {
  2462. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/spixio.c"
  2463. },
  2464. "roles": [
  2465. "analysisTarget"
  2466. ],
  2467. "hashes": {
  2468. "md5": "0446886601cb29fed971e9295b69af9b"
  2469. }
  2470. },
  2471. {
  2472. "location": {
  2473. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/skew.c"
  2474. },
  2475. "roles": [
  2476. "analysisTarget"
  2477. ],
  2478. "hashes": {
  2479. "md5": "3cfc54515bfba2957960a56061947933"
  2480. }
  2481. },
  2482. {
  2483. "location": {
  2484. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/shear.c"
  2485. },
  2486. "roles": [
  2487. "analysisTarget"
  2488. ],
  2489. "hashes": {
  2490. "md5": "7f667ec6c3948455e1fa3e6f9d6be7f9"
  2491. }
  2492. }
  2493. ]
  2494. }
  2495. ]
  2496. }