Pdf417 scanner
Author: m | 2025-04-24
APKPure uses signature verification to ensure virus-free PDF417 barcode scanner APK downloads for you. Old Versions of PDF417 barcode scanner. PDF417 barcode scanner 7. 6.0 MB . Download. PDF417 barcode scanner 7. 7.3 MB . Download. PDF417 barcode scanner 7. It is really easy to read and scan PDF417 barcodes using PDF417 Scanner Software. Start PDF417 Scanner Software, by clicking OnBarcode PDF417 Scanner.exe . Click button Load
Mobile PDF417 Scanner SDK - Scan PDF417
To be encoded into proper bar and space patterns formatted to the PDF417 barcode font.Using an encoder is necessary due to the complexity of the symbology and the required Reed Solomon error correction. Attempts to manually encode this data would be extremely complicated, and the font encoders are available to make this procedure much faster, easier, and error-free.What are the benefits of printing PDF417 as a font?PDF417 fonts are more flexible than other components such as an ActiveX control or .NET Forms Control because the fonts can be combined with these ActiveX, .NET, Java, and other encoders depending on which will work best in a given environment.Can extended characters such as © ® ë ö be encoded and scanned?Yes, it is possible to scan and encode extended characters in a PDF417 barcode, provided the following steps are taken:Encode the data using BASE256. This option encodes ASCII 1 to 255 of the ASCII character set. When encoding over 1024 characters of data, ASCII 127-160 must also be encoded in the format ~ddd, with ApplyTilde set to true.Scan the PDF417 barcode via the serial interface option (data bits have to be 8N) on the scanner. Normally, keyboard wedge and USB scanners do not support extended characters above ASCII 128, and can only scan characters that are on the keyboard. Contact the scanner vendor for more information on how to enable extended character recognition, as some of the scanner's internal settings might need to be modified.Popular Forum Post Resolutions: PDF417 Encoding Multiple Fields in Crystal Reports Data to Encode Limit for PDF417 How do PDF417 Columns work? Encode PDF417 Barcodes using VBA in Excel PDF417 Error Correction and X/Y DimensionAccess has Stopped Working Error when using the ActiveX ControlWhite Lines Appear in a Stacked Barcode SymbolMail Merge Barcodes Look IncorrectAdditional support may be provided by reviewing resolved forum threads or contacting technical support. Common Problems and Solutions:Line Spacing Issues: Too Much Space Between LinesSome implementations of PostScript fonts can cause a small space to appear between rows in the PDF417 symbol. The only way to resolve this issue is to confirm that the print application is not adding additional line feeds. Or, in the case of PCL fonts, change the vertical motion index as indicated below. This space will not cause problems with scanners and the barcode will still be readable.When using 12 or 14-point PCL fonts, an adjustment to the vertical motion Word Barcode > PDF 417 Word Barcode Add-In: Barcode generator for Microsoft Word"This Word Barcode Plugin can be used to create barcodes for word without other barcode fonts. That's great!" - Eilian Carol, Liverpool UKGenerate high quality PDF417 barcode images in Word documents with this add-in Integrate seamlessly into Microsoft Office Word 2019, 2016, 2013, 2010 and 2007 versionsThis barcode add-in does not need users to know any programming skillsNo barcode fonts are needed in operating this reliable barcode add-inThe generated PDF-417 barcode are compatible with all printersUsers do not need to know the PDF417 barcode specificationsThe PDF417 barcodes are inserted according to the industry standards of PDF417barcode generator code 128 c#, how to connect barcode scanner to visual basic 2010, rdlc barcode, c# ean 13 barcode check digit, 2d barcode generator c#, how to integrate barcode scanner into java applicationGenerate and create high quality PDF417 barcodes in Word easily and quickly 1. Word PDF-417 Barcode Generator Introduction 2. Features of Word PDF-417 Barcode Generator Add-In 3. Install Word PDF-417 Barcode Generator Plug-In 4. Generate PDF-417 Barcode in Microsoft Word Document Introduction of PDF417 Barcode Add-In for WordTop PDF417 Barcode Add-In for Word is designed to create and insert high quality PDF417 barcodes in Microsoft Office Word documents. It does not require any barcode fonts or programming skills. OnBarcode.com provides a variety of linear and 2D barcode add-ins for Word and PDF-417 2D Word Barcode Generator is just one of them. Other barcode add-ins include Code 39, Code 128, UPC-A, EAN-8, EAN-13, EAN-128, Data Matrix, QR Code, etc. Samples for PDF-417 Data Encoding in Word Samples for PDF-417 Size Setting in WordSamples for PDF-417 Image Setting in Word Features of PDF417 Barcode Add-In for WordTop The generated barcodes can be printed by all high-resolution and low resolution printers.The created PDF417 barcodes conform to the latest PDF417 barcode specification.Rich barcode settings are provided for users to customize their inserted barcodes.PDF417 barcodes are allowed to be inserted into serial letters in Word documents.Quick to generate PDF417 barcode labels in Microsoft Office Word documents.code 128 excel font download, free online bulk barcode generator excel, barcode generator excel 2010, ms word 2007 barcode, excel 2d barcode, excel barcode free downloadThe professional barcode add-in adds the quiet zones for PDF417 barcodes automatically. Install PDF417 Barcode Add-In for WordTop Make sure all Word documents are closed on your computer.Download PDF417 Barcode Add-In for Word and unzip it.Run the setup file and then start a new Word document.Click "Install" in a pop-up window "Microsoft Office Customization Installer".Now, you can see a tab called "Add-Ins" in the menu bar of the document. Insert PDF417 Barcodes in WordTopHow to Create a PDF417 Barcode in Word Switch to "Add-Ins" in a new Word document first. Then, click "Create Barcode" button and you can see a panel called "Barcode Settings" on the right. Next, select "PDF417" in "Barcode Type" and input valid data in the text box of "Data". Ultimately, click "Generate" button. (To remove it, click "Delete")How to Adjust PDF417Online PDF417 Barcode Scanner - PDF417 Online
A few weeks ago, I wrote an article sharing how to read driver’s license information from PDF417 on Android. Compared to building an Android native camera app, building a web camera app is much easier. In this article, let’s take a glimpse at a JavaScript sample, which is implemented with just a few lines of code by using the Dynamsoft web barcode SDK.Online Demo Web Barcode SDKThe JavaScript barcode library is available for download on npmjs.org.You can either download the package via:npm install dynamsoft-javascript-barcode --saveor include the online JS file directly in your HTML file:src=" need to apply for a 30-day trial license to activate the SDK:Dynamsoft.DBR.BarcodeReader.license = "LICENSE-KEY";Building a Web Barcode Reader in Less Than 30 SecondsThe Dynamsoft JavaScript Barcode SDK, based on WebAssembly, delivers high-performance barcode scanning functionality to web developers. It also provides built-in camera module APIs. With the deeply encapsulated JavaScript SDK, you’ll find that creating an HTML5 barcode scanner with camera support has never been more convenient.To quickly build a web barcode scanner app, copy the following code into your HTML file: src=" // initializes and uses the library Dynamsoft.DBR.BarcodeReader.license = "LICENSE-KEY"; var scanner = null; (async () => { scanner = await Dynamsoft.DBR.BarcodeScanner.createInstance(); scanner.onFrameRead = results => { if (results.length > 0) console.log(results); }; scanner.onUnduplicatedRead = (txt, result) => { alert(txt); }; await scanner.show(); })(); Parsing Driver’s License Information Based on the AAMVA StandardTo better balance the accuracy and performance of decoding the PDF417 symbology, it’s advisable to configure some parameters according to the online documentation: let runtimeSettings = await scanner.getRuntimeSettings(); runtimeSettings.barcodeFormatIds = Dynamsoft.DBR.EnumBarcodeFormat.BF_PDF417; runtimeSettings.LocalizationModes = [2,8,0,0,0,0,0,0]; runtimeSettings.deblurLevel = 7; await scanner.updateRuntimeSettings(runtimeSettings);As PDF417 is decoded by the barcode library, you need to create a parser to extract driver’s license information based on the AAMVA standard:const DLAbbrDesMap = { 'DCA': 'Jurisdiction-specific vehicle class', 'DBA': 'Expiry. APKPure uses signature verification to ensure virus-free PDF417 barcode scanner APK downloads for you. Old Versions of PDF417 barcode scanner. PDF417 barcode scanner 7. 6.0 MB . Download. PDF417 barcode scanner 7. 7.3 MB . Download. PDF417 barcode scanner 7.Scanner and generator for pdf417 - GitHub
TraCS interfaces with imaging barcode scanners to read PDF417 AAMVA DL/ID standard compliant barcodes from driver’s licenses and vehicle registrations, while also taking and attaching digital pictures. The data from the barcodes is read into TraCS and can then be used throughout the application by any TraCS form making individual, vehicle, and carrier data entry a simple two-click process. This software application allows you to easily process ecitations, crash reports and incident reports. Click for more on ecitation software. Most state driver’s licenses contain a PDF417 barcode on the back. This barcode typically contains all of the information that is listed on the front of the license. Other state documents such as vehicle registrations and commercial motor vehicle CAB cards that contain PDF417 barcodes are also readable by TraCS, as long as they were encoded using the same AAMVA standards for driver’s licenses. The standards for non DL/ID barcodes are still being developed. TraCS is not capable of reading barcodes that significantly deviate from the AAMVA standard or barcodes that are encrypted.TraCS can use the 4910LR Driver’s License scanner to take and attach digital pictures of signatures, diagrams or attachments on TraCS forms. This technology is commonly used to document suspected fake ID’s, attach a picture of the ID to the citation form, and to capture signatures in those states where a signature is needed.Using the 4910LR DL scanner as a camera requires TraCS and the 4910LR scanner to be set up in bi-directional communication, both looking at the same USB virtual communication port. Home Barcode Fonts Linear Barcode Fonts Code 128 Resolved Questions Resolved Questions Brant Best Answer There are no assigned ASCII values for modifier commands such as ALT or CTRL. Encoding an ALT or CTRL sequence to be recognized by a scanner is specific to the scanner. Consult your specific scanner documentation for info on what values may be recognized as modifier commands. Many Honeywell scanners use STX (~d002) as the Alt key and ENQ (~d005) as the Crtl key. Some scanners also use ETX (~d003) as the Alt key. This example assumes ETX is the ALT key.Enable ApplyTilde or ProcessTilde and encode an ASCII 003 to emulate pressing the ALT character.For example:1. In Code 128 Auto and PDF417:~003 is the ALT; Example to produce Alt+f: ~003f Example to produce multiple Alt characters for Code 128 or PDF417 barcodes:If you wanted to encode an Alt+f and Alt+o, use:~003f~003o2. In Data Matrix, Aztec, QR Code~d003 is the ALT; Example to produce Alt+f: ~d003fExample to produce multiple Alt characters for these 2D barcodes:If you wanted to encode an Alt+f and Alt+o, use: ~d003f~d003o3. In Code 39 $C is the ALT (at the end, use $D) Note: Full ASCII Code-39 must be enabled in the scanner for this to work.Example to produce Alt+f: $Cf$DExample to produce multiple Alt characters for Code 39:If you wanted to encode an Alt+f and Alt+o, use: $Cf$Co$DNote: Encoding ASCII 003 is the decimal character for End of Text (ETX) and your scanner may not interpret this as the AltMobile PDF417 Scanner SDK - Scan PDF417 Accurately Fast
Which is compatible with all encoders of this product. TheUniversal 2D Font enables PDF417 and matrix barcode types such asAztec,DataMatrix, and QR Code to be created from the same font.Several 2D fonts are provided in the package to support N dimensions of 3 and 5. For specifics, refer to theUniversal 2D Font Specifications. The 2D XLS font is designed to be used in Excel only.Fonts Before 2015NotesThe PDF417 fonts listed below are available within the "Legacy Fonts" folder of the product zip file in case they are needed.IDAutomationPDF417n3The standard PDF417 font with an X-to-Y ratio of 1:3 which is recommended by national and international standards. Y dimension = 3XIDAutomationPDF417n4A taller, thinner PDF417 font for use with lower-quality readers and special applications. It has an X dimension of .75 times the X dimension of PDF417n3. It has an X-to-Y ratio of 1:4. It may be necessary to increase the font size after switching to this ratio.IDAutomationPDF417n5A taller, thinner PDF417 font is designed to be used forFedEx label specifications and other applications that require an X-to-Y ratio of 5. The X dimension of this font is .010" or 10 MILS when printed at 11 points. IDAutomationPDF417n2A shorter version of the PDF417 font for high-quality imagers and scanners. It has an X dimension of 1.5 times the X dimension of PDF417n3 and an X-to-Y ratio of 1:2. This font may be used to reduce the symbol height if a high-quality scanner is being used in a clean environment. It may be necessary to decrease the font size after switching to this ratio.Note: Most scanners cannot dependably read this font.Related InformationFont installation proceduresSupport for all graphic encoders is provided in the manual for that product.Additional support may be provided byreviewing resolved forum threads orcontacting technical support.Mobile PDF417 Scanner SDK - Scan PDF417 Accurately - Anyline
Software Description: Code 39 Filemaker Barcode Generator - The Native Generator creates Code 39 barcodes in FileMaker The FileMaker Pro Advanced Code 39 Barcode Generator is a custom script that may be easily inserted into a FileMaker report to create Code 39 barcode images. The integrated barcode generation object stays embedded in the report for easy distribution without any need for special fonts, linked fields, relationships or additional scripts. This Code39 package supports AIM USS Code 39, ANSI, EN800 and other specifications based on Code 39 including LOGMARS, LIC, HIBC, and HIBCC UDI. More information located at New: Resolved an issue where certain barcode heights could be set but not retained in the database.Limitations: Static data for testing 100% Clean: Code 39 Filemaker Barcode Generator 18.03 is 100% clean This download was tested thoroughly and was found 100% clean. Click "Report Spyware" link on the top if you found this software contains any form of malware, including but not limited to: spyware, viruses, trojans and backdoors. Related Software: IDAutomation Barcode Label Software 15.8 - Easy to use Barcode Label Design Printing Software with advanced features. USPS and Intelligent Mail Barcode Fonts 11.2 - POSTNET and Intelligent Mail Font Package for USPS Barcodes. Barcode Generator for Crystal Reports 17.04 - An easy-to-use barcode object for Crystal Reports. Barcode Plug-in for FileMaker 7.1 - Easily add barcodes on FileMaker forms and reports with this plugin. Barcode Generator for Microsoft Access 16.04 - Embedded Barcode object for Microsoft Access. IDAutomation Code 128 Barcode Fonts 15.11 - Easily print Code 128 barcodes with the IDAutomation Code 128 Barcode Fonts. USB Barcode Scanner Application Integration Guide 2006 - USB Barcode Scanner Application Integration Guide IDAutomation PDF417 Font and Encoder 10.9 - PDF417 Font and Encoder enables printing of high density PDF417. IDAutomation Barcode Image Generator 11.10 - Barcode image generation application with command line options. IDAutomation Java Barcode Package 9.11 - JavaBean, Applet and Servlet for Barcoding in Java. top 10 most downloaded recommended software. APKPure uses signature verification to ensure virus-free PDF417 barcode scanner APK downloads for you. Old Versions of PDF417 barcode scanner. PDF417 barcode scanner 7. 6.0 MB . Download. PDF417 barcode scanner 7. 7.3 MB . Download. PDF417 barcode scanner 7. It is really easy to read and scan PDF417 barcodes using PDF417 Scanner Software. Start PDF417 Scanner Software, by clicking OnBarcode PDF417 Scanner.exe . Click button LoadMobile PDF417 Scanner SDK - Scan PDF417 Accurately Fast - Anyline
New User? Sign Up | Sign In | Help Barcode support andtutorials from IDAutomation and the community. Ask Ask Answer Answer Find Find My Profile Home Tag - Tilde-character Top Tags 128 Asp Barcode Code Code-128 Code-39 Crystal Crystal-reports Crystal-ufl Data-matrix Datamatrix Decrementing Excel Font Fonts Generator Gs1 Gs1-128 Pdf417 Qr-code Release Release-log Reports Scanner Vba View Tags Cloud Tilde-character TheForumSurgeon Encoded Tilde character scans as another character. (Resolved) 0 - In Font Encoders - Asked By TheForumSurgeon - 10.4 year(s) ago - 2 Answer or Comment Tagged With: Encode-tilde Tilde-character Data-matrix Java-encoder MikeRusso Crash generating SSCC-18 Check digit in Crystal UFL using ApplyTilde (Resolved) 0 - In Barcode Components - Asked By MikeRusso - 10.9 year(s) ago - 4 Answer or Comment Tagged With: Crystal-formula Ufl Tilde-character Sscc-18 Crashes NickG IMPB barcode issue, the 2nd FNC1 was omitted. (Resolved) 0 - In ActiveX Control & DLL - Asked By NickG - 11 year(s) ago - 3 Answer or Comment Tagged With: Impb Activex-control Tilde-character Rod How to encode FNC using FileMaker Font Encoder Plug-In and Fonts? (Resolved) 0 - In FileMaker Pro Plugin - Asked By Rod - 11.5 year(s) ago - 2 Answer or Comment Tagged With: Filemaker-12 Gs1-128 Tilde-character Page 1 of 1 page(s) Top Tags 128 Asp Barcode Code Code-128 Code-39 Crystal Crystal-reports Crystal-ufl Data-matrix Datamatrix Decrementing Excel Font Fonts Generator Gs1 Gs1-128 Pdf417 Qr-code Release Release-log Reports Scanner Vba View Tags Cloud My Profile You may answer and comment on any thread according to theTermsComments
To be encoded into proper bar and space patterns formatted to the PDF417 barcode font.Using an encoder is necessary due to the complexity of the symbology and the required Reed Solomon error correction. Attempts to manually encode this data would be extremely complicated, and the font encoders are available to make this procedure much faster, easier, and error-free.What are the benefits of printing PDF417 as a font?PDF417 fonts are more flexible than other components such as an ActiveX control or .NET Forms Control because the fonts can be combined with these ActiveX, .NET, Java, and other encoders depending on which will work best in a given environment.Can extended characters such as © ® ë ö be encoded and scanned?Yes, it is possible to scan and encode extended characters in a PDF417 barcode, provided the following steps are taken:Encode the data using BASE256. This option encodes ASCII 1 to 255 of the ASCII character set. When encoding over 1024 characters of data, ASCII 127-160 must also be encoded in the format ~ddd, with ApplyTilde set to true.Scan the PDF417 barcode via the serial interface option (data bits have to be 8N) on the scanner. Normally, keyboard wedge and USB scanners do not support extended characters above ASCII 128, and can only scan characters that are on the keyboard. Contact the scanner vendor for more information on how to enable extended character recognition, as some of the scanner's internal settings might need to be modified.Popular Forum Post Resolutions: PDF417 Encoding Multiple Fields in Crystal Reports Data to Encode Limit for PDF417 How do PDF417 Columns work? Encode PDF417 Barcodes using VBA in Excel PDF417 Error Correction and X/Y DimensionAccess has Stopped Working Error when using the ActiveX ControlWhite Lines Appear in a Stacked Barcode SymbolMail Merge Barcodes Look IncorrectAdditional support may be provided by reviewing resolved forum threads or contacting technical support. Common Problems and Solutions:Line Spacing Issues: Too Much Space Between LinesSome implementations of PostScript fonts can cause a small space to appear between rows in the PDF417 symbol. The only way to resolve this issue is to confirm that the print application is not adding additional line feeds. Or, in the case of PCL fonts, change the vertical motion index as indicated below. This space will not cause problems with scanners and the barcode will still be readable.When using 12 or 14-point PCL fonts, an adjustment to the vertical motion
2025-04-10Word Barcode > PDF 417 Word Barcode Add-In: Barcode generator for Microsoft Word"This Word Barcode Plugin can be used to create barcodes for word without other barcode fonts. That's great!" - Eilian Carol, Liverpool UKGenerate high quality PDF417 barcode images in Word documents with this add-in Integrate seamlessly into Microsoft Office Word 2019, 2016, 2013, 2010 and 2007 versionsThis barcode add-in does not need users to know any programming skillsNo barcode fonts are needed in operating this reliable barcode add-inThe generated PDF-417 barcode are compatible with all printersUsers do not need to know the PDF417 barcode specificationsThe PDF417 barcodes are inserted according to the industry standards of PDF417barcode generator code 128 c#, how to connect barcode scanner to visual basic 2010, rdlc barcode, c# ean 13 barcode check digit, 2d barcode generator c#, how to integrate barcode scanner into java applicationGenerate and create high quality PDF417 barcodes in Word easily and quickly 1. Word PDF-417 Barcode Generator Introduction 2. Features of Word PDF-417 Barcode Generator Add-In 3. Install Word PDF-417 Barcode Generator Plug-In 4. Generate PDF-417 Barcode in Microsoft Word Document Introduction of PDF417 Barcode Add-In for WordTop PDF417 Barcode Add-In for Word is designed to create and insert high quality PDF417 barcodes in Microsoft Office Word documents. It does not require any barcode fonts or programming skills. OnBarcode.com provides a variety of linear and 2D barcode add-ins for Word and PDF-417 2D Word Barcode Generator is just one of them. Other barcode add-ins include Code 39, Code 128, UPC-A, EAN-8, EAN-13, EAN-128, Data Matrix, QR Code, etc. Samples for PDF-417 Data Encoding in Word Samples for PDF-417 Size Setting in WordSamples for PDF-417 Image Setting in Word Features of PDF417 Barcode Add-In for WordTop The generated barcodes can be printed by all high-resolution and low resolution printers.The created PDF417 barcodes conform to the latest PDF417 barcode specification.Rich barcode settings are provided for users to customize their inserted barcodes.PDF417 barcodes are allowed to be inserted into serial letters in Word documents.Quick to generate PDF417 barcode labels in Microsoft Office Word documents.code 128 excel font download, free online bulk barcode generator excel, barcode generator excel 2010, ms word 2007 barcode, excel 2d barcode, excel barcode free downloadThe professional barcode add-in adds the quiet zones for PDF417 barcodes automatically. Install PDF417 Barcode Add-In for WordTop Make sure all Word documents are closed on your computer.Download PDF417 Barcode Add-In for Word and unzip it.Run the setup file and then start a new Word document.Click "Install" in a pop-up window "Microsoft Office Customization Installer".Now, you can see a tab called "Add-Ins" in the menu bar of the document. Insert PDF417 Barcodes in WordTopHow to Create a PDF417 Barcode in Word Switch to "Add-Ins" in a new Word document first. Then, click "Create Barcode" button and you can see a panel called "Barcode Settings" on the right. Next, select "PDF417" in "Barcode Type" and input valid data in the text box of "Data". Ultimately, click "Generate" button. (To remove it, click "Delete")How to Adjust PDF417
2025-04-10A few weeks ago, I wrote an article sharing how to read driver’s license information from PDF417 on Android. Compared to building an Android native camera app, building a web camera app is much easier. In this article, let’s take a glimpse at a JavaScript sample, which is implemented with just a few lines of code by using the Dynamsoft web barcode SDK.Online Demo Web Barcode SDKThe JavaScript barcode library is available for download on npmjs.org.You can either download the package via:npm install dynamsoft-javascript-barcode --saveor include the online JS file directly in your HTML file:src=" need to apply for a 30-day trial license to activate the SDK:Dynamsoft.DBR.BarcodeReader.license = "LICENSE-KEY";Building a Web Barcode Reader in Less Than 30 SecondsThe Dynamsoft JavaScript Barcode SDK, based on WebAssembly, delivers high-performance barcode scanning functionality to web developers. It also provides built-in camera module APIs. With the deeply encapsulated JavaScript SDK, you’ll find that creating an HTML5 barcode scanner with camera support has never been more convenient.To quickly build a web barcode scanner app, copy the following code into your HTML file: src=" // initializes and uses the library Dynamsoft.DBR.BarcodeReader.license = "LICENSE-KEY"; var scanner = null; (async () => { scanner = await Dynamsoft.DBR.BarcodeScanner.createInstance(); scanner.onFrameRead = results => { if (results.length > 0) console.log(results); }; scanner.onUnduplicatedRead = (txt, result) => { alert(txt); }; await scanner.show(); })(); Parsing Driver’s License Information Based on the AAMVA StandardTo better balance the accuracy and performance of decoding the PDF417 symbology, it’s advisable to configure some parameters according to the online documentation: let runtimeSettings = await scanner.getRuntimeSettings(); runtimeSettings.barcodeFormatIds = Dynamsoft.DBR.EnumBarcodeFormat.BF_PDF417; runtimeSettings.LocalizationModes = [2,8,0,0,0,0,0,0]; runtimeSettings.deblurLevel = 7; await scanner.updateRuntimeSettings(runtimeSettings);As PDF417 is decoded by the barcode library, you need to create a parser to extract driver’s license information based on the AAMVA standard:const DLAbbrDesMap = { 'DCA': 'Jurisdiction-specific vehicle class', 'DBA': 'Expiry
2025-04-14