diff --git a/src/main/java/com/ffii/fpsms/modules/jobOrder/service/PlasticBagPrinterService.kt b/src/main/java/com/ffii/fpsms/modules/jobOrder/service/PlasticBagPrinterService.kt index 80c05e2..6a06d35 100644 --- a/src/main/java/com/ffii/fpsms/modules/jobOrder/service/PlasticBagPrinterService.kt +++ b/src/main/java/com/ffii/fpsms/modules/jobOrder/service/PlasticBagPrinterService.kt @@ -23,11 +23,13 @@ import java.net.InetSocketAddress import java.io.PrintWriter import java.io.DataOutputStream import java.nio.charset.Charset +import java.nio.charset.StandardCharsets import java.io.BufferedReader import java.io.InputStreamReader import java.net.ConnectException import java.net.SocketTimeoutException +import org.springframework.core.io.ClassPathResource // Data class to store bitmap bytes + width (for XML) data class BitmapResult(val bytes: ByteArray, val width: Int) @@ -183,46 +185,38 @@ open class PlasticBagPrinterService( val packagingJobOrders = normalizedJobOrders.filter { it.jobOrderId in allowedJobOrderIds } require(packagingJobOrders.isNotEmpty()) { "No 包裝 process job orders found for export" } - val normalizedCodes = packagingJobOrders - .map { it.itemCode } - .distinct() - - val sql = """ - select code, filename - from onpack_qr - where code in (:itemCodes) - order by code asc - """.trimIndent() - - val rows = jdbcDao.queryForList( - sql, - mapOf("itemCodes" to normalizedCodes), - ) - - require(rows.isNotEmpty()) { "No OnPack QR records found for the selected date" } + val exportItems = packagingJobOrders + .groupBy { it.itemCode.trim().lowercase() } + .mapNotNull { (codeLower, orders) -> + val order = orders.firstOrNull() ?: return@mapNotNull null + val stockInLine = stockInLineRepository.findFirstByJobOrder_IdAndDeletedFalse(order.jobOrderId) + ?: return@mapNotNull null + val itemId = stockInLine.item?.id ?: return@mapNotNull null + val stockInLineId = stockInLine.id ?: return@mapNotNull null + Triple(codeLower, itemId, stockInLineId) + } - val filenameByCode = rows.associate { row -> - row["code"]?.toString()?.trim().orEmpty() to row["filename"]?.toString()?.trim().orEmpty() - } + require(exportItems.isNotEmpty()) { "No OnPack QR files could be generated for the selected date" } val baos = ByteArrayOutputStream() ZipOutputStream(baos).use { zos -> val addedEntries = linkedSetOf() - packagingJobOrders.forEach { jobOrder -> - val filename = filenameByCode[jobOrder.itemCode].orEmpty() - if (filename.isBlank()) return@forEach - - val stockInLine = stockInLineRepository.findFirstByJobOrder_IdAndDeletedFalse(jobOrder.jobOrderId) - ?: return@forEach - val itemId = stockInLine.item?.id ?: return@forEach - val stockInLineId = stockInLine.id ?: return@forEach + exportItems.forEach { (codeLower, itemId, stockInLineId) -> + val imageTemplate = loadOnPackImageTemplateOrNull(codeLower) ?: return@forEach val qrContent = """{"itemId": $itemId, "stockInLineId": $stockInLineId}""" - // Trim 90% of top/bottom/side whitespace: keep 4px padding per side (was 40) → totalSize = contentSize + 8 - val bmp = createQrCodeBitmap(qrContent, 600, 600 + 8) - val zipEntryName = buildUniqueZipEntryName(filename, addedEntries) - if (!addedEntries.add(zipEntryName)) return@forEach - addToZip(zos, zipEntryName, bmp.bytes) + // Reduce top/bottom whitespace by 90% for exported QR images (40px -> 4px). + val bmp = createQrCodeBitmap(qrContent, contentSize = 600, horizontalPadding = 40, verticalPadding = 4) + val qrBmpFileName = "${codeLower}qr.bmp" + val imageFileName = "$codeLower.image" + val imageContent = withOnPackLogo4Bmp(imageTemplate, qrBmpFileName) + + if (addedEntries.add(qrBmpFileName)) { + addToZip(zos, qrBmpFileName, bmp.bytes) + } + if (addedEntries.add(imageFileName)) { + addToZip(zos, imageFileName, imageContent) + } } require(addedEntries.isNotEmpty()) { "No OnPack QR files could be generated for the selected date" } @@ -231,6 +225,24 @@ open class PlasticBagPrinterService( return baos.toByteArray() } + private fun loadOnPackImageTemplateOrNull(codeLower: String): ByteArray? { + val resourcePath = "onpack2030/${codeLower}.image" + val resource = ClassPathResource(resourcePath) + if (!resource.exists()) return null + return resource.inputStream.use { it.readBytes() } + } + + private fun withOnPackLogo4Bmp(imageBytes: ByteArray, qrBmpFileName: String): ByteArray { + // Use ISO-8859-1 one-byte mapping so all original bytes are preserved, + // while replacing only ASCII XML fragment for LOGO_4 filename. + val oneByteText = String(imageBytes, StandardCharsets.ISO_8859_1) + val replaced = oneByteText.replace( + Regex("""(\s*LOGO_4\s*[\s\S]*?)([^<]+)()"""), + "$1$qrBmpFileName$3", + ) + return replaced.toByteArray(StandardCharsets.ISO_8859_1) + } + private fun createMonochromeBitmap(text: String, targetHeight: Int): BitmapResult { // Step 1: Measure text width with temporary image val tempImg = BufferedImage(1, 1, BufferedImage.TYPE_BYTE_BINARY) @@ -364,22 +376,29 @@ open class PlasticBagPrinterService( } } - private fun createQrCodeBitmap(content: String, contentSize: Int, totalSize: Int = contentSize + 80): BitmapResult { - if (totalSize < contentSize) throw IllegalArgumentException("totalSize must be >= contentSize") + private fun createQrCodeBitmap( + content: String, + contentSize: Int, + horizontalPadding: Int = 40, + verticalPadding: Int = 40, + ): BitmapResult { + require(horizontalPadding >= 0) { "horizontalPadding must be >= 0" } + require(verticalPadding >= 0) { "verticalPadding must be >= 0" } + val totalWidth = contentSize + (horizontalPadding * 2) + val totalHeight = contentSize + (verticalPadding * 2) val writer = QRCodeWriter() val bitMatrix = writer.encode(content, BarcodeFormat.QR_CODE, contentSize, contentSize) - val image = BufferedImage(totalSize, totalSize, BufferedImage.TYPE_BYTE_BINARY) + val image = BufferedImage(totalWidth, totalHeight, BufferedImage.TYPE_BYTE_BINARY) val g = image.createGraphics() g.color = Color.WHITE - g.fillRect(0, 0, totalSize, totalSize) + g.fillRect(0, 0, totalWidth, totalHeight) - val offset = (totalSize - contentSize) / 2 for (x in 0 until contentSize) { for (y in 0 until contentSize) { if (bitMatrix.get(x, y)) { - image.setRGB(x + offset, y + offset, Color.BLACK.rgb) + image.setRGB(x + horizontalPadding, y + verticalPadding, Color.BLACK.rgb) } } } diff --git a/src/main/resources/onpack2030/028e87393f3ecf316f7d8a3ee97ced68.bmp b/src/main/resources/onpack2030/028e87393f3ecf316f7d8a3ee97ced68.bmp new file mode 100644 index 0000000..c92f355 Binary files /dev/null and b/src/main/resources/onpack2030/028e87393f3ecf316f7d8a3ee97ced68.bmp differ diff --git a/src/main/resources/onpack2030/031e5f289592bb21ec1908cfa1e9e2d5.bmp b/src/main/resources/onpack2030/031e5f289592bb21ec1908cfa1e9e2d5.bmp new file mode 100644 index 0000000..f80ffcf Binary files /dev/null and b/src/main/resources/onpack2030/031e5f289592bb21ec1908cfa1e9e2d5.bmp differ diff --git a/src/main/resources/onpack2030/0330dcbb698bc63c3829d35991e4a03a.bmp b/src/main/resources/onpack2030/0330dcbb698bc63c3829d35991e4a03a.bmp new file mode 100644 index 0000000..01d3378 Binary files /dev/null and b/src/main/resources/onpack2030/0330dcbb698bc63c3829d35991e4a03a.bmp differ diff --git a/src/main/resources/onpack2030/04f956053050f34cf91d5c31a5526a60.bmp b/src/main/resources/onpack2030/04f956053050f34cf91d5c31a5526a60.bmp new file mode 100644 index 0000000..f84f822 Binary files /dev/null and b/src/main/resources/onpack2030/04f956053050f34cf91d5c31a5526a60.bmp differ diff --git a/src/main/resources/onpack2030/07c9f730287ee77b5a87a98867525861.bmp b/src/main/resources/onpack2030/07c9f730287ee77b5a87a98867525861.bmp new file mode 100644 index 0000000..624c649 Binary files /dev/null and b/src/main/resources/onpack2030/07c9f730287ee77b5a87a98867525861.bmp differ diff --git a/src/main/resources/onpack2030/0822e308bc9c0d3844207509e5f71893.bmp b/src/main/resources/onpack2030/0822e308bc9c0d3844207509e5f71893.bmp new file mode 100644 index 0000000..c574d2f Binary files /dev/null and b/src/main/resources/onpack2030/0822e308bc9c0d3844207509e5f71893.bmp differ diff --git a/src/main/resources/onpack2030/08eac888d949f08d1bd1fa7c0cefe608.bmp b/src/main/resources/onpack2030/08eac888d949f08d1bd1fa7c0cefe608.bmp new file mode 100644 index 0000000..e3cdaa3 Binary files /dev/null and b/src/main/resources/onpack2030/08eac888d949f08d1bd1fa7c0cefe608.bmp differ diff --git a/src/main/resources/onpack2030/0c8d2a1ff0e91a5648aef3859cf597e2.bmp b/src/main/resources/onpack2030/0c8d2a1ff0e91a5648aef3859cf597e2.bmp new file mode 100644 index 0000000..bb23870 Binary files /dev/null and b/src/main/resources/onpack2030/0c8d2a1ff0e91a5648aef3859cf597e2.bmp differ diff --git a/src/main/resources/onpack2030/0c93987d79b1c13c4e99732ba892042f.bmp b/src/main/resources/onpack2030/0c93987d79b1c13c4e99732ba892042f.bmp new file mode 100644 index 0000000..e6298f7 Binary files /dev/null and b/src/main/resources/onpack2030/0c93987d79b1c13c4e99732ba892042f.bmp differ diff --git a/src/main/resources/onpack2030/0cea359e7334fd827579af62b7141552.bmp b/src/main/resources/onpack2030/0cea359e7334fd827579af62b7141552.bmp new file mode 100644 index 0000000..78d9c57 Binary files /dev/null and b/src/main/resources/onpack2030/0cea359e7334fd827579af62b7141552.bmp differ diff --git a/src/main/resources/onpack2030/0f18c99102e492558b58881b6b870bff.bmp b/src/main/resources/onpack2030/0f18c99102e492558b58881b6b870bff.bmp new file mode 100644 index 0000000..ef08bc5 Binary files /dev/null and b/src/main/resources/onpack2030/0f18c99102e492558b58881b6b870bff.bmp differ diff --git a/src/main/resources/onpack2030/0f4099201cb4a745d7cd4060b265b319.bmp b/src/main/resources/onpack2030/0f4099201cb4a745d7cd4060b265b319.bmp new file mode 100644 index 0000000..c6ac659 Binary files /dev/null and b/src/main/resources/onpack2030/0f4099201cb4a745d7cd4060b265b319.bmp differ diff --git a/src/main/resources/onpack2030/100a7ec5fa98992777b58fc8a0f8119f.bmp b/src/main/resources/onpack2030/100a7ec5fa98992777b58fc8a0f8119f.bmp new file mode 100644 index 0000000..56fbecf Binary files /dev/null and b/src/main/resources/onpack2030/100a7ec5fa98992777b58fc8a0f8119f.bmp differ diff --git a/src/main/resources/onpack2030/144ed06ab737f65e5d7536503c9ef63a.bmp b/src/main/resources/onpack2030/144ed06ab737f65e5d7536503c9ef63a.bmp new file mode 100644 index 0000000..9b940fc Binary files /dev/null and b/src/main/resources/onpack2030/144ed06ab737f65e5d7536503c9ef63a.bmp differ diff --git a/src/main/resources/onpack2030/1a5a39eca7861b59381a84503ad7b8f0.bmp b/src/main/resources/onpack2030/1a5a39eca7861b59381a84503ad7b8f0.bmp new file mode 100644 index 0000000..e57d079 Binary files /dev/null and b/src/main/resources/onpack2030/1a5a39eca7861b59381a84503ad7b8f0.bmp differ diff --git a/src/main/resources/onpack2030/1acadf5e76a50454e292795df6995ea9.bmp b/src/main/resources/onpack2030/1acadf5e76a50454e292795df6995ea9.bmp new file mode 100644 index 0000000..1d869ff Binary files /dev/null and b/src/main/resources/onpack2030/1acadf5e76a50454e292795df6995ea9.bmp differ diff --git a/src/main/resources/onpack2030/1e49466501d747bc8bc198b60424066b.bmp b/src/main/resources/onpack2030/1e49466501d747bc8bc198b60424066b.bmp new file mode 100644 index 0000000..b2d1bc9 Binary files /dev/null and b/src/main/resources/onpack2030/1e49466501d747bc8bc198b60424066b.bmp differ diff --git a/src/main/resources/onpack2030/1fb768791cfe5e405a584e9016cfff5a.bmp b/src/main/resources/onpack2030/1fb768791cfe5e405a584e9016cfff5a.bmp new file mode 100644 index 0000000..4ddba91 Binary files /dev/null and b/src/main/resources/onpack2030/1fb768791cfe5e405a584e9016cfff5a.bmp differ diff --git a/src/main/resources/onpack2030/1fbafdefedc2650f00b913961fc7af1a.bmp b/src/main/resources/onpack2030/1fbafdefedc2650f00b913961fc7af1a.bmp new file mode 100644 index 0000000..6c6c7b1 Binary files /dev/null and b/src/main/resources/onpack2030/1fbafdefedc2650f00b913961fc7af1a.bmp differ diff --git a/src/main/resources/onpack2030/233b3e8db034b0f5e24a07b0e3414704.bmp b/src/main/resources/onpack2030/233b3e8db034b0f5e24a07b0e3414704.bmp new file mode 100644 index 0000000..e5b3bad Binary files /dev/null and b/src/main/resources/onpack2030/233b3e8db034b0f5e24a07b0e3414704.bmp differ diff --git a/src/main/resources/onpack2030/248d525ff9a1cb289b6907845962e29f.bmp b/src/main/resources/onpack2030/248d525ff9a1cb289b6907845962e29f.bmp new file mode 100644 index 0000000..2db6b9e Binary files /dev/null and b/src/main/resources/onpack2030/248d525ff9a1cb289b6907845962e29f.bmp differ diff --git a/src/main/resources/onpack2030/264471bab05dd256ff27cde6dc9fc673.bmp b/src/main/resources/onpack2030/264471bab05dd256ff27cde6dc9fc673.bmp new file mode 100644 index 0000000..273162f Binary files /dev/null and b/src/main/resources/onpack2030/264471bab05dd256ff27cde6dc9fc673.bmp differ diff --git a/src/main/resources/onpack2030/275059b085176c55c0c334fea9708a1e.bmp b/src/main/resources/onpack2030/275059b085176c55c0c334fea9708a1e.bmp new file mode 100644 index 0000000..2a361ec Binary files /dev/null and b/src/main/resources/onpack2030/275059b085176c55c0c334fea9708a1e.bmp differ diff --git a/src/main/resources/onpack2030/2c5bb82a1552805598fdb357bc4c5a80.bmp b/src/main/resources/onpack2030/2c5bb82a1552805598fdb357bc4c5a80.bmp new file mode 100644 index 0000000..c566cc2 Binary files /dev/null and b/src/main/resources/onpack2030/2c5bb82a1552805598fdb357bc4c5a80.bmp differ diff --git a/src/main/resources/onpack2030/2e132c3e837387cffa352fb9fbcaac93.bmp b/src/main/resources/onpack2030/2e132c3e837387cffa352fb9fbcaac93.bmp new file mode 100644 index 0000000..8d0927d Binary files /dev/null and b/src/main/resources/onpack2030/2e132c3e837387cffa352fb9fbcaac93.bmp differ diff --git a/src/main/resources/onpack2030/319f25fb73e1171f70eb83203274c2f1.bmp b/src/main/resources/onpack2030/319f25fb73e1171f70eb83203274c2f1.bmp new file mode 100644 index 0000000..12182b8 Binary files /dev/null and b/src/main/resources/onpack2030/319f25fb73e1171f70eb83203274c2f1.bmp differ diff --git a/src/main/resources/onpack2030/32236099b820d848c967fccc483fed36.bmp b/src/main/resources/onpack2030/32236099b820d848c967fccc483fed36.bmp new file mode 100644 index 0000000..c0d99e6 Binary files /dev/null and b/src/main/resources/onpack2030/32236099b820d848c967fccc483fed36.bmp differ diff --git a/src/main/resources/onpack2030/33857eed307de8183f364b06c83f6ff6.bmp b/src/main/resources/onpack2030/33857eed307de8183f364b06c83f6ff6.bmp new file mode 100644 index 0000000..0a4fb8f Binary files /dev/null and b/src/main/resources/onpack2030/33857eed307de8183f364b06c83f6ff6.bmp differ diff --git a/src/main/resources/onpack2030/3be5efdade4e2ca47a294626c380a374.bmp b/src/main/resources/onpack2030/3be5efdade4e2ca47a294626c380a374.bmp new file mode 100644 index 0000000..cb9d611 Binary files /dev/null and b/src/main/resources/onpack2030/3be5efdade4e2ca47a294626c380a374.bmp differ diff --git a/src/main/resources/onpack2030/3c0e6d4f84f9bde241baff4f48cd91a2.bmp b/src/main/resources/onpack2030/3c0e6d4f84f9bde241baff4f48cd91a2.bmp new file mode 100644 index 0000000..8d5a1bc Binary files /dev/null and b/src/main/resources/onpack2030/3c0e6d4f84f9bde241baff4f48cd91a2.bmp differ diff --git a/src/main/resources/onpack2030/3d7c35a7628793fd67b8f0a026a14cde.bmp b/src/main/resources/onpack2030/3d7c35a7628793fd67b8f0a026a14cde.bmp new file mode 100644 index 0000000..89aaa6d Binary files /dev/null and b/src/main/resources/onpack2030/3d7c35a7628793fd67b8f0a026a14cde.bmp differ diff --git a/src/main/resources/onpack2030/3db464e00ebe36f95cd071aa66697291.bmp b/src/main/resources/onpack2030/3db464e00ebe36f95cd071aa66697291.bmp new file mode 100644 index 0000000..87c4955 Binary files /dev/null and b/src/main/resources/onpack2030/3db464e00ebe36f95cd071aa66697291.bmp differ diff --git a/src/main/resources/onpack2030/4759a46839b9c83b759c443c346b2925.bmp b/src/main/resources/onpack2030/4759a46839b9c83b759c443c346b2925.bmp new file mode 100644 index 0000000..391c45a Binary files /dev/null and b/src/main/resources/onpack2030/4759a46839b9c83b759c443c346b2925.bmp differ diff --git a/src/main/resources/onpack2030/51e76e804791169b539344e153a2574b.bmp b/src/main/resources/onpack2030/51e76e804791169b539344e153a2574b.bmp new file mode 100644 index 0000000..d5c053d Binary files /dev/null and b/src/main/resources/onpack2030/51e76e804791169b539344e153a2574b.bmp differ diff --git a/src/main/resources/onpack2030/535e70813faf2cc209cfc249669548c1.bmp b/src/main/resources/onpack2030/535e70813faf2cc209cfc249669548c1.bmp new file mode 100644 index 0000000..839cb4d Binary files /dev/null and b/src/main/resources/onpack2030/535e70813faf2cc209cfc249669548c1.bmp differ diff --git a/src/main/resources/onpack2030/558b551bab987fd078ae5c527da1c714.bmp b/src/main/resources/onpack2030/558b551bab987fd078ae5c527da1c714.bmp new file mode 100644 index 0000000..7b58b87 Binary files /dev/null and b/src/main/resources/onpack2030/558b551bab987fd078ae5c527da1c714.bmp differ diff --git a/src/main/resources/onpack2030/55cb367a93c36a4658a031ef6d90a043.bmp b/src/main/resources/onpack2030/55cb367a93c36a4658a031ef6d90a043.bmp new file mode 100644 index 0000000..209776a Binary files /dev/null and b/src/main/resources/onpack2030/55cb367a93c36a4658a031ef6d90a043.bmp differ diff --git a/src/main/resources/onpack2030/583e81de4bf86b455872779ab8c6cdbd.bmp b/src/main/resources/onpack2030/583e81de4bf86b455872779ab8c6cdbd.bmp new file mode 100644 index 0000000..b487a4f Binary files /dev/null and b/src/main/resources/onpack2030/583e81de4bf86b455872779ab8c6cdbd.bmp differ diff --git a/src/main/resources/onpack2030/59d0f2454ffaff48c6928d83bcac2754.bmp b/src/main/resources/onpack2030/59d0f2454ffaff48c6928d83bcac2754.bmp new file mode 100644 index 0000000..d1fe81f Binary files /dev/null and b/src/main/resources/onpack2030/59d0f2454ffaff48c6928d83bcac2754.bmp differ diff --git a/src/main/resources/onpack2030/5c62cff28358691817196fba43810cf2.bmp b/src/main/resources/onpack2030/5c62cff28358691817196fba43810cf2.bmp new file mode 100644 index 0000000..b07e959 Binary files /dev/null and b/src/main/resources/onpack2030/5c62cff28358691817196fba43810cf2.bmp differ diff --git a/src/main/resources/onpack2030/5efebf816c4a7900e9958a8f770b5df1.bmp b/src/main/resources/onpack2030/5efebf816c4a7900e9958a8f770b5df1.bmp new file mode 100644 index 0000000..d969cc3 Binary files /dev/null and b/src/main/resources/onpack2030/5efebf816c4a7900e9958a8f770b5df1.bmp differ diff --git a/src/main/resources/onpack2030/604a979ff1e63e6da5f202f46a03a446.bmp b/src/main/resources/onpack2030/604a979ff1e63e6da5f202f46a03a446.bmp new file mode 100644 index 0000000..95eac6b Binary files /dev/null and b/src/main/resources/onpack2030/604a979ff1e63e6da5f202f46a03a446.bmp differ diff --git a/src/main/resources/onpack2030/60632879663af46388ee219eeca43760.bmp b/src/main/resources/onpack2030/60632879663af46388ee219eeca43760.bmp new file mode 100644 index 0000000..4eebe4a Binary files /dev/null and b/src/main/resources/onpack2030/60632879663af46388ee219eeca43760.bmp differ diff --git a/src/main/resources/onpack2030/60aa4e37de45d40a1c0a4c0f974b24ee.bmp b/src/main/resources/onpack2030/60aa4e37de45d40a1c0a4c0f974b24ee.bmp new file mode 100644 index 0000000..17249b5 Binary files /dev/null and b/src/main/resources/onpack2030/60aa4e37de45d40a1c0a4c0f974b24ee.bmp differ diff --git a/src/main/resources/onpack2030/6486634fee7e1115dceb242881598c84.bmp b/src/main/resources/onpack2030/6486634fee7e1115dceb242881598c84.bmp new file mode 100644 index 0000000..e0f51d8 Binary files /dev/null and b/src/main/resources/onpack2030/6486634fee7e1115dceb242881598c84.bmp differ diff --git a/src/main/resources/onpack2030/685a792ada613a17026cb540719ee749.bmp b/src/main/resources/onpack2030/685a792ada613a17026cb540719ee749.bmp new file mode 100644 index 0000000..7ec1a1d Binary files /dev/null and b/src/main/resources/onpack2030/685a792ada613a17026cb540719ee749.bmp differ diff --git a/src/main/resources/onpack2030/6afa6a22022953b26a4d6619da64191b.bmp b/src/main/resources/onpack2030/6afa6a22022953b26a4d6619da64191b.bmp new file mode 100644 index 0000000..845a81e Binary files /dev/null and b/src/main/resources/onpack2030/6afa6a22022953b26a4d6619da64191b.bmp differ diff --git a/src/main/resources/onpack2030/71679db7905fff35875fb00bb0496838.bmp b/src/main/resources/onpack2030/71679db7905fff35875fb00bb0496838.bmp new file mode 100644 index 0000000..3b912c4 Binary files /dev/null and b/src/main/resources/onpack2030/71679db7905fff35875fb00bb0496838.bmp differ diff --git a/src/main/resources/onpack2030/729613796bffee0191efa65cdb1ac56a.bmp b/src/main/resources/onpack2030/729613796bffee0191efa65cdb1ac56a.bmp new file mode 100644 index 0000000..d0d25d3 Binary files /dev/null and b/src/main/resources/onpack2030/729613796bffee0191efa65cdb1ac56a.bmp differ diff --git a/src/main/resources/onpack2030/73c8f43e9586094c6b89e4997a8366a6.bmp b/src/main/resources/onpack2030/73c8f43e9586094c6b89e4997a8366a6.bmp new file mode 100644 index 0000000..4aa7cdd Binary files /dev/null and b/src/main/resources/onpack2030/73c8f43e9586094c6b89e4997a8366a6.bmp differ diff --git a/src/main/resources/onpack2030/7b555f048035543903f6f2c850eea679.bmp b/src/main/resources/onpack2030/7b555f048035543903f6f2c850eea679.bmp new file mode 100644 index 0000000..eb5b1b8 Binary files /dev/null and b/src/main/resources/onpack2030/7b555f048035543903f6f2c850eea679.bmp differ diff --git a/src/main/resources/onpack2030/7ca95d6d3bac41260fd574ef1f3bdeee.bmp b/src/main/resources/onpack2030/7ca95d6d3bac41260fd574ef1f3bdeee.bmp new file mode 100644 index 0000000..d3ba59e Binary files /dev/null and b/src/main/resources/onpack2030/7ca95d6d3bac41260fd574ef1f3bdeee.bmp differ diff --git a/src/main/resources/onpack2030/7e8efcfa26e5185ab83651b3ff3605d8.bmp b/src/main/resources/onpack2030/7e8efcfa26e5185ab83651b3ff3605d8.bmp new file mode 100644 index 0000000..9a5db71 Binary files /dev/null and b/src/main/resources/onpack2030/7e8efcfa26e5185ab83651b3ff3605d8.bmp differ diff --git a/src/main/resources/onpack2030/813931a71b1e57e6fdc18d43986ca082.bmp b/src/main/resources/onpack2030/813931a71b1e57e6fdc18d43986ca082.bmp new file mode 100644 index 0000000..fffcc34 Binary files /dev/null and b/src/main/resources/onpack2030/813931a71b1e57e6fdc18d43986ca082.bmp differ diff --git a/src/main/resources/onpack2030/814b00374b9124b7eedfca7f7e2985b6.bmp b/src/main/resources/onpack2030/814b00374b9124b7eedfca7f7e2985b6.bmp new file mode 100644 index 0000000..9c25464 Binary files /dev/null and b/src/main/resources/onpack2030/814b00374b9124b7eedfca7f7e2985b6.bmp differ diff --git a/src/main/resources/onpack2030/8158dd796f6fa0c01c8bd8244ee826c8.bmp b/src/main/resources/onpack2030/8158dd796f6fa0c01c8bd8244ee826c8.bmp new file mode 100644 index 0000000..c2103a3 Binary files /dev/null and b/src/main/resources/onpack2030/8158dd796f6fa0c01c8bd8244ee826c8.bmp differ diff --git a/src/main/resources/onpack2030/830a562f49fe9fde149289a8ed0298b6.bmp b/src/main/resources/onpack2030/830a562f49fe9fde149289a8ed0298b6.bmp new file mode 100644 index 0000000..c9b0116 Binary files /dev/null and b/src/main/resources/onpack2030/830a562f49fe9fde149289a8ed0298b6.bmp differ diff --git a/src/main/resources/onpack2030/8455382d0a9f7a498dec2bedccd7c4d6.bmp b/src/main/resources/onpack2030/8455382d0a9f7a498dec2bedccd7c4d6.bmp new file mode 100644 index 0000000..ec308f5 Binary files /dev/null and b/src/main/resources/onpack2030/8455382d0a9f7a498dec2bedccd7c4d6.bmp differ diff --git a/src/main/resources/onpack2030/84f7034068129245793ef67d13999afb.bmp b/src/main/resources/onpack2030/84f7034068129245793ef67d13999afb.bmp new file mode 100644 index 0000000..659f0ca Binary files /dev/null and b/src/main/resources/onpack2030/84f7034068129245793ef67d13999afb.bmp differ diff --git a/src/main/resources/onpack2030/8f30ec6bacb11d2cd12559775d9838a9.bmp b/src/main/resources/onpack2030/8f30ec6bacb11d2cd12559775d9838a9.bmp new file mode 100644 index 0000000..4e61f9c Binary files /dev/null and b/src/main/resources/onpack2030/8f30ec6bacb11d2cd12559775d9838a9.bmp differ diff --git a/src/main/resources/onpack2030/9243fbf4e7f47585c249458c45d85404.bmp b/src/main/resources/onpack2030/9243fbf4e7f47585c249458c45d85404.bmp new file mode 100644 index 0000000..dc68bab Binary files /dev/null and b/src/main/resources/onpack2030/9243fbf4e7f47585c249458c45d85404.bmp differ diff --git a/src/main/resources/onpack2030/9388746267894126202bacf5b48234d3.bmp b/src/main/resources/onpack2030/9388746267894126202bacf5b48234d3.bmp new file mode 100644 index 0000000..71526d3 Binary files /dev/null and b/src/main/resources/onpack2030/9388746267894126202bacf5b48234d3.bmp differ diff --git a/src/main/resources/onpack2030/96833c71e1dfe168dd0d43dee4e2161b.bmp b/src/main/resources/onpack2030/96833c71e1dfe168dd0d43dee4e2161b.bmp new file mode 100644 index 0000000..57e3e8c Binary files /dev/null and b/src/main/resources/onpack2030/96833c71e1dfe168dd0d43dee4e2161b.bmp differ diff --git a/src/main/resources/onpack2030/9a67037ccb6424b1f03074cf4d481756.bmp b/src/main/resources/onpack2030/9a67037ccb6424b1f03074cf4d481756.bmp new file mode 100644 index 0000000..869f496 Binary files /dev/null and b/src/main/resources/onpack2030/9a67037ccb6424b1f03074cf4d481756.bmp differ diff --git a/src/main/resources/onpack2030/9e3af881856e4b1500089182426b18f7.bmp b/src/main/resources/onpack2030/9e3af881856e4b1500089182426b18f7.bmp new file mode 100644 index 0000000..699b758 Binary files /dev/null and b/src/main/resources/onpack2030/9e3af881856e4b1500089182426b18f7.bmp differ diff --git a/src/main/resources/onpack2030/9f51ebf7d98f4b1235d5be8a2e107f20.bmp b/src/main/resources/onpack2030/9f51ebf7d98f4b1235d5be8a2e107f20.bmp new file mode 100644 index 0000000..59fc58c Binary files /dev/null and b/src/main/resources/onpack2030/9f51ebf7d98f4b1235d5be8a2e107f20.bmp differ diff --git a/src/main/resources/onpack2030/9fd87bd5d0e59cae65decdac76e060b6.bmp b/src/main/resources/onpack2030/9fd87bd5d0e59cae65decdac76e060b6.bmp new file mode 100644 index 0000000..81a3261 Binary files /dev/null and b/src/main/resources/onpack2030/9fd87bd5d0e59cae65decdac76e060b6.bmp differ diff --git a/src/main/resources/onpack2030/a04f956053050f34cf91d5c31a5526a60.bmp b/src/main/resources/onpack2030/a04f956053050f34cf91d5c31a5526a60.bmp new file mode 100644 index 0000000..f84f822 Binary files /dev/null and b/src/main/resources/onpack2030/a04f956053050f34cf91d5c31a5526a60.bmp differ diff --git a/src/main/resources/onpack2030/a604a979ff1e63e6da5f202f46a03a446.bmp b/src/main/resources/onpack2030/a604a979ff1e63e6da5f202f46a03a446.bmp new file mode 100644 index 0000000..95eac6b Binary files /dev/null and b/src/main/resources/onpack2030/a604a979ff1e63e6da5f202f46a03a446.bmp differ diff --git a/src/main/resources/onpack2030/a726369dd2883f907600f13c90e41723.bmp b/src/main/resources/onpack2030/a726369dd2883f907600f13c90e41723.bmp new file mode 100644 index 0000000..282594c Binary files /dev/null and b/src/main/resources/onpack2030/a726369dd2883f907600f13c90e41723.bmp differ diff --git a/src/main/resources/onpack2030/a9388746267894126202bacf5b48234d3.bmp b/src/main/resources/onpack2030/a9388746267894126202bacf5b48234d3.bmp new file mode 100644 index 0000000..b6b43af Binary files /dev/null and b/src/main/resources/onpack2030/a9388746267894126202bacf5b48234d3.bmp differ diff --git a/src/main/resources/onpack2030/ab93d8c013b97582860c5300ec204c5fb.bmp b/src/main/resources/onpack2030/ab93d8c013b97582860c5300ec204c5fb.bmp new file mode 100644 index 0000000..357b423 Binary files /dev/null and b/src/main/resources/onpack2030/ab93d8c013b97582860c5300ec204c5fb.bmp differ diff --git a/src/main/resources/onpack2030/af3443a62b73f56e8be4da990eac8d23.bmp b/src/main/resources/onpack2030/af3443a62b73f56e8be4da990eac8d23.bmp new file mode 100644 index 0000000..0e38a47 Binary files /dev/null and b/src/main/resources/onpack2030/af3443a62b73f56e8be4da990eac8d23.bmp differ diff --git a/src/main/resources/onpack2030/arial.ttf b/src/main/resources/onpack2030/arial.ttf new file mode 100644 index 0000000..810df57 Binary files /dev/null and b/src/main/resources/onpack2030/arial.ttf differ diff --git a/src/main/resources/onpack2030/arialbold.ttf b/src/main/resources/onpack2030/arialbold.ttf new file mode 100644 index 0000000..f09499b Binary files /dev/null and b/src/main/resources/onpack2030/arialbold.ttf differ diff --git a/src/main/resources/onpack2030/b2b5c2fa7916c3c14a82434ba5167bbd.bmp b/src/main/resources/onpack2030/b2b5c2fa7916c3c14a82434ba5167bbd.bmp new file mode 100644 index 0000000..08490d8 Binary files /dev/null and b/src/main/resources/onpack2030/b2b5c2fa7916c3c14a82434ba5167bbd.bmp differ diff --git a/src/main/resources/onpack2030/b31bc80a6b29a4886afae778c69cf8f6.bmp b/src/main/resources/onpack2030/b31bc80a6b29a4886afae778c69cf8f6.bmp new file mode 100644 index 0000000..dfcf721 Binary files /dev/null and b/src/main/resources/onpack2030/b31bc80a6b29a4886afae778c69cf8f6.bmp differ diff --git a/src/main/resources/onpack2030/b772356c631be3b6aea5c444683252a8.bmp b/src/main/resources/onpack2030/b772356c631be3b6aea5c444683252a8.bmp new file mode 100644 index 0000000..b928a3e Binary files /dev/null and b/src/main/resources/onpack2030/b772356c631be3b6aea5c444683252a8.bmp differ diff --git a/src/main/resources/onpack2030/b7c85d6747e84c14612ce48484cddcc6.bmp b/src/main/resources/onpack2030/b7c85d6747e84c14612ce48484cddcc6.bmp new file mode 100644 index 0000000..69ac8bd Binary files /dev/null and b/src/main/resources/onpack2030/b7c85d6747e84c14612ce48484cddcc6.bmp differ diff --git a/src/main/resources/onpack2030/b93d8c013b97582860c5300ec204c5fb.bmp b/src/main/resources/onpack2030/b93d8c013b97582860c5300ec204c5fb.bmp new file mode 100644 index 0000000..357b423 Binary files /dev/null and b/src/main/resources/onpack2030/b93d8c013b97582860c5300ec204c5fb.bmp differ diff --git a/src/main/resources/onpack2030/ba888c6393db93a83267f125d547031b.bmp b/src/main/resources/onpack2030/ba888c6393db93a83267f125d547031b.bmp new file mode 100644 index 0000000..8d0ceb8 Binary files /dev/null and b/src/main/resources/onpack2030/ba888c6393db93a83267f125d547031b.bmp differ diff --git a/src/main/resources/onpack2030/bcbe8761b0563ad5041935873603ae6a.bmp b/src/main/resources/onpack2030/bcbe8761b0563ad5041935873603ae6a.bmp new file mode 100644 index 0000000..2493501 Binary files /dev/null and b/src/main/resources/onpack2030/bcbe8761b0563ad5041935873603ae6a.bmp differ diff --git a/src/main/resources/onpack2030/bfa0c38612e59196a767681d1395aea4.bmp b/src/main/resources/onpack2030/bfa0c38612e59196a767681d1395aea4.bmp new file mode 100644 index 0000000..814bd05 Binary files /dev/null and b/src/main/resources/onpack2030/bfa0c38612e59196a767681d1395aea4.bmp differ diff --git a/src/main/resources/onpack2030/c7b184e235ed2b63431fc5aaa7e573f1.bmp b/src/main/resources/onpack2030/c7b184e235ed2b63431fc5aaa7e573f1.bmp new file mode 100644 index 0000000..7cebaac Binary files /dev/null and b/src/main/resources/onpack2030/c7b184e235ed2b63431fc5aaa7e573f1.bmp differ diff --git a/src/main/resources/onpack2030/c8ad8bf83d9b34fd75dadc0a380920bc.bmp b/src/main/resources/onpack2030/c8ad8bf83d9b34fd75dadc0a380920bc.bmp new file mode 100644 index 0000000..574e6df Binary files /dev/null and b/src/main/resources/onpack2030/c8ad8bf83d9b34fd75dadc0a380920bc.bmp differ diff --git a/src/main/resources/onpack2030/custom.defcodes b/src/main/resources/onpack2030/custom.defcodes new file mode 100644 index 0000000..e890b42 Binary files /dev/null and b/src/main/resources/onpack2030/custom.defcodes differ diff --git a/src/main/resources/onpack2030/custom.defshifts b/src/main/resources/onpack2030/custom.defshifts new file mode 100644 index 0000000..d77ca81 Binary files /dev/null and b/src/main/resources/onpack2030/custom.defshifts differ diff --git a/src/main/resources/onpack2030/d01a522c4b1469bb4208f8341253a29d.bmp b/src/main/resources/onpack2030/d01a522c4b1469bb4208f8341253a29d.bmp new file mode 100644 index 0000000..3866157 Binary files /dev/null and b/src/main/resources/onpack2030/d01a522c4b1469bb4208f8341253a29d.bmp differ diff --git a/src/main/resources/onpack2030/d401cf78e5cc3a1d592571ceb42da22a.bmp b/src/main/resources/onpack2030/d401cf78e5cc3a1d592571ceb42da22a.bmp new file mode 100644 index 0000000..d692fc4 Binary files /dev/null and b/src/main/resources/onpack2030/d401cf78e5cc3a1d592571ceb42da22a.bmp differ diff --git a/src/main/resources/onpack2030/d416848bcf37330484bd92bb144d7780.bmp b/src/main/resources/onpack2030/d416848bcf37330484bd92bb144d7780.bmp new file mode 100644 index 0000000..02c6d82 Binary files /dev/null and b/src/main/resources/onpack2030/d416848bcf37330484bd92bb144d7780.bmp differ diff --git a/src/main/resources/onpack2030/d48f95b041cc4fca8f651ff57e862a73.bmp b/src/main/resources/onpack2030/d48f95b041cc4fca8f651ff57e862a73.bmp new file mode 100644 index 0000000..416e2ff Binary files /dev/null and b/src/main/resources/onpack2030/d48f95b041cc4fca8f651ff57e862a73.bmp differ diff --git a/src/main/resources/onpack2030/d52f73249ac72b3e98cc53690d9f32a9.bmp b/src/main/resources/onpack2030/d52f73249ac72b3e98cc53690d9f32a9.bmp new file mode 100644 index 0000000..f38ecd8 Binary files /dev/null and b/src/main/resources/onpack2030/d52f73249ac72b3e98cc53690d9f32a9.bmp differ diff --git a/src/main/resources/onpack2030/d532731e132cb2207cd67ef2944b4001.bmp b/src/main/resources/onpack2030/d532731e132cb2207cd67ef2944b4001.bmp new file mode 100644 index 0000000..2693fb5 Binary files /dev/null and b/src/main/resources/onpack2030/d532731e132cb2207cd67ef2944b4001.bmp differ diff --git a/src/main/resources/onpack2030/d8dc55bf3e2bf26aa121caebbdde8c2d.bmp b/src/main/resources/onpack2030/d8dc55bf3e2bf26aa121caebbdde8c2d.bmp new file mode 100644 index 0000000..bd15ecb Binary files /dev/null and b/src/main/resources/onpack2030/d8dc55bf3e2bf26aa121caebbdde8c2d.bmp differ diff --git a/src/main/resources/onpack2030/default job.job b/src/main/resources/onpack2030/default job.job new file mode 100644 index 0000000..e782c29 Binary files /dev/null and b/src/main/resources/onpack2030/default job.job differ diff --git a/src/main/resources/onpack2030/default.image b/src/main/resources/onpack2030/default.image new file mode 100644 index 0000000..455e73c Binary files /dev/null and b/src/main/resources/onpack2030/default.image differ diff --git a/src/main/resources/onpack2030/df6e2731f88e4af8895640db8cb23f7f.bmp b/src/main/resources/onpack2030/df6e2731f88e4af8895640db8cb23f7f.bmp new file mode 100644 index 0000000..e415532 Binary files /dev/null and b/src/main/resources/onpack2030/df6e2731f88e4af8895640db8cb23f7f.bmp differ diff --git a/src/main/resources/onpack2030/e1a4a9600eec25659b3dd75a0aa24dbf.bmp b/src/main/resources/onpack2030/e1a4a9600eec25659b3dd75a0aa24dbf.bmp new file mode 100644 index 0000000..2e15833 Binary files /dev/null and b/src/main/resources/onpack2030/e1a4a9600eec25659b3dd75a0aa24dbf.bmp differ diff --git a/src/main/resources/onpack2030/e2688972d696266642b23fd3c462be4a.bmp b/src/main/resources/onpack2030/e2688972d696266642b23fd3c462be4a.bmp new file mode 100644 index 0000000..b7fd8f7 Binary files /dev/null and b/src/main/resources/onpack2030/e2688972d696266642b23fd3c462be4a.bmp differ diff --git a/src/main/resources/onpack2030/e29f2d3ff9a77fc08c32c9099b440ae8.bmp b/src/main/resources/onpack2030/e29f2d3ff9a77fc08c32c9099b440ae8.bmp new file mode 100644 index 0000000..f82428a Binary files /dev/null and b/src/main/resources/onpack2030/e29f2d3ff9a77fc08c32c9099b440ae8.bmp differ diff --git a/src/main/resources/onpack2030/e2fcf08805486a8dbb3fbd5563bb474c.bmp b/src/main/resources/onpack2030/e2fcf08805486a8dbb3fbd5563bb474c.bmp new file mode 100644 index 0000000..9598db9 Binary files /dev/null and b/src/main/resources/onpack2030/e2fcf08805486a8dbb3fbd5563bb474c.bmp differ diff --git a/src/main/resources/onpack2030/e38ea4cc68d8e97bc2b7bed578407310.bmp b/src/main/resources/onpack2030/e38ea4cc68d8e97bc2b7bed578407310.bmp new file mode 100644 index 0000000..d3640d6 Binary files /dev/null and b/src/main/resources/onpack2030/e38ea4cc68d8e97bc2b7bed578407310.bmp differ diff --git a/src/main/resources/onpack2030/e46f19b8b05effde7cf87484fd0de703.bmp b/src/main/resources/onpack2030/e46f19b8b05effde7cf87484fd0de703.bmp new file mode 100644 index 0000000..79b49f0 Binary files /dev/null and b/src/main/resources/onpack2030/e46f19b8b05effde7cf87484fd0de703.bmp differ diff --git a/src/main/resources/onpack2030/e592dd63d4b1c03bf683e5d46daa6aec.bmp b/src/main/resources/onpack2030/e592dd63d4b1c03bf683e5d46daa6aec.bmp new file mode 100644 index 0000000..d00af15 Binary files /dev/null and b/src/main/resources/onpack2030/e592dd63d4b1c03bf683e5d46daa6aec.bmp differ diff --git a/src/main/resources/onpack2030/e71f4950603583627b806eead51ebb4d.bmp b/src/main/resources/onpack2030/e71f4950603583627b806eead51ebb4d.bmp new file mode 100644 index 0000000..9932a87 Binary files /dev/null and b/src/main/resources/onpack2030/e71f4950603583627b806eead51ebb4d.bmp differ diff --git a/src/main/resources/onpack2030/e854709c37f5041290a1a2475eebefe5.bmp b/src/main/resources/onpack2030/e854709c37f5041290a1a2475eebefe5.bmp new file mode 100644 index 0000000..df7fbe3 Binary files /dev/null and b/src/main/resources/onpack2030/e854709c37f5041290a1a2475eebefe5.bmp differ diff --git a/src/main/resources/onpack2030/ee7c5a36614b43f59304284ed20b435d.bmp b/src/main/resources/onpack2030/ee7c5a36614b43f59304284ed20b435d.bmp new file mode 100644 index 0000000..bb77561 Binary files /dev/null and b/src/main/resources/onpack2030/ee7c5a36614b43f59304284ed20b435d.bmp differ diff --git a/src/main/resources/onpack2030/f2c38202fbcf835b9cd423303b953d77.bmp b/src/main/resources/onpack2030/f2c38202fbcf835b9cd423303b953d77.bmp new file mode 100644 index 0000000..204122b Binary files /dev/null and b/src/main/resources/onpack2030/f2c38202fbcf835b9cd423303b953d77.bmp differ diff --git a/src/main/resources/onpack2030/f342cd3368b824703f9a4bea4383d8d0.bmp b/src/main/resources/onpack2030/f342cd3368b824703f9a4bea4383d8d0.bmp new file mode 100644 index 0000000..f2affd1 Binary files /dev/null and b/src/main/resources/onpack2030/f342cd3368b824703f9a4bea4383d8d0.bmp differ diff --git a/src/main/resources/onpack2030/f350af59d5a048271e4174ff6abea2ca.bmp b/src/main/resources/onpack2030/f350af59d5a048271e4174ff6abea2ca.bmp new file mode 100644 index 0000000..71fd87d Binary files /dev/null and b/src/main/resources/onpack2030/f350af59d5a048271e4174ff6abea2ca.bmp differ diff --git a/src/main/resources/onpack2030/fa35747b402bfa7036051bb0501eda09.bmp b/src/main/resources/onpack2030/fa35747b402bfa7036051bb0501eda09.bmp new file mode 100644 index 0000000..0c3fcb6 Binary files /dev/null and b/src/main/resources/onpack2030/fa35747b402bfa7036051bb0501eda09.bmp differ diff --git a/src/main/resources/onpack2030/fb8944440935ff0b0fad50036fcbb69d.bmp b/src/main/resources/onpack2030/fb8944440935ff0b0fad50036fcbb69d.bmp new file mode 100644 index 0000000..c1d2a0c Binary files /dev/null and b/src/main/resources/onpack2030/fb8944440935ff0b0fad50036fcbb69d.bmp differ diff --git a/src/main/resources/onpack2030/fd671369d4ae0d32e0ac02b6c129fc67.bmp b/src/main/resources/onpack2030/fd671369d4ae0d32e0ac02b6c129fc67.bmp new file mode 100644 index 0000000..6fc212c Binary files /dev/null and b/src/main/resources/onpack2030/fd671369d4ae0d32e0ac02b6c129fc67.bmp differ diff --git a/src/main/resources/onpack2030/lo342987.image b/src/main/resources/onpack2030/lo342987.image new file mode 100644 index 0000000..3d7b648 --- /dev/null +++ b/src/main/resources/onpack2030/lo342987.image @@ -0,0 +1,41 @@ + + + + false + DEG_0 + 53007100 + + + LOGO + 0250 + BLACK + LO342987_product.bmp + 4682 + 704 + + + LOGO_2 + 10001250 + BLACK + LO342987_code.bmp + 2990 + 1173 + + + LOGO_3 + 5002500 + BLACK + LO342987_expiry.bmp + 4983 + 1173 + + + LOGO_4 + 7503750 + BLACK + lo342987qr.bmp + 1000 + 1000 + + + \ No newline at end of file diff --git a/src/main/resources/onpack2030/lo342987.job b/src/main/resources/onpack2030/lo342987.job new file mode 100644 index 0000000..96f05d7 --- /dev/null +++ b/src/main/resources/onpack2030/lo342987.job @@ -0,0 +1 @@ +LO342987.image \ No newline at end of file diff --git a/src/main/resources/onpack2030/lo342987_code.bmp b/src/main/resources/onpack2030/lo342987_code.bmp new file mode 100644 index 0000000..c69c277 Binary files /dev/null and b/src/main/resources/onpack2030/lo342987_code.bmp differ diff --git a/src/main/resources/onpack2030/lo342987_expiry.bmp b/src/main/resources/onpack2030/lo342987_expiry.bmp new file mode 100644 index 0000000..9ede5aa Binary files /dev/null and b/src/main/resources/onpack2030/lo342987_expiry.bmp differ diff --git a/src/main/resources/onpack2030/lo342987_product.bmp b/src/main/resources/onpack2030/lo342987_product.bmp new file mode 100644 index 0000000..db2e291 Binary files /dev/null and b/src/main/resources/onpack2030/lo342987_product.bmp differ diff --git a/src/main/resources/onpack2030/lo342987_qr.bmp b/src/main/resources/onpack2030/lo342987_qr.bmp new file mode 100644 index 0000000..f79a61c Binary files /dev/null and b/src/main/resources/onpack2030/lo342987_qr.bmp differ diff --git a/src/main/resources/onpack2030/lo439987.image b/src/main/resources/onpack2030/lo439987.image new file mode 100644 index 0000000..2f741ff --- /dev/null +++ b/src/main/resources/onpack2030/lo439987.image @@ -0,0 +1,26 @@ + + + 53007100 + + + LOGO + 0250 + Lo439987_product.bmp + + + LOGO_2 + 10001250 + Lo439987_code.bmp + + + LOGO_3 + 5002500 + Lo439987_expiry.bmp + + + LOGO_4 + 7503750 + lo439987qr.bmp + + + \ No newline at end of file diff --git a/src/main/resources/onpack2030/lo439987.job b/src/main/resources/onpack2030/lo439987.job new file mode 100644 index 0000000..b3ec66c --- /dev/null +++ b/src/main/resources/onpack2030/lo439987.job @@ -0,0 +1 @@ +Lo439987.image \ No newline at end of file diff --git a/src/main/resources/onpack2030/lo439987_code.bmp b/src/main/resources/onpack2030/lo439987_code.bmp new file mode 100644 index 0000000..6cb6f34 Binary files /dev/null and b/src/main/resources/onpack2030/lo439987_code.bmp differ diff --git a/src/main/resources/onpack2030/lo439987_expiry.bmp b/src/main/resources/onpack2030/lo439987_expiry.bmp new file mode 100644 index 0000000..a68feee Binary files /dev/null and b/src/main/resources/onpack2030/lo439987_expiry.bmp differ diff --git a/src/main/resources/onpack2030/lo439987_product.bmp b/src/main/resources/onpack2030/lo439987_product.bmp new file mode 100644 index 0000000..464668a Binary files /dev/null and b/src/main/resources/onpack2030/lo439987_product.bmp differ diff --git a/src/main/resources/onpack2030/lo439987_qr.bmp b/src/main/resources/onpack2030/lo439987_qr.bmp new file mode 100644 index 0000000..db86361 Binary files /dev/null and b/src/main/resources/onpack2030/lo439987_qr.bmp differ diff --git a/src/main/resources/onpack2030/lpp2290a.image b/src/main/resources/onpack2030/lpp2290a.image new file mode 100644 index 0000000..3b068aa --- /dev/null +++ b/src/main/resources/onpack2030/lpp2290a.image @@ -0,0 +1 @@ +falseDEG_053007100LOGO0250BLACKLPP2290A_product.bmp1451520LOGO_210001250BLACKLPP2290A_code.bmp2585900LOGO_35002500BLACKLPP2290A_expiry.bmp4321900LOGO_47503750BLACKlpp2290aqr.bmp332450 \ No newline at end of file diff --git a/src/main/resources/onpack2030/lpp2290a.job b/src/main/resources/onpack2030/lpp2290a.job new file mode 100644 index 0000000..0cf4322 --- /dev/null +++ b/src/main/resources/onpack2030/lpp2290a.job @@ -0,0 +1 @@ +LPP2290A.image \ No newline at end of file diff --git a/src/main/resources/onpack2030/lpp2290a_code.bmp b/src/main/resources/onpack2030/lpp2290a_code.bmp new file mode 100644 index 0000000..914791a Binary files /dev/null and b/src/main/resources/onpack2030/lpp2290a_code.bmp differ diff --git a/src/main/resources/onpack2030/lpp2290a_expiry.bmp b/src/main/resources/onpack2030/lpp2290a_expiry.bmp new file mode 100644 index 0000000..1e60d6a Binary files /dev/null and b/src/main/resources/onpack2030/lpp2290a_expiry.bmp differ diff --git a/src/main/resources/onpack2030/lpp2290a_product.bmp b/src/main/resources/onpack2030/lpp2290a_product.bmp new file mode 100644 index 0000000..1df43b6 Binary files /dev/null and b/src/main/resources/onpack2030/lpp2290a_product.bmp differ diff --git a/src/main/resources/onpack2030/lpp2290a_qr.bmp b/src/main/resources/onpack2030/lpp2290a_qr.bmp new file mode 100644 index 0000000..b20fa06 Binary files /dev/null and b/src/main/resources/onpack2030/lpp2290a_qr.bmp differ diff --git a/src/main/resources/onpack2030/pp1041.image b/src/main/resources/onpack2030/pp1041.image new file mode 100644 index 0000000..36da2bc Binary files /dev/null and b/src/main/resources/onpack2030/pp1041.image differ diff --git a/src/main/resources/onpack2030/pp1041.job b/src/main/resources/onpack2030/pp1041.job new file mode 100644 index 0000000..6368250 Binary files /dev/null and b/src/main/resources/onpack2030/pp1041.job differ diff --git a/src/main/resources/onpack2030/pp1074.image b/src/main/resources/onpack2030/pp1074.image new file mode 100644 index 0000000..a235fc0 Binary files /dev/null and b/src/main/resources/onpack2030/pp1074.image differ diff --git a/src/main/resources/onpack2030/pp1074.job b/src/main/resources/onpack2030/pp1074.job new file mode 100644 index 0000000..1821959 Binary files /dev/null and b/src/main/resources/onpack2030/pp1074.job differ diff --git a/src/main/resources/onpack2030/pp1078.image b/src/main/resources/onpack2030/pp1078.image new file mode 100644 index 0000000..2fca931 Binary files /dev/null and b/src/main/resources/onpack2030/pp1078.image differ diff --git a/src/main/resources/onpack2030/pp1078.job b/src/main/resources/onpack2030/pp1078.job new file mode 100644 index 0000000..8d8d95b Binary files /dev/null and b/src/main/resources/onpack2030/pp1078.job differ diff --git a/src/main/resources/onpack2030/pp1080.image b/src/main/resources/onpack2030/pp1080.image new file mode 100644 index 0000000..f10746e Binary files /dev/null and b/src/main/resources/onpack2030/pp1080.image differ diff --git a/src/main/resources/onpack2030/pp1080.job b/src/main/resources/onpack2030/pp1080.job new file mode 100644 index 0000000..2664c1d Binary files /dev/null and b/src/main/resources/onpack2030/pp1080.job differ diff --git a/src/main/resources/onpack2030/pp1082.image b/src/main/resources/onpack2030/pp1082.image new file mode 100644 index 0000000..dd7432a Binary files /dev/null and b/src/main/resources/onpack2030/pp1082.image differ diff --git a/src/main/resources/onpack2030/pp1082.job b/src/main/resources/onpack2030/pp1082.job new file mode 100644 index 0000000..2afed0d Binary files /dev/null and b/src/main/resources/onpack2030/pp1082.job differ diff --git a/src/main/resources/onpack2030/pp1088.image b/src/main/resources/onpack2030/pp1088.image new file mode 100644 index 0000000..8057845 Binary files /dev/null and b/src/main/resources/onpack2030/pp1088.image differ diff --git a/src/main/resources/onpack2030/pp1088.job b/src/main/resources/onpack2030/pp1088.job new file mode 100644 index 0000000..0fb3cd4 Binary files /dev/null and b/src/main/resources/onpack2030/pp1088.job differ diff --git a/src/main/resources/onpack2030/pp1117.image b/src/main/resources/onpack2030/pp1117.image new file mode 100644 index 0000000..eb424ff Binary files /dev/null and b/src/main/resources/onpack2030/pp1117.image differ diff --git a/src/main/resources/onpack2030/pp1117.job b/src/main/resources/onpack2030/pp1117.job new file mode 100644 index 0000000..038ef41 Binary files /dev/null and b/src/main/resources/onpack2030/pp1117.job differ diff --git a/src/main/resources/onpack2030/pp1118.image b/src/main/resources/onpack2030/pp1118.image new file mode 100644 index 0000000..fb7ea14 Binary files /dev/null and b/src/main/resources/onpack2030/pp1118.image differ diff --git a/src/main/resources/onpack2030/pp1118.job b/src/main/resources/onpack2030/pp1118.job new file mode 100644 index 0000000..ceff7a6 Binary files /dev/null and b/src/main/resources/onpack2030/pp1118.job differ diff --git a/src/main/resources/onpack2030/pp1126.image b/src/main/resources/onpack2030/pp1126.image new file mode 100644 index 0000000..0214a9c Binary files /dev/null and b/src/main/resources/onpack2030/pp1126.image differ diff --git a/src/main/resources/onpack2030/pp1126.job b/src/main/resources/onpack2030/pp1126.job new file mode 100644 index 0000000..23ff206 Binary files /dev/null and b/src/main/resources/onpack2030/pp1126.job differ diff --git a/src/main/resources/onpack2030/pp1136.image b/src/main/resources/onpack2030/pp1136.image new file mode 100644 index 0000000..ee8dd67 Binary files /dev/null and b/src/main/resources/onpack2030/pp1136.image differ diff --git a/src/main/resources/onpack2030/pp1136.job b/src/main/resources/onpack2030/pp1136.job new file mode 100644 index 0000000..80e0adf Binary files /dev/null and b/src/main/resources/onpack2030/pp1136.job differ diff --git a/src/main/resources/onpack2030/pp1137.image b/src/main/resources/onpack2030/pp1137.image new file mode 100644 index 0000000..27023c3 Binary files /dev/null and b/src/main/resources/onpack2030/pp1137.image differ diff --git a/src/main/resources/onpack2030/pp1137.job b/src/main/resources/onpack2030/pp1137.job new file mode 100644 index 0000000..99a1c24 Binary files /dev/null and b/src/main/resources/onpack2030/pp1137.job differ diff --git a/src/main/resources/onpack2030/pp1144.image b/src/main/resources/onpack2030/pp1144.image new file mode 100644 index 0000000..a8d7112 Binary files /dev/null and b/src/main/resources/onpack2030/pp1144.image differ diff --git a/src/main/resources/onpack2030/pp1144.job b/src/main/resources/onpack2030/pp1144.job new file mode 100644 index 0000000..4d6d8a4 Binary files /dev/null and b/src/main/resources/onpack2030/pp1144.job differ diff --git a/src/main/resources/onpack2030/pp1148.image b/src/main/resources/onpack2030/pp1148.image new file mode 100644 index 0000000..0ba3c8a Binary files /dev/null and b/src/main/resources/onpack2030/pp1148.image differ diff --git a/src/main/resources/onpack2030/pp1148.job b/src/main/resources/onpack2030/pp1148.job new file mode 100644 index 0000000..37700b8 Binary files /dev/null and b/src/main/resources/onpack2030/pp1148.job differ diff --git a/src/main/resources/onpack2030/pp1152.image b/src/main/resources/onpack2030/pp1152.image new file mode 100644 index 0000000..d9f768f Binary files /dev/null and b/src/main/resources/onpack2030/pp1152.image differ diff --git a/src/main/resources/onpack2030/pp1152.job b/src/main/resources/onpack2030/pp1152.job new file mode 100644 index 0000000..9b640a9 Binary files /dev/null and b/src/main/resources/onpack2030/pp1152.job differ diff --git a/src/main/resources/onpack2030/pp1156.image b/src/main/resources/onpack2030/pp1156.image new file mode 100644 index 0000000..3a04430 Binary files /dev/null and b/src/main/resources/onpack2030/pp1156.image differ diff --git a/src/main/resources/onpack2030/pp1156.job b/src/main/resources/onpack2030/pp1156.job new file mode 100644 index 0000000..2ed2e93 Binary files /dev/null and b/src/main/resources/onpack2030/pp1156.job differ diff --git a/src/main/resources/onpack2030/pp1178.image b/src/main/resources/onpack2030/pp1178.image new file mode 100644 index 0000000..20ac627 Binary files /dev/null and b/src/main/resources/onpack2030/pp1178.image differ diff --git a/src/main/resources/onpack2030/pp1178.job b/src/main/resources/onpack2030/pp1178.job new file mode 100644 index 0000000..5e5abbd Binary files /dev/null and b/src/main/resources/onpack2030/pp1178.job differ diff --git a/src/main/resources/onpack2030/pp1180.image b/src/main/resources/onpack2030/pp1180.image new file mode 100644 index 0000000..838632c Binary files /dev/null and b/src/main/resources/onpack2030/pp1180.image differ diff --git a/src/main/resources/onpack2030/pp1180.job b/src/main/resources/onpack2030/pp1180.job new file mode 100644 index 0000000..858871a Binary files /dev/null and b/src/main/resources/onpack2030/pp1180.job differ diff --git a/src/main/resources/onpack2030/pp1181.image b/src/main/resources/onpack2030/pp1181.image new file mode 100644 index 0000000..eda5073 Binary files /dev/null and b/src/main/resources/onpack2030/pp1181.image differ diff --git a/src/main/resources/onpack2030/pp1181.job b/src/main/resources/onpack2030/pp1181.job new file mode 100644 index 0000000..ed821e3 Binary files /dev/null and b/src/main/resources/onpack2030/pp1181.job differ diff --git a/src/main/resources/onpack2030/pp1185.image b/src/main/resources/onpack2030/pp1185.image new file mode 100644 index 0000000..870d59a Binary files /dev/null and b/src/main/resources/onpack2030/pp1185.image differ diff --git a/src/main/resources/onpack2030/pp1185.job b/src/main/resources/onpack2030/pp1185.job new file mode 100644 index 0000000..119da34 Binary files /dev/null and b/src/main/resources/onpack2030/pp1185.job differ diff --git a/src/main/resources/onpack2030/pp1209.image b/src/main/resources/onpack2030/pp1209.image new file mode 100644 index 0000000..cb85743 Binary files /dev/null and b/src/main/resources/onpack2030/pp1209.image differ diff --git a/src/main/resources/onpack2030/pp1209.job b/src/main/resources/onpack2030/pp1209.job new file mode 100644 index 0000000..73efc43 Binary files /dev/null and b/src/main/resources/onpack2030/pp1209.job differ diff --git a/src/main/resources/onpack2030/pp1213.image b/src/main/resources/onpack2030/pp1213.image new file mode 100644 index 0000000..efbccfe Binary files /dev/null and b/src/main/resources/onpack2030/pp1213.image differ diff --git a/src/main/resources/onpack2030/pp1213.job b/src/main/resources/onpack2030/pp1213.job new file mode 100644 index 0000000..5b715b8 Binary files /dev/null and b/src/main/resources/onpack2030/pp1213.job differ diff --git a/src/main/resources/onpack2030/pp1214.image b/src/main/resources/onpack2030/pp1214.image new file mode 100644 index 0000000..e8927a6 Binary files /dev/null and b/src/main/resources/onpack2030/pp1214.image differ diff --git a/src/main/resources/onpack2030/pp1214.job b/src/main/resources/onpack2030/pp1214.job new file mode 100644 index 0000000..82c804c Binary files /dev/null and b/src/main/resources/onpack2030/pp1214.job differ diff --git a/src/main/resources/onpack2030/pp1216.image b/src/main/resources/onpack2030/pp1216.image new file mode 100644 index 0000000..cfd0273 Binary files /dev/null and b/src/main/resources/onpack2030/pp1216.image differ diff --git a/src/main/resources/onpack2030/pp1216.job b/src/main/resources/onpack2030/pp1216.job new file mode 100644 index 0000000..3f5c0ae Binary files /dev/null and b/src/main/resources/onpack2030/pp1216.job differ diff --git a/src/main/resources/onpack2030/pp1217.image b/src/main/resources/onpack2030/pp1217.image new file mode 100644 index 0000000..9304f53 Binary files /dev/null and b/src/main/resources/onpack2030/pp1217.image differ diff --git a/src/main/resources/onpack2030/pp1217.job b/src/main/resources/onpack2030/pp1217.job new file mode 100644 index 0000000..0e51902 Binary files /dev/null and b/src/main/resources/onpack2030/pp1217.job differ diff --git a/src/main/resources/onpack2030/pp1234.image b/src/main/resources/onpack2030/pp1234.image new file mode 100644 index 0000000..0d742c9 Binary files /dev/null and b/src/main/resources/onpack2030/pp1234.image differ diff --git a/src/main/resources/onpack2030/pp1234.job b/src/main/resources/onpack2030/pp1234.job new file mode 100644 index 0000000..538a072 Binary files /dev/null and b/src/main/resources/onpack2030/pp1234.job differ diff --git a/src/main/resources/onpack2030/pp2211.image b/src/main/resources/onpack2030/pp2211.image new file mode 100644 index 0000000..d2835fc Binary files /dev/null and b/src/main/resources/onpack2030/pp2211.image differ diff --git a/src/main/resources/onpack2030/pp2211.job b/src/main/resources/onpack2030/pp2211.job new file mode 100644 index 0000000..eeeaead Binary files /dev/null and b/src/main/resources/onpack2030/pp2211.job differ diff --git a/src/main/resources/onpack2030/pp2214.image b/src/main/resources/onpack2030/pp2214.image new file mode 100644 index 0000000..747eba0 Binary files /dev/null and b/src/main/resources/onpack2030/pp2214.image differ diff --git a/src/main/resources/onpack2030/pp2214.job b/src/main/resources/onpack2030/pp2214.job new file mode 100644 index 0000000..5ad730f Binary files /dev/null and b/src/main/resources/onpack2030/pp2214.job differ diff --git a/src/main/resources/onpack2030/pp2215.image b/src/main/resources/onpack2030/pp2215.image new file mode 100644 index 0000000..402d0a5 Binary files /dev/null and b/src/main/resources/onpack2030/pp2215.image differ diff --git a/src/main/resources/onpack2030/pp2215.job b/src/main/resources/onpack2030/pp2215.job new file mode 100644 index 0000000..37a0393 Binary files /dev/null and b/src/main/resources/onpack2030/pp2215.job differ diff --git a/src/main/resources/onpack2030/pp2243.image b/src/main/resources/onpack2030/pp2243.image new file mode 100644 index 0000000..257dd24 Binary files /dev/null and b/src/main/resources/onpack2030/pp2243.image differ diff --git a/src/main/resources/onpack2030/pp2243.job b/src/main/resources/onpack2030/pp2243.job new file mode 100644 index 0000000..d3a24ab Binary files /dev/null and b/src/main/resources/onpack2030/pp2243.job differ diff --git a/src/main/resources/onpack2030/pp2248.image b/src/main/resources/onpack2030/pp2248.image new file mode 100644 index 0000000..b2f82d7 Binary files /dev/null and b/src/main/resources/onpack2030/pp2248.image differ diff --git a/src/main/resources/onpack2030/pp2248.job b/src/main/resources/onpack2030/pp2248.job new file mode 100644 index 0000000..f4b949c Binary files /dev/null and b/src/main/resources/onpack2030/pp2248.job differ diff --git a/src/main/resources/onpack2030/pp2250.image b/src/main/resources/onpack2030/pp2250.image new file mode 100644 index 0000000..99190eb Binary files /dev/null and b/src/main/resources/onpack2030/pp2250.image differ diff --git a/src/main/resources/onpack2030/pp2250.job b/src/main/resources/onpack2030/pp2250.job new file mode 100644 index 0000000..7f7d781 Binary files /dev/null and b/src/main/resources/onpack2030/pp2250.job differ diff --git a/src/main/resources/onpack2030/pp2262.image b/src/main/resources/onpack2030/pp2262.image new file mode 100644 index 0000000..458e72b Binary files /dev/null and b/src/main/resources/onpack2030/pp2262.image differ diff --git a/src/main/resources/onpack2030/pp2262.job b/src/main/resources/onpack2030/pp2262.job new file mode 100644 index 0000000..31d39ba Binary files /dev/null and b/src/main/resources/onpack2030/pp2262.job differ diff --git a/src/main/resources/onpack2030/pp2282.image b/src/main/resources/onpack2030/pp2282.image new file mode 100644 index 0000000..eff81cc Binary files /dev/null and b/src/main/resources/onpack2030/pp2282.image differ diff --git a/src/main/resources/onpack2030/pp2282.job b/src/main/resources/onpack2030/pp2282.job new file mode 100644 index 0000000..fbf7f63 Binary files /dev/null and b/src/main/resources/onpack2030/pp2282.job differ diff --git a/src/main/resources/onpack2030/pp2317.image b/src/main/resources/onpack2030/pp2317.image new file mode 100644 index 0000000..f5ddbc6 Binary files /dev/null and b/src/main/resources/onpack2030/pp2317.image differ diff --git a/src/main/resources/onpack2030/pp2317.job b/src/main/resources/onpack2030/pp2317.job new file mode 100644 index 0000000..1ab85ed Binary files /dev/null and b/src/main/resources/onpack2030/pp2317.job differ diff --git a/src/main/resources/onpack2030/pp2331.image b/src/main/resources/onpack2030/pp2331.image new file mode 100644 index 0000000..47a74f1 Binary files /dev/null and b/src/main/resources/onpack2030/pp2331.image differ diff --git a/src/main/resources/onpack2030/pp2331.job b/src/main/resources/onpack2030/pp2331.job new file mode 100644 index 0000000..2e1dd9f Binary files /dev/null and b/src/main/resources/onpack2030/pp2331.job differ diff --git a/src/main/resources/onpack2030/pp2341.image b/src/main/resources/onpack2030/pp2341.image new file mode 100644 index 0000000..2c3a099 Binary files /dev/null and b/src/main/resources/onpack2030/pp2341.image differ diff --git a/src/main/resources/onpack2030/pp2341.job b/src/main/resources/onpack2030/pp2341.job new file mode 100644 index 0000000..018515d Binary files /dev/null and b/src/main/resources/onpack2030/pp2341.job differ diff --git a/src/main/resources/onpack2030/test2pp1126.image b/src/main/resources/onpack2030/test2pp1126.image new file mode 100644 index 0000000..77300e2 Binary files /dev/null and b/src/main/resources/onpack2030/test2pp1126.image differ diff --git a/src/main/resources/onpack2030/test2pp1126.job b/src/main/resources/onpack2030/test2pp1126.job new file mode 100644 index 0000000..4f73a71 Binary files /dev/null and b/src/main/resources/onpack2030/test2pp1126.job differ diff --git a/src/main/resources/onpack2030/testpp1126.image b/src/main/resources/onpack2030/testpp1126.image new file mode 100644 index 0000000..26e8415 Binary files /dev/null and b/src/main/resources/onpack2030/testpp1126.image differ diff --git a/src/main/resources/onpack2030/testpp1126.job b/src/main/resources/onpack2030/testpp1126.job new file mode 100644 index 0000000..8a7629c Binary files /dev/null and b/src/main/resources/onpack2030/testpp1126.job differ diff --git a/src/main/resources/onpack2030/testpp1126_code.bmp b/src/main/resources/onpack2030/testpp1126_code.bmp new file mode 100644 index 0000000..092f8ad Binary files /dev/null and b/src/main/resources/onpack2030/testpp1126_code.bmp differ diff --git a/src/main/resources/onpack2030/testpp1126_lot.bmp b/src/main/resources/onpack2030/testpp1126_lot.bmp new file mode 100644 index 0000000..4d8de1a Binary files /dev/null and b/src/main/resources/onpack2030/testpp1126_lot.bmp differ diff --git a/src/main/resources/onpack2030/testpp1126_product.bmp b/src/main/resources/onpack2030/testpp1126_product.bmp new file mode 100644 index 0000000..5734c5c Binary files /dev/null and b/src/main/resources/onpack2030/testpp1126_product.bmp differ diff --git a/src/main/resources/onpack2030/testpp1126_qr.bmp b/src/main/resources/onpack2030/testpp1126_qr.bmp new file mode 100644 index 0000000..804a3c3 Binary files /dev/null and b/src/main/resources/onpack2030/testpp1126_qr.bmp differ diff --git a/src/main/resources/onpack2030/testpp1234.image b/src/main/resources/onpack2030/testpp1234.image new file mode 100644 index 0000000..4de2913 --- /dev/null +++ b/src/main/resources/onpack2030/testpp1234.image @@ -0,0 +1 @@ +falseDEG_053007100LOGO42505000BLACKTestPP1234_product.bmp193100LOGO_25100012500BLACKTestPP1234_code.bmp522180LOGO_3650025000BLACKTestPP1234_expiry.bmp871180LOGO_4750037500BLACKtestpp1234qr.bmp182250 \ No newline at end of file diff --git a/src/main/resources/onpack2030/testpp1234.job b/src/main/resources/onpack2030/testpp1234.job new file mode 100644 index 0000000..9b57841 --- /dev/null +++ b/src/main/resources/onpack2030/testpp1234.job @@ -0,0 +1 @@ +TestPP1234.image \ No newline at end of file diff --git a/src/main/resources/onpack2030/testpp1234_code.bmp b/src/main/resources/onpack2030/testpp1234_code.bmp new file mode 100644 index 0000000..de8af62 Binary files /dev/null and b/src/main/resources/onpack2030/testpp1234_code.bmp differ diff --git a/src/main/resources/onpack2030/testpp1234_expiry.bmp b/src/main/resources/onpack2030/testpp1234_expiry.bmp new file mode 100644 index 0000000..54f3fe7 Binary files /dev/null and b/src/main/resources/onpack2030/testpp1234_expiry.bmp differ diff --git a/src/main/resources/onpack2030/testpp1234_product.bmp b/src/main/resources/onpack2030/testpp1234_product.bmp new file mode 100644 index 0000000..691b9b8 Binary files /dev/null and b/src/main/resources/onpack2030/testpp1234_product.bmp differ diff --git a/src/main/resources/onpack2030/testpp1234_qr.bmp b/src/main/resources/onpack2030/testpp1234_qr.bmp new file mode 100644 index 0000000..3cae6db Binary files /dev/null and b/src/main/resources/onpack2030/testpp1234_qr.bmp differ diff --git a/src/main/resources/onpack2030/tt_pp1167.image b/src/main/resources/onpack2030/tt_pp1167.image new file mode 100644 index 0000000..e44ccdb --- /dev/null +++ b/src/main/resources/onpack2030/tt_pp1167.image @@ -0,0 +1,64 @@ + + + + + + false + DEG_0 + 5300 + 7100 + + + LOGO + 4 + + 250 + 500 + 0 + + BLACK + TT_PP1167_product.bmp + 4914 + 845 + + + LOGO_2 + 5 + + 1000 + 1250 + 0 + + BLACK + TT_PP1167_code.bmp + 3205 + 1173 + + + LOGO_3 + 6 + + 500 + 2500 + 0 + + BLACK + TT_PP1167_expiry.bmp + 4203 + 1173 + + + LOGO_4 + 7 + + 500 + 3750 + 0 + + BLACK + tt_pp1167qr.bmp + 4353 + 3000 + + + \ No newline at end of file diff --git a/src/main/resources/onpack2030/tt_pp1167.job b/src/main/resources/onpack2030/tt_pp1167.job new file mode 100644 index 0000000..3da0db6 --- /dev/null +++ b/src/main/resources/onpack2030/tt_pp1167.job @@ -0,0 +1,3 @@ + + TT_PP1167.image + \ No newline at end of file diff --git a/src/main/resources/onpack2030/tt_pp1167_code.bmp b/src/main/resources/onpack2030/tt_pp1167_code.bmp new file mode 100644 index 0000000..72890a9 Binary files /dev/null and b/src/main/resources/onpack2030/tt_pp1167_code.bmp differ diff --git a/src/main/resources/onpack2030/tt_pp1167_lot.bmp b/src/main/resources/onpack2030/tt_pp1167_lot.bmp new file mode 100644 index 0000000..f5e4346 Binary files /dev/null and b/src/main/resources/onpack2030/tt_pp1167_lot.bmp differ diff --git a/src/main/resources/onpack2030/tt_pp1167_product.bmp b/src/main/resources/onpack2030/tt_pp1167_product.bmp new file mode 100644 index 0000000..7d941d7 Binary files /dev/null and b/src/main/resources/onpack2030/tt_pp1167_product.bmp differ diff --git a/src/main/resources/onpack2030/tt_pp1167_qr.bmp b/src/main/resources/onpack2030/tt_pp1167_qr.bmp new file mode 100644 index 0000000..9d8bca6 Binary files /dev/null and b/src/main/resources/onpack2030/tt_pp1167_qr.bmp differ diff --git a/src/main/resources/onpack2030/日期.image b/src/main/resources/onpack2030/日期.image new file mode 100644 index 0000000..85c6aec Binary files /dev/null and b/src/main/resources/onpack2030/日期.image differ diff --git a/src/main/resources/onpack2030/日期.job b/src/main/resources/onpack2030/日期.job new file mode 100644 index 0000000..d7f7c3d Binary files /dev/null and b/src/main/resources/onpack2030/日期.job differ