├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── autoloader.php ├── composer.json ├── docker-compose.yml ├── phpunit.xml.dist ├── samples ├── CN03116A.RET ├── CN04116A.RET ├── CN07116A.RET ├── ExemploRemessa.php ├── ExemploRemessaBancoDoBrasil.php ├── ExemploRemessaC6Bank.php ├── ExemploRemessaSICOOB.php ├── ExemploRemessaSantander.php ├── ExemploRemessaTransferenciaCaixa.php ├── ExemploRetorno.php ├── ExemploRetornoSantander.php ├── ExemploRetornoSicoob.php ├── ExemploRetornoTransferenciaCaixa.php ├── R2100095.RET ├── RETORNOCEF081116.ret ├── RETORNOCEF091116.ret ├── remessa-test.rem ├── retorno_cnab240_caixa.ret ├── retorno_cnab400_itau.ret ├── sicoob-example.ret ├── teste.rem └── teste.ret ├── src ├── DetalhaMovimentoRetorno.php ├── Especie.php ├── RegistroAbstract.php ├── RegistroRemAbstract.php ├── RegistroRetAbstract.php ├── Remessa.php ├── RemessaAbstract.php ├── Retorno.php ├── RetornoAbstract.php └── resources │ ├── B001 │ ├── remessa │ │ └── cnab240 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro3P.php │ │ │ ├── Registro3Q.php │ │ │ ├── Registro3R.php │ │ │ ├── Registro3S1e2.php │ │ │ ├── Registro3S3.php │ │ │ ├── Registro5.php │ │ │ └── Registro9.php │ └── retorno │ │ ├── L030 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3R.php │ │ ├── Registro3S1e2.php │ │ ├── Registro3S3.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro3Y08.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ ├── L040 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro3Y08.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ └── L050 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3R.php │ │ ├── Registro5.php │ │ └── Registro9.php │ ├── B033 │ ├── remessa │ │ └── cnab240 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro3P.php │ │ │ ├── Registro3Q.php │ │ │ ├── Registro3R.php │ │ │ ├── Registro5.php │ │ │ └── Registro9.php │ └── retorno │ │ ├── L040 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro3Y.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ └── L400 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ └── Registro9.php │ ├── B084 │ ├── remessa │ │ └── cnab400 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ └── Registro9.php │ └── retorno │ │ └── L400 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ └── Registro9.php │ ├── B104 │ ├── remessa │ │ ├── cnab240_sigcb │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro3P.php │ │ │ ├── Registro3Q.php │ │ │ ├── Registro3R.php │ │ │ ├── Registro3S1e2.php │ │ │ ├── Registro3S3.php │ │ │ ├── Registro5.php │ │ │ └── Registro9.php │ │ └── cnab240_transf │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro3A.php │ │ │ ├── Registro3B.php │ │ │ ├── Registro5.php │ │ │ └── Registro9.php │ └── retorno │ │ ├── L030 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3R.php │ │ ├── Registro3S1e2.php │ │ ├── Registro3S3.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ ├── L040 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro3Y08.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ └── L050 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3A.php │ │ ├── Registro3B.php │ │ ├── Registro3Z.php │ │ ├── Registro5.php │ │ └── Registro9.php │ ├── B136 │ └── retorno │ │ └── L400 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ └── Registro9.php │ ├── B237 │ ├── remessa │ │ └── cnab400 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro2.php │ │ │ └── Registro9.php │ └── retorno │ │ └── L400 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro4.php │ │ └── Registro9.php │ ├── B246 │ ├── remessa │ │ └── cnab240 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro3P.php │ │ │ ├── Registro3Q.php │ │ │ ├── Registro3R.php │ │ │ ├── Registro3S1e2.php │ │ │ ├── Registro3S3.php │ │ │ ├── Registro5.php │ │ │ └── Registro9.php │ └── retorno │ │ ├── L030 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ └── L040 │ │ ├── Registro0.php │ │ ├── Registro1E.php │ │ ├── Registro1T.php │ │ ├── Registro3E.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro5.php │ │ └── Registro9.php │ ├── B336 │ ├── remessa │ │ └── cnab400 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ └── Registro9.php │ └── retorno │ │ └── L400 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ └── Registro9.php │ ├── B341 │ ├── remessa │ │ ├── cnab240 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro3P.php │ │ │ ├── Registro3Q.php │ │ │ ├── Registro3R.php │ │ │ ├── Registro5.php │ │ │ └── Registro9.php │ │ └── cnab400 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro1_2D.php │ │ │ ├── Registro2.php │ │ │ └── Registro9.php │ └── retorno │ │ ├── L040 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ └── L400 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ └── Registro9.php │ ├── B655 │ ├── remessa │ │ └── cnab240 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro3P.php │ │ │ ├── Registro3Q.php │ │ │ ├── Registro3R.php │ │ │ ├── Registro3S1e2.php │ │ │ ├── Registro3S3.php │ │ │ ├── Registro5.php │ │ │ └── Registro9.php │ └── retorno │ │ ├── L001 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ ├── L030 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ └── L084 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3E.php │ │ ├── Registro3U.php │ │ ├── Registro5.php │ │ └── Registro9.php │ ├── B748 │ ├── remessa │ │ └── cnab400 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro2.php │ │ │ └── Registro9.php │ └── retorno │ │ └── L400 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ └── Registro9.php │ ├── B756 │ ├── remessa │ │ ├── cnab240 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ ├── Registro3P.php │ │ │ ├── Registro3Q.php │ │ │ ├── Registro3R.php │ │ │ ├── Registro3S3.php │ │ │ ├── Registro5.php │ │ │ └── Registro9.php │ │ └── cnab400 │ │ │ ├── Registro0.php │ │ │ ├── Registro1.php │ │ │ └── Registro9.php │ └── retorno │ │ ├── L040 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro3Y08.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ ├── L085 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro3Y08.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ ├── L087 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ ├── Registro3T.php │ │ ├── Registro3U.php │ │ ├── Registro3Y08.php │ │ ├── Registro5.php │ │ └── Registro9.php │ │ └── L400 │ │ ├── Registro0.php │ │ ├── Registro1.php │ │ └── Registro9.php │ └── generico │ ├── remessa │ ├── cnab240 │ │ ├── Generico0.php │ │ ├── Generico1.php │ │ ├── Generico2.php │ │ ├── Generico3.php │ │ ├── Generico4.php │ │ ├── Generico5.php │ │ └── Generico9.php │ └── cnab400 │ │ ├── Generico0.php │ │ ├── Generico1.php │ │ ├── Generico2.php │ │ ├── Generico5.php │ │ ├── Generico7.php │ │ ├── Generico8.php │ │ └── Generico9.php │ └── retorno │ ├── L030 │ ├── Generico0.php │ ├── Generico1.php │ ├── Generico2.php │ ├── Generico3.php │ ├── Generico4.php │ ├── Generico5.php │ └── Generico9.php │ ├── L040 │ ├── Generico0.php │ ├── Generico1.php │ ├── Generico3.php │ ├── Generico5.php │ └── Generico9.php │ ├── L050 │ ├── Generico0.php │ ├── Generico1.php │ ├── Generico3.php │ ├── Generico5.php │ └── Generico9.php │ └── L400 │ ├── Generico0.php │ ├── Generico1.php │ ├── Generico4.php │ └── Generico9.php └── tests ├── EspecieTest.php ├── RemessaTest.php └── RetornoTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/README.md -------------------------------------------------------------------------------- /autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/autoloader.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /samples/CN03116A.RET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/CN03116A.RET -------------------------------------------------------------------------------- /samples/CN04116A.RET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/CN04116A.RET -------------------------------------------------------------------------------- /samples/CN07116A.RET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/CN07116A.RET -------------------------------------------------------------------------------- /samples/ExemploRemessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRemessa.php -------------------------------------------------------------------------------- /samples/ExemploRemessaBancoDoBrasil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRemessaBancoDoBrasil.php -------------------------------------------------------------------------------- /samples/ExemploRemessaC6Bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRemessaC6Bank.php -------------------------------------------------------------------------------- /samples/ExemploRemessaSICOOB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRemessaSICOOB.php -------------------------------------------------------------------------------- /samples/ExemploRemessaSantander.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRemessaSantander.php -------------------------------------------------------------------------------- /samples/ExemploRemessaTransferenciaCaixa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRemessaTransferenciaCaixa.php -------------------------------------------------------------------------------- /samples/ExemploRetorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRetorno.php -------------------------------------------------------------------------------- /samples/ExemploRetornoSantander.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRetornoSantander.php -------------------------------------------------------------------------------- /samples/ExemploRetornoSicoob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRetornoSicoob.php -------------------------------------------------------------------------------- /samples/ExemploRetornoTransferenciaCaixa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/ExemploRetornoTransferenciaCaixa.php -------------------------------------------------------------------------------- /samples/R2100095.RET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/R2100095.RET -------------------------------------------------------------------------------- /samples/RETORNOCEF081116.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/RETORNOCEF081116.ret -------------------------------------------------------------------------------- /samples/RETORNOCEF091116.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/RETORNOCEF091116.ret -------------------------------------------------------------------------------- /samples/remessa-test.rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/remessa-test.rem -------------------------------------------------------------------------------- /samples/retorno_cnab240_caixa.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/retorno_cnab240_caixa.ret -------------------------------------------------------------------------------- /samples/retorno_cnab400_itau.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/retorno_cnab400_itau.ret -------------------------------------------------------------------------------- /samples/sicoob-example.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/sicoob-example.ret -------------------------------------------------------------------------------- /samples/teste.rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/teste.rem -------------------------------------------------------------------------------- /samples/teste.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/samples/teste.ret -------------------------------------------------------------------------------- /src/DetalhaMovimentoRetorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/DetalhaMovimentoRetorno.php -------------------------------------------------------------------------------- /src/Especie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/Especie.php -------------------------------------------------------------------------------- /src/RegistroAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/RegistroAbstract.php -------------------------------------------------------------------------------- /src/RegistroRemAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/RegistroRemAbstract.php -------------------------------------------------------------------------------- /src/RegistroRetAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/RegistroRetAbstract.php -------------------------------------------------------------------------------- /src/Remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/Remessa.php -------------------------------------------------------------------------------- /src/RemessaAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/RemessaAbstract.php -------------------------------------------------------------------------------- /src/Retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/Retorno.php -------------------------------------------------------------------------------- /src/RetornoAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/RetornoAbstract.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro0.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro1.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro3P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro3P.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro3Q.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro3Q.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro3S1e2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro3S1e2.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro3S3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro3S3.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro5.php -------------------------------------------------------------------------------- /src/resources/B001/remessa/cnab240/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/remessa/cnab240/Registro9.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro0.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro1.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro3S1e2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro3S1e2.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro3S3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro3S3.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro3Y08.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro3Y08.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro5.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L030/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L030/Registro9.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L040/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L040/Registro0.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L040/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L040/Registro1.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L040/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L040/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L040/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L040/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L040/Registro3Y08.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L040/Registro3Y08.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L040/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L040/Registro5.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L040/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L040/Registro9.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L050/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L050/Registro0.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L050/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L050/Registro1.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L050/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L050/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L050/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L050/Registro5.php -------------------------------------------------------------------------------- /src/resources/B001/retorno/L050/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B001/retorno/L050/Registro9.php -------------------------------------------------------------------------------- /src/resources/B033/remessa/cnab240/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/remessa/cnab240/Registro0.php -------------------------------------------------------------------------------- /src/resources/B033/remessa/cnab240/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/remessa/cnab240/Registro1.php -------------------------------------------------------------------------------- /src/resources/B033/remessa/cnab240/Registro3P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/remessa/cnab240/Registro3P.php -------------------------------------------------------------------------------- /src/resources/B033/remessa/cnab240/Registro3Q.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/remessa/cnab240/Registro3Q.php -------------------------------------------------------------------------------- /src/resources/B033/remessa/cnab240/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/remessa/cnab240/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B033/remessa/cnab240/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/remessa/cnab240/Registro5.php -------------------------------------------------------------------------------- /src/resources/B033/remessa/cnab240/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/remessa/cnab240/Registro9.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L040/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L040/Registro0.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L040/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L040/Registro1.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L040/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L040/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L040/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L040/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L040/Registro3Y.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L040/Registro3Y.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L040/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L040/Registro5.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L040/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L040/Registro9.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B033/retorno/L400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B033/retorno/L400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B084/remessa/cnab400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B084/remessa/cnab400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B084/remessa/cnab400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B084/remessa/cnab400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B084/remessa/cnab400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B084/remessa/cnab400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B084/retorno/L400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B084/retorno/L400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B084/retorno/L400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B084/retorno/L400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B084/retorno/L400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B084/retorno/L400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro0.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro1.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro3P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro3P.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro3Q.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro3Q.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro3S1e2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro3S1e2.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro3S3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro3S3.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro5.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_sigcb/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_sigcb/Registro9.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_transf/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_transf/Registro0.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_transf/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_transf/Registro1.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_transf/Registro3A.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_transf/Registro3A.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_transf/Registro3B.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_transf/Registro3B.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_transf/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_transf/Registro5.php -------------------------------------------------------------------------------- /src/resources/B104/remessa/cnab240_transf/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/remessa/cnab240_transf/Registro9.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro0.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro1.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro3S1e2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro3S1e2.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro3S3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro3S3.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro5.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L030/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L030/Registro9.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L040/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L040/Registro0.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L040/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L040/Registro1.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L040/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L040/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L040/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L040/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L040/Registro3Y08.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L040/Registro3Y08.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L040/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L040/Registro5.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L040/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L040/Registro9.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L050/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L050/Registro0.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L050/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L050/Registro1.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L050/Registro3A.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L050/Registro3A.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L050/Registro3B.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L050/Registro3B.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L050/Registro3Z.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L050/Registro3Z.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L050/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L050/Registro5.php -------------------------------------------------------------------------------- /src/resources/B104/retorno/L050/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B104/retorno/L050/Registro9.php -------------------------------------------------------------------------------- /src/resources/B136/retorno/L400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B136/retorno/L400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B136/retorno/L400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B136/retorno/L400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B136/retorno/L400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B136/retorno/L400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B237/remessa/cnab400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B237/remessa/cnab400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B237/remessa/cnab400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B237/remessa/cnab400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B237/remessa/cnab400/Registro2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B237/remessa/cnab400/Registro2.php -------------------------------------------------------------------------------- /src/resources/B237/remessa/cnab400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B237/remessa/cnab400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B237/retorno/L400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B237/retorno/L400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B237/retorno/L400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B237/retorno/L400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B237/retorno/L400/Registro4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B237/retorno/L400/Registro4.php -------------------------------------------------------------------------------- /src/resources/B237/retorno/L400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B237/retorno/L400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro0.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro1.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro3P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro3P.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro3Q.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro3Q.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro3S1e2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro3S1e2.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro3S3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro3S3.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro5.php -------------------------------------------------------------------------------- /src/resources/B246/remessa/cnab240/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/remessa/cnab240/Registro9.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L030/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L030/Registro0.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L030/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L030/Registro1.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L030/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L030/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L030/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L030/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L030/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L030/Registro5.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L030/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L030/Registro9.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L040/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L040/Registro0.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L040/Registro1E.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L040/Registro1E.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L040/Registro1T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L040/Registro1T.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L040/Registro3E.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L040/Registro3E.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L040/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L040/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L040/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L040/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L040/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L040/Registro5.php -------------------------------------------------------------------------------- /src/resources/B246/retorno/L040/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B246/retorno/L040/Registro9.php -------------------------------------------------------------------------------- /src/resources/B336/remessa/cnab400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B336/remessa/cnab400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B336/remessa/cnab400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B336/remessa/cnab400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B336/remessa/cnab400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B336/remessa/cnab400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B336/retorno/L400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B336/retorno/L400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B336/retorno/L400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B336/retorno/L400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B336/retorno/L400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B336/retorno/L400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab240/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab240/Registro0.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab240/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab240/Registro1.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab240/Registro3P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab240/Registro3P.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab240/Registro3Q.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab240/Registro3Q.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab240/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab240/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab240/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab240/Registro5.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab240/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab240/Registro9.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab400/Registro1_2D.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab400/Registro1_2D.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab400/Registro2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab400/Registro2.php -------------------------------------------------------------------------------- /src/resources/B341/remessa/cnab400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/remessa/cnab400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L040/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L040/Registro0.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L040/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L040/Registro1.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L040/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L040/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L040/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L040/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L040/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L040/Registro5.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L040/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L040/Registro9.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B341/retorno/L400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B341/retorno/L400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro0.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro1.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro3P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro3P.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro3Q.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro3Q.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro3S1e2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro3S1e2.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro3S3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro3S3.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro5.php -------------------------------------------------------------------------------- /src/resources/B655/remessa/cnab240/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/remessa/cnab240/Registro9.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L001/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L001/Registro0.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L001/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L001/Registro1.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L001/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L001/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L001/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L001/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L001/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L001/Registro5.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L001/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L001/Registro9.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L030/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L030/Registro0.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L030/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L030/Registro1.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L030/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L030/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L030/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L030/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L030/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L030/Registro5.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L030/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L030/Registro9.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L084/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L084/Registro0.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L084/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L084/Registro1.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L084/Registro3E.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L084/Registro3E.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L084/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L084/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L084/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L084/Registro5.php -------------------------------------------------------------------------------- /src/resources/B655/retorno/L084/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B655/retorno/L084/Registro9.php -------------------------------------------------------------------------------- /src/resources/B748/remessa/cnab400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B748/remessa/cnab400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B748/remessa/cnab400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B748/remessa/cnab400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B748/remessa/cnab400/Registro2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B748/remessa/cnab400/Registro2.php -------------------------------------------------------------------------------- /src/resources/B748/remessa/cnab400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B748/remessa/cnab400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B748/retorno/L400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B748/retorno/L400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B748/retorno/L400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B748/retorno/L400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B748/retorno/L400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B748/retorno/L400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab240/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab240/Registro0.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab240/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab240/Registro1.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab240/Registro3P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab240/Registro3P.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab240/Registro3Q.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab240/Registro3Q.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab240/Registro3R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab240/Registro3R.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab240/Registro3S3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab240/Registro3S3.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab240/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab240/Registro5.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab240/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab240/Registro9.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B756/remessa/cnab400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/remessa/cnab400/Registro9.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L040/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L040/Registro0.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L040/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L040/Registro1.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L040/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L040/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L040/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L040/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L040/Registro3Y08.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L040/Registro3Y08.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L040/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L040/Registro5.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L040/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L040/Registro9.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L085/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L085/Registro0.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L085/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L085/Registro1.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L085/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L085/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L085/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L085/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L085/Registro3Y08.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L085/Registro3Y08.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L085/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L085/Registro5.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L085/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L085/Registro9.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L087/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L087/Registro0.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L087/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L087/Registro1.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L087/Registro3T.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L087/Registro3T.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L087/Registro3U.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L087/Registro3U.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L087/Registro3Y08.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L087/Registro3Y08.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L087/Registro5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L087/Registro5.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L087/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L087/Registro9.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L400/Registro0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L400/Registro0.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L400/Registro1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L400/Registro1.php -------------------------------------------------------------------------------- /src/resources/B756/retorno/L400/Registro9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/B756/retorno/L400/Registro9.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab240/Generico0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab240/Generico0.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab240/Generico1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab240/Generico1.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab240/Generico2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab240/Generico2.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab240/Generico3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab240/Generico3.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab240/Generico4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab240/Generico4.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab240/Generico5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab240/Generico5.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab240/Generico9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab240/Generico9.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab400/Generico0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab400/Generico0.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab400/Generico1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab400/Generico1.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab400/Generico2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab400/Generico2.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab400/Generico5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab400/Generico5.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab400/Generico7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab400/Generico7.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab400/Generico8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab400/Generico8.php -------------------------------------------------------------------------------- /src/resources/generico/remessa/cnab400/Generico9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/remessa/cnab400/Generico9.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L030/Generico0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L030/Generico0.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L030/Generico1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L030/Generico1.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L030/Generico2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L030/Generico2.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L030/Generico3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L030/Generico3.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L030/Generico4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L030/Generico4.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L030/Generico5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L030/Generico5.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L030/Generico9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L030/Generico9.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L040/Generico0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L040/Generico0.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L040/Generico1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L040/Generico1.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L040/Generico3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L040/Generico3.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L040/Generico5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L040/Generico5.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L040/Generico9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L040/Generico9.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L050/Generico0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L050/Generico0.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L050/Generico1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L050/Generico1.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L050/Generico3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L050/Generico3.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L050/Generico5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L050/Generico5.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L050/Generico9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L050/Generico9.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L400/Generico0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L400/Generico0.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L400/Generico1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L400/Generico1.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L400/Generico4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L400/Generico4.php -------------------------------------------------------------------------------- /src/resources/generico/retorno/L400/Generico9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/src/resources/generico/retorno/L400/Generico9.php -------------------------------------------------------------------------------- /tests/EspecieTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/tests/EspecieTest.php -------------------------------------------------------------------------------- /tests/RemessaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/tests/RemessaTest.php -------------------------------------------------------------------------------- /tests/RetornoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openboleto/OpenCnabPHP/HEAD/tests/RetornoTest.php --------------------------------------------------------------------------------