]> git.immae.eu Git - github/fretlink/edi-parser.git/commit
Release code as open source master
authorFrédéric Menou <frederic.menou@fretlink.com>
Thu, 8 Dec 2016 08:19:15 +0000 (10:19 +0200)
committerIsmaël Bouya <ismael.bouya@fretlink.com>
Tue, 17 May 2022 16:01:51 +0000 (18:01 +0200)
commita9d77a20008efe82862cc1adbfa7a6d4f09f8ff7
treeadf3186fdccaeef19151026cdfbd38a530cf9ecb
Release code as open source
1405 files changed:
.github/workflows/pr.yml [new file with mode: 0644]
.gitignore [new file with mode: 0644]
.hlint.yaml [new file with mode: 0644]
LICENSE [new file with mode: 0644]
Makefile [new file with mode: 0644]
README.md [new file with mode: 0644]
core/Makefile [new file with mode: 0644]
core/README.md [new file with mode: 0644]
core/edi-parser-core.cabal [new file with mode: 0644]
core/package.yaml [new file with mode: 0644]
core/src/Text/Edifact/Common.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Composites.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Segments.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Segments/UNA.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Segments/UNB.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Segments/UNH.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Segments/UNS.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Segments/UNT.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Segments/UNZ.hs [new file with mode: 0644]
core/src/Text/Edifact/Common/Simples.hs [new file with mode: 0644]
core/src/Text/Edifact/Inspect.hs [new file with mode: 0644]
core/src/Text/Edifact/Parsing.hs [new file with mode: 0644]
core/src/Text/Edifact/Parsing/Combinators.hs [new file with mode: 0644]
core/src/Text/Edifact/Parsing/Commons.hs [new file with mode: 0644]
core/src/Text/Edifact/Parsing/Primitives.hs [new file with mode: 0644]
core/src/Text/Edifact/Types.hs [new file with mode: 0644]
core/test/Parsing/CombinatorsTest.hs [new file with mode: 0644]
core/test/Parsing/PrimitivesTest.hs [new file with mode: 0644]
core/test/ParsingTest.hs [new file with mode: 0644]
core/test/Spec.hs [new file with mode: 0644]
default.nix [new file with mode: 0644]
release-bundle.nix [new file with mode: 0644]
release.nix [new file with mode: 0644]
scaffolder/.gitignore [new file with mode: 0644]
scaffolder/Makefile [new file with mode: 0644]
scaffolder/README.md [new file with mode: 0644]
scaffolder/app/Main.hs [new file with mode: 0644]
scaffolder/edi-parser-scaffolder.cabal [new file with mode: 0644]
scaffolder/package.yaml [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader/CodedSimples.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader/Commons.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader/Composites.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader/Configuration.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader/Extractor.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader/Messages.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader/Segments.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/BundleReader/Simples.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Fetcher.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Fetcher/Commons.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Fetcher/Composites.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Fetcher/Configuration.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Fetcher/Messages.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Fetcher/Segments.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Fetcher/Simples.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/CodedSimples/Specification.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Commons.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Commons/Formatters.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Commons/Language.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Commons/Logging.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Commons/Parsing.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Commons/Text.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Commons/Types.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Composites.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Composites/Dependencies.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Composites/Elements.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Composites/Implementation.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Composites/Specification.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Composites/Types.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Messages.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Messages/Dependencies.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Messages/Elements.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Messages/Implementation.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Messages/Specification.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Messages/Types.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Root.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Segments.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Segments/Dependencies.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Segments/Elements.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Segments/Implementation.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Segments/Specification.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Segments/Types.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Simples.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Simples/Elements.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Simples/Implementation.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Simples/Representation.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Simples/Specification.hs [new file with mode: 0644]
scaffolder/src/Text/Edifact/Scaffolder/Simples/Types.hs [new file with mode: 0644]
scripts/documentation-versioning.sh [new file with mode: 0755]
scripts/scaffolder.sh [new file with mode: 0755]
specification/Makefile [new file with mode: 0644]
specification/README.md [new file with mode: 0644]
specification/app/Main.hs [new file with mode: 0644]
specification/edi-parser-specification.cabal [new file with mode: 0644]
specification/package.yaml [new file with mode: 0644]
specification/references/D01B/composites/c002.txt [new file with mode: 0644]
specification/references/D01B/composites/c040.txt [new file with mode: 0644]
specification/references/D01B/composites/c056.txt [new file with mode: 0644]
specification/references/D01B/composites/c058.txt [new file with mode: 0644]
specification/references/D01B/composites/c059.txt [new file with mode: 0644]
specification/references/D01B/composites/c076.txt [new file with mode: 0644]
specification/references/D01B/composites/c080.txt [new file with mode: 0644]
specification/references/D01B/composites/c082.txt [new file with mode: 0644]
specification/references/D01B/composites/c100.txt [new file with mode: 0644]
specification/references/D01B/composites/c106.txt [new file with mode: 0644]
specification/references/D01B/composites/c107.txt [new file with mode: 0644]
specification/references/D01B/composites/c108.txt [new file with mode: 0644]
specification/references/D01B/composites/c174.txt [new file with mode: 0644]
specification/references/D01B/composites/c186.txt [new file with mode: 0644]
specification/references/D01B/composites/c200.txt [new file with mode: 0644]
specification/references/D01B/composites/c203.txt [new file with mode: 0644]
specification/references/D01B/composites/c205.txt [new file with mode: 0644]
specification/references/D01B/composites/c208.txt [new file with mode: 0644]
specification/references/D01B/composites/c210.txt [new file with mode: 0644]
specification/references/D01B/composites/c211.txt [new file with mode: 0644]
specification/references/D01B/composites/c212.txt [new file with mode: 0644]
specification/references/D01B/composites/c213.txt [new file with mode: 0644]
specification/references/D01B/composites/c215.txt [new file with mode: 0644]
specification/references/D01B/composites/c218.txt [new file with mode: 0644]
specification/references/D01B/composites/c219.txt [new file with mode: 0644]
specification/references/D01B/composites/c220.txt [new file with mode: 0644]
specification/references/D01B/composites/c222.txt [new file with mode: 0644]
specification/references/D01B/composites/c223.txt [new file with mode: 0644]
specification/references/D01B/composites/c224.txt [new file with mode: 0644]
specification/references/D01B/composites/c228.txt [new file with mode: 0644]
specification/references/D01B/composites/c229.txt [new file with mode: 0644]
specification/references/D01B/composites/c231.txt [new file with mode: 0644]
specification/references/D01B/composites/c232.txt [new file with mode: 0644]
specification/references/D01B/composites/c233.txt [new file with mode: 0644]
specification/references/D01B/composites/c234.txt [new file with mode: 0644]
specification/references/D01B/composites/c235.txt [new file with mode: 0644]
specification/references/D01B/composites/c236.txt [new file with mode: 0644]
specification/references/D01B/composites/c237.txt [new file with mode: 0644]
specification/references/D01B/composites/c239.txt [new file with mode: 0644]
specification/references/D01B/composites/c270.txt [new file with mode: 0644]
specification/references/D01B/composites/c280.txt [new file with mode: 0644]
specification/references/D01B/composites/c286.txt [new file with mode: 0644]
specification/references/D01B/composites/c330.txt [new file with mode: 0644]
specification/references/D01B/composites/c331.txt [new file with mode: 0644]
specification/references/D01B/composites/c401.txt [new file with mode: 0644]
specification/references/D01B/composites/c501.txt [new file with mode: 0644]
specification/references/D01B/composites/c502.txt [new file with mode: 0644]
specification/references/D01B/composites/c503.txt [new file with mode: 0644]
specification/references/D01B/composites/c504.txt [new file with mode: 0644]
specification/references/D01B/composites/c506.txt [new file with mode: 0644]
specification/references/D01B/composites/c507.txt [new file with mode: 0644]
specification/references/D01B/composites/c509.txt [new file with mode: 0644]
specification/references/D01B/composites/c516.txt [new file with mode: 0644]
specification/references/D01B/composites/c517.txt [new file with mode: 0644]
specification/references/D01B/composites/c519.txt [new file with mode: 0644]
specification/references/D01B/composites/c523.txt [new file with mode: 0644]
specification/references/D01B/composites/c524.txt [new file with mode: 0644]
specification/references/D01B/composites/c528.txt [new file with mode: 0644]
specification/references/D01B/composites/c536.txt [new file with mode: 0644]
specification/references/D01B/composites/c537.txt [new file with mode: 0644]
specification/references/D01B/composites/c553.txt [new file with mode: 0644]
specification/references/D01B/composites/c554.txt [new file with mode: 0644]
specification/references/D01B/composites/c555.txt [new file with mode: 0644]
specification/references/D01B/composites/c556.txt [new file with mode: 0644]
specification/references/D01B/composites/c601.txt [new file with mode: 0644]
specification/references/D01B/composites/c703.txt [new file with mode: 0644]
specification/references/D01B/composites/c819.txt [new file with mode: 0644]
specification/references/D01B/composites/c827.txt [new file with mode: 0644]
specification/references/D01B/messages/ifcsum_d.txt [new file with mode: 0644]
specification/references/D01B/messages/ifcsum_s.txt [new file with mode: 0644]
specification/references/D01B/messages/iftsta_d.txt [new file with mode: 0644]
specification/references/D01B/messages/iftsta_s.txt [new file with mode: 0644]
specification/references/D01B/segments/bgm.txt [new file with mode: 0644]
specification/references/D01B/segments/cni.txt [new file with mode: 0644]
specification/references/D01B/segments/cnt.txt [new file with mode: 0644]
specification/references/D01B/segments/com.txt [new file with mode: 0644]
specification/references/D01B/segments/cpi.txt [new file with mode: 0644]
specification/references/D01B/segments/cta.txt [new file with mode: 0644]
specification/references/D01B/segments/cux.txt [new file with mode: 0644]
specification/references/D01B/segments/dgs.txt [new file with mode: 0644]
specification/references/D01B/segments/dim.txt [new file with mode: 0644]
specification/references/D01B/segments/doc.txt [new file with mode: 0644]
specification/references/D01B/segments/dtm.txt [new file with mode: 0644]
specification/references/D01B/segments/eqa.txt [new file with mode: 0644]
specification/references/D01B/segments/eqd.txt [new file with mode: 0644]
specification/references/D01B/segments/eqn.txt [new file with mode: 0644]
specification/references/D01B/segments/ftx.txt [new file with mode: 0644]
specification/references/D01B/segments/gds.txt [new file with mode: 0644]
specification/references/D01B/segments/gid.txt [new file with mode: 0644]
specification/references/D01B/segments/gin.txt [new file with mode: 0644]
specification/references/D01B/segments/gor.txt [new file with mode: 0644]
specification/references/D01B/segments/han.txt [new file with mode: 0644]
specification/references/D01B/segments/icd.txt [new file with mode: 0644]
specification/references/D01B/segments/loc.txt [new file with mode: 0644]
specification/references/D01B/segments/mea.txt [new file with mode: 0644]
specification/references/D01B/segments/moa.txt [new file with mode: 0644]
specification/references/D01B/segments/nad.txt [new file with mode: 0644]
specification/references/D01B/segments/pcd.txt [new file with mode: 0644]
specification/references/D01B/segments/pci.txt [new file with mode: 0644]
specification/references/D01B/segments/pia.txt [new file with mode: 0644]
specification/references/D01B/segments/pri.txt [new file with mode: 0644]
specification/references/D01B/segments/qty.txt [new file with mode: 0644]
specification/references/D01B/segments/rff.txt [new file with mode: 0644]
specification/references/D01B/segments/rng.txt [new file with mode: 0644]
specification/references/D01B/segments/sel.txt [new file with mode: 0644]
specification/references/D01B/segments/seq.txt [new file with mode: 0644]
specification/references/D01B/segments/sgp.txt [new file with mode: 0644]
specification/references/D01B/segments/sts.txt [new file with mode: 0644]
specification/references/D01B/segments/tcc.txt [new file with mode: 0644]
specification/references/D01B/segments/tdt.txt [new file with mode: 0644]
specification/references/D01B/segments/tmd.txt [new file with mode: 0644]
specification/references/D01B/segments/tmp.txt [new file with mode: 0644]
specification/references/D01B/segments/tod.txt [new file with mode: 0644]
specification/references/D01B/segments/tpl.txt [new file with mode: 0644]
specification/references/D01B/segments/tsr.txt [new file with mode: 0644]
specification/references/D01B/simples/1000.txt [new file with mode: 0644]
specification/references/D01B/simples/1001.txt [new file with mode: 0644]
specification/references/D01B/simples/1004.txt [new file with mode: 0644]
specification/references/D01B/simples/1050.txt [new file with mode: 0644]
specification/references/D01B/simples/1056.txt [new file with mode: 0644]
specification/references/D01B/simples/1060.txt [new file with mode: 0644]
specification/references/D01B/simples/1131.txt [new file with mode: 0644]
specification/references/D01B/simples/1153.txt [new file with mode: 0644]
specification/references/D01B/simples/1154.txt [new file with mode: 0644]
specification/references/D01B/simples/1156.txt [new file with mode: 0644]
specification/references/D01B/simples/1159.txt [new file with mode: 0644]
specification/references/D01B/simples/1218.txt [new file with mode: 0644]
specification/references/D01B/simples/1220.txt [new file with mode: 0644]
specification/references/D01B/simples/1225.txt [new file with mode: 0644]
specification/references/D01B/simples/1229.txt [new file with mode: 0644]
specification/references/D01B/simples/1312.txt [new file with mode: 0644]
specification/references/D01B/simples/1366.txt [new file with mode: 0644]
specification/references/D01B/simples/1373.txt [new file with mode: 0644]
specification/references/D01B/simples/1490.txt [new file with mode: 0644]
specification/references/D01B/simples/1496.txt [new file with mode: 0644]
specification/references/D01B/simples/2005.txt [new file with mode: 0644]
specification/references/D01B/simples/2379.txt [new file with mode: 0644]
specification/references/D01B/simples/2380.txt [new file with mode: 0644]
specification/references/D01B/simples/3035.txt [new file with mode: 0644]
specification/references/D01B/simples/3036.txt [new file with mode: 0644]
specification/references/D01B/simples/3039.txt [new file with mode: 0644]
specification/references/D01B/simples/3042.txt [new file with mode: 0644]
specification/references/D01B/simples/3045.txt [new file with mode: 0644]
specification/references/D01B/simples/3055.txt [new file with mode: 0644]
specification/references/D01B/simples/3124.txt [new file with mode: 0644]
specification/references/D01B/simples/3127.txt [new file with mode: 0644]
specification/references/D01B/simples/3128.txt [new file with mode: 0644]
specification/references/D01B/simples/3139.txt [new file with mode: 0644]
specification/references/D01B/simples/3148.txt [new file with mode: 0644]
specification/references/D01B/simples/3153.txt [new file with mode: 0644]
specification/references/D01B/simples/3155.txt [new file with mode: 0644]
specification/references/D01B/simples/3164.txt [new file with mode: 0644]
specification/references/D01B/simples/3207.txt [new file with mode: 0644]
specification/references/D01B/simples/3222.txt [new file with mode: 0644]
specification/references/D01B/simples/3223.txt [new file with mode: 0644]
specification/references/D01B/simples/3224.txt [new file with mode: 0644]
specification/references/D01B/simples/3225.txt [new file with mode: 0644]
specification/references/D01B/simples/3227.txt [new file with mode: 0644]
specification/references/D01B/simples/3228.txt [new file with mode: 0644]
specification/references/D01B/simples/3229.txt [new file with mode: 0644]
specification/references/D01B/simples/3232.txt [new file with mode: 0644]
specification/references/D01B/simples/3233.txt [new file with mode: 0644]
specification/references/D01B/simples/3251.txt [new file with mode: 0644]
specification/references/D01B/simples/3412.txt [new file with mode: 0644]
specification/references/D01B/simples/3413.txt [new file with mode: 0644]
specification/references/D01B/simples/3453.txt [new file with mode: 0644]
specification/references/D01B/simples/4000.txt [new file with mode: 0644]
specification/references/D01B/simples/4052.txt [new file with mode: 0644]
specification/references/D01B/simples/4053.txt [new file with mode: 0644]
specification/references/D01B/simples/4055.txt [new file with mode: 0644]
specification/references/D01B/simples/4065.txt [new file with mode: 0644]
specification/references/D01B/simples/4078.txt [new file with mode: 0644]
specification/references/D01B/simples/4079.txt [new file with mode: 0644]
specification/references/D01B/simples/4215.txt [new file with mode: 0644]
specification/references/D01B/simples/4219.txt [new file with mode: 0644]
specification/references/D01B/simples/4233.txt [new file with mode: 0644]
specification/references/D01B/simples/4237.txt [new file with mode: 0644]
specification/references/D01B/simples/4343.txt [new file with mode: 0644]
specification/references/D01B/simples/4347.txt [new file with mode: 0644]
specification/references/D01B/simples/4404.txt [new file with mode: 0644]
specification/references/D01B/simples/4405.txt [new file with mode: 0644]
specification/references/D01B/simples/4440.txt [new file with mode: 0644]
specification/references/D01B/simples/4441.txt [new file with mode: 0644]
specification/references/D01B/simples/4447.txt [new file with mode: 0644]
specification/references/D01B/simples/4451.txt [new file with mode: 0644]
specification/references/D01B/simples/4453.txt [new file with mode: 0644]
specification/references/D01B/simples/4494.txt [new file with mode: 0644]
specification/references/D01B/simples/4495.txt [new file with mode: 0644]
specification/references/D01B/simples/4497.txt [new file with mode: 0644]
specification/references/D01B/simples/4517.txt [new file with mode: 0644]
specification/references/D01B/simples/5004.txt [new file with mode: 0644]
specification/references/D01B/simples/5025.txt [new file with mode: 0644]
specification/references/D01B/simples/5118.txt [new file with mode: 0644]
specification/references/D01B/simples/5125.txt [new file with mode: 0644]
specification/references/D01B/simples/5213.txt [new file with mode: 0644]
specification/references/D01B/simples/5237.txt [new file with mode: 0644]
specification/references/D01B/simples/5242.txt [new file with mode: 0644]
specification/references/D01B/simples/5243.txt [new file with mode: 0644]
specification/references/D01B/simples/5245.txt [new file with mode: 0644]
specification/references/D01B/simples/5249.txt [new file with mode: 0644]
specification/references/D01B/simples/5275.txt [new file with mode: 0644]
specification/references/D01B/simples/5284.txt [new file with mode: 0644]
specification/references/D01B/simples/5375.txt [new file with mode: 0644]
specification/references/D01B/simples/5387.txt [new file with mode: 0644]
specification/references/D01B/simples/5402.txt [new file with mode: 0644]
specification/references/D01B/simples/5479.txt [new file with mode: 0644]
specification/references/D01B/simples/5482.txt [new file with mode: 0644]
specification/references/D01B/simples/6008.txt [new file with mode: 0644]
specification/references/D01B/simples/6060.txt [new file with mode: 0644]
specification/references/D01B/simples/6063.txt [new file with mode: 0644]
specification/references/D01B/simples/6066.txt [new file with mode: 0644]
specification/references/D01B/simples/6069.txt [new file with mode: 0644]
specification/references/D01B/simples/6140.txt [new file with mode: 0644]
specification/references/D01B/simples/6145.txt [new file with mode: 0644]
specification/references/D01B/simples/6152.txt [new file with mode: 0644]
specification/references/D01B/simples/6154.txt [new file with mode: 0644]
specification/references/D01B/simples/6155.txt [new file with mode: 0644]
specification/references/D01B/simples/6162.txt [new file with mode: 0644]
specification/references/D01B/simples/6167.txt [new file with mode: 0644]
specification/references/D01B/simples/6168.txt [new file with mode: 0644]
specification/references/D01B/simples/6245.txt [new file with mode: 0644]
specification/references/D01B/simples/6246.txt [new file with mode: 0644]
specification/references/D01B/simples/6311.txt [new file with mode: 0644]
specification/references/D01B/simples/6313.txt [new file with mode: 0644]
specification/references/D01B/simples/6314.txt [new file with mode: 0644]
specification/references/D01B/simples/6321.txt [new file with mode: 0644]
specification/references/D01B/simples/6341.txt [new file with mode: 0644]
specification/references/D01B/simples/6343.txt [new file with mode: 0644]
specification/references/D01B/simples/6345.txt [new file with mode: 0644]
specification/references/D01B/simples/6347.txt [new file with mode: 0644]
specification/references/D01B/simples/6348.txt [new file with mode: 0644]
specification/references/D01B/simples/6350.txt [new file with mode: 0644]
specification/references/D01B/simples/6353.txt [new file with mode: 0644]
specification/references/D01B/simples/6411.txt [new file with mode: 0644]
specification/references/D01B/simples/6432.txt [new file with mode: 0644]
specification/references/D01B/simples/7064.txt [new file with mode: 0644]
specification/references/D01B/simples/7065.txt [new file with mode: 0644]
specification/references/D01B/simples/7085.txt [new file with mode: 0644]
specification/references/D01B/simples/7088.txt [new file with mode: 0644]
specification/references/D01B/simples/7102.txt [new file with mode: 0644]
specification/references/D01B/simples/7106.txt [new file with mode: 0644]
specification/references/D01B/simples/7124.txt [new file with mode: 0644]
specification/references/D01B/simples/7130.txt [new file with mode: 0644]
specification/references/D01B/simples/7140.txt [new file with mode: 0644]
specification/references/D01B/simples/7143.txt [new file with mode: 0644]
specification/references/D01B/simples/7224.txt [new file with mode: 0644]
specification/references/D01B/simples/7233.txt [new file with mode: 0644]
specification/references/D01B/simples/7273.txt [new file with mode: 0644]
specification/references/D01B/simples/7357.txt [new file with mode: 0644]
specification/references/D01B/simples/7383.txt [new file with mode: 0644]
specification/references/D01B/simples/7402.txt [new file with mode: 0644]
specification/references/D01B/simples/7405.txt [new file with mode: 0644]
specification/references/D01B/simples/7418.txt [new file with mode: 0644]
specification/references/D01B/simples/7419.txt [new file with mode: 0644]
specification/references/D01B/simples/7511.txt [new file with mode: 0644]
specification/references/D01B/simples/8022.txt [new file with mode: 0644]
specification/references/D01B/simples/8023.txt [new file with mode: 0644]
specification/references/D01B/simples/8028.txt [new file with mode: 0644]
specification/references/D01B/simples/8051.txt [new file with mode: 0644]
specification/references/D01B/simples/8053.txt [new file with mode: 0644]
specification/references/D01B/simples/8066.txt [new file with mode: 0644]
specification/references/D01B/simples/8067.txt [new file with mode: 0644]
specification/references/D01B/simples/8077.txt [new file with mode: 0644]
specification/references/D01B/simples/8078.txt [new file with mode: 0644]
specification/references/D01B/simples/8092.txt [new file with mode: 0644]
specification/references/D01B/simples/8101.txt [new file with mode: 0644]
specification/references/D01B/simples/8126.txt [new file with mode: 0644]
specification/references/D01B/simples/8154.txt [new file with mode: 0644]
specification/references/D01B/simples/8155.txt [new file with mode: 0644]
specification/references/D01B/simples/8158.txt [new file with mode: 0644]
specification/references/D01B/simples/8169.txt [new file with mode: 0644]
specification/references/D01B/simples/8178.txt [new file with mode: 0644]
specification/references/D01B/simples/8179.txt [new file with mode: 0644]
specification/references/D01B/simples/8186.txt [new file with mode: 0644]
specification/references/D01B/simples/8211.txt [new file with mode: 0644]
specification/references/D01B/simples/8212.txt [new file with mode: 0644]
specification/references/D01B/simples/8213.txt [new file with mode: 0644]
specification/references/D01B/simples/8246.txt [new file with mode: 0644]
specification/references/D01B/simples/8249.txt [new file with mode: 0644]
specification/references/D01B/simples/8255.txt [new file with mode: 0644]
specification/references/D01B/simples/8260.txt [new file with mode: 0644]
specification/references/D01B/simples/8273.txt [new file with mode: 0644]
specification/references/D01B/simples/8275.txt [new file with mode: 0644]
specification/references/D01B/simples/8281.txt [new file with mode: 0644]
specification/references/D01B/simples/8323.txt [new file with mode: 0644]
specification/references/D01B/simples/8325.txt [new file with mode: 0644]
specification/references/D01B/simples/8332.txt [new file with mode: 0644]
specification/references/D01B/simples/8334.txt [new file with mode: 0644]
specification/references/D01B/simples/8335.txt [new file with mode: 0644]
specification/references/D01B/simples/8339.txt [new file with mode: 0644]
specification/references/D01B/simples/8341.txt [new file with mode: 0644]
specification/references/D01B/simples/8351.txt [new file with mode: 0644]
specification/references/D01B/simples/8364.txt [new file with mode: 0644]
specification/references/D01B/simples/8410.txt [new file with mode: 0644]
specification/references/D01B/simples/8453.txt [new file with mode: 0644]
specification/references/D01B/simples/8457.txt [new file with mode: 0644]
specification/references/D01B/simples/8459.txt [new file with mode: 0644]
specification/references/D01B/simples/9012.txt [new file with mode: 0644]
specification/references/D01B/simples/9013.txt [new file with mode: 0644]
specification/references/D01B/simples/9015.txt [new file with mode: 0644]
specification/references/D01B/simples/9302.txt [new file with mode: 0644]
specification/references/D01B/simples/9303.txt [new file with mode: 0644]
specification/references/D01B/simples/9308.txt [new file with mode: 0644]
specification/references/D01B/simples/9353.txt [new file with mode: 0644]
specification/references/D01B/simples/9411.txt [new file with mode: 0644]
specification/references/D01B/simples/9415.txt [new file with mode: 0644]
specification/references/D01B/simples/9417.txt [new file with mode: 0644]
specification/references/D96A/composites/c002.txt [new file with mode: 0644]
specification/references/D96A/composites/c040.txt [new file with mode: 0644]
specification/references/D96A/composites/c056.txt [new file with mode: 0644]
specification/references/D96A/composites/c058.txt [new file with mode: 0644]
specification/references/D96A/composites/c059.txt [new file with mode: 0644]
specification/references/D96A/composites/c076.txt [new file with mode: 0644]
specification/references/D96A/composites/c080.txt [new file with mode: 0644]
specification/references/D96A/composites/c082.txt [new file with mode: 0644]
specification/references/D96A/composites/c100.txt [new file with mode: 0644]
specification/references/D96A/composites/c107.txt [new file with mode: 0644]
specification/references/D96A/composites/c108.txt [new file with mode: 0644]
specification/references/D96A/composites/c174.txt [new file with mode: 0644]
specification/references/D96A/composites/c186.txt [new file with mode: 0644]
specification/references/D96A/composites/c200.txt [new file with mode: 0644]
specification/references/D96A/composites/c202.txt [new file with mode: 0644]
specification/references/D96A/composites/c203.txt [new file with mode: 0644]
specification/references/D96A/composites/c205.txt [new file with mode: 0644]
specification/references/D96A/composites/c206.txt [new file with mode: 0644]
specification/references/D96A/composites/c208.txt [new file with mode: 0644]
specification/references/D96A/composites/c210.txt [new file with mode: 0644]
specification/references/D96A/composites/c211.txt [new file with mode: 0644]
specification/references/D96A/composites/c212.txt [new file with mode: 0644]
specification/references/D96A/composites/c213.txt [new file with mode: 0644]
specification/references/D96A/composites/c214.txt [new file with mode: 0644]
specification/references/D96A/composites/c215.txt [new file with mode: 0644]
specification/references/D96A/composites/c218.txt [new file with mode: 0644]
specification/references/D96A/composites/c219.txt [new file with mode: 0644]
specification/references/D96A/composites/c220.txt [new file with mode: 0644]
specification/references/D96A/composites/c222.txt [new file with mode: 0644]
specification/references/D96A/composites/c223.txt [new file with mode: 0644]
specification/references/D96A/composites/c224.txt [new file with mode: 0644]
specification/references/D96A/composites/c228.txt [new file with mode: 0644]
specification/references/D96A/composites/c229.txt [new file with mode: 0644]
specification/references/D96A/composites/c231.txt [new file with mode: 0644]
specification/references/D96A/composites/c232.txt [new file with mode: 0644]
specification/references/D96A/composites/c233.txt [new file with mode: 0644]
specification/references/D96A/composites/c234.txt [new file with mode: 0644]
specification/references/D96A/composites/c235.txt [new file with mode: 0644]
specification/references/D96A/composites/c236.txt [new file with mode: 0644]
specification/references/D96A/composites/c237.txt [new file with mode: 0644]
specification/references/D96A/composites/c239.txt [new file with mode: 0644]
specification/references/D96A/composites/c270.txt [new file with mode: 0644]
specification/references/D96A/composites/c273.txt [new file with mode: 0644]
specification/references/D96A/composites/c279.txt [new file with mode: 0644]
specification/references/D96A/composites/c280.txt [new file with mode: 0644]
specification/references/D96A/composites/c401.txt [new file with mode: 0644]
specification/references/D96A/composites/c402.txt [new file with mode: 0644]
specification/references/D96A/composites/c501.txt [new file with mode: 0644]
specification/references/D96A/composites/c502.txt [new file with mode: 0644]
specification/references/D96A/composites/c503.txt [new file with mode: 0644]
specification/references/D96A/composites/c504.txt [new file with mode: 0644]
specification/references/D96A/composites/c506.txt [new file with mode: 0644]
specification/references/D96A/composites/c507.txt [new file with mode: 0644]
specification/references/D96A/composites/c509.txt [new file with mode: 0644]
specification/references/D96A/composites/c516.txt [new file with mode: 0644]
specification/references/D96A/composites/c517.txt [new file with mode: 0644]
specification/references/D96A/composites/c519.txt [new file with mode: 0644]
specification/references/D96A/composites/c522.txt [new file with mode: 0644]
specification/references/D96A/composites/c523.txt [new file with mode: 0644]
specification/references/D96A/composites/c524.txt [new file with mode: 0644]
specification/references/D96A/composites/c528.txt [new file with mode: 0644]
specification/references/D96A/composites/c531.txt [new file with mode: 0644]
specification/references/D96A/composites/c532.txt [new file with mode: 0644]
specification/references/D96A/composites/c536.txt [new file with mode: 0644]
specification/references/D96A/composites/c537.txt [new file with mode: 0644]
specification/references/D96A/composites/c553.txt [new file with mode: 0644]
specification/references/D96A/composites/c554.txt [new file with mode: 0644]
specification/references/D96A/composites/c555.txt [new file with mode: 0644]
specification/references/D96A/composites/c556.txt [new file with mode: 0644]
specification/references/D96A/composites/c601.txt [new file with mode: 0644]
specification/references/D96A/composites/c703.txt [new file with mode: 0644]
specification/references/D96A/composites/c827.txt [new file with mode: 0644]
specification/references/D96A/composites/c829.txt [new file with mode: 0644]
specification/references/D96A/composites/c960.txt [new file with mode: 0644]
specification/references/D96A/messages/desadv_d.txt [new file with mode: 0644]
specification/references/D96A/messages/desadv_s.txt [new file with mode: 0644]
specification/references/D96A/messages/ifcsum_d.txt [new file with mode: 0644]
specification/references/D96A/messages/ifcsum_s.txt [new file with mode: 0644]
specification/references/D96A/messages/iftsai_d.txt [new file with mode: 0644]
specification/references/D96A/messages/iftsai_s.txt [new file with mode: 0644]
specification/references/D96A/messages/iftsta_d.txt [new file with mode: 0644]
specification/references/D96A/messages/iftsta_s.txt [new file with mode: 0644]
specification/references/D96A/segments/ali.txt [new file with mode: 0644]
specification/references/D96A/segments/bgm.txt [new file with mode: 0644]
specification/references/D96A/segments/cni.txt [new file with mode: 0644]
specification/references/D96A/segments/cnt.txt [new file with mode: 0644]
specification/references/D96A/segments/com.txt [new file with mode: 0644]
specification/references/D96A/segments/cpi.txt [new file with mode: 0644]
specification/references/D96A/segments/cps.txt [new file with mode: 0644]
specification/references/D96A/segments/cta.txt [new file with mode: 0644]
specification/references/D96A/segments/cux.txt [new file with mode: 0644]
specification/references/D96A/segments/dgs.txt [new file with mode: 0644]
specification/references/D96A/segments/dim.txt [new file with mode: 0644]
specification/references/D96A/segments/dlm.txt [new file with mode: 0644]
specification/references/D96A/segments/doc.txt [new file with mode: 0644]
specification/references/D96A/segments/dtm.txt [new file with mode: 0644]
specification/references/D96A/segments/eqa.txt [new file with mode: 0644]
specification/references/D96A/segments/eqd.txt [new file with mode: 0644]
specification/references/D96A/segments/eqn.txt [new file with mode: 0644]
specification/references/D96A/segments/ftx.txt [new file with mode: 0644]
specification/references/D96A/segments/gds.txt [new file with mode: 0644]
specification/references/D96A/segments/gid.txt [new file with mode: 0644]
specification/references/D96A/segments/gin.txt [new file with mode: 0644]
specification/references/D96A/segments/gir.txt [new file with mode: 0644]
specification/references/D96A/segments/gor.txt [new file with mode: 0644]
specification/references/D96A/segments/han.txt [new file with mode: 0644]
specification/references/D96A/segments/imd.txt [new file with mode: 0644]
specification/references/D96A/segments/lin.txt [new file with mode: 0644]
specification/references/D96A/segments/loc.txt [new file with mode: 0644]
specification/references/D96A/segments/mea.txt [new file with mode: 0644]
specification/references/D96A/segments/moa.txt [new file with mode: 0644]
specification/references/D96A/segments/nad.txt [new file with mode: 0644]
specification/references/D96A/segments/pac.txt [new file with mode: 0644]
specification/references/D96A/segments/pcd.txt [new file with mode: 0644]
specification/references/D96A/segments/pci.txt [new file with mode: 0644]
specification/references/D96A/segments/pia.txt [new file with mode: 0644]
specification/references/D96A/segments/pri.txt [new file with mode: 0644]
specification/references/D96A/segments/qty.txt [new file with mode: 0644]
specification/references/D96A/segments/qvr.txt [new file with mode: 0644]
specification/references/D96A/segments/rff.txt [new file with mode: 0644]
specification/references/D96A/segments/rng.txt [new file with mode: 0644]
specification/references/D96A/segments/sel.txt [new file with mode: 0644]
specification/references/D96A/segments/sgp.txt [new file with mode: 0644]
specification/references/D96A/segments/sts.txt [new file with mode: 0644]
specification/references/D96A/segments/tcc.txt [new file with mode: 0644]
specification/references/D96A/segments/tdt.txt [new file with mode: 0644]
specification/references/D96A/segments/tmd.txt [new file with mode: 0644]
specification/references/D96A/segments/tmp.txt [new file with mode: 0644]
specification/references/D96A/segments/tod.txt [new file with mode: 0644]
specification/references/D96A/segments/tpl.txt [new file with mode: 0644]
specification/references/D96A/segments/tsr.txt [new file with mode: 0644]
specification/references/D96A/segments/unh.txt [new file with mode: 0644]
specification/references/D96A/segments/unt.txt [new file with mode: 0644]
specification/references/D96A/simples/1000.txt [new file with mode: 0644]
specification/references/D96A/simples/1001.txt [new file with mode: 0644]
specification/references/D96A/simples/1004.txt [new file with mode: 0644]
specification/references/D96A/simples/1082.txt [new file with mode: 0644]
specification/references/D96A/simples/1131.txt [new file with mode: 0644]
specification/references/D96A/simples/1153.txt [new file with mode: 0644]
specification/references/D96A/simples/1154.txt [new file with mode: 0644]
specification/references/D96A/simples/1156.txt [new file with mode: 0644]
specification/references/D96A/simples/1218.txt [new file with mode: 0644]
specification/references/D96A/simples/1220.txt [new file with mode: 0644]
specification/references/D96A/simples/1222.txt [new file with mode: 0644]
specification/references/D96A/simples/1225.txt [new file with mode: 0644]
specification/references/D96A/simples/1229.txt [new file with mode: 0644]
specification/references/D96A/simples/1312.txt [new file with mode: 0644]
specification/references/D96A/simples/1366.txt [new file with mode: 0644]
specification/references/D96A/simples/1373.txt [new file with mode: 0644]
specification/references/D96A/simples/1490.txt [new file with mode: 0644]
specification/references/D96A/simples/1496.txt [new file with mode: 0644]
specification/references/D96A/simples/2005.txt [new file with mode: 0644]
specification/references/D96A/simples/2379.txt [new file with mode: 0644]
specification/references/D96A/simples/2380.txt [new file with mode: 0644]
specification/references/D96A/simples/3035.txt [new file with mode: 0644]
specification/references/D96A/simples/3036.txt [new file with mode: 0644]
specification/references/D96A/simples/3039.txt [new file with mode: 0644]
specification/references/D96A/simples/3042.txt [new file with mode: 0644]
specification/references/D96A/simples/3045.txt [new file with mode: 0644]
specification/references/D96A/simples/3055.txt [new file with mode: 0644]
specification/references/D96A/simples/3124.txt [new file with mode: 0644]
specification/references/D96A/simples/3127.txt [new file with mode: 0644]
specification/references/D96A/simples/3128.txt [new file with mode: 0644]
specification/references/D96A/simples/3139.txt [new file with mode: 0644]
specification/references/D96A/simples/3148.txt [new file with mode: 0644]
specification/references/D96A/simples/3153.txt [new file with mode: 0644]
specification/references/D96A/simples/3155.txt [new file with mode: 0644]
specification/references/D96A/simples/3164.txt [new file with mode: 0644]
specification/references/D96A/simples/3207.txt [new file with mode: 0644]
specification/references/D96A/simples/3222.txt [new file with mode: 0644]
specification/references/D96A/simples/3223.txt [new file with mode: 0644]
specification/references/D96A/simples/3224.txt [new file with mode: 0644]
specification/references/D96A/simples/3225.txt [new file with mode: 0644]
specification/references/D96A/simples/3227.txt [new file with mode: 0644]
specification/references/D96A/simples/3229.txt [new file with mode: 0644]
specification/references/D96A/simples/3232.txt [new file with mode: 0644]
specification/references/D96A/simples/3233.txt [new file with mode: 0644]
specification/references/D96A/simples/3239.txt [new file with mode: 0644]
specification/references/D96A/simples/3251.txt [new file with mode: 0644]
specification/references/D96A/simples/3412.txt [new file with mode: 0644]
specification/references/D96A/simples/3413.txt [new file with mode: 0644]
specification/references/D96A/simples/3453.txt [new file with mode: 0644]
specification/references/D96A/simples/4000.txt [new file with mode: 0644]
specification/references/D96A/simples/4052.txt [new file with mode: 0644]
specification/references/D96A/simples/4053.txt [new file with mode: 0644]
specification/references/D96A/simples/4055.txt [new file with mode: 0644]
specification/references/D96A/simples/4065.txt [new file with mode: 0644]
specification/references/D96A/simples/4078.txt [new file with mode: 0644]
specification/references/D96A/simples/4079.txt [new file with mode: 0644]
specification/references/D96A/simples/4183.txt [new file with mode: 0644]
specification/references/D96A/simples/4215.txt [new file with mode: 0644]
specification/references/D96A/simples/4219.txt [new file with mode: 0644]
specification/references/D96A/simples/4221.txt [new file with mode: 0644]
specification/references/D96A/simples/4233.txt [new file with mode: 0644]
specification/references/D96A/simples/4237.txt [new file with mode: 0644]
specification/references/D96A/simples/4294.txt [new file with mode: 0644]
specification/references/D96A/simples/4295.txt [new file with mode: 0644]
specification/references/D96A/simples/4343.txt [new file with mode: 0644]
specification/references/D96A/simples/4347.txt [new file with mode: 0644]
specification/references/D96A/simples/4400.txt [new file with mode: 0644]
specification/references/D96A/simples/4401.txt [new file with mode: 0644]
specification/references/D96A/simples/4403.txt [new file with mode: 0644]
specification/references/D96A/simples/4405.txt [new file with mode: 0644]
specification/references/D96A/simples/4440.txt [new file with mode: 0644]
specification/references/D96A/simples/4441.txt [new file with mode: 0644]
specification/references/D96A/simples/4451.txt [new file with mode: 0644]
specification/references/D96A/simples/4453.txt [new file with mode: 0644]
specification/references/D96A/simples/4455.txt [new file with mode: 0644]
specification/references/D96A/simples/4457.txt [new file with mode: 0644]
specification/references/D96A/simples/4517.txt [new file with mode: 0644]
specification/references/D96A/simples/5004.txt [new file with mode: 0644]
specification/references/D96A/simples/5025.txt [new file with mode: 0644]
specification/references/D96A/simples/5118.txt [new file with mode: 0644]
specification/references/D96A/simples/5125.txt [new file with mode: 0644]
specification/references/D96A/simples/5213.txt [new file with mode: 0644]
specification/references/D96A/simples/5237.txt [new file with mode: 0644]
specification/references/D96A/simples/5242.txt [new file with mode: 0644]
specification/references/D96A/simples/5243.txt [new file with mode: 0644]
specification/references/D96A/simples/5245.txt [new file with mode: 0644]
specification/references/D96A/simples/5249.txt [new file with mode: 0644]
specification/references/D96A/simples/5275.txt [new file with mode: 0644]
specification/references/D96A/simples/5284.txt [new file with mode: 0644]
specification/references/D96A/simples/5375.txt [new file with mode: 0644]
specification/references/D96A/simples/5387.txt [new file with mode: 0644]
specification/references/D96A/simples/5402.txt [new file with mode: 0644]
specification/references/D96A/simples/5479.txt [new file with mode: 0644]
specification/references/D96A/simples/5482.txt [new file with mode: 0644]
specification/references/D96A/simples/5495.txt [new file with mode: 0644]
specification/references/D96A/simples/6008.txt [new file with mode: 0644]
specification/references/D96A/simples/6060.txt [new file with mode: 0644]
specification/references/D96A/simples/6063.txt [new file with mode: 0644]
specification/references/D96A/simples/6064.txt [new file with mode: 0644]
specification/references/D96A/simples/6066.txt [new file with mode: 0644]
specification/references/D96A/simples/6069.txt [new file with mode: 0644]
specification/references/D96A/simples/6140.txt [new file with mode: 0644]
specification/references/D96A/simples/6145.txt [new file with mode: 0644]
specification/references/D96A/simples/6152.txt [new file with mode: 0644]
specification/references/D96A/simples/6154.txt [new file with mode: 0644]
specification/references/D96A/simples/6155.txt [new file with mode: 0644]
specification/references/D96A/simples/6162.txt [new file with mode: 0644]
specification/references/D96A/simples/6167.txt [new file with mode: 0644]
specification/references/D96A/simples/6168.txt [new file with mode: 0644]
specification/references/D96A/simples/6245.txt [new file with mode: 0644]
specification/references/D96A/simples/6246.txt [new file with mode: 0644]
specification/references/D96A/simples/6311.txt [new file with mode: 0644]
specification/references/D96A/simples/6313.txt [new file with mode: 0644]
specification/references/D96A/simples/6314.txt [new file with mode: 0644]
specification/references/D96A/simples/6321.txt [new file with mode: 0644]
specification/references/D96A/simples/6341.txt [new file with mode: 0644]
specification/references/D96A/simples/6343.txt [new file with mode: 0644]
specification/references/D96A/simples/6345.txt [new file with mode: 0644]
specification/references/D96A/simples/6347.txt [new file with mode: 0644]
specification/references/D96A/simples/6348.txt [new file with mode: 0644]
specification/references/D96A/simples/6350.txt [new file with mode: 0644]
specification/references/D96A/simples/6353.txt [new file with mode: 0644]
specification/references/D96A/simples/6411.txt [new file with mode: 0644]
specification/references/D96A/simples/6432.txt [new file with mode: 0644]
specification/references/D96A/simples/7008.txt [new file with mode: 0644]
specification/references/D96A/simples/7009.txt [new file with mode: 0644]
specification/references/D96A/simples/7064.txt [new file with mode: 0644]
specification/references/D96A/simples/7065.txt [new file with mode: 0644]
specification/references/D96A/simples/7073.txt [new file with mode: 0644]
specification/references/D96A/simples/7075.txt [new file with mode: 0644]
specification/references/D96A/simples/7077.txt [new file with mode: 0644]
specification/references/D96A/simples/7081.txt [new file with mode: 0644]
specification/references/D96A/simples/7083.txt [new file with mode: 0644]
specification/references/D96A/simples/7085.txt [new file with mode: 0644]
specification/references/D96A/simples/7088.txt [new file with mode: 0644]
specification/references/D96A/simples/7102.txt [new file with mode: 0644]
specification/references/D96A/simples/7106.txt [new file with mode: 0644]
specification/references/D96A/simples/7124.txt [new file with mode: 0644]
specification/references/D96A/simples/7130.txt [new file with mode: 0644]
specification/references/D96A/simples/7140.txt [new file with mode: 0644]
specification/references/D96A/simples/7143.txt [new file with mode: 0644]
specification/references/D96A/simples/7160.txt [new file with mode: 0644]
specification/references/D96A/simples/7161.txt [new file with mode: 0644]
specification/references/D96A/simples/7164.txt [new file with mode: 0644]
specification/references/D96A/simples/7166.txt [new file with mode: 0644]
specification/references/D96A/simples/7224.txt [new file with mode: 0644]
specification/references/D96A/simples/7233.txt [new file with mode: 0644]
specification/references/D96A/simples/7273.txt [new file with mode: 0644]
specification/references/D96A/simples/7297.txt [new file with mode: 0644]
specification/references/D96A/simples/7357.txt [new file with mode: 0644]
specification/references/D96A/simples/7383.txt [new file with mode: 0644]
specification/references/D96A/simples/7402.txt [new file with mode: 0644]
specification/references/D96A/simples/7405.txt [new file with mode: 0644]
specification/references/D96A/simples/7419.txt [new file with mode: 0644]
specification/references/D96A/simples/7511.txt [new file with mode: 0644]
specification/references/D96A/simples/8022.txt [new file with mode: 0644]
specification/references/D96A/simples/8023.txt [new file with mode: 0644]
specification/references/D96A/simples/8028.txt [new file with mode: 0644]
specification/references/D96A/simples/8051.txt [new file with mode: 0644]
specification/references/D96A/simples/8053.txt [new file with mode: 0644]
specification/references/D96A/simples/8066.txt [new file with mode: 0644]
specification/references/D96A/simples/8067.txt [new file with mode: 0644]
specification/references/D96A/simples/8077.txt [new file with mode: 0644]
specification/references/D96A/simples/8078.txt [new file with mode: 0644]
specification/references/D96A/simples/8092.txt [new file with mode: 0644]
specification/references/D96A/simples/8101.txt [new file with mode: 0644]
specification/references/D96A/simples/8126.txt [new file with mode: 0644]
specification/references/D96A/simples/8154.txt [new file with mode: 0644]
specification/references/D96A/simples/8155.txt [new file with mode: 0644]
specification/references/D96A/simples/8158.txt [new file with mode: 0644]
specification/references/D96A/simples/8169.txt [new file with mode: 0644]
specification/references/D96A/simples/8178.txt [new file with mode: 0644]
specification/references/D96A/simples/8179.txt [new file with mode: 0644]
specification/references/D96A/simples/8186.txt [new file with mode: 0644]
specification/references/D96A/simples/8211.txt [new file with mode: 0644]
specification/references/D96A/simples/8212.txt [new file with mode: 0644]
specification/references/D96A/simples/8213.txt [new file with mode: 0644]
specification/references/D96A/simples/8246.txt [new file with mode: 0644]
specification/references/D96A/simples/8249.txt [new file with mode: 0644]
specification/references/D96A/simples/8255.txt [new file with mode: 0644]
specification/references/D96A/simples/8260.txt [new file with mode: 0644]
specification/references/D96A/simples/8273.txt [new file with mode: 0644]
specification/references/D96A/simples/8275.txt [new file with mode: 0644]
specification/references/D96A/simples/8281.txt [new file with mode: 0644]
specification/references/D96A/simples/8323.txt [new file with mode: 0644]
specification/references/D96A/simples/8325.txt [new file with mode: 0644]
specification/references/D96A/simples/8332.txt [new file with mode: 0644]
specification/references/D96A/simples/8334.txt [new file with mode: 0644]
specification/references/D96A/simples/8335.txt [new file with mode: 0644]
specification/references/D96A/simples/8339.txt [new file with mode: 0644]
specification/references/D96A/simples/8341.txt [new file with mode: 0644]
specification/references/D96A/simples/8351.txt [new file with mode: 0644]
specification/references/D96A/simples/8364.txt [new file with mode: 0644]
specification/references/D96A/simples/8393.txt [new file with mode: 0644]
specification/references/D96A/simples/8395.txt [new file with mode: 0644]
specification/references/D96A/simples/8410.txt [new file with mode: 0644]
specification/references/D96A/simples/8453.txt [new file with mode: 0644]
specification/references/D96A/simples/8457.txt [new file with mode: 0644]
specification/references/D96A/simples/8459.txt [new file with mode: 0644]
specification/references/D96A/simples/9010.txt [new file with mode: 0644]
specification/references/D96A/simples/9011.txt [new file with mode: 0644]
specification/references/D96A/simples/9012.txt [new file with mode: 0644]
specification/references/D96A/simples/9013.txt [new file with mode: 0644]
specification/references/D96A/simples/9015.txt [new file with mode: 0644]
specification/references/D96A/simples/9213.txt [new file with mode: 0644]
specification/references/D96A/simples/9302.txt [new file with mode: 0644]
specification/references/D96A/simples/9303.txt [new file with mode: 0644]
specification/references/D96A/simples/9308.txt [new file with mode: 0644]
specification/references/D96A/simples/9353.txt [new file with mode: 0644]
specification/references/D96A/simples/9411.txt [new file with mode: 0644]
specification/references/D96A/simples/9415.txt [new file with mode: 0644]
specification/references/D96A/simples/9417.txt [new file with mode: 0644]
specification/src/Text/Edifact/D01B.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C002.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C040.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C056.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C058.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C059.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C076.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C080.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C082.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C100.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C106.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C107.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C108.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C174.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C186.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C200.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C203.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C205.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C208.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C210.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C211.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C212.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C213.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C215.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C218.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C219.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C220.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C222.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C223.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C224.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C228.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C229.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C231.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C232.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C233.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C234.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C235.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C236.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C237.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C239.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C270.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C280.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C286.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C330.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C331.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C401.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C501.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C502.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C503.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C504.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C506.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C507.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C509.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C516.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C517.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C519.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C523.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C524.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C528.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C536.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C537.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C553.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C554.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C555.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C556.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C601.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C703.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C819.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Composites/C827.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Messages.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Messages/IFCSUM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Messages/IFTSTA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/BGM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/CNI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/CNT.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/COM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/CPI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/CTA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/CUX.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/DGS.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/DIM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/DOC.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/DTM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/EQA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/EQD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/EQN.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/FTX.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/GDS.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/GID.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/GIN.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/GOR.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/HAN.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/ICD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/LOC.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/MEA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/MOA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/NAD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/PCD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/PCI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/PIA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/PRI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/QTY.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/RFF.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/RNG.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/SEL.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/SEQ.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/SGP.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/STS.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/TCC.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/TDT.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/TMD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/TMP.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/TOD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/TPL.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Segments/TSR.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1000.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1001.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1004.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1050.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1056.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1060.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1131.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1153.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1154.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1156.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1159.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1218.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1220.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1225.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1229.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1312.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1366.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1373.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1490.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S1496.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S2005.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S2379.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S2380.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3035.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3036.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3039.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3042.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3045.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3055.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3124.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3127.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3128.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3139.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3148.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3153.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3155.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3164.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3207.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3222.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3223.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3224.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3225.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3227.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3228.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3229.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3232.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3233.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3251.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3412.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3413.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S3453.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4000.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4052.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4053.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4055.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4065.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4078.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4079.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4215.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4219.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4233.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4237.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4343.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4347.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4404.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4405.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4440.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4441.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4447.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4451.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4453.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4494.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4495.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4497.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S4517.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5004.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5025.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5118.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5125.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5213.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5237.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5242.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5243.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5245.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5249.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5275.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5284.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5375.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5387.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5402.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5479.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S5482.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6008.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6060.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6063.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6066.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6069.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6140.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6145.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6152.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6154.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6155.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6162.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6167.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6168.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6245.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6246.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6311.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6313.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6314.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6321.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6341.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6343.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6345.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6347.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6348.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6350.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6353.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6411.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S6432.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7064.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7065.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7085.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7088.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7102.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7106.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7124.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7130.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7140.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7143.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7224.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7233.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7273.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7357.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7383.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7402.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7405.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7418.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7419.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S7511.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8022.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8023.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8028.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8051.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8053.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8066.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8067.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8077.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8078.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8092.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8101.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8126.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8154.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8155.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8158.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8169.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8178.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8179.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8186.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8211.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8212.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8213.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8246.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8249.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8255.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8260.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8273.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8275.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8281.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8323.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8325.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8332.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8334.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8335.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8339.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8341.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8351.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8364.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8410.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8453.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8457.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S8459.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9012.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9013.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9015.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9302.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9303.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9308.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9353.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9411.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9415.hs [new file with mode: 0644]
specification/src/Text/Edifact/D01B/Simples/S9417.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C002.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C040.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C056.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C058.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C059.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C076.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C080.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C082.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C100.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C107.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C108.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C174.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C186.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C200.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C202.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C203.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C205.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C206.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C208.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C210.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C211.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C212.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C213.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C214.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C215.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C218.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C219.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C220.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C222.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C223.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C224.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C228.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C229.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C231.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C232.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C233.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C234.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C235.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C236.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C237.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C239.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C270.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C273.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C279.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C280.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C401.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C402.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C501.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C502.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C503.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C504.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C506.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C507.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C509.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C516.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C517.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C519.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C522.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C523.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C524.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C528.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C531.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C532.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C536.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C537.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C553.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C554.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C555.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C556.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C601.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C703.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C827.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C829.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Composites/C960.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Messages.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Messages/DESADV.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Messages/IFCSUM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Messages/IFTSAI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Messages/IFTSTA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/ALI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/BGM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/CNI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/CNT.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/COM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/CPI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/CPS.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/CTA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/CUX.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/DGS.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/DIM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/DLM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/DOC.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/DTM.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/EQA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/EQD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/EQN.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/FTX.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/GDS.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/GID.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/GIN.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/GIR.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/GOR.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/HAN.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/IMD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/LIN.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/LOC.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/MEA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/MOA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/NAD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/PAC.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/PCD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/PCI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/PIA.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/PRI.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/QTY.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/QVR.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/RFF.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/RNG.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/SEL.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/SGP.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/STS.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/TCC.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/TDT.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/TMD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/TMP.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/TOD.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/TPL.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Segments/TSR.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1000.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1001.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1004.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1082.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1131.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1153.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1154.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1156.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1218.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1220.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1222.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1225.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1229.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1312.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1366.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1373.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1490.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S1496.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S2005.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S2379.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S2380.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3035.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3036.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3039.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3042.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3045.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3055.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3124.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3127.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3128.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3139.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3148.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3153.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3155.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3164.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3207.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3222.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3223.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3224.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3225.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3227.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3229.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3232.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3233.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3239.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3251.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3412.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3413.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S3453.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4000.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4052.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4053.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4055.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4065.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4078.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4079.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4183.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4215.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4219.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4221.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4233.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4237.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4294.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4295.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4343.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4347.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4400.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4401.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4403.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4405.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4440.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4441.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4451.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4453.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4455.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4457.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S4517.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5004.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5025.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5118.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5125.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5213.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5237.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5242.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5243.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5245.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5249.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5275.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5284.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5375.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5387.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5402.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5479.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5482.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S5495.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6008.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6060.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6063.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6064.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6066.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6069.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6140.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6145.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6152.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6154.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6155.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6162.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6167.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6168.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6245.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6246.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6311.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6313.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6314.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6321.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6341.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6343.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6345.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6347.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6348.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6350.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6353.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6411.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S6432.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7008.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7009.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7064.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7065.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7073.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7075.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7077.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7081.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7083.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7085.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7088.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7102.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7106.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7124.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7130.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7140.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7143.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7160.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7161.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7164.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7166.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7224.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7233.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7273.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7297.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7357.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7383.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7402.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7405.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7419.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S7511.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8022.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8023.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8028.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8051.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8053.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8066.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8067.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8077.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8078.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8092.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8101.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8126.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8154.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8155.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8158.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8169.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8178.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8179.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8186.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8211.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8212.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8213.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8246.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8249.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8255.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8260.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8273.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8275.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8281.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8323.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8325.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8332.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8334.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8335.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8339.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8341.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8351.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8364.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8393.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8395.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8410.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8453.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8457.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S8459.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9010.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9011.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9012.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9013.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9015.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9213.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9302.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9303.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9308.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9353.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9411.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9415.hs [new file with mode: 0644]
specification/src/Text/Edifact/D96A/Simples/S9417.hs [new file with mode: 0644]
specification/test/Edifact.hs [new file with mode: 0644]
specification/test/Spec.hs [new file with mode: 0644]
stack.yaml [new file with mode: 0644]