├── .eslintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .prettierrc.cjs ├── base ├── core │ ├── bidi.js │ ├── charsets.js │ ├── chunked_stream.js │ ├── cidmaps.js │ ├── cmap.js │ ├── core.js │ ├── crypto.js │ ├── evaluator.js │ ├── font_renderer.js │ ├── fonts.js │ ├── glyphlist.js │ ├── image.js │ ├── jbig2.js │ ├── jpg.js │ ├── jpx.js │ ├── metrics.js │ ├── network.js │ ├── obj.js │ ├── parser.js │ ├── pdf_manager.js │ ├── stream.js │ └── worker.js ├── display │ ├── api.js │ ├── canvas.js │ ├── font_loader.js │ └── metadata.js └── shared │ ├── annotation.js │ ├── cffStandardStrings.js │ ├── colorspace.js │ ├── fonts_utils.js │ ├── function.js │ ├── pattern.js │ └── util.js ├── bin └── pdf2json.js ├── jest.config.json ├── lib ├── parserstream.js ├── pdf.js ├── pdfanno.js ├── pdfcanvas.js ├── pdfconst.js ├── pdffield.js ├── pdffill.js ├── pdffont.js ├── pdfimage.js ├── pdfline.js ├── pdfunit.js ├── pkinfo.js ├── ptixmlinject.js └── simpleXmlParser.js ├── license.txt ├── package-lock.json ├── package.json ├── pdfparser.d.ts ├── pdfparser.js ├── readme.md ├── rollup.config.js ├── rollup └── bundle-pdfjs-base.js ├── src └── cli │ ├── p2jcli.ts │ └── p2jcliarg.ts ├── test ├── _test_.cjs ├── data │ ├── dc │ │ ├── availability.json │ │ ├── form │ │ │ ├── DC2210.content.txt │ │ │ ├── DC2210.fields.json │ │ │ ├── DC2210.json │ │ │ ├── DC40.content.txt │ │ │ ├── DC40.fields.json │ │ │ ├── DC40.json │ │ │ ├── DC40EZ.content.txt │ │ │ ├── DC40EZ.fields.json │ │ │ ├── DC40EZ.json │ │ │ ├── DCSCHH.content.txt │ │ │ ├── DCSCHH.fields.json │ │ │ ├── DCSCHH.json │ │ │ ├── DCSCHH34.content.txt │ │ │ ├── DCSCHH34.fields.json │ │ │ ├── DCSCHH34.json │ │ │ ├── DCSCHI.content.txt │ │ │ ├── DCSCHI.fields.json │ │ │ ├── DCSCHI.json │ │ │ ├── DCSCHN.content.txt │ │ │ ├── DCSCHN.fields.json │ │ │ ├── DCSCHN.json │ │ │ ├── DCSCHNS.content.txt │ │ │ ├── DCSCHNS.fields.json │ │ │ ├── DCSCHNS.json │ │ │ ├── DCSCHS.content.txt │ │ │ ├── DCSCHS.fields.json │ │ │ ├── DCSCHS.json │ │ │ ├── DCSCHU.content.txt │ │ │ ├── DCSCHU.fields.json │ │ │ ├── DCSCHU.json │ │ │ ├── VOUCH.content.txt │ │ │ ├── VOUCH.fields.json │ │ │ └── VOUCH.json │ │ ├── formselect.json │ │ ├── formset.json │ │ ├── inst │ │ │ └── dc_ins_40.pdf │ │ └── pageset.json │ ├── de │ │ ├── availability.json │ │ ├── form │ │ │ ├── DE200_01.content.txt │ │ │ ├── DE200_01.fields.json │ │ │ ├── DE200_01.json │ │ │ ├── DE201P3.content.txt │ │ │ ├── DE201P3.fields.json │ │ │ ├── DE201P3.json │ │ │ ├── DE329S.content.txt │ │ │ ├── DE329S.fields.json │ │ │ ├── DE329S.json │ │ │ ├── DE329T.content.txt │ │ │ ├── DE329T.fields.json │ │ │ ├── DE329T.json │ │ │ ├── VOUCHEF.content.txt │ │ │ ├── VOUCHEF.fields.json │ │ │ └── VOUCHEF.json │ │ ├── formset.json │ │ ├── inst │ │ │ └── de_ins_DE200-01.pdf │ │ └── pageset.json │ ├── ef │ │ ├── efset.json │ │ └── form │ │ │ ├── A1040.content.txt │ │ │ ├── A1040.fields.json │ │ │ ├── A1040.json │ │ │ ├── A1040A.content.txt │ │ │ ├── A1040A.fields.json │ │ │ ├── A1040A.json │ │ │ ├── A1040EZ.content.txt │ │ │ ├── A1040EZ.fields.json │ │ │ ├── A1040EZ.json │ │ │ ├── EFIDCEZ.content.txt │ │ │ ├── EFIDCEZ.fields.json │ │ │ ├── EFIDCEZ.json │ │ │ ├── EFIF.content.txt │ │ │ ├── EFIF.fields.json │ │ │ ├── EFIF.json │ │ │ ├── EFIFA.content.txt │ │ │ ├── EFIFA.fields.json │ │ │ ├── EFIFA.json │ │ │ ├── EFIFEZ.content.txt │ │ │ ├── EFIFEZ.fields.json │ │ │ ├── EFIFEZ.json │ │ │ ├── EFINDEZ.content.txt │ │ │ ├── EFINDEZ.fields.json │ │ │ ├── EFINDEZ.json │ │ │ ├── EFINFODC.content.txt │ │ │ ├── EFINFODC.fields.json │ │ │ ├── EFINFODC.json │ │ │ ├── EFINFODE.content.txt │ │ │ ├── EFINFODE.fields.json │ │ │ ├── EFINFODE.json │ │ │ ├── EFINFOND.content.txt │ │ │ ├── EFINFOND.fields.json │ │ │ ├── EFINFOND.json │ │ │ ├── EFINFOOR.content.txt │ │ │ ├── EFINFOOR.fields.json │ │ │ ├── EFINFOOR.json │ │ │ ├── EFINFOPA.content.txt │ │ │ ├── EFINFOPA.fields.json │ │ │ ├── EFINFOPA.json │ │ │ ├── EFINFOSC.content.txt │ │ │ ├── EFINFOSC.fields.json │ │ │ ├── EFINFOSC.json │ │ │ ├── EFINFOVA.content.txt │ │ │ ├── EFINFOVA.fields.json │ │ │ ├── EFINFOVA.json │ │ │ ├── F1099D.content.txt │ │ │ ├── F1099D.fields.json │ │ │ ├── F1099D.json │ │ │ ├── F1099G.content.txt │ │ │ ├── F1099G.fields.json │ │ │ ├── F1099G.json │ │ │ ├── F1099I.content.txt │ │ │ ├── F1099I.fields.json │ │ │ ├── F1099I.json │ │ │ ├── F1099R.content.txt │ │ │ ├── F1099R.fields.json │ │ │ ├── F1099R.json │ │ │ ├── F99MPER.content.txt │ │ │ ├── F99MPER.fields.json │ │ │ ├── F99MPER.json │ │ │ ├── FW2.content.txt │ │ │ ├── FW2.fields.json │ │ │ ├── FW2.json │ │ │ ├── FW2G.content.txt │ │ │ ├── FW2G.fields.json │ │ │ ├── FW2G.json │ │ │ ├── PAStep_2.content.txt │ │ │ ├── PAStep_2.fields.json │ │ │ └── PAStep_2.json │ ├── faqs.json │ ├── fd │ │ ├── availability.json │ │ ├── form │ │ │ ├── F1040.content.txt │ │ │ ├── F1040.fields.json │ │ │ ├── F1040.json │ │ │ ├── F1040A.content.txt │ │ │ ├── F1040A.fields.json │ │ │ ├── F1040A.json │ │ │ ├── F1040EZ.content.txt │ │ │ ├── F1040EZ.fields.json │ │ │ ├── F1040EZ.json │ │ │ ├── F1040ST.content.txt │ │ │ ├── F1040ST.fields.json │ │ │ ├── F1040ST.json │ │ │ ├── F1040V.content.txt │ │ │ ├── F1040V.fields.json │ │ │ ├── F1040V.json │ │ │ ├── F1116.content.txt │ │ │ ├── F1116.fields.json │ │ │ ├── F1116.json │ │ │ ├── F1310.content.txt │ │ │ ├── F1310.fields.json │ │ │ ├── F1310.json │ │ │ ├── F1310S.content.txt │ │ │ ├── F1310S.fields.json │ │ │ ├── F1310S.json │ │ │ ├── F2106.content.txt │ │ │ ├── F2106.fields.json │ │ │ ├── F2106.json │ │ │ ├── F2106EZ.content.txt │ │ │ ├── F2106EZ.fields.json │ │ │ ├── F2106EZ.json │ │ │ ├── F2106EZS.content.txt │ │ │ ├── F2106EZS.fields.json │ │ │ ├── F2106EZS.json │ │ │ ├── F2106S.content.txt │ │ │ ├── F2106S.fields.json │ │ │ ├── F2106S.json │ │ │ ├── F2120.content.txt │ │ │ ├── F2120.fields.json │ │ │ ├── F2120.json │ │ │ ├── F2210.content.txt │ │ │ ├── F2210.fields.json │ │ │ ├── F2210.json │ │ │ ├── F2210AI.content.txt │ │ │ ├── F2210AI.fields.json │ │ │ ├── F2210AI.json │ │ │ ├── F2210F.content.txt │ │ │ ├── F2210F.fields.json │ │ │ ├── F2210F.json │ │ │ ├── F2439.content.txt │ │ │ ├── F2439.fields.json │ │ │ ├── F2439.json │ │ │ ├── F2441.content.txt │ │ │ ├── F2441.fields.json │ │ │ ├── F2441.json │ │ │ ├── F2441DEP.content.txt │ │ │ ├── F2441DEP.fields.json │ │ │ ├── F2441DEP.json │ │ │ ├── F255512S.content.txt │ │ │ ├── F255512S.fields.json │ │ │ ├── F255512S.json │ │ │ ├── F255512T.content.txt │ │ │ ├── F255512T.fields.json │ │ │ ├── F255512T.json │ │ │ ├── F25553S.content.txt │ │ │ ├── F25553S.fields.json │ │ │ ├── F25553S.json │ │ │ ├── F25553T.content.txt │ │ │ ├── F25553T.fields.json │ │ │ ├── F25553T.json │ │ │ ├── F2555EZ.content.txt │ │ │ ├── F2555EZ.fields.json │ │ │ ├── F2555EZ.json │ │ │ ├── F2555EZS.content.txt │ │ │ ├── F2555EZS.fields.json │ │ │ ├── F2555EZS.json │ │ │ ├── F3468.content.txt │ │ │ ├── F3468.fields.json │ │ │ ├── F3468.json │ │ │ ├── F3800.content.txt │ │ │ ├── F3800.fields.json │ │ │ ├── F3800.json │ │ │ ├── F3800MLT.content.txt │ │ │ ├── F3800MLT.fields.json │ │ │ ├── F3800MLT.json │ │ │ ├── F3903.content.txt │ │ │ ├── F3903.fields.json │ │ │ ├── F3903.json │ │ │ ├── F4136.content.txt │ │ │ ├── F4136.fields.json │ │ │ ├── F4136.json │ │ │ ├── F4137S.content.txt │ │ │ ├── F4137S.fields.json │ │ │ ├── F4137S.json │ │ │ ├── F4137T.content.txt │ │ │ ├── F4137T.fields.json │ │ │ ├── F4137T.json │ │ │ ├── F4255.content.txt │ │ │ ├── F4255.fields.json │ │ │ ├── F4255.json │ │ │ ├── F4562C.content.txt │ │ │ ├── F4562C.fields.json │ │ │ ├── F4562C.json │ │ │ ├── F4562E.content.txt │ │ │ ├── F4562E.fields.json │ │ │ ├── F4562E.json │ │ │ ├── F4562F.content.txt │ │ │ ├── F4562F.fields.json │ │ │ ├── F4562F.json │ │ │ ├── F4684.content.txt │ │ │ ├── F4684.fields.json │ │ │ ├── F4684.json │ │ │ ├── F46842.content.txt │ │ │ ├── F46842.fields.json │ │ │ ├── F46842.json │ │ │ ├── F46843.content.txt │ │ │ ├── F46843.fields.json │ │ │ ├── F46843.json │ │ │ ├── F4797.content.txt │ │ │ ├── F4797.fields.json │ │ │ ├── F4797.json │ │ │ ├── F47972.content.txt │ │ │ ├── F47972.fields.json │ │ │ ├── F47972.json │ │ │ ├── F4835.content.txt │ │ │ ├── F4835.fields.json │ │ │ ├── F4835.json │ │ │ ├── F4868.content.txt │ │ │ ├── F4868.fields.json │ │ │ ├── F4868.json │ │ │ ├── F4952.content.txt │ │ │ ├── F4952.fields.json │ │ │ ├── F4952.json │ │ │ ├── F4972S.content.txt │ │ │ ├── F4972S.fields.json │ │ │ ├── F4972S.json │ │ │ ├── F4972T.content.txt │ │ │ ├── F4972T.fields.json │ │ │ ├── F4972T.json │ │ │ ├── F5329S.content.txt │ │ │ ├── F5329S.fields.json │ │ │ ├── F5329S.json │ │ │ ├── F5329T.content.txt │ │ │ ├── F5329T.fields.json │ │ │ ├── F5329T.json │ │ │ ├── F5405.content.txt │ │ │ ├── F5405.fields.json │ │ │ ├── F5405.json │ │ │ ├── F5695.content.txt │ │ │ ├── F5695.fields.json │ │ │ ├── F5695.json │ │ │ ├── F5884.content.txt │ │ │ ├── F5884.fields.json │ │ │ ├── F5884.json │ │ │ ├── F6198C.content.txt │ │ │ ├── F6198C.fields.json │ │ │ ├── F6198C.json │ │ │ ├── F6198E.content.txt │ │ │ ├── F6198E.fields.json │ │ │ ├── F6198E.json │ │ │ ├── F6198F.content.txt │ │ │ ├── F6198F.fields.json │ │ │ ├── F6198F.json │ │ │ ├── F6198R.content.txt │ │ │ ├── F6198R.fields.json │ │ │ ├── F6198R.json │ │ │ ├── F6251.content.txt │ │ │ ├── F6251.fields.json │ │ │ ├── F6251.json │ │ │ ├── F6252.content.txt │ │ │ ├── F6252.fields.json │ │ │ ├── F6252.json │ │ │ ├── F6478.content.txt │ │ │ ├── F6478.fields.json │ │ │ ├── F6478.json │ │ │ ├── F6765.content.txt │ │ │ ├── F6765.fields.json │ │ │ ├── F6765.json │ │ │ ├── F6765P2.content.txt │ │ │ ├── F6765P2.fields.json │ │ │ ├── F6765P2.json │ │ │ ├── F6781.content.txt │ │ │ ├── F6781.fields.json │ │ │ ├── F6781.json │ │ │ ├── F8082.content.txt │ │ │ ├── F8082.fields.json │ │ │ ├── F8082.json │ │ │ ├── F8275.content.txt │ │ │ ├── F8275.fields.json │ │ │ ├── F8275.json │ │ │ ├── F8275R.content.txt │ │ │ ├── F8275R.fields.json │ │ │ ├── F8275R.json │ │ │ ├── F8283.content.txt │ │ │ ├── F8283.fields.json │ │ │ ├── F8283.json │ │ │ ├── F8379.content.txt │ │ │ ├── F8379.fields.json │ │ │ ├── F8379.json │ │ │ ├── F8396.content.txt │ │ │ ├── F8396.fields.json │ │ │ ├── F8396.json │ │ │ ├── F8453.content.txt │ │ │ ├── F8453.fields.json │ │ │ ├── F8453.json │ │ │ ├── F8582.content.txt │ │ │ ├── F8582.fields.json │ │ │ ├── F8582.json │ │ │ ├── F8582CR.content.txt │ │ │ ├── F8582CR.fields.json │ │ │ ├── F8582CR.json │ │ │ ├── F8582W15.content.txt │ │ │ ├── F8582W15.fields.json │ │ │ ├── F8582W15.json │ │ │ ├── F8582W6.content.txt │ │ │ ├── F8582W6.fields.json │ │ │ ├── F8582W6.json │ │ │ ├── F8586.content.txt │ │ │ ├── F8586.fields.json │ │ │ ├── F8586.json │ │ │ ├── F8594.content.txt │ │ │ ├── F8594.fields.json │ │ │ ├── F8594.json │ │ │ ├── F8606S.content.txt │ │ │ ├── F8606S.fields.json │ │ │ ├── F8606S.json │ │ │ ├── F8606T.content.txt │ │ │ ├── F8606T.fields.json │ │ │ ├── F8606T.json │ │ │ ├── F8609A.content.txt │ │ │ ├── F8609A.fields.json │ │ │ ├── F8609A.json │ │ │ ├── F8611.content.txt │ │ │ ├── F8611.fields.json │ │ │ ├── F8611.json │ │ │ ├── F8615.content.txt │ │ │ ├── F8615.fields.json │ │ │ ├── F8615.json │ │ │ ├── F8689.content.txt │ │ │ ├── F8689.fields.json │ │ │ ├── F8689.json │ │ │ ├── F8697.content.txt │ │ │ ├── F8697.fields.json │ │ │ ├── F8697.json │ │ │ ├── F8801.content.txt │ │ │ ├── F8801.fields.json │ │ │ ├── F8801.json │ │ │ ├── F8812.content.txt │ │ │ ├── F8812.fields.json │ │ │ ├── F8812.json │ │ │ ├── F8812SMT.content.txt │ │ │ ├── F8812SMT.fields.json │ │ │ ├── F8812SMT.json │ │ │ ├── F8814.content.txt │ │ │ ├── F8814.fields.json │ │ │ ├── F8814.json │ │ │ ├── F8815.content.txt │ │ │ ├── F8815.fields.json │ │ │ ├── F8815.json │ │ │ ├── F8820.content.txt │ │ │ ├── F8820.fields.json │ │ │ ├── F8820.json │ │ │ ├── F8824.content.txt │ │ │ ├── F8824.fields.json │ │ │ ├── F8824.json │ │ │ ├── F8826.content.txt │ │ │ ├── F8826.fields.json │ │ │ ├── F8826.json │ │ │ ├── F8828.content.txt │ │ │ ├── F8828.fields.json │ │ │ ├── F8828.json │ │ │ ├── F8829.content.txt │ │ │ ├── F8829.fields.json │ │ │ ├── F8829.json │ │ │ ├── F8833.content.txt │ │ │ ├── F8833.fields.json │ │ │ ├── F8833.json │ │ │ ├── F8834.content.txt │ │ │ ├── F8834.fields.json │ │ │ ├── F8834.json │ │ │ ├── F8839.content.txt │ │ │ ├── F8839.fields.json │ │ │ ├── F8839.json │ │ │ ├── F8844.content.txt │ │ │ ├── F8844.fields.json │ │ │ ├── F8844.json │ │ │ ├── F8845.content.txt │ │ │ ├── F8845.fields.json │ │ │ ├── F8845.json │ │ │ ├── F8846.content.txt │ │ │ ├── F8846.fields.json │ │ │ ├── F8846.json │ │ │ ├── F8853.content.txt │ │ │ ├── F8853.fields.json │ │ │ ├── F8853.json │ │ │ ├── F88532.content.txt │ │ │ ├── F88532.fields.json │ │ │ ├── F88532.json │ │ │ ├── F8859.content.txt │ │ │ ├── F8859.fields.json │ │ │ ├── F8859.json │ │ │ ├── F8862.content.txt │ │ │ ├── F8862.fields.json │ │ │ ├── F8862.json │ │ │ ├── F8863.content.txt │ │ │ ├── F8863.fields.json │ │ │ ├── F8863.json │ │ │ ├── F8863P2.content.txt │ │ │ ├── F8863P2.fields.json │ │ │ ├── F8863P2.json │ │ │ ├── F8864.content.txt │ │ │ ├── F8864.fields.json │ │ │ ├── F8864.json │ │ │ ├── F8874.content.txt │ │ │ ├── F8874.fields.json │ │ │ ├── F8874.json │ │ │ ├── F8880.content.txt │ │ │ ├── F8880.fields.json │ │ │ ├── F8880.json │ │ │ ├── F8881.content.txt │ │ │ ├── F8881.fields.json │ │ │ ├── F8881.json │ │ │ ├── F8882.content.txt │ │ │ ├── F8882.fields.json │ │ │ ├── F8882.json │ │ │ ├── F8885S.content.txt │ │ │ ├── F8885S.fields.json │ │ │ ├── F8885S.json │ │ │ ├── F8885T.content.txt │ │ │ ├── F8885T.fields.json │ │ │ ├── F8885T.json │ │ │ ├── F8886.content.txt │ │ │ ├── F8886.fields.json │ │ │ ├── F8886.json │ │ │ ├── F8888.content.txt │ │ │ ├── F8888.fields.json │ │ │ ├── F8888.json │ │ │ ├── F8889S.content.txt │ │ │ ├── F8889S.fields.json │ │ │ ├── F8889S.json │ │ │ ├── F8889T.content.txt │ │ │ ├── F8889T.fields.json │ │ │ ├── F8889T.json │ │ │ ├── F8891.content.txt │ │ │ ├── F8891.fields.json │ │ │ ├── F8891.json │ │ │ ├── F8903.content.txt │ │ │ ├── F8903.fields.json │ │ │ ├── F8903.json │ │ │ ├── F8906.content.txt │ │ │ ├── F8906.fields.json │ │ │ ├── F8906.json │ │ │ ├── F8907.content.txt │ │ │ ├── F8907.fields.json │ │ │ ├── F8907.json │ │ │ ├── F8908.content.txt │ │ │ ├── F8908.fields.json │ │ │ ├── F8908.json │ │ │ ├── F8909.content.txt │ │ │ ├── F8909.fields.json │ │ │ ├── F8909.json │ │ │ ├── F8910.content.txt │ │ │ ├── F8910.fields.json │ │ │ ├── F8910.json │ │ │ ├── F8911.content.txt │ │ │ ├── F8911.fields.json │ │ │ ├── F8911.json │ │ │ ├── F8917.content.txt │ │ │ ├── F8917.fields.json │ │ │ ├── F8917.json │ │ │ ├── F8919S.content.txt │ │ │ ├── F8919S.fields.json │ │ │ ├── F8919S.json │ │ │ ├── F8919T.content.txt │ │ │ ├── F8919T.fields.json │ │ │ ├── F8919T.json │ │ │ ├── F8931.content.txt │ │ │ ├── F8931.fields.json │ │ │ ├── F8931.json │ │ │ ├── F8932.content.txt │ │ │ ├── F8932.fields.json │ │ │ ├── F8932.json │ │ │ ├── F8933.content.txt │ │ │ ├── F8933.fields.json │ │ │ ├── F8933.json │ │ │ ├── F8936.content.txt │ │ │ ├── F8936.fields.json │ │ │ ├── F8936.json │ │ │ ├── F8938.content.txt │ │ │ ├── F8938.fields.json │ │ │ ├── F8938.json │ │ │ ├── F8941.content.txt │ │ │ ├── F8941.fields.json │ │ │ ├── F8941.json │ │ │ ├── F8941S.content.txt │ │ │ ├── F8941S.fields.json │ │ │ ├── F8941S.json │ │ │ ├── F8949LT.content.txt │ │ │ ├── F8949LT.fields.json │ │ │ ├── F8949LT.json │ │ │ ├── F8949ST.content.txt │ │ │ ├── F8949ST.fields.json │ │ │ ├── F8949ST.json │ │ │ ├── F8959.content.txt │ │ │ ├── F8959.fields.json │ │ │ ├── F8959.json │ │ │ ├── F8960.content.txt │ │ │ ├── F8960.fields.json │ │ │ ├── F8960.json │ │ │ ├── F9465.content.txt │ │ │ ├── F9465.fields.json │ │ │ ├── F9465.json │ │ │ ├── F982.content.txt │ │ │ ├── F982.fields.json │ │ │ ├── F982.json │ │ │ ├── FDEPEND.content.txt │ │ │ ├── FDEPEND.fields.json │ │ │ ├── FDEPEND.json │ │ │ ├── FDEPENDA.content.txt │ │ │ ├── FDEPENDA.fields.json │ │ │ ├── FDEPENDA.json │ │ │ ├── FES1.content.txt │ │ │ ├── FES1.fields.json │ │ │ ├── FES1.json │ │ │ ├── FES2.content.txt │ │ │ ├── FES2.fields.json │ │ │ ├── FES2.json │ │ │ ├── FES3.content.txt │ │ │ ├── FES3.fields.json │ │ │ ├── FES3.json │ │ │ ├── FES4.content.txt │ │ │ ├── FES4.fields.json │ │ │ ├── FES4.json │ │ │ ├── FSCHA.content.txt │ │ │ ├── FSCHA.fields.json │ │ │ ├── FSCHA.json │ │ │ ├── FSCHB.content.txt │ │ │ ├── FSCHB.fields.json │ │ │ ├── FSCHB.json │ │ │ ├── FSCHB2.content.txt │ │ │ ├── FSCHB2.fields.json │ │ │ ├── FSCHB2.json │ │ │ ├── FSCHB3.content.txt │ │ │ ├── FSCHB3.fields.json │ │ │ ├── FSCHB3.json │ │ │ ├── FSCHC.content.txt │ │ │ ├── FSCHC.fields.json │ │ │ ├── FSCHC.json │ │ │ ├── FSCHCEZS.content.txt │ │ │ ├── FSCHCEZS.fields.json │ │ │ ├── FSCHCEZS.json │ │ │ ├── FSCHCEZT.content.txt │ │ │ ├── FSCHCEZT.fields.json │ │ │ ├── FSCHCEZT.json │ │ │ ├── FSCHD.content.txt │ │ │ ├── FSCHD.fields.json │ │ │ ├── FSCHD.json │ │ │ ├── FSCHE1.content.txt │ │ │ ├── FSCHE1.fields.json │ │ │ ├── FSCHE1.json │ │ │ ├── FSCHE2.content.txt │ │ │ ├── FSCHE2.fields.json │ │ │ ├── FSCHE2.json │ │ │ ├── FSCHEIC.content.txt │ │ │ ├── FSCHEIC.fields.json │ │ │ ├── FSCHEIC.json │ │ │ ├── FSCHF.content.txt │ │ │ ├── FSCHF.fields.json │ │ │ ├── FSCHF.json │ │ │ ├── FSCHHS.content.txt │ │ │ ├── FSCHHS.fields.json │ │ │ ├── FSCHHS.json │ │ │ ├── FSCHHT.content.txt │ │ │ ├── FSCHHT.fields.json │ │ │ ├── FSCHHT.json │ │ │ ├── FSCHJ.content.txt │ │ │ ├── FSCHJ.fields.json │ │ │ ├── FSCHJ.json │ │ │ ├── FSCHR.content.txt │ │ │ ├── FSCHR.fields.json │ │ │ ├── FSCHR.json │ │ │ ├── FSCHSELS.content.txt │ │ │ ├── FSCHSELS.fields.json │ │ │ ├── FSCHSELS.json │ │ │ ├── FSCHSELT.content.txt │ │ │ ├── FSCHSELT.fields.json │ │ │ ├── FSCHSELT.json │ │ │ ├── FSCHSESS.content.txt │ │ │ ├── FSCHSESS.fields.json │ │ │ ├── FSCHSESS.json │ │ │ ├── FSCHSEST.content.txt │ │ │ ├── FSCHSEST.fields.json │ │ │ ├── FSCHSEST.json │ │ │ ├── FW2G.content.txt │ │ │ ├── FW2G.fields.json │ │ │ └── FW2G.json │ │ ├── formselect.json │ │ ├── formset.json │ │ ├── inst │ │ │ └── fd_ins_1040ez.pdf │ │ └── pageset.json │ ├── ia │ │ ├── availability.json │ │ ├── form │ │ │ ├── ia_scr_1040.content.txt │ │ │ ├── ia_scr_1040.fields.json │ │ │ ├── ia_scr_1040.json │ │ │ ├── ia_scr_1040scha.content.txt │ │ │ ├── ia_scr_1040scha.fields.json │ │ │ ├── ia_scr_1040scha.json │ │ │ ├── ia_scr_1040schb.content.txt │ │ │ ├── ia_scr_1040schb.fields.json │ │ │ ├── ia_scr_1040schb.json │ │ │ ├── ia_scr_1040v.content.txt │ │ │ ├── ia_scr_1040v.fields.json │ │ │ ├── ia_scr_1040v.json │ │ │ ├── ia_scr_130.content.txt │ │ │ ├── ia_scr_130.fields.json │ │ │ ├── ia_scr_130.json │ │ │ ├── ia_scr_148.content.txt │ │ │ ├── ia_scr_148.fields.json │ │ │ ├── ia_scr_148.json │ │ │ ├── ia_scr_4136.content.txt │ │ │ ├── ia_scr_4136.fields.json │ │ │ ├── ia_scr_4136.json │ │ │ ├── ia_scr_4562a.content.txt │ │ │ ├── ia_scr_4562a.fields.json │ │ │ ├── ia_scr_4562a.json │ │ │ ├── ia_scr_4562b.content.txt │ │ │ ├── ia_scr_4562b.fields.json │ │ │ ├── ia_scr_4562b.json │ │ │ ├── ia_scr_6251.content.txt │ │ │ ├── ia_scr_6251.fields.json │ │ │ └── ia_scr_6251.json │ │ ├── formset.json │ │ └── pageset.json │ ├── nd │ │ ├── availability.json │ │ ├── form │ │ │ ├── ND1.content.txt │ │ │ ├── ND1.fields.json │ │ │ ├── ND1.json │ │ │ ├── ND1CR.content.txt │ │ │ ├── ND1CR.fields.json │ │ │ ├── ND1CR.json │ │ │ ├── ND1SA.content.txt │ │ │ ├── ND1SA.fields.json │ │ │ ├── ND1SA.json │ │ │ ├── ND1TC.content.txt │ │ │ ├── ND1TC.fields.json │ │ │ ├── ND1TC.json │ │ │ ├── NDEZ.content.txt │ │ │ ├── NDEZ.fields.json │ │ │ ├── NDEZ.json │ │ │ ├── VOUCHEF.content.txt │ │ │ ├── VOUCHEF.fields.json │ │ │ └── VOUCHEF.json │ │ ├── formselect.json │ │ ├── formset.json │ │ ├── inst │ │ │ └── NDSchCode.pdf │ │ └── pageset.json │ ├── or │ │ ├── availability.json │ │ ├── form │ │ │ ├── OR10.content.txt │ │ │ ├── OR10.fields.json │ │ │ ├── OR10.json │ │ │ ├── OR40.content.txt │ │ │ ├── OR40.fields.json │ │ │ ├── OR40.json │ │ │ ├── OR40DEP.content.txt │ │ │ ├── OR40DEP.fields.json │ │ │ ├── OR40DEP.json │ │ │ ├── OR529.content.txt │ │ │ ├── OR529.fields.json │ │ │ ├── OR529.json │ │ │ ├── ORASC.content.txt │ │ │ ├── ORASC.fields.json │ │ │ ├── ORASC.json │ │ │ ├── ORSCHA.content.txt │ │ │ ├── ORSCHA.fields.json │ │ │ ├── ORSCHA.json │ │ │ ├── ORWFC.content.txt │ │ │ ├── ORWFC.fields.json │ │ │ ├── ORWFC.json │ │ │ ├── ORWFCDEP.content.txt │ │ │ ├── ORWFCDEP.fields.json │ │ │ ├── ORWFCDEP.json │ │ │ ├── VOUCH.content.txt │ │ │ ├── VOUCH.fields.json │ │ │ └── VOUCH.json │ │ ├── formset.json │ │ ├── inst │ │ │ └── or_ins_10.pdf │ │ └── pageset.json │ ├── pa │ │ ├── availability.json │ │ ├── form │ │ │ ├── DEP.content.txt │ │ │ ├── DEP.fields.json │ │ │ ├── DEP.json │ │ │ ├── F8453.content.txt │ │ │ ├── F8453.fields.json │ │ │ ├── F8453.json │ │ │ ├── PA40.content.txt │ │ │ ├── PA40.fields.json │ │ │ ├── PA40.json │ │ │ ├── PAC.content.txt │ │ │ ├── PAC.fields.json │ │ │ ├── PAC.json │ │ │ ├── PASCHOC.content.txt │ │ │ ├── PASCHOC.fields.json │ │ │ ├── PASCHOC.json │ │ │ ├── SCHABT.content.txt │ │ │ ├── SCHABT.fields.json │ │ │ ├── SCHABT.json │ │ │ ├── SCHDT.content.txt │ │ │ ├── SCHDT.fields.json │ │ │ ├── SCHDT.json │ │ │ ├── SCHJT.content.txt │ │ │ ├── SCHJT.fields.json │ │ │ ├── SCHJT.json │ │ │ ├── SCHO.content.txt │ │ │ ├── SCHO.fields.json │ │ │ ├── SCHO.json │ │ │ ├── SE.content.txt │ │ │ ├── SE.fields.json │ │ │ ├── SE.json │ │ │ ├── SSP.content.txt │ │ │ ├── SSP.fields.json │ │ │ ├── SSP.json │ │ │ ├── SUE.content.txt │ │ │ ├── SUE.fields.json │ │ │ ├── SUE.json │ │ │ ├── VOUCH.content.txt │ │ │ ├── VOUCH.fields.json │ │ │ ├── VOUCH.json │ │ │ ├── W2S.content.txt │ │ │ ├── W2S.fields.json │ │ │ └── W2S.json │ │ ├── formset.json │ │ ├── inst │ │ │ ├── pa_ins_pa40.pdf │ │ │ └── pa_schoolcode.pdf │ │ └── pageset.json │ ├── sc │ │ ├── availability.json │ │ ├── form │ │ │ ├── F1040.content.txt │ │ │ ├── F1040.fields.json │ │ │ ├── F1040.json │ │ │ ├── F1040DEP.content.txt │ │ │ ├── F1040DEP.fields.json │ │ │ ├── F1040DEP.json │ │ │ ├── F319.content.txt │ │ │ ├── F319.fields.json │ │ │ ├── F319.json │ │ │ ├── F330.content.txt │ │ │ ├── F330.fields.json │ │ │ ├── F330.json │ │ │ ├── F8453.content.txt │ │ │ ├── F8453.fields.json │ │ │ ├── F8453.json │ │ │ ├── VOUCHEF.content.txt │ │ │ ├── VOUCHEF.fields.json │ │ │ └── VOUCHEF.json │ │ ├── formset.json │ │ ├── inst │ │ │ └── sc_ins_1040.pdf │ │ └── pageset.json │ └── va │ │ ├── availability.json │ │ ├── form │ │ ├── VA760.content.txt │ │ ├── VA760.fields.json │ │ ├── VA760.json │ │ ├── VA760C.content.txt │ │ ├── VA760C.fields.json │ │ ├── VA760C.json │ │ ├── VA760F.content.txt │ │ ├── VA760F.fields.json │ │ ├── VA760F.json │ │ ├── VA760PFF.content.txt │ │ ├── VA760PFF.fields.json │ │ ├── VA760PFF.json │ │ ├── VAADJ.content.txt │ │ ├── VAADJ.fields.json │ │ ├── VAADJ.json │ │ ├── VAFED.content.txt │ │ ├── VAFED.fields.json │ │ ├── VAFED.json │ │ ├── VAOSC.content.txt │ │ ├── VAOSC.fields.json │ │ ├── VAOSC.json │ │ ├── VASCR.content.txt │ │ ├── VASCR.fields.json │ │ ├── VASCR.json │ │ ├── VASCR2.content.txt │ │ ├── VASCR2.fields.json │ │ ├── VASCR2.json │ │ ├── VASCR3.content.txt │ │ ├── VASCR3.fields.json │ │ ├── VASCR3.json │ │ ├── VOUCHEF.content.txt │ │ ├── VOUCHEF.fields.json │ │ └── VOUCHEF.json │ │ ├── form_org │ │ ├── VA760.json │ │ ├── VA760C.json │ │ ├── VA760F.json │ │ ├── VA760PFF.json │ │ ├── VAADJ.json │ │ ├── VAFED.json │ │ ├── VAOSC.json │ │ ├── VASCR.json │ │ ├── VASCR2.json │ │ ├── VASCR3.json │ │ └── VOUCHEF.json │ │ ├── formset.json │ │ ├── inst │ │ └── va_ins_760cg.pdf │ │ └── pageset.json ├── p2j.forms.sh ├── p2j.one.sh └── pdf │ ├── dc │ ├── form │ │ ├── DC2210.pdf │ │ ├── DC40.pdf │ │ ├── DC40EZ.pdf │ │ ├── DCSCHH.pdf │ │ ├── DCSCHH34.pdf │ │ ├── DCSCHI.pdf │ │ ├── DCSCHN.pdf │ │ ├── DCSCHNS.pdf │ │ ├── DCSCHS.pdf │ │ ├── DCSCHU.pdf │ │ └── VOUCH.pdf │ └── inst │ │ ├── dc_ins_2210.pdf │ │ ├── dc_ins_40.pdf │ │ └── dc_ins_40ez.pdf │ ├── de │ ├── form │ │ ├── DE200_01.pdf │ │ ├── DE201P3.pdf │ │ ├── DE329S.pdf │ │ ├── DE329T.pdf │ │ └── VOUCHEF.pdf │ └── inst │ │ ├── de_ins_DE200-01.pdf │ │ └── de_ins_DEVOUCHEF.pdf │ ├── ef │ ├── form │ │ ├── A1040.pdf │ │ ├── A1040A.pdf │ │ ├── A1040EZ.pdf │ │ ├── EFIDCEZ.pdf │ │ ├── EFIF.pdf │ │ ├── EFIFA.pdf │ │ ├── EFIFEZ.pdf │ │ ├── EFINDEZ.pdf │ │ ├── EFINFODC.pdf │ │ ├── EFINFODE.pdf │ │ ├── EFINFOND.pdf │ │ ├── EFINFOOR.pdf │ │ ├── EFINFOPA.pdf │ │ ├── EFINFOSC.pdf │ │ ├── EFINFOVA.pdf │ │ ├── F1099D.pdf │ │ ├── F1099G.pdf │ │ ├── F1099I.pdf │ │ ├── F1099R.pdf │ │ ├── F99MPER.pdf │ │ ├── FW2.pdf │ │ ├── FW2G.pdf │ │ └── PAStep_2.pdf │ └── inst │ │ ├── ef_ins_1040.pdf │ │ ├── ef_ins_1040a.pdf │ │ ├── ef_ins_1040ez.pdf │ │ ├── ef_ins_1099div.pdf │ │ ├── ef_ins_1099g.pdf │ │ ├── ef_ins_1099int.pdf │ │ ├── ef_ins_1099misc.pdf │ │ ├── ef_ins_1099r.pdf │ │ ├── ef_ins_dc.pdf │ │ ├── ef_ins_de.pdf │ │ ├── ef_ins_fd.pdf │ │ ├── ef_ins_nd.pdf │ │ ├── ef_ins_or.pdf │ │ ├── ef_ins_pa.pdf │ │ ├── ef_ins_sc.pdf │ │ ├── ef_ins_va.pdf │ │ ├── ef_ins_w2.pdf │ │ └── ef_ins_w2g.pdf │ ├── fd │ ├── form │ │ ├── F1040.pdf │ │ ├── F1040A.pdf │ │ ├── F1040EZ.pdf │ │ ├── F1040ST.pdf │ │ ├── F1040V.pdf │ │ ├── F1116.pdf │ │ ├── F1310.pdf │ │ ├── F1310S.pdf │ │ ├── F2106.pdf │ │ ├── F2106EZ.pdf │ │ ├── F2106EZS.pdf │ │ ├── F2106S.pdf │ │ ├── F2120.pdf │ │ ├── F2210.pdf │ │ ├── F2210AI.pdf │ │ ├── F2210F.pdf │ │ ├── F2439.pdf │ │ ├── F2441.pdf │ │ ├── F2441DEP.pdf │ │ ├── F255512S.pdf │ │ ├── F255512T.pdf │ │ ├── F25553S.pdf │ │ ├── F25553T.pdf │ │ ├── F2555EZ.pdf │ │ ├── F2555EZS.pdf │ │ ├── F3468.pdf │ │ ├── F3800.pdf │ │ ├── F3800MLT.pdf │ │ ├── F3903.pdf │ │ ├── F4136.pdf │ │ ├── F4137S.pdf │ │ ├── F4137T.pdf │ │ ├── F4255.pdf │ │ ├── F4562C.pdf │ │ ├── F4562E.pdf │ │ ├── F4562F.pdf │ │ ├── F4562R.pdf │ │ ├── F4684.pdf │ │ ├── F46842.pdf │ │ ├── F46843.pdf │ │ ├── F4797.pdf │ │ ├── F47972.pdf │ │ ├── F4835.pdf │ │ ├── F4868.pdf │ │ ├── F4952.pdf │ │ ├── F4972S.pdf │ │ ├── F4972T.pdf │ │ ├── F5329S.pdf │ │ ├── F5329T.pdf │ │ ├── F5405.pdf │ │ ├── F5695.pdf │ │ ├── F5884.pdf │ │ ├── F6198C.pdf │ │ ├── F6198E.pdf │ │ ├── F6198F.pdf │ │ ├── F6198R.pdf │ │ ├── F6251.pdf │ │ ├── F6252.pdf │ │ ├── F6478.pdf │ │ ├── F6765.pdf │ │ ├── F6765P2.pdf │ │ ├── F6781.pdf │ │ ├── F8082.pdf │ │ ├── F8275.pdf │ │ ├── F8275R.pdf │ │ ├── F8283.pdf │ │ ├── F8379.pdf │ │ ├── F8396.pdf │ │ ├── F8453.pdf │ │ ├── F8582.pdf │ │ ├── F8582CR.pdf │ │ ├── F8582W15.pdf │ │ ├── F8582W6.pdf │ │ ├── F8586.pdf │ │ ├── F8594.pdf │ │ ├── F8606S.pdf │ │ ├── F8606T.pdf │ │ ├── F8609A.pdf │ │ ├── F8611.pdf │ │ ├── F8615.pdf │ │ ├── F8689.pdf │ │ ├── F8697.pdf │ │ ├── F8801.pdf │ │ ├── F8812.pdf │ │ ├── F8814.pdf │ │ ├── F8815.pdf │ │ ├── F8820.pdf │ │ ├── F8824.pdf │ │ ├── F8826.pdf │ │ ├── F8828.pdf │ │ ├── F8829.pdf │ │ ├── F8833.pdf │ │ ├── F8834.pdf │ │ ├── F8839.pdf │ │ ├── F8844.pdf │ │ ├── F8845.pdf │ │ ├── F8846.pdf │ │ ├── F8853.pdf │ │ ├── F88532.pdf │ │ ├── F8859.pdf │ │ ├── F8862.pdf │ │ ├── F8863.pdf │ │ ├── F8863P2.pdf │ │ ├── F8864.pdf │ │ ├── F8874.pdf │ │ ├── F8880.pdf │ │ ├── F8881.pdf │ │ ├── F8882.pdf │ │ ├── F8885S.pdf │ │ ├── F8885T.pdf │ │ ├── F8886.pdf │ │ ├── F8888.pdf │ │ ├── F8889S.pdf │ │ ├── F8889T.pdf │ │ ├── F8891.pdf │ │ ├── F8903.pdf │ │ ├── F8906.pdf │ │ ├── F8907.pdf │ │ ├── F8908.pdf │ │ ├── F8909.pdf │ │ ├── F8910.pdf │ │ ├── F8911.pdf │ │ ├── F8917.pdf │ │ ├── F8919S.pdf │ │ ├── F8919T.pdf │ │ ├── F8931.pdf │ │ ├── F8932.pdf │ │ ├── F8933.pdf │ │ ├── F8936.pdf │ │ ├── F8938.pdf │ │ ├── F8941.pdf │ │ ├── F8941S.pdf │ │ ├── F8949LT.pdf │ │ ├── F8949ST.pdf │ │ ├── F8959.pdf │ │ ├── F8960.pdf │ │ ├── F9465.pdf │ │ ├── F982.pdf │ │ ├── FDEPEND.pdf │ │ ├── FDEPENDA.pdf │ │ ├── FES1.pdf │ │ ├── FES2.pdf │ │ ├── FES3.pdf │ │ ├── FES4.pdf │ │ ├── FSCHA.pdf │ │ ├── FSCHB.pdf │ │ ├── FSCHB2.pdf │ │ ├── FSCHB3.pdf │ │ ├── FSCHC.pdf │ │ ├── FSCHCEZS.pdf │ │ ├── FSCHCEZT.pdf │ │ ├── FSCHD.pdf │ │ ├── FSCHE1.pdf │ │ ├── FSCHE2.pdf │ │ ├── FSCHEIC.pdf │ │ ├── FSCHF.pdf │ │ ├── FSCHHS.pdf │ │ ├── FSCHHT.pdf │ │ ├── FSCHJ.pdf │ │ ├── FSCHR.pdf │ │ ├── FSCHSELS.pdf │ │ ├── FSCHSELT.pdf │ │ ├── FSCHSESS.pdf │ │ ├── FSCHSEST.pdf │ │ └── FW2G.pdf │ └── inst │ │ ├── fd_ins_1040.pdf │ │ ├── fd_ins_1040SchA.pdf │ │ ├── fd_ins_1040SchC.pdf │ │ ├── fd_ins_1040SchCEZ.pdf │ │ ├── fd_ins_1040SchD.pdf │ │ ├── fd_ins_1040SchE.pdf │ │ ├── fd_ins_1040SchF.pdf │ │ ├── fd_ins_1040SchH.pdf │ │ ├── fd_ins_1040SchJ.pdf │ │ ├── fd_ins_1040SchSE.pdf │ │ ├── fd_ins_1040a.pdf │ │ ├── fd_ins_1040es.pdf │ │ ├── fd_ins_1040ez.pdf │ │ ├── fd_ins_1040v.pdf │ │ ├── fd_ins_1116.pdf │ │ ├── fd_ins_1310.pdf │ │ ├── fd_ins_2106.pdf │ │ ├── fd_ins_2106EZ.pdf │ │ ├── fd_ins_2120.pdf │ │ ├── fd_ins_2210.pdf │ │ ├── fd_ins_2210F.pdf │ │ ├── fd_ins_2439.pdf │ │ ├── fd_ins_2441.pdf │ │ ├── fd_ins_2555.pdf │ │ ├── fd_ins_2555EZ.pdf │ │ ├── fd_ins_3468.pdf │ │ ├── fd_ins_3800.pdf │ │ ├── fd_ins_3903.pdf │ │ ├── fd_ins_4136.pdf │ │ ├── fd_ins_4137.pdf │ │ ├── fd_ins_4255.pdf │ │ ├── fd_ins_4562.pdf │ │ ├── fd_ins_4684.pdf │ │ ├── fd_ins_4797.pdf │ │ ├── fd_ins_4835.pdf │ │ ├── fd_ins_4868.pdf │ │ ├── fd_ins_4952.pdf │ │ ├── fd_ins_4972.pdf │ │ ├── fd_ins_5329.pdf │ │ ├── fd_ins_5405.pdf │ │ ├── fd_ins_5695.pdf │ │ ├── fd_ins_5884.pdf │ │ ├── fd_ins_6198.pdf │ │ ├── fd_ins_6251.pdf │ │ ├── fd_ins_6252.pdf │ │ ├── fd_ins_6478.pdf │ │ ├── fd_ins_6765.pdf │ │ ├── fd_ins_6781.pdf │ │ ├── fd_ins_8082.pdf │ │ ├── fd_ins_8275.pdf │ │ ├── fd_ins_8275R.pdf │ │ ├── fd_ins_8283.pdf │ │ ├── fd_ins_8379.pdf │ │ ├── fd_ins_8396.pdf │ │ ├── fd_ins_8582.pdf │ │ ├── fd_ins_8582CR.pdf │ │ ├── fd_ins_8586.pdf │ │ ├── fd_ins_8594.pdf │ │ ├── fd_ins_8606.pdf │ │ ├── fd_ins_8609a.pdf │ │ ├── fd_ins_8611.pdf │ │ ├── fd_ins_8615.pdf │ │ ├── fd_ins_8689.pdf │ │ ├── fd_ins_8697.pdf │ │ ├── fd_ins_8801.pdf │ │ ├── fd_ins_8812.pdf │ │ ├── fd_ins_8814.pdf │ │ ├── fd_ins_8815.pdf │ │ ├── fd_ins_8820.pdf │ │ ├── fd_ins_8824.pdf │ │ ├── fd_ins_8826.pdf │ │ ├── fd_ins_8828.pdf │ │ ├── fd_ins_8829.pdf │ │ ├── fd_ins_8833.pdf │ │ ├── fd_ins_8834.pdf │ │ ├── fd_ins_8839.pdf │ │ ├── fd_ins_8844.pdf │ │ ├── fd_ins_8845.pdf │ │ ├── fd_ins_8846.pdf │ │ ├── fd_ins_8853.pdf │ │ ├── fd_ins_8859.pdf │ │ ├── fd_ins_8862.pdf │ │ ├── fd_ins_8863.pdf │ │ ├── fd_ins_8864.pdf │ │ ├── fd_ins_8874.pdf │ │ ├── fd_ins_8880.pdf │ │ ├── fd_ins_8881.pdf │ │ ├── fd_ins_8882.pdf │ │ ├── fd_ins_8885.pdf │ │ ├── fd_ins_8886.pdf │ │ ├── fd_ins_8888.pdf │ │ ├── fd_ins_8889.pdf │ │ ├── fd_ins_8891.pdf │ │ ├── fd_ins_8903.pdf │ │ ├── fd_ins_8906.pdf │ │ ├── fd_ins_8907.pdf │ │ ├── fd_ins_8908.pdf │ │ ├── fd_ins_8909.pdf │ │ ├── fd_ins_8910.pdf │ │ ├── fd_ins_8911.pdf │ │ ├── fd_ins_8917.pdf │ │ ├── fd_ins_8919.pdf │ │ ├── fd_ins_8931.pdf │ │ ├── fd_ins_8932.pdf │ │ ├── fd_ins_8933.pdf │ │ ├── fd_ins_8936.pdf │ │ ├── fd_ins_8938.pdf │ │ ├── fd_ins_8941.pdf │ │ ├── fd_ins_8949.pdf │ │ ├── fd_ins_8959.pdf │ │ ├── fd_ins_8960.pdf │ │ ├── fd_ins_9465.pdf │ │ ├── fd_ins_982.pdf │ │ ├── fd_ins_SchB.pdf │ │ ├── fd_ins_SchEIC.pdf │ │ └── fd_ins_SchR.pdf │ ├── ia │ ├── form │ │ ├── ia_scr_1040.pdf │ │ ├── ia_scr_1040scha.pdf │ │ ├── ia_scr_1040schb.pdf │ │ ├── ia_scr_1040v.pdf │ │ ├── ia_scr_130.pdf │ │ ├── ia_scr_148.pdf │ │ ├── ia_scr_4136.pdf │ │ ├── ia_scr_4562a.pdf │ │ ├── ia_scr_4562b.pdf │ │ └── ia_scr_6251.pdf │ └── inst │ │ ├── ia_ins_1040.pdf │ │ ├── ia_ins_1040v.pdf │ │ ├── ia_ins_130.pdf │ │ ├── ia_ins_148.pdf │ │ ├── ia_ins_4136.pdf │ │ ├── ia_ins_4562a.pdf │ │ ├── ia_ins_4562b.pdf │ │ └── ia_ins_6251.pdf │ ├── misc │ ├── i200_err_test.pdf │ ├── i216_nuclear.pdf │ ├── i221_tianjin_invoice.pdf │ ├── i242_testingWithTable.pdf │ ├── i243_err_file_anon.pdf │ ├── i255_emojis.pdf │ ├── i262_4hXzVq.pdf │ ├── i26_crash_18277.pdf │ ├── i274_err.pdf │ ├── i277_GetViolationImage.pdf │ ├── i28_line_break_210.pdf │ ├── i293_pdfpac.pdf │ ├── i306_err_invalid.pdf │ ├── i318_error.pdf │ ├── i321_21583473018.pdf │ ├── i369_3fields.pdf │ ├── i373_err_broken.pdf │ ├── i43_err_encrypted.pdf │ ├── i64_schedule_generator.pdf │ └── pr298_rect_fix_from_upstream.pdf │ ├── nd │ ├── form │ │ ├── ND1.pdf │ │ ├── ND1CR.pdf │ │ ├── ND1SA.pdf │ │ ├── ND1TC.pdf │ │ ├── NDEZ.pdf │ │ └── VOUCHEF.pdf │ └── inst │ │ ├── EXPL01.pdf │ │ ├── Federal Info Wks_Flowable.pdf │ │ ├── NDSchCode.pdf │ │ ├── nd_ins_1v.pdf │ │ ├── nd_ins_cr.pdf │ │ ├── nd_ins_nd1.pdf │ │ ├── nd_ins_nd1tc.pdf │ │ ├── nd_ins_sa.pdf │ │ ├── nd_ins_taxtable.pdf │ │ └── nd_ins_tc.pdf │ ├── or │ ├── form │ │ ├── OR10.pdf │ │ ├── OR40.pdf │ │ ├── OR40DEP.pdf │ │ ├── OR529.pdf │ │ ├── ORASC.pdf │ │ ├── ORSCHA.pdf │ │ ├── ORWFC.pdf │ │ ├── ORWFCDEP.pdf │ │ └── VOUCH.pdf │ └── inst │ │ ├── Federal Info Wks_ORD_Flowable.pdf │ │ ├── NotSpt.pdf │ │ ├── or_ins_10.pdf │ │ ├── or_ins_40.pdf │ │ ├── or_ins_ORSCHA.pdf │ │ └── or_ins_WFC.pdf │ ├── pa │ ├── form │ │ ├── DEP.pdf │ │ ├── F8453.pdf │ │ ├── PA40.pdf │ │ ├── PAC.pdf │ │ ├── PASCHOC.pdf │ │ ├── SCHABT.pdf │ │ ├── SCHDT.pdf │ │ ├── SCHJT.pdf │ │ ├── SCHO.pdf │ │ ├── SE.pdf │ │ ├── SSP.pdf │ │ ├── SUE.pdf │ │ ├── VOUCH.pdf │ │ └── W2S.pdf │ └── inst │ │ ├── pa_expl01.pdf │ │ ├── pa_ins_8453.pdf │ │ ├── pa_ins_IncTable.pdf │ │ ├── pa_ins_pa-v.pdf │ │ ├── pa_ins_pa40.pdf │ │ ├── pa_ins_schc.pdf │ │ ├── pa_ins_schoc.pdf │ │ └── pa_schoolcode.pdf │ ├── sc │ ├── form │ │ ├── F1040.pdf │ │ ├── F1040DEP.pdf │ │ ├── F319.pdf │ │ ├── F330.pdf │ │ ├── F8453.pdf │ │ └── VOUCHEF.pdf │ └── inst │ │ ├── NotSpt.pdf │ │ ├── SCCntyCd.pdf │ │ ├── sc_ins_1040.pdf │ │ ├── sc_ins_1040V.pdf │ │ ├── sc_ins_319.pdf │ │ ├── sc_ins_330.pdf │ │ └── sc_ins_8453.pdf │ └── va │ ├── form │ ├── VA760.pdf │ ├── VA760C.pdf │ ├── VA760F.pdf │ ├── VA760PFF.pdf │ ├── VAADJ.pdf │ ├── VAFED.pdf │ ├── VAOSC.pdf │ ├── VASCR.pdf │ ├── VASCR2.pdf │ ├── VASCR3.pdf │ └── VOUCHEF.pdf │ └── inst │ ├── SchFound.pdf │ ├── VA SchFED Ins_Flowable.pdf │ ├── VALoclCd.pdf │ ├── va_expl01.pdf │ ├── va_ins_760c.pdf │ ├── va_ins_760cg.pdf │ ├── va_ins_760f.pdf │ ├── va_ins_760pff.pdf │ ├── va_ins_760pmt.pdf │ ├── va_ins_efinstructions.pdf │ ├── va_ins_schcr.pdf │ └── va_ins_schfed.pdf └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: Node.js CI/CD 2 | 3 | on: 4 | pull_request: 5 | branches: [ "*" ] 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-latest 10 | outputs: 11 | test-result: ${{ steps.test.outcome }} 12 | 13 | steps: 14 | - uses: actions/checkout@v3 15 | 16 | - name: Use Node.js 20.x # Updated for Node 20 17 | uses: actions/setup-node@v3 18 | with: 19 | node-version: 20.x 20 | 21 | - name: Run ci 22 | run: npm ci 23 | 24 | - name: Run tests 25 | id: test 26 | run: npm test 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## generic files to ignore 2 | *~ 3 | *.lock 4 | *.DS_Store 5 | *.swp 6 | *.out 7 | node_modules/ 8 | target/ 9 | .idea 10 | .npmrc 11 | .vscode/ 12 | lib/pdfjs-code.js 13 | src/**/*.js 14 | /dist/ 15 | /bin/cli/ 16 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | ## generic files to ignore 2 | *~ 3 | *.lock 4 | *.DS_Store 5 | *.swp 6 | *.out 7 | .idea 8 | node_modules/ 9 | target/ 10 | .gitignore 11 | test/ 12 | .vscode/ 13 | 14 | -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('prettier-config-standard'), 3 | trailingComma: 'es5', 4 | } 5 | -------------------------------------------------------------------------------- /bin/pdf2json.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import PDFCLI from "./cli/pdfparser_cli.js"; 4 | new PDFCLI().start(); 5 | -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "testMatch": ["**/test/_test_.*"], 3 | "testEnvironment": "node", 4 | "bail": false, 5 | "testFailureExitCode": 1 6 | } 7 | -------------------------------------------------------------------------------- /lib/pdffill.js: -------------------------------------------------------------------------------- 1 | import nodeUtil from "util"; 2 | import PDFUnit from "./pdfunit.js"; 3 | 4 | export default class PDFFill{ 5 | // constructor 6 | constructor(x, y, width, height, color) { 7 | this.x = x; 8 | this.y = y; 9 | this.width = width; 10 | this.height = height; 11 | this.color = color; 12 | } 13 | 14 | processFill(targetData) { 15 | //MQZ.07/29/2013: when color is not in color dictionary, set the original color (oc) 16 | const clrId = PDFUnit.findColorIndex(this.color); 17 | const colorObj = (clrId > 0 && clrId < PDFUnit.colorCount()) ? { clr: clrId } : { oc: this.color }; 18 | 19 | const oneFill = { x:PDFUnit.toFormX(this.x), 20 | y:PDFUnit.toFormY(this.y), 21 | w:PDFUnit.toFormX(this.width), 22 | h:PDFUnit.toFormY(this.height), 23 | ...colorObj }; 24 | 25 | 26 | if (oneFill.w < 2 && oneFill.h < 2) { 27 | nodeUtil.p2jinfo(`Skipped: tiny fill: ${oneFill.w} x ${oneFill.h}`); 28 | return; //skip short thick lines, like PA SPP lines behinds checkbox 29 | } 30 | 31 | targetData.Fills.push(oneFill); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /lib/pdfimage.js: -------------------------------------------------------------------------------- 1 | 2 | import { Buffer } from "buffer"; 3 | export default class PDFImage { 4 | #_src = ''; 5 | #_onload = null; 6 | 7 | set onload(val) { 8 | this.#_onload = typeof val === 'function' ? val : null; 9 | } 10 | 11 | get onload() { 12 | return this.#_onload; 13 | } 14 | 15 | set src(val) { 16 | this.#_src = val; 17 | if (this.#_onload) this.#_onload(); 18 | } 19 | 20 | get src() { 21 | return this.#_src; 22 | } 23 | 24 | btoa(val) { 25 | return (new Buffer.from(val, 'binary')).toString('base64'); // ascii? 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /lib/pkinfo.js: -------------------------------------------------------------------------------- 1 | // import path from "path"; 2 | // import { fileURLToPath } from "url"; 3 | // import fs from "fs"; 4 | import * as pkInfo from "../package.json"; 5 | 6 | // const __filename = fileURLToPath(import.meta.url); 7 | // const __dirname = path.dirname(__filename); 8 | // const pkInfo = JSON.parse(fs.readFileSync(`${__dirname}/../package.json`, "utf8")); 9 | const _PARSER_SIG = `${pkInfo.name}@${pkInfo.version} [${pkInfo.homepage}]`; 10 | 11 | export { pkInfo, _PARSER_SIG }; 12 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Licensed under the Apache License, Version 2.0 (the "License"); 2 | 3 | Copyright (c) 2016 Modesty Zhang. (@modestyqz) 4 | 5 | You may not use this work except in compliance with the License: 6 | http://www.apache.org/licenses/LICENSE-2.0. 7 | 8 | Unless required by applicable law or agreed to in writing, software 9 | distributed under the License is distributed on an "AS IS" BASIS, 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | See the License at http://www.apache.org/licenses/LICENSE-2.0 for the 12 | specific language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /test/data/dc/form/DCSCHU.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"POLICECD","type":"number","calc":false,"value":""},{"id":"STCD_1_","type":"alpha","calc":false,"value":""},{"id":"AMT_1_","type":"number","calc":false,"value":""},{"id":"STCD_2_","type":"alpha","calc":false,"value":""},{"id":"AMT_2_","type":"number","calc":false,"value":""},{"id":"STCD_3_","type":"alpha","calc":false,"value":""},{"id":"AMT_3_","type":"number","calc":false,"value":""},{"id":"STCD_4_","type":"alpha","calc":false,"value":""},{"id":"AMT_4_","type":"number","calc":false,"value":""},{"id":"AMTTOT","type":"number","calc":true,"value":""},{"id":"NONRFND","type":"number","calc":true,"value":""},{"id":"Add_Schedule_U_Line_4","type":"link","calc":false,"value":""},{"id":"Add_Schedule_U_Line_4","type":"link","calc":false,"value":""},{"id":"EITC","type":"number","calc":false,"value":""},{"id":"RFNDBL","type":"number","calc":true,"value":""},{"id":"STATEFND","type":"number","calc":false,"value":""},{"id":"DRUGTRST","type":"number","calc":false,"value":""},{"id":"ANACOST","type":"number","calc":false,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"OWETAX","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/dc/form/VOUCH.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPIN","type":"mask","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPIN","type":"mask","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"DAYPHONE","type":"phone","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"PAYMENT","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/dc/inst/dc_ins_40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/dc/inst/dc_ins_40.pdf -------------------------------------------------------------------------------- /test/data/de/availability.json: -------------------------------------------------------------------------------- 1 | { 2 | "formset": [ 3 | { 4 | "id": "S2013DED", 5 | "version": "0.1.1", 6 | "agency": "de", 7 | "main": "DE200_01", 8 | "display_name": "Form DE200", 9 | "forms": [ 10 | {"id": "DE200_01", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 11 | {"id": "DE201P3", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 12 | {"id": "DE329T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 13 | {"id": "DE329S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 14 | {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"} 15 | ] 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /test/data/de/form/DE329S.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"alpha","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/de/form/DE329T.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"alpha","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/de/form/VOUCHEF.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"L1","type":"ssn","calc":true,"value":""},{"id":"L2","type":"alpha","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"L4","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"ST","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/de/formset.json: -------------------------------------------------------------------------------- 1 | { 2 | "formset": { 3 | "id": "S2013DED", 4 | "version": "0.1.1", 5 | "agency": "de", 6 | "main": "DE200_01", 7 | "forms": [ 8 | {"id": "DE200_01", "name":"Form 200-01: Delaware Individual Resident Income Tax Return", "mc": false, "max": 1, "parent": null, "inst":"de_ins_DE200-01", "cid":"200_01"}, 9 | {"id": "DE201P3", "name":"2013 Delaware Resident Schedule", "mc": false, "max": 1, "parent": null, 10 | "inst":"de_ins_DE200-01", "cid":"200_01_SchIIR"}, 11 | {"id": "DE329T", "name":"Delaware Form 329: Special Tax Computation for Lump Sum Distribution from Qualified Retirement Plan - Taxpayer", "mc": false, "max": 1, "parent": null, 12 | "inst":"de_ins_DE200-01", "cid":"329T"}, 13 | {"id": "DE329S", "name":"Delaware Form 329: Special Tax Computation for Lump Sum Distribution from Qualified Retirement Plan - Spouse", "mc": false, "max": 1, "parent": null, 14 | "inst":"de_ins_DE200-01", "cid":"329"}, 15 | {"id": "VOUCHEF", "name":"Delaware Form DE 200-V: Electronic Filer Payment Voucher", "mc": false, "max": 1, "parent": null, "inst":"de_ins_DEVOUCHEF", "cid":"200V"} 16 | ] 17 | } 18 | } -------------------------------------------------------------------------------- /test/data/de/inst/de_ins_DE200-01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/de/inst/de_ins_DE200-01.pdf -------------------------------------------------------------------------------- /test/data/ef/form/EFIDCEZ.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"Add_US_1099I","type":"link","calc":false,"value":""},{"id":"Add_US_1099D","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/EFINDEZ.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"TLYAGI","type":"number","calc":false,"value":""},{"id":"SLYAGI","type":"number","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/EFINFODC.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"Add_US_1099I","type":"link","calc":false,"value":""},{"id":"Add_US_1099D","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/EFINFODE.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/EFINFOND.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"TLYAGI","type":"number","calc":false,"value":""},{"id":"SLYAGI","type":"number","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/EFINFOOR.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/EFINFOPA.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"DDAUTH","type":"box","calc":false,"value":""},{"id":"TA2RB","type":"radio","calc":false,"value":"TACK2"},{"id":"TA2RB","type":"radio","calc":false,"value":"TASV2"},{"id":"ACH2RB","type":"radio","calc":false,"value":"IATYES2"},{"id":"ACH2RB","type":"radio","calc":false,"value":"IATNO2"},{"id":"AUTH","type":"box","calc":false,"value":""},{"id":"TPIN","type":"mask","calc":false,"value":""},{"id":"SPIN","type":"mask","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"RTN2","type":"mask","calc":false,"value":""},{"id":"DAN2","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""},{"id":"PHONE","type":"phone","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/EFINFOSC.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/EFINFOVA.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"TPIN","type":"mask","calc":false,"value":""},{"id":"SPIN","type":"mask","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/ef/form/PAStep_2.fields.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/data/fd/form/F1040V.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"AMT","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"APT","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"FCOUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPROV","type":"alpha","calc":true,"value":""},{"id":"FPOSTAL","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F2106EZ.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"BX0RB","type":"radio","calc":false,"value":"BX0Y"},{"id":"BX0RB","type":"radio","calc":false,"value":"BX0N"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX9Y"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX9N"},{"id":"BXARB","type":"radio","calc":false,"value":"BXAY"},{"id":"BXARB","type":"radio","calc":false,"value":"BXAN"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXBY"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXBN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5A","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"date","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8C","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F2106EZS.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"BX0RB","type":"radio","calc":false,"value":"BX0Y"},{"id":"BX0RB","type":"radio","calc":false,"value":"BX0N"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX9Y"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX9N"},{"id":"BXARB","type":"radio","calc":false,"value":"BXAY"},{"id":"BXARB","type":"radio","calc":false,"value":"BXAN"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXBY"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXBN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5A","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"date","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8C","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F2120.content.txt: -------------------------------------------------------------------------------- 1 | OMB No. 1545-0074 2 | Form 3 | 2120 4 | (Rev. October 2005) 5 | Multiple Support Declaration 6 | Attachment 7 | Sequence No. 8 | 114 9 | Department of the Treasury 10 | Internal Revenue Service 11 |  12 | Attach to Form 1040 or Form 1040A. 13 | Your social security number 14 | Name(s) shown on return 15 | During the calendar year 16 | , the eligible persons listed below each paid over 10% of the support of: 17 | Name of your qualifying relative 18 | I have a signed statement from each eligible person waiving his or her right to claim this person as a dependent for any tax ye 19 | ar 20 | that began in the above calendar year. 21 | Social security number 22 | Eligible person’s name 23 | Address (number, street, apt. no., city, state, and ZIP code) 24 | Form 25 | 2120 26 | (Rev. 10-2005) 27 | Cat. No. 11712F 28 | Social security number 29 | Eligible person’s name 30 | Address (number, street, apt. no., city, state, and ZIP code) 31 | Social security number 32 | Eligible person’s name 33 | Address (number, street, apt. no., city, state, and ZIP code) 34 | Social security number 35 | Eligible person’s name 36 | Address (number, street, apt. no., city, state, and ZIP code) 37 | ----------------Page (0) Break---------------- 38 | -------------------------------------------------------------------------------- /test/data/fd/form/F2439.content.txt: -------------------------------------------------------------------------------- 1 | Form 2 | 2439 3 | 20 4 | 13 5 | Notice to Shareholder of Undistributed 6 | Long-Term Capital Gains 7 | Copy B 8 | Attach to the 9 | shareholder's 10 | income tax return 11 | for the tax year 12 | that includes the 13 | last day of the 14 | RIC's or REIT's 15 | tax year. 16 | Department of the Treasury - Internal Revenue Service 17 | OMB No. 1545-0145 18 | For calendar year 2013, or other tax year 19 | of the regulated investment company (RIC) or the 20 | real estate investment trust (REIT) 21 | beginning 22 | , 2013, and 23 | ending 24 | , 20 25 | VOID 26 | CORRECTED 27 | Name, address, and ZIP code of RIC or REIT 28 | Identification number of RIC or REIT 29 | Shareholder’s identifying number 30 | Shareholder’s name, address, and ZIP code 31 | 1a 32 | Total undistributed long-term capital gains 33 | 1b 34 | Unrecaptured section 1250 gain 35 | 1c 36 | Section 1202 gain 37 | 1d 38 | Collectibles (28%) gain 39 | 2 40 | Tax paid by the RIC or REIT on the box 1a gains 41 | Form 42 | 2439 43 | www.irs.gov/form2439 44 | ----------------Page (0) Break---------------- 45 | -------------------------------------------------------------------------------- /test/data/fd/form/F2439.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"A2RB","type":"radio","calc":false,"value":"VOID"},{"id":"A2RB","type":"radio","calc":false,"value":"CORRECT"},{"id":"PAYERNM1","type":"alpha","calc":false,"value":""},{"id":"PAYERNM2","type":"alpha","calc":false,"value":""},{"id":"PAYADD1","type":"alpha","calc":false,"value":""},{"id":"PCTY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"alpha","calc":false,"value":""},{"id":"PZIP","type":"zip","calc":false,"value":""},{"id":"BEGIN","type":"date","calc":false,"value":""},{"id":"END","type":"date","calc":false,"value":""},{"id":"YEAR","type":"date","calc":false,"value":""},{"id":"PAYERID","type":"mask","calc":false,"value":""},{"id":"RECIPSSN","type":"ssn","calc":false,"value":""},{"id":"RECIPNAM","type":"alpha","calc":false,"value":""},{"id":"RECIPADD","type":"alpha","calc":false,"value":""},{"id":"RCTY","type":"alpha","calc":false,"value":""},{"id":"RST","type":"alpha","calc":false,"value":""},{"id":"RZIP","type":"zip","calc":false,"value":""},{"id":"UNDLTCG","type":"number","calc":false,"value":""},{"id":"UNRECAP","type":"number","calc":false,"value":""},{"id":"SEC1202","type":"number","calc":false,"value":""},{"id":"COLLECT","type":"number","calc":false,"value":""},{"id":"TAXPAID","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F3903.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"YNXRB","type":"radio","calc":false,"value":"NOBOX"},{"id":"YNXRB","type":"radio","calc":false,"value":"YESBOX"},{"id":"NEWEMPL","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F46843.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"DESC1","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"INITINV","type":"number","calc":false,"value":""},{"id":"SUBSQINV","type":"number","calc":false,"value":""},{"id":"PRIORINC","type":"number","calc":false,"value":""},{"id":"SUMLINES","type":"number","calc":true,"value":""},{"id":"WDRWLS","type":"number","calc":false,"value":""},{"id":"TOTQINV","type":"number","calc":true,"value":""},{"id":"QINVPCT","type":"alpha","calc":false,"value":""},{"id":"PRODUCT","type":"number","calc":true,"value":""},{"id":"ACTRCVRY","type":"number","calc":false,"value":""},{"id":"INSSIPC","type":"number","calc":false,"value":""},{"id":"TOTRECOV","type":"number","calc":true,"value":""},{"id":"DEDTHEFT","type":"number","calc":true,"value":""},{"id":"ENTITY","type":"alpha","calc":false,"value":""},{"id":"IDNUM","type":"alpha","calc":false,"value":""},{"id":"ADDRESS","type":"alpha","calc":false,"value":""},{"id":"A20_FILED_1_","type":"alpha","calc":false,"value":""},{"id":"A20_FILED_2_","type":"alpha","calc":false,"value":""},{"id":"A20_FILED_3_","type":"alpha","calc":false,"value":""},{"id":"A20_FILED_4_","type":"alpha","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F4952.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4A","type":"number","calc":false,"value":""},{"id":"QDIVS","type":"number","calc":false,"value":""},{"id":"L4CTOT","type":"number","calc":true,"value":""},{"id":"L4B","type":"number","calc":false,"value":""},{"id":"L4C","type":"number","calc":false,"value":""},{"id":"L4D","type":"number","calc":true,"value":""},{"id":"L4E","type":"number","calc":false,"value":""},{"id":"L4F","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F5884.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1BB","type":"number","calc":false,"value":""},{"id":"L1B","type":"number","calc":true,"value":""},{"id":"L1CC","type":"number","calc":false,"value":""},{"id":"L1C","type":"number","calc":true,"value":""},{"id":"QSYWA","type":"number","calc":false,"value":""},{"id":"QSYW","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"CET","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F6478.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"EIN","type":"ssn","calc":true,"value":""},{"id":"CBIONOAL","type":"number","calc":false,"value":""},{"id":"NOALC","type":"number","calc":true,"value":""},{"id":"QCBPGAL","type":"number","calc":false,"value":""},{"id":"QCBPAMT","type":"number","calc":true,"value":""},{"id":"REGNUM","type":"alpha","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F6765P2.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"REDCR2RB","type":"radio","calc":false,"value":"REDCR2XY"},{"id":"REDCR2RB","type":"radio","calc":false,"value":"REDCR2XN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"EIN2","type":"ssn","calc":true,"value":""},{"id":"SUBTOT7","type":"number","calc":true,"value":""},{"id":"REDCR2","type":"number","calc":true,"value":""},{"id":"EWAGES","type":"number","calc":false,"value":""},{"id":"SUBTOT","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"ESTTRTOT","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8812SMT.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"A4RB1","type":"radio","calc":false,"value":"C1YESBX"},{"id":"A4RB1","type":"radio","calc":false,"value":"C1NOBX"},{"id":"A4RB2","type":"radio","calc":false,"value":"C2YESBX"},{"id":"A4RB2","type":"radio","calc":false,"value":"C2NOBX"},{"id":"A4RB3","type":"radio","calc":false,"value":"C3YESBX"},{"id":"A4RB3","type":"radio","calc":false,"value":"C3NOBX"},{"id":"A4RB4","type":"radio","calc":false,"value":"C4YESBX"},{"id":"A4RB4","type":"radio","calc":false,"value":"C4NOBX"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8826.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"EIN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8834.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15B","type":"number","calc":true,"value":""},{"id":"L15A","type":"number","calc":true,"value":""},{"id":"L15K","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8844.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"IDNO","type":"ssn","calc":true,"value":""},{"id":"ZWAGES","type":"number","calc":false,"value":""},{"id":"L1A","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"COESTTR","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8845.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"IDNO","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"ALLOC","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8846.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"L4BX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"FEIN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"SUBTOT2","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8853.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"L11BX","type":"box","calc":false,"value":""},{"id":"L15AX","type":"box","calc":false,"value":""},{"id":"NAME1","type":"alpha","calc":true,"value":""},{"id":"SSN1","type":"ssn","calc":true,"value":""},{"id":"L3B","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11B","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"Add_F8853_Page_2","type":"link","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F88532.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"LTCBX","type":"box","calc":false,"value":""},{"id":"L17BXRB","type":"radio","calc":false,"value":"L17YBX"},{"id":"L17BXRB","type":"radio","calc":false,"value":"L17NBX"},{"id":"L18BXRB","type":"radio","calc":false,"value":"L18YBX"},{"id":"L18BXRB","type":"radio","calc":false,"value":"L18NBX"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"NAME3","type":"alpha","calc":false,"value":""},{"id":"INITIAL","type":"alpha","calc":false,"value":""},{"id":"LASTNAM","type":"alpha","calc":false,"value":""},{"id":"SUFFIX","type":"alpha","calc":false,"value":""},{"id":"SSN3","type":"ssn","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8859.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"LN12AMT","type":"number","calc":false,"value":""},{"id":"TOTLNAMT","type":"number","calc":false,"value":""},{"id":"CRDALLOW","type":"number","calc":true,"value":""},{"id":"CRDFORWR","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8863.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"CONDX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"Add_F8863_Page_2","type":"link","calc":false,"value":""},{"id":"P4L9","type":"number","calc":false,"value":""},{"id":"P4L10","type":"number","calc":false,"value":""},{"id":"P4L11","type":"number","calc":false,"value":""},{"id":"P4L12","type":"number","calc":true,"value":""},{"id":"P4L13","type":"number","calc":false,"value":""},{"id":"P4L14","type":"percent","calc":true,"value":""},{"id":"P4L15","type":"number","calc":true,"value":""},{"id":"P4L16","type":"number","calc":true,"value":""},{"id":"SUBTRACT","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"mask","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8864.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"IDNO","type":"ssn","calc":true,"value":""},{"id":"BIOSOLD","type":"number","calc":false,"value":""},{"id":"STRBIO","type":"number","calc":true,"value":""},{"id":"AGRISOLD","type":"number","calc":false,"value":""},{"id":"STRAGRI","type":"number","calc":true,"value":""},{"id":"MIXSOLD","type":"number","calc":false,"value":""},{"id":"BIOMIX","type":"number","calc":true,"value":""},{"id":"BIODSOLD","type":"number","calc":false,"value":""},{"id":"BIODIES","type":"number","calc":true,"value":""},{"id":"AGMXSOLD","type":"number","calc":false,"value":""},{"id":"AGRIBIO","type":"number","calc":true,"value":""},{"id":"RMIXSLD","type":"number","calc":false,"value":""},{"id":"RMIX","type":"number","calc":true,"value":""},{"id":"QUALSOLD","type":"number","calc":false,"value":""},{"id":"QUAL","type":"number","calc":true,"value":""},{"id":"ADDAMT","type":"number","calc":true,"value":""},{"id":"BIOCRED","type":"number","calc":false,"value":""},{"id":"CYCRED","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"COESTTR","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8874.content.txt: -------------------------------------------------------------------------------- 1 | Form 2 | 8874 3 | (Rev. December 2012) 4 | Department of the Treasury 5 | Internal Revenue Service 6 | New Markets Credit 7 | a 8 | Attach to your tax return. 9 | a 10 | Information about Form 8874 and its instructions is at 11 | www.irs.gov/form8874 12 | . 13 | OMB No. 1545-1804 14 | Attachment 15 | Sequence No. 16 | 127 17 | Name(s) shown on return 18 | Identifying number 19 | (a) 20 | Name and address of the qualified 21 | community development entity (CDE) 22 | (b) 23 | Employer identification 24 | number of CDE 25 | (c) 26 | Date of initial 27 | investment 28 | (d) 29 | Amount of qualified 30 | equity investment 31 | (e) 32 | Credit 33 | rate 34 | (f) 35 | Credit ((d) 36 | × 37 | (e)) 38 | 1 39 | % 40 | % 41 | % 42 | % 43 | % 44 | % 45 | 2 46 | New markets credit from partnerships and S corporations 47 | ............. 48 | 2 49 | 3 50 | Add lines 1 and 2. Partnerships and S corporations, report this amount on Schedule K; all others, 51 | report this amount on Form 3800, line 1i 52 | ................... 53 | 3 54 | For Paperwork Reduction Act Notice, see instructions. 55 | Cat. No. 31663N 56 | Form 57 | 8874 58 | (Rev. 12-2012) 59 | ----------------Page (0) Break---------------- 60 | -------------------------------------------------------------------------------- /test/data/fd/form/F8880.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"TIRA","type":"number","calc":false,"value":""},{"id":"SIRA","type":"number","calc":false,"value":""},{"id":"TDEF","type":"number","calc":false,"value":""},{"id":"SDEF","type":"number","calc":false,"value":""},{"id":"TCONT","type":"number","calc":true,"value":""},{"id":"SCONT","type":"number","calc":true,"value":""},{"id":"TDIST","type":"number","calc":false,"value":""},{"id":"SDIST","type":"number","calc":false,"value":""},{"id":"TNET","type":"number","calc":true,"value":""},{"id":"SNET","type":"number","calc":true,"value":""},{"id":"TSAV","type":"number","calc":true,"value":""},{"id":"SSAV","type":"number","calc":true,"value":""},{"id":"SAVINGS","type":"number","calc":true,"value":""},{"id":"MAGI","type":"number","calc":true,"value":""},{"id":"FACTOR","type":"mask","calc":false,"value":""},{"id":"TENCRED","type":"number","calc":true,"value":""},{"id":"NETCRED","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8881.content.txt: -------------------------------------------------------------------------------- 1 | Form 2 | 8881 3 | (Rev. December 2013) 4 | Department of the Treasury 5 | Internal Revenue Service 6 | Credit for Small Employer Pension Plan 7 | Startup Costs 8 | a 9 | Attach to your tax return. 10 | a 11 | Information about Form 8881 and its instructions is at 12 | www.irs.gov/form8881 13 | . 14 | OMB No. 1545-1810 15 | Attachment 16 | Sequence No. 17 | 130 18 | Name(s) shown on return 19 | Identifying number 20 | 1 21 | Qualified startup costs incurred during the tax year. 22 | Do not 23 | enter 24 | more than $1,000 25 | ................. 26 | 1 27 | 2 28 | Enter one-half of line 1 29 | ......................... 30 | 2 31 | 3 32 | Credit for small employer pension plan startup costs from partnerships and S corporations . . 33 | 3 34 | 4 35 | Add lines 2 and 3 36 | ........................... 37 | 4 38 | 5 39 | Enter the 40 | smaller 41 | of line 4 or 42 | $500 43 | . Partnerships and S corporations, report this amount on 44 | Schedule K. All others, report this amount on Form 3800, line 1j 45 | ........... 46 | 5 47 | For Paperwork Reduction Act Notice, see instructions. 48 | Cat. No. 33435N 49 | Form 50 | 8881 51 | (Rev. 12-2013) 52 | ----------------Page (0) Break---------------- 53 | -------------------------------------------------------------------------------- /test/data/fd/form/F8881.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"COSTS","type":"number","calc":false,"value":""},{"id":"HALFCSTS","type":"number","calc":true,"value":""},{"id":"PASSTHRU","type":"number","calc":false,"value":""},{"id":"SUBTTL","type":"number","calc":true,"value":""},{"id":"MAX500","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8882.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"QCFAC","type":"number","calc":false,"value":""},{"id":"PCTQCFAC","type":"number","calc":true,"value":""},{"id":"QCRR","type":"number","calc":false,"value":""},{"id":"PCTQCRR","type":"number","calc":true,"value":""},{"id":"CRPASS","type":"number","calc":false,"value":""},{"id":"TOTCYCR","type":"number","calc":true,"value":""},{"id":"CYCR","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"ESTTRUST","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8885S.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"JAN","type":"box","calc":false,"value":""},{"id":"FEB","type":"box","calc":false,"value":""},{"id":"MAR","type":"box","calc":false,"value":""},{"id":"APR","type":"box","calc":false,"value":""},{"id":"MAY","type":"box","calc":false,"value":""},{"id":"JUN","type":"box","calc":false,"value":""},{"id":"JUL","type":"box","calc":false,"value":""},{"id":"AUG","type":"box","calc":false,"value":""},{"id":"SEP","type":"box","calc":false,"value":""},{"id":"OCT","type":"box","calc":false,"value":""},{"id":"NOV","type":"box","calc":false,"value":""},{"id":"DEC","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"COVERAGE","type":"number","calc":false,"value":""},{"id":"MSADIST","type":"number","calc":false,"value":""},{"id":"NETCOV","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8885T.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"JAN","type":"box","calc":false,"value":""},{"id":"FEB","type":"box","calc":false,"value":""},{"id":"MAR","type":"box","calc":false,"value":""},{"id":"APR","type":"box","calc":false,"value":""},{"id":"MAY","type":"box","calc":false,"value":""},{"id":"JUN","type":"box","calc":false,"value":""},{"id":"JUL","type":"box","calc":false,"value":""},{"id":"AUG","type":"box","calc":false,"value":""},{"id":"SEP","type":"box","calc":false,"value":""},{"id":"OCT","type":"box","calc":false,"value":""},{"id":"NOV","type":"box","calc":false,"value":""},{"id":"DEC","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"COVERAGE","type":"number","calc":false,"value":""},{"id":"MSADIST","type":"number","calc":false,"value":""},{"id":"NETCOV","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8906.content.txt: -------------------------------------------------------------------------------- 1 | Form 2 | 8906 3 | Department of the Treasury 4 | Internal Revenue Service 5 | Distilled Spirits Credit 6 | a 7 | Attach to your tax return. 8 | 9 | a 10 | Information about Form 8906 and its instructions is at 11 | www.irs.gov/form8906 12 | . 13 | OMB No. 1545-1982 14 | 20 15 | 13 16 | Attachment 17 | Sequence No. 18 | 150 19 | Name(s) shown on return 20 | Identifying number 21 | 1 22 | Total number of cases of distilled spirits (see instructions) 23 | .............. 24 | 1 25 | 2 26 | Average tax-financing cost per case 27 | ..................... 28 | 2 29 | 3 30 | Multiply line 1 by line 2 31 | .......................... 32 | 3 33 | 4 34 | Distilled spirits credit from partnerships and S corporations 35 | ............. 36 | 4 37 | 5 38 | Add lines 3 and 4. Partnerships and S corporations, report this amount on Schedule K. All others, 39 | report this amount on Form 3800, line 1n 40 | ................... 41 | 5 42 | Cat. No. 37715M 43 | Form 44 | 8906 45 | (2013) 46 | For Paperwork Reduction Act Notice, see instructions. 47 | 0.08433 48 | ----------------Page (0) Break---------------- 49 | -------------------------------------------------------------------------------- /test/data/fd/form/F8906.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"TOTCASES","type":"number","calc":false,"value":""},{"id":"MLTY1BY2","type":"number","calc":true,"value":""},{"id":"SPRTSCRD","type":"number","calc":false,"value":""},{"id":"ADDLNS","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8908.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"QEEH","type":"number","calc":false,"value":""},{"id":"QEEHCR","type":"number","calc":true,"value":""},{"id":"QEEMH","type":"number","calc":false,"value":""},{"id":"QEEMHCR","type":"number","calc":true,"value":""},{"id":"PSEEHCR","type":"number","calc":false,"value":""},{"id":"EEHCR","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8932.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DIFFWAGE","type":"number","calc":false,"value":""},{"id":"MULTIPLY","type":"number","calc":false,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""},{"id":"ADD","type":"number","calc":true,"value":""},{"id":"ALLOC","type":"number","calc":true,"value":""},{"id":"SUBTRACT","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/F8933.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"TONSDISP","type":"number","calc":false,"value":""},{"id":"INFLADJ1","type":"percent","calc":true,"value":"21.25"},{"id":"DISPOSED","type":"number","calc":true,"value":""},{"id":"TONSCAPT","type":"number","calc":false,"value":""},{"id":"INFLADJ2","type":"percent","calc":true,"value":"10.63"},{"id":"CAPTURED","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/FDEPEND.content.txt: -------------------------------------------------------------------------------- 1 | Form 1040 2 | Additional Dependents Statement 2013 3 | Line 6c 4 | G 5 | Attach to return (after all IRS forms) 6 | Statement 7 | Name(s) shown on return 8 | Your social security number 9 | Dependents: 10 | (1) (2) (3) (4) 11 | 12 | First name Last name Dependent's Dependent's 13 | b 14 | if qualifying 15 | social security relationship child for 16 | number to you child tax credit 17 | ----------------Page (0) Break---------------- 18 | -------------------------------------------------------------------------------- /test/data/fd/form/FDEPENDA.content.txt: -------------------------------------------------------------------------------- 1 | Form 1040A 2 | Additional Dependents Statement 2013 3 | Line 6c 4 | G 5 | Attach to return (after all IRS forms) 6 | Statement 7 | Name(s) shown on return 8 | Your social security number 9 | Dependents: 10 | (1) (2) (3) (4) 11 | 12 | First name Last name Dependent's Dependent's 13 | b 14 | if qualifying 15 | social security relationship child for 16 | number to you child tax credit 17 | ----------------Page (0) Break---------------- 18 | -------------------------------------------------------------------------------- /test/data/fd/form/FES1.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"L1","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"YSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/FES2.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"L1","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/FES3.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"L1","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"YSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/FES4.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"L1","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"YSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/FSCHB2.content.txt: -------------------------------------------------------------------------------- 1 | Schedule B 2 | Additional Interest Statement 2013 3 | Part I 4 | G 5 | Attach to return (after all IRS forms) 6 | Statement 7 | Name(s) shown on return 8 | Your social security number 9 | List name of payer. 10 | Amount 11 | Total 12 | . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 | . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 | ----------------Page (0) Break---------------- 15 | -------------------------------------------------------------------------------- /test/data/fd/form/FSCHB3.content.txt: -------------------------------------------------------------------------------- 1 | Schedule B 2 | Additional Dividends Statement 3 | 2013 4 | Part II 5 | G 6 | Attach to return (after all IRS forms) 7 | Statement 8 | Name(s) shown on return 9 | Your social security number 10 | List name of payer. 11 | Amount 12 | Total 13 | . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 | . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 | ----------------Page (0) Break---------------- 16 | -------------------------------------------------------------------------------- /test/data/fd/form/FSCHSESS.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"CONSRES","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"Add_SCHSE_Page_2","type":"link","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/form/FSCHSEST.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"CONSRES","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"Add_SCHSE_Page_2","type":"link","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/fd/inst/fd_ins_1040ez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/fd/inst/fd_ins_1040ez.pdf -------------------------------------------------------------------------------- /test/data/ia/availability.json: -------------------------------------------------------------------------------- 1 | { 2 | "formset": [ 3 | { 4 | "id": "S2013IAD", 5 | "version": "0.1", 6 | "agency": "ia", 7 | "main": "ia_scr_1040", 8 | "display_name": "Form 1040", 9 | "forms": [ 10 | {"id": "ia_scr_1040", "planned_date":"01-31-13", "actual_date": "01-15-13"}, 11 | {"id": "ia_scr_1040scha", "planned_date":"01-31-13", "actual_date": ""}, 12 | {"id": "ia_scr_1040schb", "planned_date":"01-31-13", "actual_date": ""}, 13 | {"id": "ia_scr_1040v", "planned_date":"01-31-13", "actual_date": ""}, 14 | {"id": "ia_scr_130", "planned_date":"01-31-13", "actual_date": ""}, 15 | {"id": "ia_scr_148", "planned_date":"01-31-13", "actual_date": ""}, 16 | {"id": "ia_scr_4136", "planned_date":"01-31-13", "actual_date": ""}, 17 | {"id": "ia_scr_4562a", "planned_date":"01-31-13", "actual_date": ""}, 18 | {"id": "ia_scr_4562b", "planned_date":"01-31-13", "actual_date": ""}, 19 | {"id": "ia_scr_6251", "planned_date":"01-31-13", "actual_date": ""} 20 | ] 21 | } 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /test/data/ia/form/ia_scr_1040v.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"YourName","type":"alpha","calc":false,"value":""},{"id":"SSN1","type":"ssn","calc":false,"value":""},{"id":"SpouseName","type":"alpha","calc":false,"value":""},{"id":"SSN1s","type":"ssn","calc":false,"value":""},{"id":"Add1","type":"alpha","calc":false,"value":""},{"id":"Pay","type":"number","calc":false,"value":""},{"id":"Add2","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"alpha","calc":false,"value":""},{"id":"Phone3","type":"phone","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/nd/availability.json: -------------------------------------------------------------------------------- 1 | { 2 | "formset": [ 3 | { 4 | "id": "S2013NDD", 5 | "version": "0.1", 6 | "agency": "nd", 7 | "main": "ND1", 8 | "display_name": "Form ND-1", 9 | "forms": [ 10 | {"id": "ND1", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 11 | {"id": "ND1CR", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 12 | {"id": "ND1SA", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 13 | {"id": "ND1TC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 14 | {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"} 15 | ] 16 | }, 17 | { 18 | "id": "S2013NDD", 19 | "version": "0.1", 20 | "agency": "nd", 21 | "main": "NDEZ", 22 | "display_name": "Form ND-EZ", 23 | "forms": [ 24 | {"id": "NDEZ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 25 | {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"} 26 | ] 27 | } 28 | 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /test/data/nd/form/ND1CR.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"STATEID","type":"alpha","calc":false,"value":""},{"id":"FEDLNE","type":"number","calc":true,"value":""},{"id":"OTHRSTAT","type":"number","calc":false,"value":""},{"id":"STFEDAGI","type":"number","calc":false,"value":""},{"id":"FEDAGI","type":"number","calc":true,"value":""},{"id":"AGIRATIO","type":"alpha","calc":true,"value":""},{"id":"NDTAX","type":"number","calc":true,"value":""},{"id":"NDTAXRED","type":"number","calc":true,"value":""},{"id":"OOSTAX","type":"number","calc":false,"value":""},{"id":"RESCRED","type":"number","calc":true,"value":""},{"id":"PYFEDAGI","type":"alpha","calc":true,"value":""},{"id":"PYRATIO","type":"alpha","calc":true,"value":""},{"id":"OOSTAXRD","type":"alpha","calc":true,"value":""},{"id":"PYRESCRD","type":"alpha","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/nd/form/ND1SA.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"SA1","type":"number","calc":true,"value":""},{"id":"SA2","type":"number","calc":false,"value":""},{"id":"SA3","type":"number","calc":false,"value":""},{"id":"SA4","type":"number","calc":false,"value":""},{"id":"SA5","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/nd/form/VOUCHEF.content.txt: -------------------------------------------------------------------------------- 1 | For Tax 2 | De 3 | p 4 | artment 5 | use onl 6 | y 7 | Do Not use this voucher if paying electronically 8 | Social Security Number 9 | Name 10 | City, State and ZIP Code 11 | 2013 12 | Spouse's Name 13 | Spouse's Social Security Number 14 | Address 15 | Preparer's Name 16 | Preparer's Telephone Number 17 | Amount of Payment 18 | • 19 | • 20 | PO Box 5622 21 | Bismarck, ND 58506-5622 22 | ND-1V 23 | Form ND-1V Electronic Return Payment Voucher 24 | North Dakota Office of State Tax Commissioner 25 | 28726 26 | • 27 | Detach here and mail with your payment 28 | 29 | 30 | 31 | 32 | 33 | 34 | Address 35 | Due 15th day of 4th month following end of tax year. 36 | Make check or money order payable to "ND State Tax Commissioner." 37 | Mail payment and voucher to: Office of State Tax Commissioner 38 | ----------------Page (0) Break---------------- 39 | -------------------------------------------------------------------------------- /test/data/nd/form/VOUCHEF.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPINIT","type":"mask","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPINIT","type":"mask","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"APTNO","type":"alpha","calc":true,"value":""},{"id":"ADDR2","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"PMTAMT","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/nd/inst/NDSchCode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/nd/inst/NDSchCode.pdf -------------------------------------------------------------------------------- /test/data/or/availability.json: -------------------------------------------------------------------------------- 1 | { 2 | "formset": [ 3 | { 4 | "id": "S2013ORD", 5 | "version": "0.1", 6 | "agency": "or", 7 | "main": "OR40", 8 | "display_name": "Form 40", 9 | "forms": [ 10 | {"id": "OR40", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 11 | {"id": "ORWFC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 12 | {"id": "ORASC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 13 | {"id": "OR529", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 14 | {"id": "OR10", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 15 | {"id": "VOUCH", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 16 | {"id": "ORSCHA", "planned_date":"01-28-14", "actual_date": "01-28-14"} 17 | ] 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /test/data/or/form/OR40DEP.content.txt: -------------------------------------------------------------------------------- 1 | Form 40 2 | Dependents Statement 3 | 2013 4 | Line 6c and Line 6d 5 | Attach to your return 6 | Statement 7 | Name(s) shown on return 8 | Social Security number (SSN) 9 | 6c All dependents: 6d Disabled children only: 10 | Check the boxes if 11 | your dependents First names First names 12 | are disabled children 13 | Total number of dependents: 14 | Total number of disabled children: 15 | ----------------Page (0) Break---------------- 16 | -------------------------------------------------------------------------------- /test/data/or/form/VOUCH.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"FILERBX","type":"box","calc":false,"value":""},{"id":"PMTBX1","type":"box","calc":true,"value":""},{"id":"ADDRBX","type":"box","calc":false,"value":""},{"id":"TYEND","type":"date","calc":true,"value":""},{"id":"PHONE","type":"phone","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPMI","type":"alpha","calc":true,"value":""},{"id":"TPSSN1","type":"ssn","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPMI","type":"alpha","calc":true,"value":""},{"id":"SPSSN1","type":"ssn","calc":true,"value":""},{"id":"AMT1","type":"number","calc":false,"value":""},{"id":"ADDR1","type":"alpha","calc":true,"value":""},{"id":"CITY1","type":"alpha","calc":true,"value":""},{"id":"ST1","type":"alpha","calc":true,"value":""},{"id":"ZIP1","type":"zip","calc":true,"value":""},{"id":"SCAN","type":"alpha","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/or/inst/or_ins_10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/or/inst/or_ins_10.pdf -------------------------------------------------------------------------------- /test/data/pa/form/VOUCH.content.txt: -------------------------------------------------------------------------------- 1 | For use with your 2013 Annual Pennsylvania Tax Return 2 | Your Social Security No. Spouse's Social Security No. 3 | P.O. Box, Apt, Suite, Floor, Rural Route No., etc 4 | Payment Amount 5 | $ 6 | Make check or money order 7 | payable to the Pennsylvania 8 | Department of Revenue 9 | Last Name 10 | Your First Name 11 | Your Middle Initial 12 | Spouse's Last Name 13 | Spouse's First Name 14 | Middle Initial 15 | City 16 | State 17 | ZIP Code 18 | Telephone 19 | Form 20 | Pennsylvania 21 | PA-V 22 | Payment Voucher 23 | 2013 24 | ----------------Page (0) Break---------------- 25 | -------------------------------------------------------------------------------- /test/data/pa/form/VOUCH.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"RT","type":"mask","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"TFNAME","type":"alpha","calc":true,"value":""},{"id":"TPMI","type":"mask","calc":true,"value":""},{"id":"SLNAME","type":"alpha","calc":true,"value":""},{"id":"SFNAME","type":"alpha","calc":true,"value":""},{"id":"SPMI","type":"mask","calc":true,"value":""},{"id":"ADDR1","type":"alpha","calc":true,"value":""},{"id":"ADDR2","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"PHONE","type":"phone","calc":true,"value":""},{"id":"AMOUNT","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/pa/inst/pa_ins_pa40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/pa/inst/pa_ins_pa40.pdf -------------------------------------------------------------------------------- /test/data/pa/inst/pa_schoolcode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/pa/inst/pa_schoolcode.pdf -------------------------------------------------------------------------------- /test/data/sc/availability.json: -------------------------------------------------------------------------------- 1 | { 2 | "formset": [ 3 | { 4 | "id": "S2013SCD", 5 | "version": "0.1", 6 | "agency": "sc", 7 | "main": "F1040", 8 | "display_name": "Form 1040", 9 | "forms": [ 10 | {"id": "F1040", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 11 | {"id": "F1040DEP", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 12 | {"id": "F319", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 13 | {"id": "F330", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 14 | {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 15 | {"id": "F8453", "planned_date":"01-28-14", "actual_date": "01-28-14"} 16 | ] 17 | } 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /test/data/sc/form/F1040DEP.content.txt: -------------------------------------------------------------------------------- 1 | SC1040 2 | Additional Dependents Statement 2013 3 | Attach to your return 4 | Statement 5 | Name(s) shown on return 6 | Your social security number 7 | Dependents: 8 | First name Last name Social security Relationship Date of birth 9 | number (MM/DD/YYYY) 10 | ----------------Page (0) Break---------------- 11 | -------------------------------------------------------------------------------- /test/data/sc/form/F330.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ENDNGFND","type":"number","calc":false,"value":""},{"id":"CHILDTFN","type":"number","calc":false,"value":""},{"id":"ELDTFND","type":"number","calc":false,"value":""},{"id":"VETFND","type":"number","calc":false,"value":""},{"id":"GOLTFND","type":"number","calc":false,"value":""},{"id":"FSTSPFND","type":"number","calc":false,"value":""},{"id":"WARFND","type":"number","calc":false,"value":""},{"id":"LTTRFND","type":"number","calc":false,"value":""},{"id":"LAWFND","type":"number","calc":false,"value":""},{"id":"K12FND","type":"number","calc":false,"value":""},{"id":"STPRKFND","type":"number","calc":false,"value":""},{"id":"MLTRYFND","type":"number","calc":false,"value":""},{"id":"CONBTFND","type":"number","calc":false,"value":""},{"id":"FINLFND","type":"number","calc":false,"value":""},{"id":"FRSTFND","type":"number","calc":false,"value":""},{"id":"NATRES","type":"number","calc":false,"value":""},{"id":"TOTCONT","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/sc/form/VOUCHEF.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"CFILERBX","type":"box","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"CONTROL","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"PAY","type":"number","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/sc/formset.json: -------------------------------------------------------------------------------- 1 | { 2 | "formset" :{ 3 | "id": "S2013SCD", 4 | "version": "0.1", 5 | "agency": "sc", 6 | "main": "F1040", 7 | "forms": [ 8 | {"id": "F1040", "name":"SC1040 - INDIVIDUAL INCOME TAX RETURN", "mc": false, "max": 1, "parent": null, 9 | "inst":"sc_ins_1040", "efmid":"EFINFOSC", "cid": "1040"}, 10 | {"id": "F1040DEP", "name":"Additional Dependents Statement", "mc": false, "max": 1, "parent": null, 11 | "inst":"sc_ins_1040", "cid": "1040"}, 12 | {"id": "F319","name":"I-319 - TUITION TAX CREDIT", "mc": true, "max": 5, "parent": null, "inst":"sc_ins_319", "cid": "i319"}, 13 | {"id": "F330","name":"I-330 - CONTRIBUTIONS FOR CHECK-OFFS", "mc": false, "max": 1, "parent": null, "inst":"sc_ins_330", "cid": "i330"}, 14 | {"id": "VOUCHEF", "name":"SC1040-V - INDIVIDUAL INCOME TAX PAYMENT VOUCHER", "mc": false, "max": 1, "parent": null, "inst":"sc_ins_1040V", "cid": "1040v"}, 15 | {"id": "F8453", "name":"SC8453 - INDIVIDUAL INCOME TAX DECLARATION FOR ELECTRONIC FILING", "mc": false, "max": 1, "parent": null, "inst":"sc_ins_8453", "cid": "8453"} 16 | ] 17 | } 18 | } -------------------------------------------------------------------------------- /test/data/sc/inst/sc_ins_1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/sc/inst/sc_ins_1040.pdf -------------------------------------------------------------------------------- /test/data/va/availability.json: -------------------------------------------------------------------------------- 1 | { 2 | "formset": [ 3 | { 4 | "id": "S2013VAD", 5 | "version": "0.2", 6 | "agency": "va", 7 | "main": "VA760", 8 | "display_name": "Form 760", 9 | "forms": [ 10 | {"id": "VA760", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 11 | {"id": "VA760C", "planned_date":"02-13-14", "actual_date": "01-28-14"}, 12 | {"id": "VA760F", "planned_date":"02-13-14", "actual_date": "01-28-14"}, 13 | {"id": "VA760PFF", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 14 | {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 15 | {"id": "VAADJ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 16 | {"id": "VASCR", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 17 | {"id": "VASCR2", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 18 | {"id": "VASCR3", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 19 | {"id": "VAOSC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, 20 | {"id": "VAFED", "planned_date":"01-28-14", "actual_date": "01-28-14"} 21 | ] 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /test/data/va/form/VA760F.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"APPROVED","type":"alpha","calc":true,"value":"Virginia Approved Form for Filing"},{"id":"BDATE","type":"date","calc":false,"value":""},{"id":"EDATE","type":"date","calc":false,"value":""},{"id":"YEAR","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"mask","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""}] -------------------------------------------------------------------------------- /test/data/va/form/VA760PFF.content.txt: -------------------------------------------------------------------------------- 1 | 0000000000 7648888 113001 2 | Form 760-PFF 3 | 4 | 2013 Payment Coupon for Farmers, Fishermen and Merchant Seamen 5 | (DOC ID 764) 6 | 7 | Please do not staple 8 | To Be Used For Payments On Previously 9 | 10 | Filed 2013 Individual Income Tax Returns Only 11 | Your Social Security Number 12 | Spouse’s Social Security Number 13 | Mail Payment To: 14 | 15 | VA Department of Taxation 16 | 17 | P.O. Box 1478 18 | 19 | Richmond, VA 23218-1478 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | Name(s) 30 | Address 31 | City 32 | State 33 | ZIP 34 | Daytime Phone Number 35 | Amount of 36 | 37 | Payment 38 | Make your check payable to the 39 | 40 | Virginia Department of Taxation 41 | . 42 | 0 43 | 44 | 0 45 | ----------------Page (0) Break---------------- 46 | -------------------------------------------------------------------------------- /test/data/va/form/VA760PFF.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"NAME1","type":"alpha","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"DPHONE","type":"phone","calc":true,"value":""},{"id":"PAYMENT","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/va/form/VOUCHEF.content.txt: -------------------------------------------------------------------------------- 1 | 0000000000 7618888 113001 2 | Form 760-PMT 2013 Payment Coupon 3 | (DOC ID 761) 4 | 5 | Please do not staple 6 | To Be Used For Payments On Previously 7 | 8 | Filed 2013 Individual Income Tax Returns Only 9 | Your Social Security Number 10 | Spouse’s Social Security Number 11 | Mail Payment To: 12 | 13 | VA Department of Taxation 14 | 15 | P.O. Box 1478 16 | 17 | Richmond, VA 23218-1478 18 | Address 19 | City 20 | State 21 | ZIP 22 | Daytime Phone Number 23 | Amount of 24 | 25 | Payment 26 | Make your check payable to the 27 | 28 | Virginia Department of Taxation 29 | . 30 | 0 31 | 32 | 0 33 | Name(s) 34 | ----------------Page (0) Break---------------- 35 | -------------------------------------------------------------------------------- /test/data/va/form/VOUCHEF.fields.json: -------------------------------------------------------------------------------- 1 | [{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"NAME1","type":"alpha","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"DPHONE","type":"phone","calc":true,"value":""},{"id":"PAYMENT","type":"number","calc":false,"value":""}] -------------------------------------------------------------------------------- /test/data/va/inst/va_ins_760cg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/data/va/inst/va_ins_760cg.pdf -------------------------------------------------------------------------------- /test/p2j.forms.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | STARTTIME=$(date +%s) 3 | AGENCIES=("dc" "de" "ef" "fd" "nd" "or" "pa" "sc" "va") 4 | for i in "${AGENCIES[@]}" 5 | do 6 | sh ./p2j.one.sh $i form "Expected: NO Exception, All Parsed OK" 7 | done 8 | 9 | # Travis CI doesn't seem to support arrays in bash for testing. 10 | # Reverting to a bunch of commands so that build button can be shown. 11 | # sh ./p2j.one.sh dc 12 | # sh ./p2j.one.sh de 13 | # sh ./p2j.one.sh ef 14 | # sh ./p2j.one.sh fd 15 | # sh ./p2j.one.sh nd 16 | # sh ./p2j.one.sh or 17 | # sh ./p2j.one.sh pa 18 | # sh ./p2j.one.sh sc 19 | # sh ./p2j.one.sh va 20 | 21 | ENDTIME=$(date +%s) 22 | echo "It takes $(($ENDTIME - $STARTTIME)) seconds to process all PDFs ..." 23 | -------------------------------------------------------------------------------- /test/p2j.one.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | IN_DIR_BASE=./pdf 3 | OUT_DIR_BASE=./target 4 | DATA_DIR_BASE=./data 5 | PDF2JSON=../bin/pdf2json.js 6 | AGENCY_NAME=$1 7 | FORM_BASE=$2 8 | EXPECTED_RESULT=$3 9 | 10 | echo "-----------------------------------------------------" 11 | echo "Clean up existing $AGENCY_NAME JSON" 12 | echo "-----------------------------------------------------" 13 | rm -rfv $OUT_DIR_BASE/$AGENCY_NAME 14 | 15 | echo "-----------------------------------------------------" 16 | echo "Update $AGENCY_NAME PDF" 17 | echo "-----------------------------------------------------" 18 | mkdir -p $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE 19 | $PDF2JSON -f $IN_DIR_BASE/$AGENCY_NAME/$FORM_BASE -o $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE -s -t -c -m 20 | # diff -rq $OUT_DIR_BASE$AGENCY_NAME/$FORM_BASE/ $DATA_DIR_BASE$AGENCY_NAME/$FORM_BASE/ 21 | 22 | echo "-----------------------------------------------------" 23 | echo "$IN_DIR_BASE/$AGENCY_NAME/$FORM_BASE : $EXPECTED_RESULT" 24 | echo "-----------------------------------------------------" 25 | -------------------------------------------------------------------------------- /test/pdf/dc/form/DC2210.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DC2210.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DC40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DC40.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DC40EZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DC40EZ.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DCSCHH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DCSCHH.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DCSCHH34.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DCSCHH34.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DCSCHI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DCSCHI.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DCSCHN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DCSCHN.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DCSCHNS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DCSCHNS.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DCSCHS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DCSCHS.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/DCSCHU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/DCSCHU.pdf -------------------------------------------------------------------------------- /test/pdf/dc/form/VOUCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/form/VOUCH.pdf -------------------------------------------------------------------------------- /test/pdf/dc/inst/dc_ins_2210.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/inst/dc_ins_2210.pdf -------------------------------------------------------------------------------- /test/pdf/dc/inst/dc_ins_40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/inst/dc_ins_40.pdf -------------------------------------------------------------------------------- /test/pdf/dc/inst/dc_ins_40ez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/dc/inst/dc_ins_40ez.pdf -------------------------------------------------------------------------------- /test/pdf/de/form/DE200_01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/de/form/DE200_01.pdf -------------------------------------------------------------------------------- /test/pdf/de/form/DE201P3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/de/form/DE201P3.pdf -------------------------------------------------------------------------------- /test/pdf/de/form/DE329S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/de/form/DE329S.pdf -------------------------------------------------------------------------------- /test/pdf/de/form/DE329T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/de/form/DE329T.pdf -------------------------------------------------------------------------------- /test/pdf/de/form/VOUCHEF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/de/form/VOUCHEF.pdf -------------------------------------------------------------------------------- /test/pdf/de/inst/de_ins_DE200-01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/de/inst/de_ins_DE200-01.pdf -------------------------------------------------------------------------------- /test/pdf/de/inst/de_ins_DEVOUCHEF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/de/inst/de_ins_DEVOUCHEF.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/A1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/A1040.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/A1040A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/A1040A.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/A1040EZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/A1040EZ.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFIDCEZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFIDCEZ.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFIF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFIF.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFIFA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFIFA.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFIFEZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFIFEZ.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFINDEZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFINDEZ.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFINFODC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFINFODC.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFINFODE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFINFODE.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFINFOND.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFINFOND.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFINFOOR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFINFOOR.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFINFOPA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFINFOPA.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFINFOSC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFINFOSC.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/EFINFOVA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/EFINFOVA.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/F1099D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/F1099D.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/F1099G.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/F1099G.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/F1099I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/F1099I.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/F1099R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/F1099R.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/F99MPER.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/F99MPER.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/FW2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/FW2.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/FW2G.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/FW2G.pdf -------------------------------------------------------------------------------- /test/pdf/ef/form/PAStep_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/form/PAStep_2.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_1040.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_1040a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_1040a.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_1040ez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_1040ez.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_1099div.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_1099div.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_1099g.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_1099g.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_1099int.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_1099int.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_1099misc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_1099misc.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_1099r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_1099r.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_dc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_dc.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_de.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_de.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_fd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_fd.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_nd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_nd.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_or.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_or.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_pa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_pa.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_sc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_sc.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_va.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_va.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_w2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_w2.pdf -------------------------------------------------------------------------------- /test/pdf/ef/inst/ef_ins_w2g.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ef/inst/ef_ins_w2g.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F1040.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F1040A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F1040A.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F1040EZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F1040EZ.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F1040ST.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F1040ST.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F1040V.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F1040V.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F1116.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F1116.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F1310.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F1310.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F1310S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F1310S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2106.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2106.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2106EZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2106EZ.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2106EZS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2106EZS.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2106S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2106S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2120.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2120.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2210.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2210.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2210AI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2210AI.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2210F.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2210F.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2439.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2439.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2441.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2441.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2441DEP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2441DEP.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F255512S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F255512S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F255512T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F255512T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F25553S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F25553S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F25553T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F25553T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2555EZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2555EZ.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F2555EZS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F2555EZS.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F3468.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F3468.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F3800.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F3800.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F3800MLT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F3800MLT.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F3903.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F3903.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4136.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4136.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4137S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4137S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4137T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4137T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4255.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4255.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4562C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4562C.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4562E.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4562E.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4562F.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4562F.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4562R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4562R.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4684.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4684.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F46842.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F46842.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F46843.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F46843.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4797.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4797.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F47972.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F47972.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4835.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4835.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4868.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4868.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4952.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4952.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4972S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4972S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F4972T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F4972T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F5329S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F5329S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F5329T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F5329T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F5405.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F5405.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F5695.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F5695.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F5884.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F5884.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6198C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6198C.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6198E.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6198E.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6198F.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6198F.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6198R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6198R.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6251.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6251.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6252.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6252.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6478.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6478.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6765.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6765.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6765P2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6765P2.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F6781.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F6781.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8082.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8082.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8275.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8275.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8275R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8275R.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8283.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8283.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8379.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8379.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8396.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8396.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8453.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8453.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8582.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8582.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8582CR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8582CR.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8582W15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8582W15.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8582W6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8582W6.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8586.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8586.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8594.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8594.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8606S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8606S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8606T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8606T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8609A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8609A.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8611.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8611.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8615.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8615.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8689.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8689.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8697.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8697.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8801.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8801.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8812.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8812.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8814.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8814.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8815.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8815.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8820.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8820.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8824.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8824.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8826.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8826.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8828.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8828.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8829.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8829.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8833.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8833.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8834.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8834.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8839.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8839.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8844.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8844.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8845.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8845.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8846.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8846.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8853.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8853.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F88532.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F88532.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8859.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8859.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8862.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8862.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8863.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8863.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8863P2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8863P2.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8864.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8864.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8874.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8874.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8880.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8880.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8881.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8881.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8882.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8882.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8885S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8885S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8885T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8885T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8886.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8886.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8888.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8888.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8889S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8889S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8889T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8889T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8891.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8891.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8903.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8903.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8906.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8906.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8907.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8907.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8908.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8908.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8909.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8909.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8910.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8910.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8911.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8911.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8917.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8917.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8919S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8919S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8919T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8919T.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8931.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8931.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8932.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8932.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8933.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8933.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8936.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8936.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8938.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8938.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8941.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8941.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8941S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8941S.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8949LT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8949LT.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8949ST.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8949ST.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8959.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8959.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F8960.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F8960.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F9465.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F9465.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/F982.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/F982.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FDEPEND.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FDEPEND.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FDEPENDA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FDEPENDA.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FES1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FES1.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FES2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FES2.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FES3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FES3.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FES4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FES4.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHA.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHB.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHB2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHB2.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHB3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHB3.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHC.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHCEZS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHCEZS.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHCEZT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHCEZT.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHD.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHE1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHE1.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHE2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHE2.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHEIC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHEIC.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHF.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHHS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHHS.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHHT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHHT.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHJ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHJ.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHR.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHSELS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHSELS.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHSELT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHSELT.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHSESS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHSESS.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FSCHSEST.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FSCHSEST.pdf -------------------------------------------------------------------------------- /test/pdf/fd/form/FW2G.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/form/FW2G.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchA.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchC.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchCEZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchCEZ.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchD.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchE.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchF.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchH.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchJ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchJ.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040SchSE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040SchSE.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040a.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040es.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040es.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040ez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040ez.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1040v.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1040v.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1116.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1116.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_1310.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_1310.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2106.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2106.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2106EZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2106EZ.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2120.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2120.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2210.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2210.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2210F.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2210F.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2439.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2439.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2441.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2441.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2555.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2555.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_2555EZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_2555EZ.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_3468.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_3468.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_3800.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_3800.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_3903.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_3903.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4136.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4136.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4137.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4137.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4255.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4255.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4562.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4562.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4684.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4684.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4797.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4797.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4835.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4835.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4868.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4868.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4952.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4952.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_4972.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_4972.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_5329.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_5329.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_5405.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_5405.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_5695.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_5695.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_5884.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_5884.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_6198.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_6198.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_6251.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_6251.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_6252.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_6252.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_6478.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_6478.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_6765.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_6765.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_6781.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_6781.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8082.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8082.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8275.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8275.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8275R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8275R.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8283.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8283.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8379.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8379.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8396.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8396.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8582.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8582.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8582CR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8582CR.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8586.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8586.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8594.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8594.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8606.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8606.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8609a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8609a.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8611.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8611.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8615.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8615.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8689.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8689.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8697.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8697.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8801.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8801.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8812.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8812.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8814.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8814.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8815.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8815.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8820.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8820.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8824.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8824.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8826.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8826.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8828.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8828.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8829.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8829.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8833.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8833.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8834.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8834.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8839.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8839.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8844.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8844.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8845.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8845.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8846.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8846.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8853.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8853.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8859.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8859.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8862.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8862.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8863.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8863.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8864.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8864.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8874.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8874.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8880.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8880.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8881.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8881.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8882.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8882.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8885.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8885.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8886.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8886.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8888.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8888.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8889.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8889.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8891.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8891.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8903.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8903.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8906.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8906.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8907.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8907.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8908.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8908.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8909.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8909.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8910.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8910.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8911.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8911.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8917.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8917.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8919.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8919.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8931.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8931.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8932.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8932.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8933.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8933.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8936.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8936.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8938.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8938.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8941.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8941.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8949.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8949.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8959.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8959.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_8960.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_8960.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_9465.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_9465.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_982.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_982.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_SchB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_SchB.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_SchEIC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_SchEIC.pdf -------------------------------------------------------------------------------- /test/pdf/fd/inst/fd_ins_SchR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/fd/inst/fd_ins_SchR.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_1040.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_1040scha.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_1040scha.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_1040schb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_1040schb.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_1040v.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_1040v.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_130.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_130.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_148.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_148.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_4136.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_4136.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_4562a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_4562a.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_4562b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_4562b.pdf -------------------------------------------------------------------------------- /test/pdf/ia/form/ia_scr_6251.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/form/ia_scr_6251.pdf -------------------------------------------------------------------------------- /test/pdf/ia/inst/ia_ins_1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/inst/ia_ins_1040.pdf -------------------------------------------------------------------------------- /test/pdf/ia/inst/ia_ins_1040v.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/inst/ia_ins_1040v.pdf -------------------------------------------------------------------------------- /test/pdf/ia/inst/ia_ins_130.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/inst/ia_ins_130.pdf -------------------------------------------------------------------------------- /test/pdf/ia/inst/ia_ins_148.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/inst/ia_ins_148.pdf -------------------------------------------------------------------------------- /test/pdf/ia/inst/ia_ins_4136.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/inst/ia_ins_4136.pdf -------------------------------------------------------------------------------- /test/pdf/ia/inst/ia_ins_4562a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/inst/ia_ins_4562a.pdf -------------------------------------------------------------------------------- /test/pdf/ia/inst/ia_ins_4562b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/inst/ia_ins_4562b.pdf -------------------------------------------------------------------------------- /test/pdf/ia/inst/ia_ins_6251.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/ia/inst/ia_ins_6251.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i200_err_test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i200_err_test.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i216_nuclear.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i216_nuclear.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i221_tianjin_invoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i221_tianjin_invoice.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i242_testingWithTable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i242_testingWithTable.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i255_emojis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i255_emojis.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i262_4hXzVq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i262_4hXzVq.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i26_crash_18277.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i26_crash_18277.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i277_GetViolationImage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i277_GetViolationImage.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i28_line_break_210.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i28_line_break_210.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i293_pdfpac.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i293_pdfpac.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i306_err_invalid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i306_err_invalid.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i318_error.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i318_error.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i321_21583473018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i321_21583473018.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i369_3fields.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i369_3fields.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i373_err_broken.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i373_err_broken.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i43_err_encrypted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i43_err_encrypted.pdf -------------------------------------------------------------------------------- /test/pdf/misc/i64_schedule_generator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/i64_schedule_generator.pdf -------------------------------------------------------------------------------- /test/pdf/misc/pr298_rect_fix_from_upstream.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/misc/pr298_rect_fix_from_upstream.pdf -------------------------------------------------------------------------------- /test/pdf/nd/form/ND1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/form/ND1.pdf -------------------------------------------------------------------------------- /test/pdf/nd/form/ND1CR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/form/ND1CR.pdf -------------------------------------------------------------------------------- /test/pdf/nd/form/ND1SA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/form/ND1SA.pdf -------------------------------------------------------------------------------- /test/pdf/nd/form/ND1TC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/form/ND1TC.pdf -------------------------------------------------------------------------------- /test/pdf/nd/form/NDEZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/form/NDEZ.pdf -------------------------------------------------------------------------------- /test/pdf/nd/form/VOUCHEF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/form/VOUCHEF.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/EXPL01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/EXPL01.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/Federal Info Wks_Flowable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/Federal Info Wks_Flowable.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/NDSchCode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/NDSchCode.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/nd_ins_1v.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/nd_ins_1v.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/nd_ins_cr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/nd_ins_cr.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/nd_ins_nd1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/nd_ins_nd1.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/nd_ins_nd1tc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/nd_ins_nd1tc.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/nd_ins_sa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/nd_ins_sa.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/nd_ins_taxtable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/nd_ins_taxtable.pdf -------------------------------------------------------------------------------- /test/pdf/nd/inst/nd_ins_tc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/nd/inst/nd_ins_tc.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/OR10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/OR10.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/OR40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/OR40.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/OR40DEP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/OR40DEP.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/OR529.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/OR529.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/ORASC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/ORASC.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/ORSCHA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/ORSCHA.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/ORWFC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/ORWFC.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/ORWFCDEP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/ORWFCDEP.pdf -------------------------------------------------------------------------------- /test/pdf/or/form/VOUCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/form/VOUCH.pdf -------------------------------------------------------------------------------- /test/pdf/or/inst/Federal Info Wks_ORD_Flowable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/inst/Federal Info Wks_ORD_Flowable.pdf -------------------------------------------------------------------------------- /test/pdf/or/inst/NotSpt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/inst/NotSpt.pdf -------------------------------------------------------------------------------- /test/pdf/or/inst/or_ins_10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/inst/or_ins_10.pdf -------------------------------------------------------------------------------- /test/pdf/or/inst/or_ins_40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/inst/or_ins_40.pdf -------------------------------------------------------------------------------- /test/pdf/or/inst/or_ins_ORSCHA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/inst/or_ins_ORSCHA.pdf -------------------------------------------------------------------------------- /test/pdf/or/inst/or_ins_WFC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/or/inst/or_ins_WFC.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/DEP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/DEP.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/F8453.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/F8453.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/PA40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/PA40.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/PAC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/PAC.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/PASCHOC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/PASCHOC.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/SCHABT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/SCHABT.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/SCHDT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/SCHDT.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/SCHJT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/SCHJT.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/SCHO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/SCHO.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/SE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/SE.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/SSP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/SSP.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/SUE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/SUE.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/VOUCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/VOUCH.pdf -------------------------------------------------------------------------------- /test/pdf/pa/form/W2S.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/form/W2S.pdf -------------------------------------------------------------------------------- /test/pdf/pa/inst/pa_expl01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/inst/pa_expl01.pdf -------------------------------------------------------------------------------- /test/pdf/pa/inst/pa_ins_8453.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/inst/pa_ins_8453.pdf -------------------------------------------------------------------------------- /test/pdf/pa/inst/pa_ins_IncTable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/inst/pa_ins_IncTable.pdf -------------------------------------------------------------------------------- /test/pdf/pa/inst/pa_ins_pa-v.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/inst/pa_ins_pa-v.pdf -------------------------------------------------------------------------------- /test/pdf/pa/inst/pa_ins_pa40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/inst/pa_ins_pa40.pdf -------------------------------------------------------------------------------- /test/pdf/pa/inst/pa_ins_schc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/inst/pa_ins_schc.pdf -------------------------------------------------------------------------------- /test/pdf/pa/inst/pa_ins_schoc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/inst/pa_ins_schoc.pdf -------------------------------------------------------------------------------- /test/pdf/pa/inst/pa_schoolcode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/pa/inst/pa_schoolcode.pdf -------------------------------------------------------------------------------- /test/pdf/sc/form/F1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/form/F1040.pdf -------------------------------------------------------------------------------- /test/pdf/sc/form/F1040DEP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/form/F1040DEP.pdf -------------------------------------------------------------------------------- /test/pdf/sc/form/F319.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/form/F319.pdf -------------------------------------------------------------------------------- /test/pdf/sc/form/F330.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/form/F330.pdf -------------------------------------------------------------------------------- /test/pdf/sc/form/F8453.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/form/F8453.pdf -------------------------------------------------------------------------------- /test/pdf/sc/form/VOUCHEF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/form/VOUCHEF.pdf -------------------------------------------------------------------------------- /test/pdf/sc/inst/NotSpt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/inst/NotSpt.pdf -------------------------------------------------------------------------------- /test/pdf/sc/inst/SCCntyCd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/inst/SCCntyCd.pdf -------------------------------------------------------------------------------- /test/pdf/sc/inst/sc_ins_1040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/inst/sc_ins_1040.pdf -------------------------------------------------------------------------------- /test/pdf/sc/inst/sc_ins_1040V.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/inst/sc_ins_1040V.pdf -------------------------------------------------------------------------------- /test/pdf/sc/inst/sc_ins_319.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/inst/sc_ins_319.pdf -------------------------------------------------------------------------------- /test/pdf/sc/inst/sc_ins_330.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/inst/sc_ins_330.pdf -------------------------------------------------------------------------------- /test/pdf/sc/inst/sc_ins_8453.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/sc/inst/sc_ins_8453.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VA760.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VA760.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VA760C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VA760C.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VA760F.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VA760F.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VA760PFF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VA760PFF.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VAADJ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VAADJ.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VAFED.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VAFED.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VAOSC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VAOSC.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VASCR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VASCR.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VASCR2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VASCR2.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VASCR3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VASCR3.pdf -------------------------------------------------------------------------------- /test/pdf/va/form/VOUCHEF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/form/VOUCHEF.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/SchFound.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/SchFound.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/VA SchFED Ins_Flowable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/VA SchFED Ins_Flowable.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/VALoclCd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/VALoclCd.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_expl01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_expl01.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_ins_760c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_ins_760c.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_ins_760cg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_ins_760cg.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_ins_760f.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_ins_760f.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_ins_760pff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_ins_760pff.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_ins_760pmt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_ins_760pmt.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_ins_efinstructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_ins_efinstructions.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_ins_schcr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_ins_schcr.pdf -------------------------------------------------------------------------------- /test/pdf/va/inst/va_ins_schfed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesty/pdf2json/f6ec2a598f1892d100685b38307b5c8357a35e5a/test/pdf/va/inst/va_ins_schfed.pdf -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "forceConsistentCasingInFileNames": true, 5 | "rootDir": ".", 6 | "outDir": "./bin", 7 | "baseUrl": ".", 8 | "sourceMap": true, 9 | "declaration": false, 10 | "declarationMap": false, 11 | "moduleResolution": "node", 12 | "emitDecoratorMetadata": true, 13 | "experimentalDecorators": true, 14 | "allowSyntheticDefaultImports": true, 15 | "importHelpers": true, 16 | "strict": true, 17 | "target": "es2022", 18 | "module": "esnext", 19 | "lib": ["es2022"], 20 | "skipLibCheck": true, 21 | "skipDefaultLibCheck": true, 22 | "esModuleInterop": true, 23 | "resolveJsonModule": true, 24 | "allowJs": true, 25 | "checkJs": true, 26 | }, 27 | "include": [ 28 | "./src/**/*.ts", 29 | "./*.d.ts", 30 | "./lib/**/*.js", 31 | "./pdfparser.js" 32 | ], 33 | "exclude": [ 34 | "./lib/pdfjs-code.js" 35 | ] 36 | } 37 | --------------------------------------------------------------------------------