QRReader.nativecodeanalysis.sarif 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  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\\c1xx.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_d6b31b18ast -typedil -f ..\\..\\thirdparty\\zxing-cpp\\core\\src\\qrcode\\QRReader.cpp -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 -GR -D_CPPRTTI -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\zxing-cpp\\core\\src -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\scripts\\zxing-cpp\\ -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\zint\\backend -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DZXING_HAS_CHAR8 -DZXING_USE_ZINT -DZXING_EXPERIMENTAL_API -DZINT_NO_PNG -D_CRT_SECURE_NO_WARNINGS -DWIN32 -DNDEBUG -D_LIB -EHs -D_CPPUNWIND -EHc -MD -D_MT -D_DLL -GS -D_M_FP_PRECISE -permissive- -Zc:wchar_t -Zc:forScope -std:c++20 -Fox64\\Release\\libzxing\\QRReader.obj -FdC:\\Users\\wruser\\source\\repos\\SharpMuPDF\\x64\\Release\\libzxing.pdb -external:W 3 -Gd -wd 4244 -wd 4267 -wd 4566 -wd 4018 -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/zxing-cpp/core/src/datamatrix/dmdatablock.cpp"
  25. },
  26. "roles": [
  27. "analysisTarget"
  28. ],
  29. "hashes": {
  30. "md5": "0a2edea71569ac6006896200f52faef4"
  31. }
  32. },
  33. {
  34. "location": {
  35. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdatablock.h"
  36. },
  37. "hashes": {
  38. "md5": "7af579a7287ca191516515d009631446"
  39. }
  40. },
  41. {
  42. "location": {
  43. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bytearray.h"
  44. },
  45. "hashes": {
  46. "md5": "394daf22d60d54e8d73772e4b26c7593"
  47. }
  48. },
  49. {
  50. "location": {
  51. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmversion.h"
  52. },
  53. "hashes": {
  54. "md5": "ffab83bd458b786c08cec951dc865d3a"
  55. }
  56. },
  57. {
  58. "location": {
  59. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxalgorithms.h"
  60. },
  61. "hashes": {
  62. "md5": "59023869d1cd54f12ac7c920ed23158f"
  63. }
  64. },
  65. {
  66. "location": {
  67. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/error.h"
  68. },
  69. "hashes": {
  70. "md5": "052efb776bebb46a08fe99a93eaee164"
  71. }
  72. },
  73. {
  74. "location": {
  75. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmbitlayout.cpp"
  76. },
  77. "roles": [
  78. "analysisTarget"
  79. ],
  80. "hashes": {
  81. "md5": "b22da69dfbb61df5c7c849e6877d3bb3"
  82. }
  83. },
  84. {
  85. "location": {
  86. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmbitlayout.h"
  87. },
  88. "hashes": {
  89. "md5": "0cc6f78c215a07b006e2fe0ea7c4ae37"
  90. }
  91. },
  92. {
  93. "location": {
  94. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitarray.h"
  95. },
  96. "hashes": {
  97. "md5": "24304cd92376cbf171f2f33afe6250ca"
  98. }
  99. },
  100. {
  101. "location": {
  102. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/range.h"
  103. },
  104. "hashes": {
  105. "md5": "dff14ee85fe2b1ebcd848a72180349a2"
  106. }
  107. },
  108. {
  109. "location": {
  110. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrix.h"
  111. },
  112. "hashes": {
  113. "md5": "e739b433b3f737055e55b025246df9e9"
  114. }
  115. },
  116. {
  117. "location": {
  118. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/matrix.h"
  119. },
  120. "hashes": {
  121. "md5": "c1ced7a83d8b35f0bc16f1520add86e8"
  122. }
  123. },
  124. {
  125. "location": {
  126. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/point.h"
  127. },
  128. "hashes": {
  129. "md5": "337a26110af1d20874a7103a12e041ac"
  130. }
  131. },
  132. {
  133. "location": {
  134. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/content.cpp"
  135. },
  136. "roles": [
  137. "analysisTarget"
  138. ],
  139. "hashes": {
  140. "md5": "ba1fc5fc1aa77d2f349407bded21c616"
  141. }
  142. },
  143. {
  144. "location": {
  145. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/content.h"
  146. },
  147. "hashes": {
  148. "md5": "8e1b0252195655cfbfb6cb75712a4d86"
  149. }
  150. },
  151. {
  152. "location": {
  153. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/characterset.h"
  154. },
  155. "hashes": {
  156. "md5": "3a38a899df3c51fa891d758d490d7d71"
  157. }
  158. },
  159. {
  160. "location": {
  161. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/readeroptions.h"
  162. },
  163. "hashes": {
  164. "md5": "2a7e7df74a6600b31c2e3b79981c98d1"
  165. }
  166. },
  167. {
  168. "location": {
  169. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/barcodeformat.h"
  170. },
  171. "hashes": {
  172. "md5": "222722528c5d5be593072542533c52c3"
  173. }
  174. },
  175. {
  176. "location": {
  177. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/flags.h"
  178. },
  179. "hashes": {
  180. "md5": "9484105b4623ca5049f778bcf079e783"
  181. }
  182. },
  183. {
  184. "location": {
  185. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bithacks.h"
  186. },
  187. "hashes": {
  188. "md5": "2021c737b0cf71e0c841ce67b55c4883"
  189. }
  190. },
  191. {
  192. "location": {
  193. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/eci.h"
  194. },
  195. "hashes": {
  196. "md5": "baeca69f40328c1c8ec899b87817d458"
  197. }
  198. },
  199. {
  200. "location": {
  201. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/hri.h"
  202. },
  203. "hashes": {
  204. "md5": "d107a2d84aad4502455fc56776284c2e"
  205. }
  206. },
  207. {
  208. "location": {
  209. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/textdecoder.h"
  210. },
  211. "hashes": {
  212. "md5": "879c2f214ecbb9bb8f62abb55dfdb6dd"
  213. }
  214. },
  215. {
  216. "location": {
  217. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/utf.h"
  218. },
  219. "hashes": {
  220. "md5": "7c1c8fc35484c31b2cd36d2ca48f6e0b"
  221. }
  222. },
  223. {
  224. "location": {
  225. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/zxing-cpp/version.h"
  226. },
  227. "hashes": {
  228. "md5": "94a8d4ff2db0583c93f16a207a8f15c4"
  229. }
  230. },
  231. {
  232. "location": {
  233. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/concentricfinder.cpp"
  234. },
  235. "roles": [
  236. "analysisTarget"
  237. ],
  238. "hashes": {
  239. "md5": "fb664fa8ca5bb8cf46f7f18e7a4bc45b"
  240. }
  241. },
  242. {
  243. "location": {
  244. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/concentricfinder.h"
  245. },
  246. "hashes": {
  247. "md5": "963f667e3adb1d3e5a20046e5b3cccb6"
  248. }
  249. },
  250. {
  251. "location": {
  252. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrixcursor.h"
  253. },
  254. "hashes": {
  255. "md5": "4ab83ec6c5db30598654e10978e573e3"
  256. }
  257. },
  258. {
  259. "location": {
  260. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pattern.h"
  261. },
  262. "hashes": {
  263. "md5": "b6dc9d25a4cf527f88a5be5388cd0e34"
  264. }
  265. },
  266. {
  267. "location": {
  268. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/quadrilateral.h"
  269. },
  270. "hashes": {
  271. "md5": "7a4cb78c5685810a545af44cb4aed7a9"
  272. }
  273. },
  274. {
  275. "location": {
  276. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/logmatrix.h"
  277. },
  278. "hashes": {
  279. "md5": "b0abe2a1f290a399843ae1e7e6fc5986"
  280. }
  281. },
  282. {
  283. "location": {
  284. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/regressionline.h"
  285. },
  286. "hashes": {
  287. "md5": "d834dd0b5851941db98d4ce78498fdce"
  288. }
  289. },
  290. {
  291. "location": {
  292. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/characterset.cpp"
  293. },
  294. "roles": [
  295. "analysisTarget"
  296. ],
  297. "hashes": {
  298. "md5": "0b630ecd6e7ce1f39364cbbd9eefca8f"
  299. }
  300. },
  301. {
  302. "location": {
  303. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitsource.cpp"
  304. },
  305. "roles": [
  306. "analysisTarget"
  307. ],
  308. "hashes": {
  309. "md5": "96d13b7193a11e0f41763412674d15af"
  310. }
  311. },
  312. {
  313. "location": {
  314. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitsource.h"
  315. },
  316. "hashes": {
  317. "md5": "ad9c5156e2ea28f924fba414c840b104"
  318. }
  319. },
  320. {
  321. "location": {
  322. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrixio.cpp"
  323. },
  324. "roles": [
  325. "analysisTarget"
  326. ],
  327. "hashes": {
  328. "md5": "78fcc6d99733131c42c7e25d863f6fd4"
  329. }
  330. },
  331. {
  332. "location": {
  333. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrixio.h"
  334. },
  335. "hashes": {
  336. "md5": "92d277b2e3b8dcb9e750528cd197d3d4"
  337. }
  338. },
  339. {
  340. "location": {
  341. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrix.cpp"
  342. },
  343. "roles": [
  344. "analysisTarget"
  345. ],
  346. "hashes": {
  347. "md5": "2349f5767bc0edb0bfd26c3f2614837b"
  348. }
  349. },
  350. {
  351. "location": {
  352. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitarray.cpp"
  353. },
  354. "roles": [
  355. "analysisTarget"
  356. ],
  357. "hashes": {
  358. "md5": "ac5f0b4f11bff75756663b64ba56f6ac"
  359. }
  360. },
  361. {
  362. "location": {
  363. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/binarybitmap.cpp"
  364. },
  365. "roles": [
  366. "analysisTarget"
  367. ],
  368. "hashes": {
  369. "md5": "73640955a8ff3b3a93f78989fb40cc84"
  370. }
  371. },
  372. {
  373. "location": {
  374. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/binarybitmap.h"
  375. },
  376. "hashes": {
  377. "md5": "ac6981b0940cbf592a91cb61ca42b68c"
  378. }
  379. },
  380. {
  381. "location": {
  382. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/imageview.h"
  383. },
  384. "hashes": {
  385. "md5": "6d9d0b29654d36b0e6a28ed7f3fffec7"
  386. }
  387. },
  388. {
  389. "location": {
  390. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/barcodeformat.cpp"
  391. },
  392. "roles": [
  393. "analysisTarget"
  394. ],
  395. "hashes": {
  396. "md5": "cc43c6e2e3323447ec339fcfa6212d6c"
  397. }
  398. },
  399. {
  400. "location": {
  401. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/barcode.cpp"
  402. },
  403. "roles": [
  404. "analysisTarget"
  405. ],
  406. "hashes": {
  407. "md5": "045bdf4601bfff59043f0992fe148177"
  408. }
  409. },
  410. {
  411. "location": {
  412. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/barcode.h"
  413. },
  414. "hashes": {
  415. "md5": "f0201af8b7a8191fd1ba6762c7e11fa6"
  416. }
  417. },
  418. {
  419. "location": {
  420. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/structuredappend.h"
  421. },
  422. "hashes": {
  423. "md5": "3a86a242daf37a5d0e2789d842e50c9f"
  424. }
  425. },
  426. {
  427. "location": {
  428. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/decoderresult.h"
  429. },
  430. "hashes": {
  431. "md5": "b58781c9d5fed0ec1e6629ece435e0ee"
  432. }
  433. },
  434. {
  435. "location": {
  436. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/detectorresult.h"
  437. },
  438. "hashes": {
  439. "md5": "a730cd9d3bf3ab7c6f1cf3c674061015"
  440. }
  441. },
  442. {
  443. "location": {
  444. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zint.h"
  445. },
  446. "hashes": {
  447. "md5": "52ace3d3df4d440075f3460c1759b827"
  448. }
  449. },
  450. {
  451. "location": {
  452. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azwriter.cpp"
  453. },
  454. "roles": [
  455. "analysisTarget"
  456. ],
  457. "hashes": {
  458. "md5": "bd0b30ad2b62713409656a322bd20b8d"
  459. }
  460. },
  461. {
  462. "location": {
  463. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azwriter.h"
  464. },
  465. "hashes": {
  466. "md5": "1a5e58fa0703173aeb812055b285b28d"
  467. }
  468. },
  469. {
  470. "location": {
  471. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azencoder.h"
  472. },
  473. "hashes": {
  474. "md5": "18a112176d889a44c0810eea93cfb024"
  475. }
  476. },
  477. {
  478. "location": {
  479. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/textencoder.h"
  480. },
  481. "hashes": {
  482. "md5": "5ab601c323bda5e0e716e3dcaffe69de"
  483. }
  484. },
  485. {
  486. "location": {
  487. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/aztoken.cpp"
  488. },
  489. "roles": [
  490. "analysisTarget"
  491. ],
  492. "hashes": {
  493. "md5": "eeaa8cee9c17ecb4ff3c291040d0b132"
  494. }
  495. },
  496. {
  497. "location": {
  498. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/aztoken.h"
  499. },
  500. "hashes": {
  501. "md5": "79f60f673945a56ace78b5f46d3e21e0"
  502. }
  503. },
  504. {
  505. "location": {
  506. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azreader.cpp"
  507. },
  508. "roles": [
  509. "analysisTarget"
  510. ],
  511. "hashes": {
  512. "md5": "45d8bb1b1234475a5d958f15a6a26941"
  513. }
  514. },
  515. {
  516. "location": {
  517. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azreader.h"
  518. },
  519. "hashes": {
  520. "md5": "6c48af898c2128eb342fa39c54d3a71a"
  521. }
  522. },
  523. {
  524. "location": {
  525. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reader.h"
  526. },
  527. "hashes": {
  528. "md5": "ce6e57eb4975670d8ceba4c923c32f84"
  529. }
  530. },
  531. {
  532. "location": {
  533. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdecoder.h"
  534. },
  535. "hashes": {
  536. "md5": "387f2f13abeb632f12b4784d6a127c41"
  537. }
  538. },
  539. {
  540. "location": {
  541. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdetector.h"
  542. },
  543. "hashes": {
  544. "md5": "deb830130a7b5db04730bb9e5f9e5c3a"
  545. }
  546. },
  547. {
  548. "location": {
  549. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdetectorresult.h"
  550. },
  551. "hashes": {
  552. "md5": "64d784cd56b259ad4cb59f3c178849e3"
  553. }
  554. },
  555. {
  556. "location": {
  557. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azhighlevelencoder.cpp"
  558. },
  559. "roles": [
  560. "analysisTarget"
  561. ],
  562. "hashes": {
  563. "md5": "b8e60d9f04c9e2b37c09f07fa746e253"
  564. }
  565. },
  566. {
  567. "location": {
  568. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azhighlevelencoder.h"
  569. },
  570. "hashes": {
  571. "md5": "033e0e4e8bcba01e97b906b0693906af"
  572. }
  573. },
  574. {
  575. "location": {
  576. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azencodingstate.h"
  577. },
  578. "hashes": {
  579. "md5": "11f691df7bf5cbf6f08922ec5b2069e1"
  580. }
  581. },
  582. {
  583. "location": {
  584. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azencoder.cpp"
  585. },
  586. "roles": [
  587. "analysisTarget"
  588. ],
  589. "hashes": {
  590. "md5": "4710ee6a93d45d5b2530655b9482a54d"
  591. }
  592. },
  593. {
  594. "location": {
  595. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/genericgf.h"
  596. },
  597. "hashes": {
  598. "md5": "a8d5887f127818719d816ad526af7c0b"
  599. }
  600. },
  601. {
  602. "location": {
  603. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/genericgfpoly.h"
  604. },
  605. "hashes": {
  606. "md5": "32a969a7232a9736ebcff9541710c736"
  607. }
  608. },
  609. {
  610. "location": {
  611. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxconfig.h"
  612. },
  613. "hashes": {
  614. "md5": "18ce7c8ab62b23502f4dd7b8e1caff08"
  615. }
  616. },
  617. {
  618. "location": {
  619. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reedsolomonencoder.h"
  620. },
  621. "hashes": {
  622. "md5": "686d24bd1e374388627df7268ed2d50c"
  623. }
  624. },
  625. {
  626. "location": {
  627. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxtestsupport.h"
  628. },
  629. "hashes": {
  630. "md5": "fe54d8e5ed02bc740d586809b43397ca"
  631. }
  632. },
  633. {
  634. "location": {
  635. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdetector.cpp"
  636. },
  637. "roles": [
  638. "analysisTarget"
  639. ],
  640. "hashes": {
  641. "md5": "8cf081e15ba565f30b8a323043bf93f5"
  642. }
  643. },
  644. {
  645. "location": {
  646. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/gridsampler.h"
  647. },
  648. "hashes": {
  649. "md5": "f1c77db31c0900cb6cb6e8be89b9088b"
  650. }
  651. },
  652. {
  653. "location": {
  654. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/perspectivetransform.h"
  655. },
  656. "hashes": {
  657. "md5": "4d3f8aec75c72abc05dc2a379f792b57"
  658. }
  659. },
  660. {
  661. "location": {
  662. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reedsolomondecoder.h"
  663. },
  664. "hashes": {
  665. "md5": "f410a2e26888a2b9645e3b139fcea714"
  666. }
  667. },
  668. {
  669. "location": {
  670. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdecoder.cpp"
  671. },
  672. "roles": [
  673. "analysisTarget"
  674. ],
  675. "hashes": {
  676. "md5": "65602645142acd20fed028bc470cde11"
  677. }
  678. },
  679. {
  680. "location": {
  681. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/zxing-cpp/eci_dedup.cpp"
  682. },
  683. "roles": [
  684. "analysisTarget"
  685. ],
  686. "hashes": {
  687. "md5": "7723ee66ab04b7cd6a7170d7f77bbd1f"
  688. }
  689. },
  690. {
  691. "location": {
  692. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/eci.cpp"
  693. },
  694. "hashes": {
  695. "md5": "314bcd0c1e56684b32105de1fe3b36b2"
  696. }
  697. },
  698. {
  699. "location": {
  700. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcreader.cpp"
  701. },
  702. "roles": [
  703. "analysisTarget"
  704. ],
  705. "hashes": {
  706. "md5": "974e3e9e51333b502da36c65d36b876a"
  707. }
  708. },
  709. {
  710. "location": {
  711. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcreader.h"
  712. },
  713. "hashes": {
  714. "md5": "aa4a0a36cecf4efea47902a9ee946379"
  715. }
  716. },
  717. {
  718. "location": {
  719. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcbitmatrixparser.h"
  720. },
  721. "hashes": {
  722. "md5": "d57b53bc478901bb408308536bb86b15"
  723. }
  724. },
  725. {
  726. "location": {
  727. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcdecoder.h"
  728. },
  729. "hashes": {
  730. "md5": "aaa02a12cf07b6ee35446192a5706ec7"
  731. }
  732. },
  733. {
  734. "location": {
  735. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcdecoder.cpp"
  736. },
  737. "roles": [
  738. "analysisTarget"
  739. ],
  740. "hashes": {
  741. "md5": "bf765ff1071ef04f50fa98753c7ed118"
  742. }
  743. },
  744. {
  745. "location": {
  746. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcbitmatrixparser.cpp"
  747. },
  748. "roles": [
  749. "analysisTarget"
  750. ],
  751. "hashes": {
  752. "md5": "6ff5c6e1ec894721a35f47d080885e38"
  753. }
  754. },
  755. {
  756. "location": {
  757. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/hybridbinarizer.cpp"
  758. },
  759. "roles": [
  760. "analysisTarget"
  761. ],
  762. "hashes": {
  763. "md5": "a17daf2289911fa47b7e3e17666dc89a"
  764. }
  765. },
  766. {
  767. "location": {
  768. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/hybridbinarizer.h"
  769. },
  770. "hashes": {
  771. "md5": "ace403a9672f5b8a1324ff0c400e6f68"
  772. }
  773. },
  774. {
  775. "location": {
  776. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/globalhistogrambinarizer.h"
  777. },
  778. "hashes": {
  779. "md5": "65331d0bb8f9845470b3dc4bd402a7cf"
  780. }
  781. },
  782. {
  783. "location": {
  784. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/hri.cpp"
  785. },
  786. "roles": [
  787. "analysisTarget"
  788. ],
  789. "hashes": {
  790. "md5": "ce1af1fb666abe6d49018ccab5ac2631"
  791. }
  792. },
  793. {
  794. "location": {
  795. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/gtin.cpp"
  796. },
  797. "roles": [
  798. "analysisTarget"
  799. ],
  800. "hashes": {
  801. "md5": "7eecc1e93a842dd2f9e1227c0baf37fb"
  802. }
  803. },
  804. {
  805. "location": {
  806. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/gtin.h"
  807. },
  808. "hashes": {
  809. "md5": "9e45cd5b8144d243de91873800dc6cdb"
  810. }
  811. },
  812. {
  813. "location": {
  814. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/gridsampler.cpp"
  815. },
  816. "roles": [
  817. "analysisTarget"
  818. ],
  819. "hashes": {
  820. "md5": "194afe590eb647f3a86ab9835688ce2e"
  821. }
  822. },
  823. {
  824. "location": {
  825. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/GlobalHistogramBinarizer.cpp"
  826. },
  827. "roles": [
  828. "analysisTarget",
  829. "resultFile"
  830. ],
  831. "hashes": {
  832. "md5": "5732f83020f0eacab0a21c7eca65fd95"
  833. }
  834. },
  835. {
  836. "location": {
  837. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/genericgfpoly.cpp"
  838. },
  839. "roles": [
  840. "analysisTarget"
  841. ],
  842. "hashes": {
  843. "md5": "ed5541ad342eaf75f266b2c6f61ee22a"
  844. }
  845. },
  846. {
  847. "location": {
  848. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/genericgf.cpp"
  849. },
  850. "roles": [
  851. "analysisTarget"
  852. ],
  853. "hashes": {
  854. "md5": "afb593590b2b4fa436b9203e4622881c"
  855. }
  856. },
  857. {
  858. "location": {
  859. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/error.cpp"
  860. },
  861. "roles": [
  862. "analysisTarget"
  863. ],
  864. "hashes": {
  865. "md5": "b46be24aa643f7080ebb6cc3ba94c36e"
  866. }
  867. },
  868. {
  869. "location": {
  870. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/decodehints.cpp"
  871. },
  872. "roles": [
  873. "analysisTarget"
  874. ],
  875. "hashes": {
  876. "md5": "0e0404860cefce17fe4bc1d2effc66af"
  877. }
  878. },
  879. {
  880. "location": {
  881. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/readbarcode.h"
  882. },
  883. "hashes": {
  884. "md5": "a8bbadbb5bc57e38085bc735b59a9e2d"
  885. }
  886. },
  887. {
  888. "location": {
  889. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmwriter.cpp"
  890. },
  891. "roles": [
  892. "analysisTarget"
  893. ],
  894. "hashes": {
  895. "md5": "ca853b63c84def8941ab4d88ae0534ba"
  896. }
  897. },
  898. {
  899. "location": {
  900. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmwriter.h"
  901. },
  902. "hashes": {
  903. "md5": "dc4acab8520f09ce41cea28a32a25e75"
  904. }
  905. },
  906. {
  907. "location": {
  908. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmsymbolshape.h"
  909. },
  910. "hashes": {
  911. "md5": "3968e35c22587b93cc9c9583b3248cae"
  912. }
  913. },
  914. {
  915. "location": {
  916. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmecencoder.h"
  917. },
  918. "hashes": {
  919. "md5": "56936c214b502977a27d6ec00cf3c10c"
  920. }
  921. },
  922. {
  923. "location": {
  924. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmhighlevelencoder.h"
  925. },
  926. "hashes": {
  927. "md5": "9f3a90ca79c243e1023dc1703dc3abd5"
  928. }
  929. },
  930. {
  931. "location": {
  932. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmsymbolinfo.h"
  933. },
  934. "hashes": {
  935. "md5": "da1e02c558129c6e430974b476202ab5"
  936. }
  937. },
  938. {
  939. "location": {
  940. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmversion.cpp"
  941. },
  942. "roles": [
  943. "analysisTarget"
  944. ],
  945. "hashes": {
  946. "md5": "33186f08b3ca86cca24fda6d0f88cb64"
  947. }
  948. },
  949. {
  950. "location": {
  951. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmsymbolinfo.cpp"
  952. },
  953. "roles": [
  954. "analysisTarget"
  955. ],
  956. "hashes": {
  957. "md5": "c76c1714476ef7a0c34ec276f12051a6"
  958. }
  959. },
  960. {
  961. "location": {
  962. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmreader.cpp"
  963. },
  964. "roles": [
  965. "analysisTarget"
  966. ],
  967. "hashes": {
  968. "md5": "9cbd5393adec4c158d39c4ea2621cefc"
  969. }
  970. },
  971. {
  972. "location": {
  973. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmreader.h"
  974. },
  975. "hashes": {
  976. "md5": "eca2c19cf8838155b721c2b220efcd9a"
  977. }
  978. },
  979. {
  980. "location": {
  981. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdecoder.h"
  982. },
  983. "hashes": {
  984. "md5": "f9029f0b6ed4c42fff1e572a21d364e7"
  985. }
  986. },
  987. {
  988. "location": {
  989. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdetector.h"
  990. },
  991. "hashes": {
  992. "md5": "0b7ae2ebc2642b5b96830492788d4bf6"
  993. }
  994. },
  995. {
  996. "location": {
  997. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/generator.h"
  998. },
  999. "hashes": {
  1000. "md5": "f75e14c202daf37acd1118017f2611c0"
  1001. }
  1002. },
  1003. {
  1004. "location": {
  1005. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmhighlevelencoder.cpp"
  1006. },
  1007. "roles": [
  1008. "analysisTarget"
  1009. ],
  1010. "hashes": {
  1011. "md5": "b8bae9970723742961fd9bb582595911"
  1012. }
  1013. },
  1014. {
  1015. "location": {
  1016. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmencodercontext.h"
  1017. },
  1018. "hashes": {
  1019. "md5": "0c30e1ace816945353fc62957a415382"
  1020. }
  1021. },
  1022. {
  1023. "location": {
  1024. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmecencoder.cpp"
  1025. },
  1026. "roles": [
  1027. "analysisTarget"
  1028. ],
  1029. "hashes": {
  1030. "md5": "10d069f0069a8640f31e5322251a2a1a"
  1031. }
  1032. },
  1033. {
  1034. "location": {
  1035. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdetector.cpp"
  1036. },
  1037. "roles": [
  1038. "analysisTarget"
  1039. ],
  1040. "hashes": {
  1041. "md5": "cdd4d0bafba82818f55e374a5fcf6bda"
  1042. }
  1043. },
  1044. {
  1045. "location": {
  1046. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bytematrix.h"
  1047. },
  1048. "hashes": {
  1049. "md5": "dec4cf780d9d20598b05a4d33c4f8f75"
  1050. }
  1051. },
  1052. {
  1053. "location": {
  1054. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/resultpoint.h"
  1055. },
  1056. "hashes": {
  1057. "md5": "9de0ae7cf7038a9e73952f9d73963346"
  1058. }
  1059. },
  1060. {
  1061. "location": {
  1062. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/scope.h"
  1063. },
  1064. "hashes": {
  1065. "md5": "7aefa01e1a04b87497f0da5fc98a1f15"
  1066. }
  1067. },
  1068. {
  1069. "location": {
  1070. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/whiterectdetector.h"
  1071. },
  1072. "hashes": {
  1073. "md5": "ed42e30b6021ba3fd7a461e1c6cd7805"
  1074. }
  1075. },
  1076. {
  1077. "location": {
  1078. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdecoder.cpp"
  1079. },
  1080. "roles": [
  1081. "analysisTarget"
  1082. ],
  1083. "hashes": {
  1084. "md5": "4b1a9767a8ec7c6ae771e804f8e5f1ed"
  1085. }
  1086. },
  1087. {
  1088. "location": {
  1089. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oditfreader.cpp"
  1090. },
  1091. "roles": [
  1092. "analysisTarget"
  1093. ],
  1094. "hashes": {
  1095. "md5": "5bbc488a6af002919169eac5cf391f41"
  1096. }
  1097. },
  1098. {
  1099. "location": {
  1100. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oditfreader.h"
  1101. },
  1102. "hashes": {
  1103. "md5": "537e30a1f1ce67dc760103ad9f32a688"
  1104. }
  1105. },
  1106. {
  1107. "location": {
  1108. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odrowreader.h"
  1109. },
  1110. "hashes": {
  1111. "md5": "9c680b809778649da52ca68caa598054"
  1112. }
  1113. },
  1114. {
  1115. "location": {
  1116. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odean8writer.cpp"
  1117. },
  1118. "roles": [
  1119. "analysisTarget"
  1120. ],
  1121. "hashes": {
  1122. "md5": "01dcfff82af235cf5cf4daebda351808"
  1123. }
  1124. },
  1125. {
  1126. "location": {
  1127. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odean8writer.h"
  1128. },
  1129. "hashes": {
  1130. "md5": "e3a0872fec1efea5aef70ecfdd2a5207"
  1131. }
  1132. },
  1133. {
  1134. "location": {
  1135. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupceancommon.h"
  1136. },
  1137. "hashes": {
  1138. "md5": "8b82d655ec5517acaebdc17820afc483"
  1139. }
  1140. },
  1141. {
  1142. "location": {
  1143. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odwriterhelper.h"
  1144. },
  1145. "hashes": {
  1146. "md5": "322ec0aa07da5eca984374f652bbd3e6"
  1147. }
  1148. },
  1149. {
  1150. "location": {
  1151. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odean13writer.cpp"
  1152. },
  1153. "roles": [
  1154. "analysisTarget"
  1155. ],
  1156. "hashes": {
  1157. "md5": "cd86f5588d34be29de4daa4d94c68283"
  1158. }
  1159. },
  1160. {
  1161. "location": {
  1162. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odean13writer.h"
  1163. },
  1164. "hashes": {
  1165. "md5": "29d787812fa43fb7879b5a30372a532a"
  1166. }
  1167. },
  1168. {
  1169. "location": {
  1170. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddxfilmedgereader.cpp"
  1171. },
  1172. "roles": [
  1173. "analysisTarget"
  1174. ],
  1175. "hashes": {
  1176. "md5": "e1fc9c347a3174c5fb872ccca94d96ad"
  1177. }
  1178. },
  1179. {
  1180. "location": {
  1181. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddxfilmedgereader.h"
  1182. },
  1183. "hashes": {
  1184. "md5": "145992e2d1ce7b01e022ab10946fee2a"
  1185. }
  1186. },
  1187. {
  1188. "location": {
  1189. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarreader.cpp"
  1190. },
  1191. "roles": [
  1192. "analysisTarget"
  1193. ],
  1194. "hashes": {
  1195. "md5": "4917270f4c33c8045dd1b655241a4943"
  1196. }
  1197. },
  1198. {
  1199. "location": {
  1200. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarreader.h"
  1201. },
  1202. "hashes": {
  1203. "md5": "36d0223ff59c5e0d9188b1b320551252"
  1204. }
  1205. },
  1206. {
  1207. "location": {
  1208. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarcommon.h"
  1209. },
  1210. "hashes": {
  1211. "md5": "fedb9c14ea9552e34ecbc9df2435cae4"
  1212. }
  1213. },
  1214. {
  1215. "location": {
  1216. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarlimitedreader.cpp"
  1217. },
  1218. "roles": [
  1219. "analysisTarget"
  1220. ],
  1221. "hashes": {
  1222. "md5": "d0cea196de91058ffaf40245c74b36cb"
  1223. }
  1224. },
  1225. {
  1226. "location": {
  1227. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarlimitedreader.h"
  1228. },
  1229. "hashes": {
  1230. "md5": "bffe6db187aad248f26ef571079616f7"
  1231. }
  1232. },
  1233. {
  1234. "location": {
  1235. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarexpandedreader.cpp"
  1236. },
  1237. "roles": [
  1238. "analysisTarget"
  1239. ],
  1240. "hashes": {
  1241. "md5": "ffbc549a479ba401ad81aed757b99e6d"
  1242. }
  1243. },
  1244. {
  1245. "location": {
  1246. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarexpandedreader.h"
  1247. },
  1248. "hashes": {
  1249. "md5": "d8ca9a3279d5536a5c4791c32e1276ba"
  1250. }
  1251. },
  1252. {
  1253. "location": {
  1254. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarexpandedbitdecoder.h"
  1255. },
  1256. "hashes": {
  1257. "md5": "343ed2920a17cc0ea3d3cbb4837790d9"
  1258. }
  1259. },
  1260. {
  1261. "location": {
  1262. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarexpandedbitdecoder.cpp"
  1263. },
  1264. "roles": [
  1265. "analysisTarget"
  1266. ],
  1267. "hashes": {
  1268. "md5": "8b8b22842058d86e47be1b6d0e6da8fb"
  1269. }
  1270. },
  1271. {
  1272. "location": {
  1273. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarcommon.cpp"
  1274. },
  1275. "roles": [
  1276. "analysisTarget"
  1277. ],
  1278. "hashes": {
  1279. "md5": "805cd0c2990143101742e45b78b22df3"
  1280. }
  1281. },
  1282. {
  1283. "location": {
  1284. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode93writer.cpp"
  1285. },
  1286. "roles": [
  1287. "analysisTarget"
  1288. ],
  1289. "hashes": {
  1290. "md5": "d55a72bd7bb1f67ee5a1587259175667"
  1291. }
  1292. },
  1293. {
  1294. "location": {
  1295. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode93writer.h"
  1296. },
  1297. "hashes": {
  1298. "md5": "e21e43ea2a7c4ef698c3123d8edfd810"
  1299. }
  1300. },
  1301. {
  1302. "location": {
  1303. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode93reader.cpp"
  1304. },
  1305. "roles": [
  1306. "analysisTarget"
  1307. ],
  1308. "hashes": {
  1309. "md5": "76216fcc5634e0a9a94b72e64f65e682"
  1310. }
  1311. },
  1312. {
  1313. "location": {
  1314. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode93reader.h"
  1315. },
  1316. "hashes": {
  1317. "md5": "b970ab9ffedd54e31cfc7f66a7a92973"
  1318. }
  1319. },
  1320. {
  1321. "location": {
  1322. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode39writer.cpp"
  1323. },
  1324. "roles": [
  1325. "analysisTarget"
  1326. ],
  1327. "hashes": {
  1328. "md5": "f87a46064f0fecf8d3d66b1784e9245a"
  1329. }
  1330. },
  1331. {
  1332. "location": {
  1333. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode39writer.h"
  1334. },
  1335. "hashes": {
  1336. "md5": "00b22bb1785d0010c5232f669e226092"
  1337. }
  1338. },
  1339. {
  1340. "location": {
  1341. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode39reader.cpp"
  1342. },
  1343. "roles": [
  1344. "analysisTarget"
  1345. ],
  1346. "hashes": {
  1347. "md5": "b49c8976433d7ed98478c5846cc20022"
  1348. }
  1349. },
  1350. {
  1351. "location": {
  1352. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode39reader.h"
  1353. },
  1354. "hashes": {
  1355. "md5": "9b89754e8714aa8ea2d3a393a5be77c6"
  1356. }
  1357. },
  1358. {
  1359. "location": {
  1360. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/oned/ODCode128Writer.cpp"
  1361. },
  1362. "roles": [
  1363. "analysisTarget",
  1364. "resultFile"
  1365. ],
  1366. "hashes": {
  1367. "md5": "f0c5d3dc982c63e51ab47f5074cfc366"
  1368. }
  1369. },
  1370. {
  1371. "location": {
  1372. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128writer.h"
  1373. },
  1374. "hashes": {
  1375. "md5": "48e39499c45a74da44238206da61f572"
  1376. }
  1377. },
  1378. {
  1379. "location": {
  1380. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128patterns.h"
  1381. },
  1382. "hashes": {
  1383. "md5": "814fbdff8eacbf258d4b12ee23213b65"
  1384. }
  1385. },
  1386. {
  1387. "location": {
  1388. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128reader.cpp"
  1389. },
  1390. "roles": [
  1391. "analysisTarget"
  1392. ],
  1393. "hashes": {
  1394. "md5": "ee77c6df1707bacf7c34e10620a7d1ce"
  1395. }
  1396. },
  1397. {
  1398. "location": {
  1399. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128reader.h"
  1400. },
  1401. "hashes": {
  1402. "md5": "dcd639b8325b1d640492a23140648455"
  1403. }
  1404. },
  1405. {
  1406. "location": {
  1407. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128patterns.cpp"
  1408. },
  1409. "roles": [
  1410. "analysisTarget"
  1411. ],
  1412. "hashes": {
  1413. "md5": "8a7a2cc965a6ecb86530a4a5947a031f"
  1414. }
  1415. },
  1416. {
  1417. "location": {
  1418. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcodabarwriter.cpp"
  1419. },
  1420. "roles": [
  1421. "analysisTarget"
  1422. ],
  1423. "hashes": {
  1424. "md5": "18d87f1878523507ae5ce12ed363bf59"
  1425. }
  1426. },
  1427. {
  1428. "location": {
  1429. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcodabarwriter.h"
  1430. },
  1431. "hashes": {
  1432. "md5": "3a62c2b85e894bf72a4cd25f74b971e0"
  1433. }
  1434. },
  1435. {
  1436. "location": {
  1437. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcodabarreader.cpp"
  1438. },
  1439. "roles": [
  1440. "analysisTarget"
  1441. ],
  1442. "hashes": {
  1443. "md5": "f23e907f560f3bd0ddb6658f03a23824"
  1444. }
  1445. },
  1446. {
  1447. "location": {
  1448. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcodabarreader.h"
  1449. },
  1450. "hashes": {
  1451. "md5": "db231cf4418545a5f8262836408f28b6"
  1452. }
  1453. },
  1454. {
  1455. "location": {
  1456. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/multiformatwriter.cpp"
  1457. },
  1458. "roles": [
  1459. "analysisTarget"
  1460. ],
  1461. "hashes": {
  1462. "md5": "80ce1424ab3c9332b4adb5f1ecd50433"
  1463. }
  1464. },
  1465. {
  1466. "location": {
  1467. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/multiformatwriter.h"
  1468. },
  1469. "hashes": {
  1470. "md5": "46a755172a0dc1e99110e671c28551cc"
  1471. }
  1472. },
  1473. {
  1474. "location": {
  1475. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oditfwriter.h"
  1476. },
  1477. "hashes": {
  1478. "md5": "9a133083894436dad97d37fd0911c77f"
  1479. }
  1480. },
  1481. {
  1482. "location": {
  1483. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupcawriter.h"
  1484. },
  1485. "hashes": {
  1486. "md5": "efd016543b72b9f8be24206e0128923e"
  1487. }
  1488. },
  1489. {
  1490. "location": {
  1491. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupcewriter.h"
  1492. },
  1493. "hashes": {
  1494. "md5": "bca6ed96508466c45830f57a54b029b1"
  1495. }
  1496. },
  1497. {
  1498. "location": {
  1499. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfwriter.h"
  1500. },
  1501. "hashes": {
  1502. "md5": "69ecf7835af71302147e3d94b0a44ed1"
  1503. }
  1504. },
  1505. {
  1506. "location": {
  1507. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrerrorcorrectionlevel.h"
  1508. },
  1509. "hashes": {
  1510. "md5": "7c57453182f8b65aaf5c213c94192ad3"
  1511. }
  1512. },
  1513. {
  1514. "location": {
  1515. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrwriter.h"
  1516. },
  1517. "hashes": {
  1518. "md5": "29ec391c2d6117ac6a292d0c58cb985c"
  1519. }
  1520. },
  1521. {
  1522. "location": {
  1523. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/multiformatreader.cpp"
  1524. },
  1525. "roles": [
  1526. "analysisTarget"
  1527. ],
  1528. "hashes": {
  1529. "md5": "47f068be49441e5b445457a8626d3ae3"
  1530. }
  1531. },
  1532. {
  1533. "location": {
  1534. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/multiformatreader.h"
  1535. },
  1536. "hashes": {
  1537. "md5": "831416b587033d3b35bf7cd004b827ee"
  1538. }
  1539. },
  1540. {
  1541. "location": {
  1542. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odreader.h"
  1543. },
  1544. "hashes": {
  1545. "md5": "a7a7e895e7b29625f39a5c29fc214788"
  1546. }
  1547. },
  1548. {
  1549. "location": {
  1550. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfreader.h"
  1551. },
  1552. "hashes": {
  1553. "md5": "2c44d51b1d16383b7229f051abfff2c7"
  1554. }
  1555. },
  1556. {
  1557. "location": {
  1558. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrreader.h"
  1559. },
  1560. "hashes": {
  1561. "md5": "caa7651d1cd22b3a57e880e190240fba"
  1562. }
  1563. },
  1564. {
  1565. "location": {
  1566. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfscanningdecoder.cpp"
  1567. },
  1568. "roles": [
  1569. "analysisTarget"
  1570. ],
  1571. "hashes": {
  1572. "md5": "5be82a7d50c07480f0c43ba64d33c531"
  1573. }
  1574. },
  1575. {
  1576. "location": {
  1577. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfscanningdecoder.h"
  1578. },
  1579. "hashes": {
  1580. "md5": "7b0acfded2863a3d38559056dd08c0b8"
  1581. }
  1582. },
  1583. {
  1584. "location": {
  1585. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfbarcodemetadata.h"
  1586. },
  1587. "hashes": {
  1588. "md5": "365857c0ffaefbd619f545b886a71e25"
  1589. }
  1590. },
  1591. {
  1592. "location": {
  1593. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfbarcodevalue.h"
  1594. },
  1595. "hashes": {
  1596. "md5": "dd28b98593979363bf941870e8cdab71"
  1597. }
  1598. },
  1599. {
  1600. "location": {
  1601. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfcodeworddecoder.h"
  1602. },
  1603. "hashes": {
  1604. "md5": "ee7dd160e5fd4684ca2803c90890160f"
  1605. }
  1606. },
  1607. {
  1608. "location": {
  1609. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetectionresult.h"
  1610. },
  1611. "hashes": {
  1612. "md5": "921c461ceec1f743f7b6d162bd34a7e7"
  1613. }
  1614. },
  1615. {
  1616. "location": {
  1617. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfboundingbox.h"
  1618. },
  1619. "hashes": {
  1620. "md5": "959a6835fe2cf93f16004f2faa606f53"
  1621. }
  1622. },
  1623. {
  1624. "location": {
  1625. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/zxnullable.h"
  1626. },
  1627. "hashes": {
  1628. "md5": "0f9e764b283be3e8dbf41f9a7b147ed5"
  1629. }
  1630. },
  1631. {
  1632. "location": {
  1633. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetectionresultcolumn.h"
  1634. },
  1635. "hashes": {
  1636. "md5": "c69d2edff861fad0c53ae3378d2c79c2"
  1637. }
  1638. },
  1639. {
  1640. "location": {
  1641. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfcodeword.h"
  1642. },
  1643. "hashes": {
  1644. "md5": "0287698ec7d8eb7c4f7605ece2e8e9f2"
  1645. }
  1646. },
  1647. {
  1648. "location": {
  1649. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdecoder.h"
  1650. },
  1651. "hashes": {
  1652. "md5": "e75cedecde03f312ddf87cffe433a31c"
  1653. }
  1654. },
  1655. {
  1656. "location": {
  1657. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdecoderresultextra.h"
  1658. },
  1659. "hashes": {
  1660. "md5": "45b4edc3f30776b1579102726aec76e7"
  1661. }
  1662. },
  1663. {
  1664. "location": {
  1665. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/customdata.h"
  1666. },
  1667. "hashes": {
  1668. "md5": "3c3812763951d78569d40f490bf5751a"
  1669. }
  1670. },
  1671. {
  1672. "location": {
  1673. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfmodulusgf.h"
  1674. },
  1675. "hashes": {
  1676. "md5": "94a98a8372ab0e6269bb192a99f454ab"
  1677. }
  1678. },
  1679. {
  1680. "location": {
  1681. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfmoduluspoly.h"
  1682. },
  1683. "hashes": {
  1684. "md5": "b07b42fae063f32eea268655e7104a66"
  1685. }
  1686. },
  1687. {
  1688. "location": {
  1689. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/pdf417/PDFReader.cpp"
  1690. },
  1691. "roles": [
  1692. "analysisTarget",
  1693. "resultFile"
  1694. ],
  1695. "hashes": {
  1696. "md5": "8279666cd69a57c60a81bf680a81fd53"
  1697. }
  1698. },
  1699. {
  1700. "location": {
  1701. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetector.h"
  1702. },
  1703. "hashes": {
  1704. "md5": "43e7a3ff04b697b0c73c2bb051e42cc9"
  1705. }
  1706. },
  1707. {
  1708. "location": {
  1709. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfmoduluspoly.cpp"
  1710. },
  1711. "roles": [
  1712. "analysisTarget"
  1713. ],
  1714. "hashes": {
  1715. "md5": "76d8c8b6bf1352c10543e0df1fa6eef0"
  1716. }
  1717. },
  1718. {
  1719. "location": {
  1720. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfmodulusgf.cpp"
  1721. },
  1722. "roles": [
  1723. "analysisTarget"
  1724. ],
  1725. "hashes": {
  1726. "md5": "5dc407e9ca9245082ef4bea50e847745"
  1727. }
  1728. },
  1729. {
  1730. "location": {
  1731. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfhighlevelencoder.cpp"
  1732. },
  1733. "roles": [
  1734. "analysisTarget"
  1735. ],
  1736. "hashes": {
  1737. "md5": "54807b3c8b8aaeec0b3935f9657e19d6"
  1738. }
  1739. },
  1740. {
  1741. "location": {
  1742. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfhighlevelencoder.h"
  1743. },
  1744. "hashes": {
  1745. "md5": "d278fb5428633d2d09872a3d3a5e3973"
  1746. }
  1747. },
  1748. {
  1749. "location": {
  1750. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfcompaction.h"
  1751. },
  1752. "hashes": {
  1753. "md5": "9e45b30e8a7c43c5b35ddb0506cf5383"
  1754. }
  1755. },
  1756. {
  1757. "location": {
  1758. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/zxbiginteger.h"
  1759. },
  1760. "hashes": {
  1761. "md5": "6031d289f09b68ad25f33665ca3392df"
  1762. }
  1763. },
  1764. {
  1765. "location": {
  1766. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfencoder.cpp"
  1767. },
  1768. "roles": [
  1769. "analysisTarget"
  1770. ],
  1771. "hashes": {
  1772. "md5": "3b43e4ba229e0ae3ce676f2f7144f9c1"
  1773. }
  1774. },
  1775. {
  1776. "location": {
  1777. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfencoder.h"
  1778. },
  1779. "hashes": {
  1780. "md5": "e0df45ecbc2a0fa71c8cdeb8aa777ef2"
  1781. }
  1782. },
  1783. {
  1784. "location": {
  1785. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetector.cpp"
  1786. },
  1787. "roles": [
  1788. "analysisTarget"
  1789. ],
  1790. "hashes": {
  1791. "md5": "6479b0961349433955b39e4f056f222c"
  1792. }
  1793. },
  1794. {
  1795. "location": {
  1796. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetectionresultcolumn.cpp"
  1797. },
  1798. "roles": [
  1799. "analysisTarget"
  1800. ],
  1801. "hashes": {
  1802. "md5": "60bedb77c4220ecb013daea666c59f5e"
  1803. }
  1804. },
  1805. {
  1806. "location": {
  1807. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetectionresult.cpp"
  1808. },
  1809. "roles": [
  1810. "analysisTarget"
  1811. ],
  1812. "hashes": {
  1813. "md5": "9095b41da134093107ac99beb9a2332b"
  1814. }
  1815. },
  1816. {
  1817. "location": {
  1818. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdecoder.cpp"
  1819. },
  1820. "roles": [
  1821. "analysisTarget"
  1822. ],
  1823. "hashes": {
  1824. "md5": "4b087f04e56f7b8258687a00226d2a62"
  1825. }
  1826. },
  1827. {
  1828. "location": {
  1829. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfcodeworddecoder.cpp"
  1830. },
  1831. "roles": [
  1832. "analysisTarget"
  1833. ],
  1834. "hashes": {
  1835. "md5": "6c5637df9332c5263a6159caeee60d08"
  1836. }
  1837. },
  1838. {
  1839. "location": {
  1840. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfboundingbox.cpp"
  1841. },
  1842. "roles": [
  1843. "analysisTarget"
  1844. ],
  1845. "hashes": {
  1846. "md5": "1e365e22d5c7db5ffded89b5b2c063f8"
  1847. }
  1848. },
  1849. {
  1850. "location": {
  1851. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfbarcodevalue.cpp"
  1852. },
  1853. "roles": [
  1854. "analysisTarget"
  1855. ],
  1856. "hashes": {
  1857. "md5": "95f99de531436f1bafb2014d1e22ecc4"
  1858. }
  1859. },
  1860. {
  1861. "location": {
  1862. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odwriterhelper.cpp"
  1863. },
  1864. "roles": [
  1865. "analysisTarget"
  1866. ],
  1867. "hashes": {
  1868. "md5": "db450744a24afdb5b57b0c23ef67371a"
  1869. }
  1870. },
  1871. {
  1872. "location": {
  1873. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupcewriter.cpp"
  1874. },
  1875. "roles": [
  1876. "analysisTarget"
  1877. ],
  1878. "hashes": {
  1879. "md5": "2313d49cff7e34821e4669befb52b561"
  1880. }
  1881. },
  1882. {
  1883. "location": {
  1884. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupceancommon.cpp"
  1885. },
  1886. "roles": [
  1887. "analysisTarget"
  1888. ],
  1889. "hashes": {
  1890. "md5": "6c0ba6914f9e7432e9bae51992eaa9fa"
  1891. }
  1892. },
  1893. {
  1894. "location": {
  1895. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupcawriter.cpp"
  1896. },
  1897. "roles": [
  1898. "analysisTarget"
  1899. ],
  1900. "hashes": {
  1901. "md5": "364d566f89dc39b9303700761bd51c8f"
  1902. }
  1903. },
  1904. {
  1905. "location": {
  1906. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odreader.cpp"
  1907. },
  1908. "roles": [
  1909. "analysisTarget"
  1910. ],
  1911. "hashes": {
  1912. "md5": "bd07a56df6a2fe730569165bffe8f6e5"
  1913. }
  1914. },
  1915. {
  1916. "location": {
  1917. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odmultiupceanreader.h"
  1918. },
  1919. "hashes": {
  1920. "md5": "540e290b83ddfee1b24ddc33a6a67c98"
  1921. }
  1922. },
  1923. {
  1924. "location": {
  1925. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/oned/ODMultiUPCEANReader.cpp"
  1926. },
  1927. "roles": [
  1928. "analysisTarget",
  1929. "resultFile"
  1930. ],
  1931. "hashes": {
  1932. "md5": "313dc15e5fea959bbc83505f84fd8215"
  1933. }
  1934. },
  1935. {
  1936. "location": {
  1937. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oditfwriter.cpp"
  1938. },
  1939. "roles": [
  1940. "analysisTarget"
  1941. ],
  1942. "hashes": {
  1943. "md5": "cb74721b163bba251924d16eb8ef8174"
  1944. }
  1945. },
  1946. {
  1947. "location": {
  1948. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/resultpoint.cpp"
  1949. },
  1950. "roles": [
  1951. "analysisTarget"
  1952. ],
  1953. "hashes": {
  1954. "md5": "6b805b3f0000b686358318f750c500cf"
  1955. }
  1956. },
  1957. {
  1958. "location": {
  1959. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reedsolomonencoder.cpp"
  1960. },
  1961. "roles": [
  1962. "analysisTarget"
  1963. ],
  1964. "hashes": {
  1965. "md5": "93562e10945ad2c8621df03a45db2b58"
  1966. }
  1967. },
  1968. {
  1969. "location": {
  1970. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reedsolomondecoder.cpp"
  1971. },
  1972. "roles": [
  1973. "analysisTarget"
  1974. ],
  1975. "hashes": {
  1976. "md5": "428065bda8c3eb06d59611d9f05a1af5"
  1977. }
  1978. },
  1979. {
  1980. "location": {
  1981. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/ReadBarcode.cpp"
  1982. },
  1983. "roles": [
  1984. "analysisTarget",
  1985. "resultFile"
  1986. ],
  1987. "hashes": {
  1988. "md5": "eacb6f2a6d8c566ee38b708f08ceecab"
  1989. }
  1990. },
  1991. {
  1992. "location": {
  1993. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/thresholdbinarizer.h"
  1994. },
  1995. "hashes": {
  1996. "md5": "4796a45cd1c506299c98fcaa888fc25e"
  1997. }
  1998. },
  1999. {
  2000. "location": {
  2001. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrwriter.cpp"
  2002. },
  2003. "roles": [
  2004. "analysisTarget"
  2005. ],
  2006. "hashes": {
  2007. "md5": "e8df1df8eac2bc43058a89c8f5324b34"
  2008. }
  2009. },
  2010. {
  2011. "location": {
  2012. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrencoderesult.h"
  2013. },
  2014. "hashes": {
  2015. "md5": "beb97d14fb439166ceed0e7f989bbaeb"
  2016. }
  2017. },
  2018. {
  2019. "location": {
  2020. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrcodecmode.h"
  2021. },
  2022. "hashes": {
  2023. "md5": "b20ddd075bda8ba0b3384232f04bb633"
  2024. }
  2025. },
  2026. {
  2027. "location": {
  2028. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrversion.h"
  2029. },
  2030. "hashes": {
  2031. "md5": "b6348982e72558869172703e8babe16d"
  2032. }
  2033. },
  2034. {
  2035. "location": {
  2036. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrecb.h"
  2037. },
  2038. "hashes": {
  2039. "md5": "70443507ebdcfc02feb932ade168de51"
  2040. }
  2041. },
  2042. {
  2043. "location": {
  2044. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrencoder.h"
  2045. },
  2046. "hashes": {
  2047. "md5": "71c257aa6c7602e5067c3a3ef42532b0"
  2048. }
  2049. },
  2050. {
  2051. "location": {
  2052. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrversion.cpp"
  2053. },
  2054. "roles": [
  2055. "analysisTarget"
  2056. ],
  2057. "hashes": {
  2058. "md5": "b681fe189cc82660ff1e7a877e7b6b02"
  2059. }
  2060. },
  2061. {
  2062. "location": {
  2063. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrreader.cpp"
  2064. },
  2065. "roles": [
  2066. "analysisTarget"
  2067. ],
  2068. "hashes": {
  2069. "md5": "6cdaeef56aaaf22d5fe1b88e2b31dc85"
  2070. }
  2071. },
  2072. {
  2073. "location": {
  2074. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdecoder.h"
  2075. },
  2076. "hashes": {
  2077. "md5": "7fa2d4caf1978f3d138fe5f9ec00c1e4"
  2078. }
  2079. },
  2080. {
  2081. "location": {
  2082. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdetector.h"
  2083. },
  2084. "hashes": {
  2085. "md5": "9921afb85441d8f5e59215a477433523"
  2086. }
  2087. }
  2088. ]
  2089. }
  2090. ]
  2091. }