WriteBarcode.nativecodeanalysis.sarif 81 KB

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