| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376 |
- {
- "version": "2.1.0",
- "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
- "runs": [
- {
- "results": [],
- "tool": {
- "driver": {
- "name": "PREfast",
- "fullName": "PREfast Code Analysis",
- "version": "14.29.30159.0",
- "informationUri": "https://aka.ms/cpp/ca"
- }
- },
- "invocations": [
- {
- "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_607d976bast -typedil -f ..\\..\\thirdparty\\zxing-cpp\\core\\src\\Utf.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\\Utf.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",
- "executionSuccessful": true
- }
- ],
- "artifacts": [
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdatablock.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "0a2edea71569ac6006896200f52faef4"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdatablock.h"
- },
- "hashes": {
- "md5": "7af579a7287ca191516515d009631446"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bytearray.h"
- },
- "hashes": {
- "md5": "394daf22d60d54e8d73772e4b26c7593"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmversion.h"
- },
- "hashes": {
- "md5": "ffab83bd458b786c08cec951dc865d3a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxalgorithms.h"
- },
- "hashes": {
- "md5": "59023869d1cd54f12ac7c920ed23158f"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/error.h"
- },
- "hashes": {
- "md5": "052efb776bebb46a08fe99a93eaee164"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmbitlayout.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "b22da69dfbb61df5c7c849e6877d3bb3"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmbitlayout.h"
- },
- "hashes": {
- "md5": "0cc6f78c215a07b006e2fe0ea7c4ae37"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitarray.h"
- },
- "hashes": {
- "md5": "24304cd92376cbf171f2f33afe6250ca"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/range.h"
- },
- "hashes": {
- "md5": "dff14ee85fe2b1ebcd848a72180349a2"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrix.h"
- },
- "hashes": {
- "md5": "e739b433b3f737055e55b025246df9e9"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/matrix.h"
- },
- "hashes": {
- "md5": "c1ced7a83d8b35f0bc16f1520add86e8"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/point.h"
- },
- "hashes": {
- "md5": "337a26110af1d20874a7103a12e041ac"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/content.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ba1fc5fc1aa77d2f349407bded21c616"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/content.h"
- },
- "hashes": {
- "md5": "8e1b0252195655cfbfb6cb75712a4d86"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/characterset.h"
- },
- "hashes": {
- "md5": "3a38a899df3c51fa891d758d490d7d71"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/readeroptions.h"
- },
- "hashes": {
- "md5": "2a7e7df74a6600b31c2e3b79981c98d1"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/barcodeformat.h"
- },
- "hashes": {
- "md5": "222722528c5d5be593072542533c52c3"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/flags.h"
- },
- "hashes": {
- "md5": "9484105b4623ca5049f778bcf079e783"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bithacks.h"
- },
- "hashes": {
- "md5": "2021c737b0cf71e0c841ce67b55c4883"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/eci.h"
- },
- "hashes": {
- "md5": "baeca69f40328c1c8ec899b87817d458"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/hri.h"
- },
- "hashes": {
- "md5": "d107a2d84aad4502455fc56776284c2e"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/textdecoder.h"
- },
- "hashes": {
- "md5": "879c2f214ecbb9bb8f62abb55dfdb6dd"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/utf.h"
- },
- "hashes": {
- "md5": "7c1c8fc35484c31b2cd36d2ca48f6e0b"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/zxing-cpp/version.h"
- },
- "hashes": {
- "md5": "94a8d4ff2db0583c93f16a207a8f15c4"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/concentricfinder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "fb664fa8ca5bb8cf46f7f18e7a4bc45b"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/concentricfinder.h"
- },
- "hashes": {
- "md5": "963f667e3adb1d3e5a20046e5b3cccb6"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrixcursor.h"
- },
- "hashes": {
- "md5": "4ab83ec6c5db30598654e10978e573e3"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pattern.h"
- },
- "hashes": {
- "md5": "b6dc9d25a4cf527f88a5be5388cd0e34"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/quadrilateral.h"
- },
- "hashes": {
- "md5": "7a4cb78c5685810a545af44cb4aed7a9"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/logmatrix.h"
- },
- "hashes": {
- "md5": "b0abe2a1f290a399843ae1e7e6fc5986"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/regressionline.h"
- },
- "hashes": {
- "md5": "d834dd0b5851941db98d4ce78498fdce"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/characterset.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "0b630ecd6e7ce1f39364cbbd9eefca8f"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitsource.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "96d13b7193a11e0f41763412674d15af"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitsource.h"
- },
- "hashes": {
- "md5": "ad9c5156e2ea28f924fba414c840b104"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrixio.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "78fcc6d99733131c42c7e25d863f6fd4"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrixio.h"
- },
- "hashes": {
- "md5": "92d277b2e3b8dcb9e750528cd197d3d4"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitmatrix.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "2349f5767bc0edb0bfd26c3f2614837b"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bitarray.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ac5f0b4f11bff75756663b64ba56f6ac"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/binarybitmap.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "73640955a8ff3b3a93f78989fb40cc84"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/binarybitmap.h"
- },
- "hashes": {
- "md5": "ac6981b0940cbf592a91cb61ca42b68c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/imageview.h"
- },
- "hashes": {
- "md5": "6d9d0b29654d36b0e6a28ed7f3fffec7"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/barcodeformat.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "cc43c6e2e3323447ec339fcfa6212d6c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/barcode.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "045bdf4601bfff59043f0992fe148177"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/barcode.h"
- },
- "hashes": {
- "md5": "f0201af8b7a8191fd1ba6762c7e11fa6"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/structuredappend.h"
- },
- "hashes": {
- "md5": "3a86a242daf37a5d0e2789d842e50c9f"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/decoderresult.h"
- },
- "hashes": {
- "md5": "b58781c9d5fed0ec1e6629ece435e0ee"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/detectorresult.h"
- },
- "hashes": {
- "md5": "a730cd9d3bf3ab7c6f1cf3c674061015"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zint.h"
- },
- "hashes": {
- "md5": "52ace3d3df4d440075f3460c1759b827"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azwriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "bd0b30ad2b62713409656a322bd20b8d"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azwriter.h"
- },
- "hashes": {
- "md5": "1a5e58fa0703173aeb812055b285b28d"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azencoder.h"
- },
- "hashes": {
- "md5": "18a112176d889a44c0810eea93cfb024"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/textencoder.h"
- },
- "hashes": {
- "md5": "5ab601c323bda5e0e716e3dcaffe69de"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/aztoken.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "eeaa8cee9c17ecb4ff3c291040d0b132"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/aztoken.h"
- },
- "hashes": {
- "md5": "79f60f673945a56ace78b5f46d3e21e0"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "45d8bb1b1234475a5d958f15a6a26941"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azreader.h"
- },
- "hashes": {
- "md5": "6c48af898c2128eb342fa39c54d3a71a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reader.h"
- },
- "hashes": {
- "md5": "ce6e57eb4975670d8ceba4c923c32f84"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdecoder.h"
- },
- "hashes": {
- "md5": "387f2f13abeb632f12b4784d6a127c41"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdetector.h"
- },
- "hashes": {
- "md5": "deb830130a7b5db04730bb9e5f9e5c3a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdetectorresult.h"
- },
- "hashes": {
- "md5": "64d784cd56b259ad4cb59f3c178849e3"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azhighlevelencoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "b8e60d9f04c9e2b37c09f07fa746e253"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azhighlevelencoder.h"
- },
- "hashes": {
- "md5": "033e0e4e8bcba01e97b906b0693906af"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azencodingstate.h"
- },
- "hashes": {
- "md5": "11f691df7bf5cbf6f08922ec5b2069e1"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azencoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "4710ee6a93d45d5b2530655b9482a54d"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/genericgf.h"
- },
- "hashes": {
- "md5": "a8d5887f127818719d816ad526af7c0b"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/genericgfpoly.h"
- },
- "hashes": {
- "md5": "32a969a7232a9736ebcff9541710c736"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxconfig.h"
- },
- "hashes": {
- "md5": "18ce7c8ab62b23502f4dd7b8e1caff08"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reedsolomonencoder.h"
- },
- "hashes": {
- "md5": "686d24bd1e374388627df7268ed2d50c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxtestsupport.h"
- },
- "hashes": {
- "md5": "fe54d8e5ed02bc740d586809b43397ca"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdetector.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "8cf081e15ba565f30b8a323043bf93f5"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/gridsampler.h"
- },
- "hashes": {
- "md5": "f1c77db31c0900cb6cb6e8be89b9088b"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/perspectivetransform.h"
- },
- "roles": [
- "resultFile"
- ],
- "hashes": {
- "md5": "4d3f8aec75c72abc05dc2a379f792b57"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reedsolomondecoder.h"
- },
- "hashes": {
- "md5": "f410a2e26888a2b9645e3b139fcea714"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/aztec/azdecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "65602645142acd20fed028bc470cde11"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/zxing-cpp/eci_dedup.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "7723ee66ab04b7cd6a7170d7f77bbd1f"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/eci.cpp"
- },
- "hashes": {
- "md5": "314bcd0c1e56684b32105de1fe3b36b2"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "974e3e9e51333b502da36c65d36b876a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcreader.h"
- },
- "hashes": {
- "md5": "aa4a0a36cecf4efea47902a9ee946379"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcbitmatrixparser.h"
- },
- "hashes": {
- "md5": "d57b53bc478901bb408308536bb86b15"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcdecoder.h"
- },
- "hashes": {
- "md5": "aaa02a12cf07b6ee35446192a5706ec7"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcdecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "bf765ff1071ef04f50fa98753c7ed118"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/maxicode/mcbitmatrixparser.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "6ff5c6e1ec894721a35f47d080885e38"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/hybridbinarizer.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "a17daf2289911fa47b7e3e17666dc89a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/hybridbinarizer.h"
- },
- "hashes": {
- "md5": "ace403a9672f5b8a1324ff0c400e6f68"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/globalhistogrambinarizer.h"
- },
- "hashes": {
- "md5": "65331d0bb8f9845470b3dc4bd402a7cf"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/hri.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ce1af1fb666abe6d49018ccab5ac2631"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/gtin.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "7eecc1e93a842dd2f9e1227c0baf37fb"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/gtin.h"
- },
- "hashes": {
- "md5": "9e45cd5b8144d243de91873800dc6cdb"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/gridsampler.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "194afe590eb647f3a86ab9835688ce2e"
- }
- },
- {
- "location": {
- "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/GlobalHistogramBinarizer.cpp"
- },
- "roles": [
- "analysisTarget",
- "resultFile"
- ],
- "hashes": {
- "md5": "5732f83020f0eacab0a21c7eca65fd95"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/genericgfpoly.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ed5541ad342eaf75f266b2c6f61ee22a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/genericgf.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "afb593590b2b4fa436b9203e4622881c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/error.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "b46be24aa643f7080ebb6cc3ba94c36e"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/decodehints.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "0e0404860cefce17fe4bc1d2effc66af"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/readbarcode.h"
- },
- "hashes": {
- "md5": "a8bbadbb5bc57e38085bc735b59a9e2d"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmwriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ca853b63c84def8941ab4d88ae0534ba"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmwriter.h"
- },
- "hashes": {
- "md5": "dc4acab8520f09ce41cea28a32a25e75"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmsymbolshape.h"
- },
- "hashes": {
- "md5": "3968e35c22587b93cc9c9583b3248cae"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmecencoder.h"
- },
- "hashes": {
- "md5": "56936c214b502977a27d6ec00cf3c10c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmhighlevelencoder.h"
- },
- "hashes": {
- "md5": "9f3a90ca79c243e1023dc1703dc3abd5"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmsymbolinfo.h"
- },
- "hashes": {
- "md5": "da1e02c558129c6e430974b476202ab5"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmversion.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "33186f08b3ca86cca24fda6d0f88cb64"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmsymbolinfo.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "c76c1714476ef7a0c34ec276f12051a6"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "9cbd5393adec4c158d39c4ea2621cefc"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmreader.h"
- },
- "hashes": {
- "md5": "eca2c19cf8838155b721c2b220efcd9a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdecoder.h"
- },
- "hashes": {
- "md5": "f9029f0b6ed4c42fff1e572a21d364e7"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdetector.h"
- },
- "hashes": {
- "md5": "0b7ae2ebc2642b5b96830492788d4bf6"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/generator.h"
- },
- "hashes": {
- "md5": "f75e14c202daf37acd1118017f2611c0"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmhighlevelencoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "b8bae9970723742961fd9bb582595911"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmencodercontext.h"
- },
- "hashes": {
- "md5": "0c30e1ace816945353fc62957a415382"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmecencoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "10d069f0069a8640f31e5322251a2a1a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdetector.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "cdd4d0bafba82818f55e374a5fcf6bda"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/bytematrix.h"
- },
- "hashes": {
- "md5": "dec4cf780d9d20598b05a4d33c4f8f75"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/resultpoint.h"
- },
- "hashes": {
- "md5": "9de0ae7cf7038a9e73952f9d73963346"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/scope.h"
- },
- "hashes": {
- "md5": "7aefa01e1a04b87497f0da5fc98a1f15"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/whiterectdetector.h"
- },
- "hashes": {
- "md5": "ed42e30b6021ba3fd7a461e1c6cd7805"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/datamatrix/dmdecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "4b1a9767a8ec7c6ae771e804f8e5f1ed"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oditfreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "5bbc488a6af002919169eac5cf391f41"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oditfreader.h"
- },
- "hashes": {
- "md5": "537e30a1f1ce67dc760103ad9f32a688"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odrowreader.h"
- },
- "hashes": {
- "md5": "9c680b809778649da52ca68caa598054"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odean8writer.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "01dcfff82af235cf5cf4daebda351808"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odean8writer.h"
- },
- "hashes": {
- "md5": "e3a0872fec1efea5aef70ecfdd2a5207"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupceancommon.h"
- },
- "hashes": {
- "md5": "8b82d655ec5517acaebdc17820afc483"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odwriterhelper.h"
- },
- "hashes": {
- "md5": "322ec0aa07da5eca984374f652bbd3e6"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odean13writer.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "cd86f5588d34be29de4daa4d94c68283"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odean13writer.h"
- },
- "hashes": {
- "md5": "29d787812fa43fb7879b5a30372a532a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddxfilmedgereader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "e1fc9c347a3174c5fb872ccca94d96ad"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddxfilmedgereader.h"
- },
- "hashes": {
- "md5": "145992e2d1ce7b01e022ab10946fee2a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "4917270f4c33c8045dd1b655241a4943"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarreader.h"
- },
- "hashes": {
- "md5": "36d0223ff59c5e0d9188b1b320551252"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarcommon.h"
- },
- "hashes": {
- "md5": "fedb9c14ea9552e34ecbc9df2435cae4"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarlimitedreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "d0cea196de91058ffaf40245c74b36cb"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarlimitedreader.h"
- },
- "hashes": {
- "md5": "bffe6db187aad248f26ef571079616f7"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarexpandedreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ffbc549a479ba401ad81aed757b99e6d"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarexpandedreader.h"
- },
- "hashes": {
- "md5": "d8ca9a3279d5536a5c4791c32e1276ba"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarexpandedbitdecoder.h"
- },
- "hashes": {
- "md5": "343ed2920a17cc0ea3d3cbb4837790d9"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarexpandedbitdecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "8b8b22842058d86e47be1b6d0e6da8fb"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oddatabarcommon.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "805cd0c2990143101742e45b78b22df3"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode93writer.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "d55a72bd7bb1f67ee5a1587259175667"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode93writer.h"
- },
- "hashes": {
- "md5": "e21e43ea2a7c4ef698c3123d8edfd810"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode93reader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "76216fcc5634e0a9a94b72e64f65e682"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode93reader.h"
- },
- "hashes": {
- "md5": "b970ab9ffedd54e31cfc7f66a7a92973"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode39writer.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "f87a46064f0fecf8d3d66b1784e9245a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode39writer.h"
- },
- "hashes": {
- "md5": "00b22bb1785d0010c5232f669e226092"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode39reader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "b49c8976433d7ed98478c5846cc20022"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode39reader.h"
- },
- "hashes": {
- "md5": "9b89754e8714aa8ea2d3a393a5be77c6"
- }
- },
- {
- "location": {
- "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/oned/ODCode128Writer.cpp"
- },
- "roles": [
- "analysisTarget",
- "resultFile"
- ],
- "hashes": {
- "md5": "f0c5d3dc982c63e51ab47f5074cfc366"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128writer.h"
- },
- "hashes": {
- "md5": "48e39499c45a74da44238206da61f572"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128patterns.h"
- },
- "hashes": {
- "md5": "814fbdff8eacbf258d4b12ee23213b65"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128reader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ee77c6df1707bacf7c34e10620a7d1ce"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128reader.h"
- },
- "hashes": {
- "md5": "dcd639b8325b1d640492a23140648455"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcode128patterns.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "8a7a2cc965a6ecb86530a4a5947a031f"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcodabarwriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "18d87f1878523507ae5ce12ed363bf59"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcodabarwriter.h"
- },
- "hashes": {
- "md5": "3a62c2b85e894bf72a4cd25f74b971e0"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcodabarreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "f23e907f560f3bd0ddb6658f03a23824"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odcodabarreader.h"
- },
- "hashes": {
- "md5": "db231cf4418545a5f8262836408f28b6"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/multiformatwriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "80ce1424ab3c9332b4adb5f1ecd50433"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/multiformatwriter.h"
- },
- "hashes": {
- "md5": "46a755172a0dc1e99110e671c28551cc"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oditfwriter.h"
- },
- "hashes": {
- "md5": "9a133083894436dad97d37fd0911c77f"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupcawriter.h"
- },
- "hashes": {
- "md5": "efd016543b72b9f8be24206e0128923e"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupcewriter.h"
- },
- "hashes": {
- "md5": "bca6ed96508466c45830f57a54b029b1"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfwriter.h"
- },
- "hashes": {
- "md5": "69ecf7835af71302147e3d94b0a44ed1"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrerrorcorrectionlevel.h"
- },
- "hashes": {
- "md5": "7c57453182f8b65aaf5c213c94192ad3"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrwriter.h"
- },
- "hashes": {
- "md5": "29ec391c2d6117ac6a292d0c58cb985c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/multiformatreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "47f068be49441e5b445457a8626d3ae3"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/multiformatreader.h"
- },
- "hashes": {
- "md5": "831416b587033d3b35bf7cd004b827ee"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odreader.h"
- },
- "hashes": {
- "md5": "a7a7e895e7b29625f39a5c29fc214788"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfreader.h"
- },
- "hashes": {
- "md5": "2c44d51b1d16383b7229f051abfff2c7"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrreader.h"
- },
- "hashes": {
- "md5": "caa7651d1cd22b3a57e880e190240fba"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfscanningdecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "5be82a7d50c07480f0c43ba64d33c531"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfscanningdecoder.h"
- },
- "hashes": {
- "md5": "7b0acfded2863a3d38559056dd08c0b8"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfbarcodemetadata.h"
- },
- "hashes": {
- "md5": "365857c0ffaefbd619f545b886a71e25"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfbarcodevalue.h"
- },
- "hashes": {
- "md5": "dd28b98593979363bf941870e8cdab71"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfcodeworddecoder.h"
- },
- "hashes": {
- "md5": "ee7dd160e5fd4684ca2803c90890160f"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetectionresult.h"
- },
- "hashes": {
- "md5": "921c461ceec1f743f7b6d162bd34a7e7"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfboundingbox.h"
- },
- "hashes": {
- "md5": "959a6835fe2cf93f16004f2faa606f53"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/zxnullable.h"
- },
- "hashes": {
- "md5": "0f9e764b283be3e8dbf41f9a7b147ed5"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetectionresultcolumn.h"
- },
- "hashes": {
- "md5": "c69d2edff861fad0c53ae3378d2c79c2"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfcodeword.h"
- },
- "hashes": {
- "md5": "0287698ec7d8eb7c4f7605ece2e8e9f2"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdecoder.h"
- },
- "hashes": {
- "md5": "e75cedecde03f312ddf87cffe433a31c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdecoderresultextra.h"
- },
- "hashes": {
- "md5": "45b4edc3f30776b1579102726aec76e7"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/customdata.h"
- },
- "hashes": {
- "md5": "3c3812763951d78569d40f490bf5751a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfmodulusgf.h"
- },
- "hashes": {
- "md5": "94a98a8372ab0e6269bb192a99f454ab"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfmoduluspoly.h"
- },
- "hashes": {
- "md5": "b07b42fae063f32eea268655e7104a66"
- }
- },
- {
- "location": {
- "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/pdf417/PDFReader.cpp"
- },
- "roles": [
- "analysisTarget",
- "resultFile"
- ],
- "hashes": {
- "md5": "8279666cd69a57c60a81bf680a81fd53"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetector.h"
- },
- "hashes": {
- "md5": "43e7a3ff04b697b0c73c2bb051e42cc9"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfmoduluspoly.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "76d8c8b6bf1352c10543e0df1fa6eef0"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfmodulusgf.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "5dc407e9ca9245082ef4bea50e847745"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfhighlevelencoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "54807b3c8b8aaeec0b3935f9657e19d6"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfhighlevelencoder.h"
- },
- "hashes": {
- "md5": "d278fb5428633d2d09872a3d3a5e3973"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfcompaction.h"
- },
- "hashes": {
- "md5": "9e45b30e8a7c43c5b35ddb0506cf5383"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/zxbiginteger.h"
- },
- "hashes": {
- "md5": "6031d289f09b68ad25f33665ca3392df"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfencoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "3b43e4ba229e0ae3ce676f2f7144f9c1"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfencoder.h"
- },
- "hashes": {
- "md5": "e0df45ecbc2a0fa71c8cdeb8aa777ef2"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetector.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "6479b0961349433955b39e4f056f222c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetectionresultcolumn.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "60bedb77c4220ecb013daea666c59f5e"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdetectionresult.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "9095b41da134093107ac99beb9a2332b"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfdecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "4b087f04e56f7b8258687a00226d2a62"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfcodeworddecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "6c5637df9332c5263a6159caeee60d08"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfboundingbox.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "1e365e22d5c7db5ffded89b5b2c063f8"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfbarcodevalue.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "95f99de531436f1bafb2014d1e22ecc4"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odwriterhelper.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "db450744a24afdb5b57b0c23ef67371a"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupcewriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "2313d49cff7e34821e4669befb52b561"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupceancommon.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "6c0ba6914f9e7432e9bae51992eaa9fa"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odupcawriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "364d566f89dc39b9303700761bd51c8f"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "bd07a56df6a2fe730569165bffe8f6e5"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/odmultiupceanreader.h"
- },
- "hashes": {
- "md5": "540e290b83ddfee1b24ddc33a6a67c98"
- }
- },
- {
- "location": {
- "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/oned/ODMultiUPCEANReader.cpp"
- },
- "roles": [
- "analysisTarget",
- "resultFile"
- ],
- "hashes": {
- "md5": "313dc15e5fea959bbc83505f84fd8215"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/oned/oditfwriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "cb74721b163bba251924d16eb8ef8174"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/resultpoint.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "6b805b3f0000b686358318f750c500cf"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reedsolomonencoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "93562e10945ad2c8621df03a45db2b58"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/reedsolomondecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "428065bda8c3eb06d59611d9f05a1af5"
- }
- },
- {
- "location": {
- "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/ReadBarcode.cpp"
- },
- "roles": [
- "analysisTarget",
- "resultFile"
- ],
- "hashes": {
- "md5": "eacb6f2a6d8c566ee38b708f08ceecab"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/thresholdbinarizer.h"
- },
- "hashes": {
- "md5": "4796a45cd1c506299c98fcaa888fc25e"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrwriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "e8df1df8eac2bc43058a89c8f5324b34"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrencoderesult.h"
- },
- "hashes": {
- "md5": "beb97d14fb439166ceed0e7f989bbaeb"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrcodecmode.h"
- },
- "hashes": {
- "md5": "b20ddd075bda8ba0b3384232f04bb633"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrversion.h"
- },
- "hashes": {
- "md5": "b6348982e72558869172703e8babe16d"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrecb.h"
- },
- "hashes": {
- "md5": "70443507ebdcfc02feb932ade168de51"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrencoder.h"
- },
- "hashes": {
- "md5": "71c257aa6c7602e5067c3a3ef42532b0"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrversion.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "b681fe189cc82660ff1e7a877e7b6b02"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrreader.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "6cdaeef56aaaf22d5fe1b88e2b31dc85"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdecoder.h"
- },
- "hashes": {
- "md5": "7fa2d4caf1978f3d138fe5f9ec00c1e4"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdetector.h"
- },
- "hashes": {
- "md5": "9921afb85441d8f5e59215a477433523"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrmatrixutil.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "6d4eb9de774a7b61dcce2c8f0ed4cdba"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrmatrixutil.h"
- },
- "hashes": {
- "md5": "f7b6b3f75478d1f4f4be0638b2b5aeab"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/tritmatrix.h"
- },
- "hashes": {
- "md5": "415c34c9bb1f756b15815a9816267947"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdatamask.h"
- },
- "hashes": {
- "md5": "bf3cd543233c0d36e2dc195b7a1bfb31"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrmaskutil.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "13d496460687dc826060fbfcfdb95252"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrmaskutil.h"
- },
- "hashes": {
- "md5": "bd886bfc93df9e1f913c4fa49134ca97"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrformatinformation.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "e0f9457b3913721e7d53b3171c64404b"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrformatinformation.h"
- },
- "hashes": {
- "md5": "6c9c3fb61ab8a78731089e4ae13cd760"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrerrorcorrectionlevel.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "08f14c1bbb6c49ef9a6dc990f3072579"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrencoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "137255fe8477c2466448ff1ab92f216c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdetector.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "e9baa530e3e7cd0059debf74c3f70c3e"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdecoder.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ec31ca0306d2b0e75f026956796dc836"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrbitmatrixparser.h"
- },
- "hashes": {
- "md5": "12b4c9d49e312edfd9a8bfac19a77e3b"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdatablock.h"
- },
- "hashes": {
- "md5": "e505150f6b203295fc00879822867abd"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrdatablock.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "87eccecf8141be3f379d4ef28f1b0f95"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrcodecmode.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "82fcd1a814dda69be27e539d286dd5b8"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/qrcode/qrbitmatrixparser.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "ab56ce9fea85299ea99834b172f8e7a3"
- }
- },
- {
- "location": {
- "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zxing-cpp/core/src/PerspectiveTransform.cpp"
- },
- "roles": [
- "analysisTarget",
- "resultFile"
- ],
- "hashes": {
- "md5": "cbaf242bb8111b071203edf4ae04bd40"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/zxbiginteger.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "199d22c28462c17dd58938035d456bfe"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/pdf417/pdfwriter.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "b872412fa2d1c661ff440863fe0d8319"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxingcpp.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "110d8e1b9f5d0c66d1c4e4bbd0a8b5e7"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxingcpp.h"
- },
- "hashes": {
- "md5": "3d46a4b0fa0be01282923dd471418a3c"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/writebarcode.h"
- },
- "roles": [
- "resultFile"
- ],
- "hashes": {
- "md5": "2bb8c6f4ef72918cda9f51e9f74e2f2d"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxingc.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "25c4158059ef7101297d2f8341649ab1"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/zxingc.h"
- },
- "hashes": {
- "md5": "0f61bad80ea2cd4727bbe738b02105fd"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/writebarcode.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "52eeffc9c082bddfd4a942198b9b0099"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/whiterectdetector.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "8bb2029eb32dd5ab2569d12aef667985"
- }
- },
- {
- "location": {
- "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/utf.cpp"
- },
- "roles": [
- "analysisTarget"
- ],
- "hashes": {
- "md5": "a8a8ee61488fd642d9db58b2f56542f5"
- }
- }
- ]
- }
- ]
- }
|