├── .eslintrc.yml ├── .gitignore ├── .prettierignore ├── .travis.yml ├── History.md ├── LICENSE ├── README.md ├── fontData └── 12x12 │ └── mrz │ ├── acaslonpro.json │ ├── adobearabic.json │ ├── adobedevanagari.json │ ├── adobegurmukhi.json │ ├── adobehebrew.json │ ├── agaramondpro.json │ ├── americantypewriter.json │ ├── applegothic.json │ ├── applemyungjo.json │ ├── applesymbols.json │ ├── arialmt.json │ ├── arialunicodems.json │ ├── avenirnext.json │ ├── ayuthaya.json │ ├── banglamn.json │ ├── banglasangammn.json │ ├── batang.json │ ├── birchstd.json │ ├── bookantiqua.json │ ├── bookmanoldstyle.json │ ├── calibri.json │ ├── calistomt.json │ ├── cambria.json │ ├── cambriamath.json │ ├── candara.json │ ├── century.json │ ├── centurygothic.json │ ├── centuryschoolbook.json │ ├── chalkboard.json │ ├── chalkboardse.json │ ├── chaparralpro.json │ ├── comicsansms.json │ ├── consolas.json │ ├── copperplate.json │ ├── corbel.json │ ├── courier.json │ ├── couriernewpsmt.json │ ├── devanagarisangammn.json │ ├── euphemiaucas.json │ ├── eurostile.json │ ├── franklingothic_book.json │ ├── geneva.json │ ├── georgia.json │ ├── gillsans.json │ ├── gillsansmt.json │ ├── goudyoldstylet.json │ ├── gujaratisangammn.json │ ├── gulim.json │ ├── gurmukhimn.json │ ├── gurmukhisangammn.json │ ├── haettenschweiler.json │ ├── helvetica.json │ ├── helveticaneue.json │ ├── herculanum.json │ ├── hoeflertext.json │ ├── impact.json │ ├── inaimathi.json │ ├── kannadamn.json │ ├── kannadasangammn.json │ ├── khmermn.json │ ├── khmersangammn.json │ ├── krungthep.json │ ├── laomn.json │ ├── laosangammn.json │ ├── lithospro.json │ ├── lucidabright.json │ ├── lucidaconsole.json │ ├── lucidafax.json │ ├── lucidagrande.json │ ├── lucidasans.json │ ├── lucidasans_typewriter.json │ ├── lucidasansunicode.json │ ├── luminari.json │ ├── malayalammn.json │ ├── malayalamsangammn.json │ ├── meiryo.json │ ├── menlo.json │ ├── microsoft_yi_baiti.json │ ├── microsofthimalaya.json │ ├── microsoftsansserif.json │ ├── microsofttaile.json │ ├── ming_lt_hkscs_extb.json │ ├── ming_lt_hkscs_uni_h.json │ ├── mingliu.json │ ├── mingliu_extb.json │ ├── minionpro.json │ ├── mistral.json │ ├── monaco.json │ ├── mongolianbaiti.json │ ├── monotypecorsiva.json │ ├── ms_gothic.json │ ├── ms_mincho.json │ ├── ms_pgothic.json │ ├── msreferencesansserif.json │ ├── myanmarmn.json │ ├── myanmarsangammn.json │ ├── myriadarabic.json │ ├── myriadhebrew.json │ ├── myriadpro.json │ ├── newsgothicmt.json │ ├── ocrastd.json │ ├── ocrb.json │ ├── optima.json │ ├── oriyamn.json │ ├── oriyasangammn.json │ ├── osaka.json │ ├── palatino_roman.json │ ├── palatinolinotype_roman.json │ ├── perpetua.json │ ├── pingfanghk.json │ ├── pingfangsc.json │ ├── pingfangtc.json │ ├── plantagenetcherokee.json │ ├── playbill.json │ ├── pmingliu.json │ ├── pmingliu_extb.json │ ├── ptmono.json │ ├── rockwell.json │ ├── sathu.json │ ├── shreedev0714.json │ ├── silom.json │ ├── simhei.json │ ├── simsun.json │ ├── simsun_extb.json │ ├── sinhalamn.json │ ├── sinhalasangammn.json │ ├── sourcesanspro.json │ ├── stheiti.json │ ├── stixgeneral.json │ ├── tamilmn.json │ ├── tamilsangammn.json │ ├── telugumn.json │ ├── telugusangammn.json │ ├── thonburi.json │ ├── times_roman.json │ ├── timesnewromanpsmt.json │ ├── trajanpro3.json │ ├── trattatello.json │ ├── trebuchetms.json │ ├── twcenmt.json │ └── verdana.json ├── models ├── ESC-v2.svm.descriptors └── ESC-v2.svm.model ├── package-lock.json ├── package.json ├── run ├── .eslintrc.yml ├── LettersStatistics.js ├── classifyCardFont.js ├── generateCharacters.js ├── getMrz.js ├── readMrz.js ├── svm.js └── writeCharacters.js └── src ├── .npmignore ├── __tests__ ├── __snapshots__ │ └── readMrz.js.snap ├── fixtures │ ├── id1.jpg │ ├── id2.jpg │ └── id_fail.png └── readMrz.js ├── getMrz.js ├── getRoiStats.js ├── index.js ├── internal ├── mrzOcr.js └── symbols.js ├── readMrz.js ├── roiOptions.js ├── svm.js └── util ├── filterOutliersMAD.js ├── readWrite.js └── rois.js /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: cheminfo 2 | parser: babel-eslint 3 | rules: 4 | no-await-in-loop: off 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /data 2 | /debug 3 | /models 4 | !/models/ESC-v2.svm.descriptors 5 | !/models/ESC-v2.svm.model 6 | 7 | # Logs 8 | logs 9 | *.log 10 | npm-debug.log* 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | 17 | # Directory for instrumented libs generated by jscoverage/JSCover 18 | lib-cov 19 | 20 | # Coverage directory used by tools like istanbul 21 | coverage 22 | 23 | # nyc test coverage 24 | .nyc_output 25 | 26 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 27 | .grunt 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules 37 | jspm_packages 38 | 39 | # Optional npm cache directory 40 | .npm 41 | 42 | # Optional REPL history 43 | .node_repl_history 44 | 45 | /data/ 46 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package*.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 10 4 | - 8 5 | script: "npm run test-travis" 6 | after_script: "bash <(curl -s https://codecov.io/bash)" 7 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- 1 | 2 | ## [0.4.1](https://github.com/image-js/mrz-detection/compare/v0.4.0...v0.4.1) (2018-07-25) 3 | 4 | 5 | 6 | 7 | # [0.4.0](https://github.com/image-js/mrz-detection/compare/v0.3.3...v0.4.0) (2018-07-25) 8 | 9 | 10 | 11 | 12 | ## [0.3.3](https://github.com/image-js/mrz-detection/compare/v0.3.2...v0.3.3) (2018-05-23) 13 | 14 | 15 | 16 | 17 | ## [0.3.2](https://github.com/image-js/mrz-detection/compare/v0.3.1...v0.3.2) (2018-03-23) 18 | 19 | 20 | 21 | 22 | ## [0.3.1](https://github.com/image-js/mrz-detection/compare/v0.3.0...v0.3.1) (2018-03-21) 23 | 24 | 25 | ### Bug Fixes 26 | 27 | * add models to npm files ([21d0b25](https://github.com/image-js/mrz-detection/commit/21d0b25)) 28 | 29 | 30 | 31 | 32 | # [0.3.0](https://github.com/image-js/mrz-detection/compare/v0.2.2...v0.3.0) (2018-03-21) 33 | 34 | 35 | 36 | 37 | ## [0.2.2](https://github.com/image-js/mrz-detection/compare/v0.2.1...v0.2.2) (2018-03-20) 38 | 39 | 40 | 41 | 42 | ## [0.2.1](https://github.com/image-js/mrz-detection/compare/v0.2.0...v0.2.1) (2018-03-20) 43 | 44 | 45 | 46 | 47 | # [0.2.0](https://github.com/image-js/mrz-detection/compare/v0.1.2...v0.2.0) (2018-03-20) 48 | 49 | 50 | 51 | 52 | ## [0.1.2](https://github.com/image-js/mrz-detection/compare/v0.1.1...v0.1.2) (2018-02-20) 53 | 54 | 55 | ### Bug Fixes 56 | 57 | * remove readMrz for now ([cf4af98](https://github.com/image-js/mrz-detection/commit/cf4af98)) 58 | 59 | 60 | 61 | 62 | ## [0.1.1](https://github.com/image-js/mrz-detection/compare/v0.1.0...v0.1.1) (2018-02-20) 63 | 64 | 65 | 66 | 67 | # 0.1.0 (2018-02-20) 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 image-js 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mrz-detection 2 | 3 | ## Run scripts 4 | 5 | The best way to test the run scripts is to create a `data` directory in the root of this repo and put 6 | the images in sub-directories of `data`. 7 | 8 | ### getMrz 9 | 10 | `node run/getMrz.js --dir data/imageDir` 11 | 12 | This script will treat all PNG or JPEG images in the specified `dir` and create an `out` sub-directory 13 | containing the images at each step of the process. 14 | The purpose of this script is to locate the MRZ and crop/rotate the image to keep only this part. 15 | 16 | Final images will be in `data/imageDir/out/cropped` 17 | 18 | ### readMrz 19 | 20 | `node run/readMrz.js --dir data/imageDir/out/cropped --reference data/imageDir/ground.csv` 21 | 22 | This script will attempt to read the MRZ of all images in the specified `dir` and compare the read 23 | data with the `reference`. 24 | 25 | The reference should be a CSV file with the following format: 26 | 27 | image-name,MRZ-LINE-1,MRZ-LINE-2,MRZ-LINE-3 28 | 29 | * image-name is the filename of the original image without extension 30 | * MRZ-LINE-x are each line of the MRZ (two or three lines) 31 | 32 | ## License 33 | 34 | [MIT](./LICENSE) 35 | -------------------------------------------------------------------------------- /fontData/12x12/mrz/batang.json: -------------------------------------------------------------------------------- 1 | {"font":"Batang","fingerprint":[{"symbol":"0","fingerprints":[[31,6,12,192,72,6,128,40,3,128,60,3,192,38,6,48,64,240],[49,134,12,192,108,2,192,56,3,192,60,3,192,54,2,48,65,248],[27,134,4,64,108,3,192,60,3,192,60,3,192,54,2,48,97,248],[31,6,12,192,108,2,128,56,3,128,56,3,192,36,6,96,65,152],[31,2,12,64,108,2,192,60,3,192,60,3,192,36,6,32,193,240],[15,2,12,96,108,3,192,60,3,192,60,3,192,54,6,32,65,248],[27,134,12,192,108,2,128,56,3,128,56,2,192,44,6,96,193,240],[31,130,4,64,108,2,192,56,3,128,56,3,192,44,6,96,193,184],[15,131,4,96,44,3,192,60,3,192,60,3,192,36,6,32,193,240],[25,131,6,96,36,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,130,4,64,44,3,192,56,3,128,56,2,128,108,6,96,195,240]]},{"symbol":"1","fingerprints":[[14,14,224,6,0,96,6,0,96,6,0,112,7,0,48,3,3,252],[12,15,224,14,0,96,6,0,96,7,0,112,3,0,48,3,3,255],[14,15,224,6,0,96,7,0,112,7,0,48,3,0,48,3,3,255],[14,15,224,14,0,224,6,0,96,6,0,96,6,0,96,7,7,255],[2,15,224,6,0,96,6,0,96,6,0,96,7,0,112,7,7,255],[14,0,224,6,0,96,6,0,96,6,0,96,6,0,96,6,3,252],[6,1,224,6,0,96,6,0,96,6,0,96,14,0,224,14,15,255],[3,7,240,7,0,112,6,0,96,6,0,96,6,0,96,14,15,254],[15,0,112,3,0,48,7,0,112,7,0,96,6,0,96,14,15,248],[3,128,120,3,128,48,3,0,48,7,0,112,6,0,96,14,15,255],[3,128,112,3,0,48,3,0,48,3,0,112,7,0,96,14,15,254]]},{"symbol":"2","fingerprints":[[31,132,12,192,108,6,64,64,12,3,0,192,16,18,2,64,231,252],[49,132,6,192,102,6,0,64,24,3,0,192,24,18,1,64,103,254],[57,196,6,192,110,6,0,96,12,3,0,224,16,2,1,64,39,254],[31,196,6,192,38,2,0,96,12,3,128,224,24,2,1,64,39,254],[31,132,6,192,108,6,0,96,12,3,0,224,16,2,0,64,47,254],[49,196,6,192,38,2,0,96,12,1,128,224,16,2,1,64,47,254],[25,198,6,64,54,3,0,96,12,3,128,224,16,6,1,0,47,254],[31,198,2,96,54,3,0,32,12,3,128,224,16,2,1,64,47,254],[15,130,6,96,54,3,0,96,12,3,0,192,48,4,2,192,111,252],[25,194,2,96,50,3,0,96,12,3,0,192,16,4,2,128,111,252],[31,130,6,96,38,2,0,96,12,3,0,192,48,4,2,128,79,252]]},{"symbol":"3","fingerprints":[[31,132,12,192,100,6,0,192,112,0,96,3,0,62,3,96,99,248],[49,140,6,192,96,6,0,193,240,0,96,3,0,60,3,192,99,184],[51,132,12,192,96,6,0,193,240,0,192,2,0,60,2,224,99,24],[63,134,4,96,96,6,0,193,240,0,96,3,64,62,2,96,99,248],[31,134,6,96,96,6,0,64,240,0,96,3,64,62,3,96,99,248],[48,198,6,96,32,6,0,64,240,0,96,3,64,62,3,96,99,248],[25,198,6,96,48,2,0,96,240,0,96,3,64,62,3,96,99,28],[31,195,2,48,48,3,0,96,248,0,96,3,0,62,3,96,99,12],[15,131,6,48,48,3,0,96,248,0,64,2,96,62,2,96,97,248],[24,195,2,48,48,3,0,96,240,0,64,2,96,62,2,96,97,248],[25,195,6,48,48,2,0,96,248,0,192,6,64,108,6,192,67,56]]},{"symbol":"4","fingerprints":[[2,0,112,7,0,176,19,2,48,35,4,16,191,224,24,1,128,62],[1,0,48,7,0,176,19,1,16,33,4,16,159,240,24,1,128,62],[1,0,48,7,0,144,17,1,16,33,4,24,255,240,24,1,128,126],[1,0,48,5,0,144,9,129,24,33,132,24,255,240,24,1,128,126],[1,128,56,3,128,88,9,129,24,33,132,24,255,240,24,1,128,126],[1,128,24,7,128,152,17,130,24,33,132,24,255,240,24,1,128,60],[1,128,56,5,128,152,9,129,24,33,132,24,255,240,16,1,0,254],[0,128,24,3,128,88,9,129,24,33,132,24,255,240,24,1,0,252],[0,128,24,3,128,88,9,129,24,33,132,24,255,240,24,1,128,120],[0,192,24,2,128,72,9,129,24,33,132,24,31,240,24,1,128,254],[0,64,28,2,192,72,8,129,8,33,132,24,63,240,24,1,128,252]]},{"symbol":"5","fingerprints":[[63,206,0,128,8,0,128,10,12,0,48,3,0,60,3,96,99,248],[255,200,0,128,8,0,143,6,12,0,96,3,0,62,2,96,67,248],[127,196,0,64,4,0,78,6,12,0,96,3,0,62,2,96,99,248],[127,196,0,64,4,0,95,132,6,0,96,3,0,62,3,96,99,24],[127,228,0,64,4,0,79,134,6,0,32,3,64,62,2,96,97,248],[127,228,0,64,4,0,79,4,6,0,48,3,0,60,3,64,99,248],[127,228,0,64,4,0,78,6,12,0,96,2,0,60,6,64,99,248],[63,224,0,64,4,0,95,132,4,0,96,3,0,60,2,64,99,24],[63,226,0,0,4,0,95,6,4,0,32,3,192,60,2,64,65,248],[63,242,0,32,0,0,79,6,4,0,32,3,64,60,2,64,97,248],[31,226,0,32,2,0,6,6,12,0,96,2,64,46,6,64,193,248]]},{"symbol":"6","fingerprints":[[15,194,14,64,4,0,192,13,140,224,60,3,64,54,3,32,97,248],[15,131,12,96,4,0,192,12,140,224,108,2,64,54,2,32,65,248],[15,195,14,96,4,0,67,13,12,224,100,3,64,54,2,32,97,152],[15,194,6,96,4,0,192,13,12,192,44,3,192,52,2,32,65,248],[15,195,6,96,4,0,192,13,140,192,44,3,64,52,2,32,97,248],[7,193,6,32,38,0,64,13,140,224,60,3,64,52,3,32,97,248],[15,227,7,96,4,0,194,13,6,192,60,3,192,52,3,96,97,156],[15,195,6,32,36,0,64,13,12,192,44,3,192,52,2,32,65,240],[7,193,7,32,38,0,64,13,140,192,44,3,192,52,2,32,97,248],[15,193,7,32,38,0,67,5,12,192,108,2,192,100,6,96,65,248],[7,193,135,48,38,0,96,5,12,96,108,2,64,36,6,96,65,152]]},{"symbol":"7","fingerprints":[[31,247,2,192,72,4,0,128,16,3,0,96,6,0,96,6,0,96],[127,246,2,64,72,4,0,128,16,1,0,48,6,0,96,6,0,96],[127,246,2,128,72,0,0,128,16,3,0,96,6,0,224,14,0,224],[127,246,2,64,72,8,0,128,16,2,0,96,4,0,192,12,0,192],[127,244,2,128,64,8,0,128,16,6,0,96,14,0,192,12,0,192],[127,244,2,0,64,8,1,0,48,2,0,64,12,0,192,12,0,192],[127,244,2,128,64,8,0,128,16,6,0,96,12,0,128,24,1,128],[127,244,2,128,64,8,1,0,32,2,0,64,12,0,192,24,1,128],[63,244,2,0,64,8,1,0,48,2,0,64,12,0,192,24,1,128],[127,244,2,128,64,8,1,0,32,6,0,192,8,1,128,24,1,128],[127,228,2,128,64,8,1,0,32,4,0,192,24,1,128,56,3,0]]},{"symbol":"8","fingerprints":[[31,4,8,64,196,12,96,131,224,48,196,2,64,52,2,96,97,248],[33,132,12,128,76,4,96,131,240,33,196,2,192,60,2,64,35,248],[49,132,4,192,68,4,96,131,240,49,196,2,192,60,3,64,35,152],[27,132,4,64,100,4,96,195,240,32,228,3,192,28,3,96,97,248],[31,130,4,64,100,6,96,65,240,32,228,3,192,28,3,96,33,248],[15,130,6,64,36,2,32,65,240,48,228,3,192,20,1,96,33,248],[17,132,4,64,100,6,112,193,240,49,196,6,192,44,2,64,35,24],[25,130,6,64,36,2,48,65,240,32,236,2,192,60,2,96,97,248],[15,130,6,96,38,2,48,65,240,32,228,2,192,60,3,96,97,248],[24,194,2,32,34,2,56,64,240,48,196,2,192,60,3,96,33,248],[8,194,2,32,50,3,56,96,240,49,196,2,192,60,3,64,35,140]]},{"symbol":"9","fingerprints":[[31,6,12,64,108,6,192,36,7,49,176,2,0,32,6,48,195,240],[49,132,4,192,108,2,192,52,7,96,176,131,0,32,6,112,67,240],[25,134,4,192,44,3,192,52,7,48,176,227,0,32,6,112,67,152],[31,134,4,64,108,2,64,38,7,49,48,2,0,98,4,112,129,240],[31,134,4,192,44,2,192,52,3,49,176,2,0,32,6,96,195,240],[24,134,6,64,44,3,192,54,3,48,176,3,0,32,6,96,195,240],[25,134,4,192,44,2,192,52,7,96,160,194,0,96,4,224,135,240],[31,134,4,64,44,3,192,52,3,49,176,2,0,100,4,224,131,224],[31,130,6,96,36,3,64,52,3,48,176,2,0,100,4,224,131,240],[25,130,6,96,36,2,64,54,7,48,160,6,0,100,12,224,131,224],[29,131,6,96,38,3,96,54,3,48,176,66,0,100,4,96,131,240]]},{"symbol":"A","fingerprints":[[8,0,192,6,1,32,19,0,16,32,131,8,32,192,4,64,111,0],[12,0,192,6,1,32,17,0,16,0,131,136,32,192,4,64,111,8],[12,0,224,14,0,32,17,1,16,0,131,248,32,192,4,64,111,14],[4,0,224,10,0,48,17,1,16,0,131,248,32,192,4,64,111,15],[4,0,96,10,0,176,1,1,16,16,129,248,32,192,4,64,79,15],[6,0,32,10,0,144,1,1,24,16,129,248,32,194,4,0,70,7],[6,0,96,11,0,144,1,1,8,16,129,248,32,64,4,64,79,15],[6,0,96,1,0,144,9,1,8,16,129,248,32,66,4,64,79,14],[2,0,112,1,0,144,9,129,8,16,128,60,32,64,4,64,99,15],[2,0,80,5,0,144,8,128,8,16,128,4,32,64,4,64,96,15],[3,0,48,5,0,16,8,128,8,16,128,12,32,64,4,64,96,15]]},{"symbol":"B","fingerprints":[[253,134,4,32,98,4,32,195,252,32,34,3,48,49,3,16,71,240],[255,130,4,32,98,6,32,67,252,32,35,3,16,49,3,16,103,248],[255,130,4,32,34,2,32,67,248,32,34,3,32,50,3,32,39,248],[240,194,6,32,34,2,32,195,252,32,98,3,32,18,3,48,47,252],[255,194,2,32,34,2,32,67,252,32,98,3,32,18,3,48,39,252],[255,130,6,32,34,2,32,67,248,32,194,3,32,50,3,32,47,28],[255,130,6,32,34,2,32,99,248,32,98,3,32,50,3,32,47,248],[255,131,6,48,50,3,32,35,248,32,98,3,32,50,3,32,47,252],[255,3,6,48,51,3,48,35,12,32,66,3,32,50,3,32,63,204],[63,131,2,48,51,3,48,35,252,48,98,3,32,18,3,32,39,252],[63,129,2,16,51,3,48,51,252,48,99,3,32,18,3,32,63,252]]},{"symbol":"C","fingerprints":[[31,194,4,64,44,0,192,12,0,192,12,0,64,22,2,56,64,240],[15,194,4,64,44,0,192,12,0,192,12,0,64,22,2,48,64,248],[25,194,6,64,44,0,128,8,0,128,12,0,192,22,1,48,97,248],[31,194,6,64,44,0,192,12,0,192,12,0,192,6,1,48,33,252],[15,194,6,64,28,0,192,12,0,192,12,0,64,6,1,56,96,248],[15,226,6,96,28,0,192,8,0,128,12,0,192,6,1,48,97,248],[25,194,2,64,28,0,192,12,0,192,12,0,192,6,1,48,33,248],[15,163,2,64,28,0,192,12,0,192,12,0,192,6,0,56,64,248],[15,163,2,96,20,0,192,12,0,192,12,0,192,6,1,48,32,248],[29,226,3,96,28,0,192,8,0,128,12,0,192,6,1,48,97,248],[15,163,2,64,28,0,192,12,0,192,12,0,192,6,2,48,64,248]]},{"symbol":"D","fingerprints":[[255,134,4,96,98,3,32,50,3,32,50,3,32,35,6,48,199,224],[255,134,4,32,34,3,32,50,1,32,18,3,48,51,2,48,71,224],[255,6,12,96,102,2,32,50,3,32,50,3,32,34,6,32,199,240],[243,130,4,32,34,3,32,50,3,32,50,3,32,50,6,32,79,240],[255,130,4,32,34,3,32,50,3,32,50,3,32,50,2,32,79,248],[255,2,12,32,34,3,32,50,1,32,18,1,32,50,2,32,79,56],[255,2,4,32,98,2,32,50,3,32,50,3,32,50,2,32,78,24],[254,2,12,32,98,3,32,50,3,32,50,3,32,50,6,32,79,240],[254,2,12,32,34,3,32,50,1,32,18,3,32,50,2,32,79,248],[127,2,4,32,98,2,32,50,3,32,50,3,96,38,6,96,79,56],[63,3,4,48,34,3,32,50,3,32,50,3,32,38,6,96,199,240]]},{"symbol":"E","fingerprints":[[31,198,4,32,34,0,32,130,24,32,130,8,32,19,3,48,103,240],[255,194,2,32,2,8,32,131,248,32,130,8,48,3,1,48,119,252],[255,194,4,32,34,0,32,130,248,33,130,8,32,2,3,32,103,254],[255,194,4,32,34,0,32,2,48,33,2,0,32,2,1,32,47,254],[255,194,2,32,2,0,32,3,248,33,130,8,32,2,1,32,47,254],[255,194,2,32,18,8,32,131,248,33,130,8,32,2,1,32,63,30],[255,226,2,32,18,8,32,131,248,33,130,8,32,2,1,32,63,254],[255,226,2,32,18,0,32,131,24,33,130,8,32,2,1,32,63,254],[255,195,3,48,19,0,32,130,24,32,130,8,32,2,1,96,51,254],[63,227,2,48,19,0,48,131,248,32,130,8,32,2,1,32,39,254],[63,195,3,48,19,0,48,131,216,48,130,8,32,2,1,32,39,254]]},{"symbol":"F","fingerprints":[[31,230,3,32,2,0,32,2,24,48,1,4,16,1,0,16,7,192],[255,226,3,32,2,8,48,131,248,48,195,4,48,3,0,48,7,192],[255,226,3,32,2,0,32,2,248,32,131,0,48,3,0,16,7,192],[255,226,2,32,18,0,32,130,56,32,130,0,32,2,0,32,15,192],[255,226,3,32,2,0,32,131,248,32,130,0,32,2,0,32,15,192],[255,226,2,32,18,8,32,131,248,33,130,8,32,2,0,32,15,0],[255,226,3,32,18,0,32,131,248,33,130,8,32,2,0,32,7,0],[255,226,2,32,18,0,32,131,152,33,130,8,32,2,0,32,15,128],[255,131,2,48,19,0,32,130,24,33,130,8,32,2,0,32,15,128],[63,227,2,48,19,0,48,131,248,33,130,8,32,2,0,32,15,0],[63,195,2,48,19,0,48,131,248,49,130,8,32,130,0,32,15,0]]},{"symbol":"G","fingerprints":[[15,130,12,64,12,0,128,8,0,129,248,4,192,102,6,48,96,240],[31,194,4,64,44,0,128,8,0,129,252,6,64,102,6,32,97,240],[15,130,12,64,12,0,128,8,0,129,248,4,192,68,4,96,65,240],[27,194,4,64,44,0,128,8,0,129,248,4,192,68,4,96,65,152],[31,194,4,96,36,0,128,8,0,129,252,4,192,70,4,32,65,240],[31,194,4,64,44,0,192,8,0,129,252,6,192,68,4,32,65,240],[27,194,4,64,44,0,128,8,0,128,8,4,192,68,4,96,65,180],[31,194,4,96,36,0,128,8,0,129,248,4,192,68,4,32,193,244],[15,195,4,96,36,0,192,8,0,129,8,6,192,68,4,32,65,244],[29,194,6,64,44,0,192,12,0,128,12,6,192,68,4,32,65,156],[31,162,6,96,36,0,192,12,0,193,140,6,192,68,4,32,65,244]]},{"symbol":"H","fingerprints":[[1,238,4,96,66,4,32,66,28,32,66,4,32,66,4,32,103,128],[1,228,4,64,68,4,96,70,4,32,66,4,32,66,6,32,103,8],[240,230,4,96,70,4,32,66,124,32,66,4,32,66,6,32,103,15],[241,228,4,64,68,4,64,70,12,96,70,4,96,98,6,32,111,15],[240,230,4,96,70,6,96,103,254,32,98,6,32,98,6,32,103,15],[240,246,6,96,102,6,96,103,254,96,102,6,96,102,6,96,111,15],[240,246,6,96,70,4,96,70,4,96,68,4,64,68,4,64,79,15],[240,242,6,32,34,6,32,102,6,96,102,4,96,68,4,64,79,14],[112,2,6,32,66,4,32,66,4,32,70,4,96,70,4,96,71,14],[112,226,2,32,34,6,32,67,132,32,66,4,96,70,4,96,64,14],[56,2,6,32,66,4,32,67,4,32,66,4,96,70,4,96,64,30]]},{"symbol":"I","fingerprints":[[255,193,192,12,0,192,14,0,224,6,0,96,7,0,48,3,3,255],[255,193,192,30,1,224,14,0,224,14,0,240,15,0,112,7,3,255],[255,128,224,14,0,224,14,0,240,15,0,240,7,0,112,7,3,255],[255,128,192,14,0,224,14,0,96,6,0,96,6,0,96,6,7,255],[255,224,96,6,0,96,6,0,96,6,0,96,6,0,96,6,3,255],[255,240,240,15,0,240,15,0,240,15,0,240,15,0,240,15,7,252],[255,240,96,6,0,96,6,0,224,14,0,224,14,0,224,14,3,240],[127,240,112,6,0,96,6,0,96,6,0,96,6,0,224,14,15,254],[63,240,112,7,0,240,15,0,240,14,0,224,14,0,224,30,15,252],[15,240,120,7,0,112,7,0,240,15,0,224,14,0,224,30,15,248],[15,240,48,3,0,112,6,0,96,6,0,224,12,0,192,28,15,240]]},{"symbol":"J","fingerprints":[[31,224,56,1,128,24,1,192,28,1,192,28,1,192,28,113,199,176],[63,240,56,3,192,60,1,192,28,1,192,28,1,192,12,225,207,56],[31,240,56,1,128,24,1,128,28,1,192,28,1,192,28,225,135,224],[15,192,48,3,128,56,3,128,24,1,128,24,1,128,24,227,7,224],[15,240,24,1,128,24,1,128,24,1,128,24,1,128,24,243,7,224],[15,240,24,1,128,24,1,128,24,1,128,24,1,128,24,225,135,224],[3,224,24,1,128,24,1,128,24,1,128,24,1,128,56,227,7,224],[3,240,8,0,128,24,1,128,24,1,128,24,1,128,56,227,7,96],[7,240,28,1,128,24,1,128,24,1,128,16,1,0,16,227,7,96],[7,240,24,1,128,24,1,128,24,3,128,56,3,0,48,226,7,192]]},{"symbol":"K","fingerprints":[[17,198,8,97,2,32,36,2,192,51,2,16,32,130,4,32,103,128],[1,228,8,65,4,32,100,6,192,51,2,16,32,130,12,32,103,8],[241,198,8,97,6,32,36,2,224,51,2,16,32,130,12,32,103,15],[241,228,8,65,4,32,68,6,192,114,6,16,97,130,12,32,79,15],[240,230,8,97,6,32,100,6,224,50,2,16,33,130,12,32,71,15],[241,246,8,97,6,32,100,6,224,114,6,16,97,134,8,96,79,14],[240,246,4,96,134,0,100,6,224,114,6,16,97,134,8,96,79,15],[248,242,4,32,130,16,38,6,224,114,6,16,97,134,8,96,79,14],[120,2,6,32,130,16,34,2,224,51,6,16,96,134,8,96,71,15],[56,226,6,32,130,16,36,2,160,35,2,16,97,134,12,96,64,31],[56,131,6,48,194,16,34,2,160,51,2,16,97,134,12,96,192,30]]},{"symbol":"L","fingerprints":[[248,2,0,32,2,0,48,3,0,48,3,0,48,3,1,16,103,240],[248,2,0,48,3,0,48,3,0,48,3,0,48,1,1,16,55,252],[240,2,0,32,2,0,32,3,0,48,3,0,48,3,1,48,39,254],[240,2,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[248,2,0,32,2,0,32,2,0,32,2,0,32,2,1,48,47,254],[248,2,0,32,2,0,32,2,0,32,2,0,32,2,1,32,63,30],[252,2,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,48,2,0,32,2,0,32,2,0,32,2,1,32,63,254],[252,1,0,16,3,0,48,3,0,32,2,0,32,2,1,32,55,254],[60,1,0,16,1,0,16,3,0,48,2,0,32,2,0,32,55,254],[60,1,0,48,3,0,48,3,0,48,3,0,32,2,1,32,47,254]]},{"symbol":"M","fingerprints":[[0,110,12,96,196,4,81,69,20,73,96,130,4,32,98,6,119,0],[0,102,12,96,199,4,80,101,22,73,36,130,70,36,98,68,39,0],[0,102,12,96,229,6,80,37,2,73,36,130,70,36,98,4,39,12],[192,98,0,96,135,8,80,5,16,73,36,130,72,36,98,70,46,15],[224,102,2,112,165,10,80,36,18,73,36,130,72,36,98,70,38,79],[224,118,6,96,37,10,80,37,18,73,36,130,74,36,98,68,44,71],[224,118,2,96,165,10,80,37,16,73,4,128,74,4,224,68,14,79],[224,6,6,112,37,10,80,37,18,73,36,130,74,4,96,68,2,79],[96,6,6,80,37,10,80,36,2,73,36,134,74,100,68,68,70,78],[96,1,6,16,37,10,80,36,130,73,36,130,74,100,70,68,64,78],[96,0,6,16,33,10,16,36,150,73,68,132,74,68,68,228,64,14]]},{"symbol":"N","fingerprints":[[0,254,2,112,32,130,44,2,96,33,2,24,32,210,3,32,23,128],[0,246,2,48,32,130,4,32,98,33,2,24,32,194,6,32,39,128],[0,246,2,112,37,130,12,32,66,3,32,18,0,224,6,0,39,0],[192,246,2,80,37,130,76,36,98,67,36,18,64,160,6,32,111,0],[192,103,2,80,36,130,68,36,98,2,32,18,1,160,14,0,111,2],[192,246,0,112,4,128,76,4,64,66,4,48,65,4,12,64,78,0],[192,247,2,80,36,130,76,36,66,66,36,18,65,164,14,64,79,0],[224,114,2,16,1,128,8,4,64,66,4,16,65,132,8,64,78,4],[224,2,2,16,32,130,8,32,96,2,4,16,65,132,8,64,70,4],[96,67,2,48,0,128,12,0,64,2,0,52,65,68,12,64,198,4],[32,3,2,56,34,130,4,0,64,2,0,16,65,196,12,64,192,4]]},{"symbol":"O","fingerprints":[[31,2,4,64,108,2,192,56,3,192,60,3,192,52,2,32,65,152],[31,2,4,64,108,2,192,60,3,192,60,3,64,54,2,32,64,248],[25,130,4,64,44,3,128,56,3,128,60,3,192,52,2,32,65,248],[31,130,4,64,44,3,192,60,1,192,28,1,192,52,2,32,65,152],[31,130,4,64,108,2,192,60,3,192,60,3,64,38,2,32,64,240],[15,2,4,96,36,3,192,60,3,192,60,3,64,54,2,32,65,248],[27,130,4,64,44,3,192,60,1,128,28,3,192,52,2,32,65,152],[31,130,4,64,44,2,192,60,3,192,60,3,192,36,6,32,65,240],[25,130,4,64,44,3,192,56,1,128,56,3,192,52,2,32,65,184],[31,130,4,96,44,2,192,60,3,128,60,3,192,36,4,32,193,240]]},{"symbol":"P","fingerprints":[[254,226,3,32,50,3,48,49,12,16,1,0,16,1,0,16,7,192],[255,195,3,48,51,3,48,51,4,48,3,0,16,1,0,16,7,224],[255,194,3,32,50,3,32,51,6,48,1,0,16,1,0,16,7,192],[248,194,3,32,50,3,32,34,12,56,2,0,32,2,0,48,15,192],[255,194,3,32,50,3,32,50,4,63,2,0,32,2,0,48,15,192],[255,194,6,32,50,3,32,50,4,63,130,0,32,2,0,32,15,128],[255,130,2,32,50,3,32,50,6,63,130,0,32,2,0,32,7,0],[255,131,3,48,50,1,32,50,6,35,130,0,32,2,0,32,15,128],[255,3,2,48,51,3,48,51,6,63,130,0,32,2,0,32,15,128],[63,195,3,48,51,1,48,51,6,63,195,0,32,2,0,32,15,128],[63,129,2,16,51,3,48,51,6,63,195,0,32,2,0,32,15,0]]},{"symbol":"Q","fingerprints":[[30,4,8,64,72,6,128,40,2,128,44,6,82,66,28,14,128,6],[30,4,8,64,72,6,128,40,2,128,44,2,82,66,28,15,128,15],[25,6,4,64,108,2,128,40,2,128,36,194,115,98,28,14,128,7],[27,6,8,64,72,6,128,40,2,128,44,6,67,66,24,14,128,6],[31,6,4,64,108,2,128,56,3,128,60,2,67,66,28,15,128,7],[15,2,4,64,108,2,128,56,3,128,52,194,67,99,28,14,128,7],[25,130,4,64,44,3,128,56,3,192,60,130,99,98,28,15,128,7],[31,130,4,64,44,3,192,60,3,192,61,194,99,35,28,6,128,7],[15,2,4,64,44,3,192,60,3,192,61,195,67,35,28,6,128,7],[29,130,2,64,60,3,128,24,1,128,61,195,99,35,28,0,128,6],[31,130,4,64,44,3,192,56,3,192,61,194,98,98,24,7,128,14]]},{"symbol":"R","fingerprints":[[255,134,12,32,66,4,32,130,240,35,2,16,48,129,12,16,103,128],[255,130,12,32,66,4,32,194,112,35,3,16,16,129,12,16,103,128],[255,6,12,32,66,4,32,66,56,34,2,16,33,130,8,32,71,135],[241,130,4,32,66,4,32,67,240,34,2,16,33,130,8,32,79,135],[255,130,4,32,66,4,32,67,248,34,2,16,33,130,8,32,79,135],[255,130,4,32,98,6,32,67,248,34,2,48,33,2,8,32,207,6],[255,2,4,32,98,2,32,66,12,35,2,16,33,130,8,32,207,135],[255,3,4,48,34,2,32,98,12,35,2,16,33,130,8,32,207,134],[255,3,4,48,35,2,48,35,12,35,2,16,32,130,12,32,199,135],[63,131,6,48,35,3,48,35,204,51,2,16,32,130,12,32,199,134],[63,129,6,16,51,3,48,35,4,51,3,16,32,130,12,96,64,7]]},{"symbol":"S","fingerprints":[[63,140,12,128,40,0,192,3,192,1,224,3,0,24,1,96,39,248],[31,196,12,128,44,0,192,3,192,1,224,3,0,24,1,96,39,252],[51,204,6,128,40,0,224,3,224,3,224,3,0,24,1,192,55,252],[63,196,6,128,44,0,96,3,224,3,224,3,0,24,1,192,55,140],[31,196,6,192,44,0,96,3,192,1,224,3,0,56,3,96,38,248],[31,70,6,192,44,0,96,3,192,1,224,3,0,24,1,96,39,252],[59,228,6,64,20,0,112,1,224,3,192,3,0,24,1,96,55,204],[31,230,6,64,22,0,48,1,224,3,192,7,0,24,1,96,55,140],[31,166,6,64,20,0,96,1,192,1,224,3,0,24,1,224,52,252],[31,6,7,64,20,0,112,1,192,1,224,3,0,24,1,224,53,204],[27,166,2,96,22,0,48,0,224,3,192,6,0,56,3,224,37,140]]},{"symbol":"T","fingerprints":[[31,236,64,132,16,64,6,0,32,2,0,32,2,0,32,2,0,120],[15,228,97,134,16,32,2,0,32,2,0,32,2,0,32,2,0,248],[127,232,65,132,16,64,6,0,96,2,0,32,2,0,32,2,0,248],[127,236,97,134,16,96,2,0,32,2,0,32,2,0,32,2,0,248],[127,232,65,4,16,64,4,0,64,4,0,64,6,0,96,6,0,240],[127,232,97,134,16,96,6,0,96,6,0,96,6,0,96,6,0,96],[127,232,66,4,16,64,4,0,64,4,0,64,4,0,64,4,1,240],[127,236,99,134,16,96,4,0,64,4,0,64,4,0,64,4,1,240],[127,232,33,130,16,32,6,0,96,4,0,64,4,0,64,4,1,240],[127,232,99,6,16,64,4,0,64,4,0,64,4,0,64,4,1,240],[127,128,35,130,16,96,6,0,64,4,0,64,4,0,64,4,1,224]]},{"symbol":"U","fingerprints":[[0,254,2,32,34,2,32,34,2,32,2,0,48,3,2,16,32,248],[0,246,2,32,34,2,32,34,2,32,34,2,32,35,2,16,64,248],[0,246,0,32,2,0,32,34,2,32,34,2,32,34,2,16,64,248],[240,246,2,96,38,2,96,34,2,32,34,2,32,34,2,48,64,248],[240,226,0,32,2,0,32,2,0,32,2,0,32,2,0,16,64,240],[240,246,2,96,38,2,96,38,2,96,38,2,96,34,0,48,64,240],[240,242,0,32,2,0,32,2,0,96,6,0,32,2,4,48,65,248],[240,230,2,96,36,2,64,4,0,64,4,0,64,6,4,48,192,240],[240,2,2,32,2,0,96,6,0,64,4,0,64,70,4,32,1,240],[112,198,0,64,4,0,64,68,4,64,68,4,64,68,4,32,129,240],[240,4,2,64,4,0,64,4,0,64,68,4,64,68,4,32,129,224]]},{"symbol":"V","fingerprints":[[16,230,0,48,67,4,24,64,136,8,128,64,4,0,48,3,0,0],[0,246,2,32,65,4,16,0,136,8,128,64,6,0,112,3,0,0],[240,230,4,32,65,0,16,1,136,8,128,128,5,0,112,2,0,32],[248,242,2,48,65,4,16,0,136,8,128,192,5,0,112,2,0,32],[240,226,4,32,65,0,16,129,136,8,0,128,13,0,64,6,0,32],[248,242,0,48,67,4,16,129,136,8,0,144,4,0,96,6,0,0],[240,242,2,32,65,0,16,129,8,8,0,144,9,0,64,6,0,64],[248,242,2,48,67,4,16,129,8,9,0,144,8,0,96,6,0,64],[240,2,2,32,67,4,16,129,8,25,0,144,8,0,224,4,0,64],[112,230,6,32,67,0,16,129,0,17,1,144,10,0,160,12,0,0],[120,2,2,32,67,4,16,129,8,17,0,144,8,0,160,12,0,0]]},{"symbol":"W","fingerprints":[[3,108,98,66,34,32,37,2,80,21,1,20,16,192,136,8,128,128],[1,124,34,66,34,34,33,2,80,21,1,20,16,192,140,8,128,128],[15,116,98,66,34,32,36,2,80,17,65,20,16,64,136,8,128,136],[239,100,98,66,0,96,38,2,20,33,65,20,25,1,136,8,128,8],[238,36,34,2,34,96,36,2,16,49,65,20,25,1,136,0,128,8],[239,116,98,66,2,96,38,2,4,33,67,144,25,1,24,16,128,0],[255,116,34,2,34,96,38,2,0,33,65,20,25,1,152,16,128,0],[239,4,98,66,32,96,38,2,36,33,66,144,17,129,24,17,1,0],[228,4,2,2,34,96,38,66,36,34,2,128,9,129,24,17,0,16],[111,4,98,66,32,96,34,2,36,40,2,152,49,129,16,17,0,16],[108,4,67,70,36,96,2,66,36,42,2,40,32,3,16,1,0,16]]},{"symbol":"X","fingerprints":[[17,198,8,49,1,16,10,0,64,2,0,144,0,129,12,32,103,128],[1,230,8,48,1,144,10,0,96,2,0,144,0,129,12,0,103,136],[241,198,8,49,1,128,14,0,64,6,0,176,17,128,12,32,71,31],[249,226,0,16,129,144,14,0,64,6,0,176,17,129,8,32,71,31],[249,226,0,16,129,144,14,0,96,6,0,176,17,128,8,32,79,31],[249,242,4,16,129,144,14,0,96,6,0,176,17,128,8,32,78,15],[248,243,4,16,128,144,12,0,96,6,0,144,17,128,12,32,79,31],[120,243,4,24,0,136,5,0,96,6,0,144,17,128,8,32,79,30],[124,1,4,16,0,136,13,0,96,6,0,144,17,130,8,96,71,31],[60,241,4,24,0,200,4,0,96,6,0,144,17,128,8,96,71,30],[60,129,6,8,0,136,5,0,96,2,0,144,17,2,8,96,192,30]]},{"symbol":"Y","fingerprints":[[16,246,0,48,65,8,8,0,208,7,0,32,2,0,48,3,0,124],[0,246,0,48,65,128,8,128,192,7,0,32,3,0,48,3,0,60],[240,242,0,48,65,8,8,0,208,6,0,32,2,0,32,2,0,248],[248,242,0,48,65,136,12,128,208,7,0,32,2,0,32,2,0,248],[248,242,4,16,65,136,9,0,208,6,0,96,6,0,96,6,0,240],[248,242,0,48,65,8,8,0,208,6,0,96,6,0,96,4,1,240],[240,242,0,48,65,8,24,0,208,14,0,64,4,0,64,4,1,240],[248,2,2,48,65,8,8,0,208,6,0,64,4,0,64,4,1,224],[112,242,0,48,65,8,25,0,160,12,0,64,4,0,192,12,3,240],[120,130,4,48,65,8,25,0,128,14,0,64,4,0,64,12,3,224]]},{"symbol":"Z","fingerprints":[[31,236,6,128,192,24,3,0,32,12,0,192,24,3,1,96,127,248],[127,108,12,128,128,16,3,0,96,12,0,128,16,3,1,96,111,252],[127,252,6,128,192,24,3,0,96,12,1,128,24,3,1,96,47,254],[127,252,6,128,192,24,3,0,32,4,0,192,24,3,1,96,47,254],[127,244,6,128,192,24,3,0,96,4,0,192,24,3,1,96,63,254],[127,244,6,128,192,24,3,0,96,6,0,192,24,3,1,96,44,14],[63,246,6,0,192,8,1,0,112,14,0,128,16,3,1,96,47,252],[59,246,6,0,192,24,3,0,96,4,1,192,16,2,0,96,111,252],[63,242,6,64,64,24,3,0,32,12,1,128,16,6,0,192,103,252],[63,242,2,64,192,28,1,0,96,4,1,128,48,2,2,192,71,252],[63,194,3,64,96,12,1,128,32,6,0,128,56,2,2,192,15,252]]},{"symbol":"<","fingerprints":[[0,96,24,6,0,192,24,6,0,192,3,0,14,0,48,0,192,3],[0,96,24,3,0,96,24,2,0,192,3,0,14,0,48,0,192,3],[0,96,24,3,0,96,24,6,0,192,3,0,12,0,56,0,192,3],[0,32,12,3,0,96,24,6,0,96,1,128,6,0,48,0,192,3],[0,48,12,3,128,96,24,3,0,96,1,128,6,0,48,0,192,3],[0,48,12,3,0,224,24,6,0,96,1,128,6,0,24,0,224,3],[0,48,12,3,0,96,24,6,0,96,1,128,6,0,48,0,192,2],[0,112,28,3,0,192,48,12,0,96,3,0,12,0,48,1,128,6],[0,48,12,3,0,224,56,12,0,96,1,128,6,0,48,0,192,6],[0,112,28,3,0,192,112,12,0,96,1,0,12,0,48,1,128,4],[0,48,12,7,0,192,48,12,0,32,1,128,6,0,48,1,128,4]]}]} -------------------------------------------------------------------------------- /fontData/12x12/mrz/ming_lt_hkscs_extb.json: -------------------------------------------------------------------------------- 1 | {"font":"Ming-Lt-HKSCS-ExtB","fingerprint":[{"symbol":"0","fingerprints":[[31,2,12,96,100,6,192,44,3,64,52,3,96,50,2,24,96,120],[57,6,12,64,108,2,192,60,3,192,60,3,64,54,2,48,96,248],[27,134,12,64,108,6,192,44,3,192,60,3,64,38,6,48,65,248],[31,130,12,96,100,6,192,44,3,192,52,3,96,38,6,48,65,216],[31,131,4,96,102,2,64,60,3,192,52,3,96,54,6,48,65,152],[15,3,12,96,100,3,192,60,3,192,60,3,64,54,6,48,192,240],[25,130,4,96,100,2,192,44,3,192,60,2,64,102,6,32,193,248],[29,131,4,96,102,2,64,60,3,192,60,3,64,38,6,32,193,248],[15,131,6,32,38,3,64,52,3,192,52,3,64,38,6,32,65,184],[15,131,6,96,36,3,192,60,3,192,60,3,192,36,6,96,195,24],[29,131,6,96,102,2,192,60,3,192,44,2,192,100,4,97,193,240]]},{"symbol":"1","fingerprints":[[28,1,192,28,1,224,14,0,224,14,0,112,7,0,112,7,131,255],[12,12,224,6,0,96,6,0,96,7,0,48,3,0,48,3,131,255],[14,13,224,14,0,224,14,0,112,7,0,112,7,0,112,7,3,255],[14,15,224,7,0,112,7,0,112,7,0,112,7,0,112,7,3,255],[30,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,3,255],[14,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,1,252],[15,0,240,7,0,112,7,0,112,7,0,112,7,0,240,14,3,248],[7,128,112,7,0,112,7,0,112,7,0,112,7,0,112,15,15,255],[15,128,56,3,128,120,7,0,112,7,0,112,7,0,112,15,15,254],[7,192,56,3,128,56,3,128,120,7,0,112,7,0,112,15,15,248],[3,192,60,3,192,56,3,128,56,7,128,112,7,0,112,15,15,255]]},{"symbol":"2","fingerprints":[[63,4,24,0,200,12,0,192,8,1,0,32,4,0,129,16,99,252],[63,4,24,128,200,12,0,192,24,1,128,32,4,1,129,32,39,254],[31,4,28,0,200,4,0,192,12,1,128,32,4,1,129,48,39,254],[63,4,28,128,200,12,0,192,12,1,128,48,4,1,129,48,39,254],[31,4,28,0,232,14,0,192,12,1,128,48,6,0,129,48,39,254],[15,2,28,64,232,6,0,224,12,1,128,48,6,0,128,48,23,254],[31,132,14,64,96,6,0,96,12,0,192,16,6,0,128,48,23,254],[15,130,14,64,96,6,0,96,12,1,192,48,6,1,128,32,63,254],[15,195,14,64,96,2,0,96,14,0,192,16,6,1,128,48,31,254],[15,195,14,64,48,3,0,32,6,0,192,16,6,0,128,48,31,254],[15,195,6,0,48,3,0,32,6,0,192,16,6,1,128,96,51,254]]},{"symbol":"3","fingerprints":[[31,4,24,128,192,8,1,0,120,0,96,3,0,48,2,0,71,240],[63,128,12,128,64,8,1,1,252,0,96,3,0,48,2,0,103,240],[63,132,12,128,96,4,1,128,252,0,96,3,0,48,3,0,103,240],[31,132,14,128,96,4,1,128,124,0,112,3,0,16,3,0,103,248],[31,132,28,128,96,4,1,128,248,0,224,6,0,48,2,0,79,240],[31,132,14,128,96,4,1,128,120,0,96,7,0,48,6,0,199,224],[31,196,6,0,96,6,1,128,252,0,96,7,0,48,2,0,71,224],[31,198,6,0,96,6,1,128,252,0,96,7,0,48,2,0,79,240],[31,194,6,64,96,6,0,128,252,0,96,7,0,48,2,0,111,240],[15,194,6,64,48,2,0,64,124,0,224,7,0,48,3,0,111,240],[7,193,7,96,48,3,0,96,124,0,224,7,0,48,3,0,111,248]]},{"symbol":"4","fingerprints":[[1,0,48,7,128,152,25,130,24,33,132,24,255,240,24,1,192,12],[1,128,56,7,128,88,25,129,24,33,132,24,255,240,28,1,192,12],[1,128,24,3,128,88,25,129,24,33,132,28,255,240,28,0,192,12],[0,128,24,3,128,88,9,193,28,33,196,28,255,240,12,0,192,12],[0,128,24,6,128,72,8,129,8,32,132,8,255,240,8,0,128,8],[0,128,24,3,128,88,25,130,24,33,132,24,255,240,24,1,128,24],[0,64,28,3,192,92,25,195,24,97,140,24,255,240,24,1,128,24],[0,64,28,2,192,76,8,193,28,33,196,24,255,240,24,1,128,24],[0,64,28,2,192,76,8,195,12,33,196,28,255,240,24,1,128,24],[0,96,12,1,64,108,12,193,12,32,204,28,31,240,24,1,128,24]]},{"symbol":"5","fingerprints":[[0,99,252,96,4,0,255,0,62,0,96,3,0,48,2,0,207,240],[0,35,254,112,6,0,255,0,62,0,96,3,0,16,2,0,207,240],[7,225,224,48,6,0,127,0,62,0,112,1,0,16,2,0,111,240],[0,241,254,48,7,0,127,0,62,0,48,1,0,16,3,0,111,240],[15,225,128,48,7,0,127,128,30,0,96,3,0,48,2,0,79,240],[15,241,128,16,3,0,127,128,30,0,96,3,0,48,6,0,71,224],[15,240,142,16,3,0,127,0,60,0,96,6,0,96,6,0,135,224],[15,240,128,16,3,192,63,128,14,0,96,6,0,96,6,0,135,240],[7,240,128,16,3,128,63,0,28,0,224,6,0,32,4,0,199,224],[7,240,130,24,3,128,63,0,28,0,224,2,0,32,4,0,199,240],[7,240,128,24,3,192,15,128,28,0,192,6,0,64,4,0,143,224]]},{"symbol":"6","fingerprints":[[1,192,224,56,6,0,71,15,14,192,44,3,64,54,3,48,32,248],[1,192,192,56,7,0,103,15,14,192,60,3,64,54,3,48,32,252],[1,192,192,24,2,0,98,7,156,192,100,2,64,38,2,48,97,248],[1,224,224,56,7,0,64,15,156,192,108,3,192,52,2,112,97,248],[1,192,192,56,7,0,103,15,14,192,108,3,192,52,2,96,33,252],[1,224,224,24,3,0,103,15,14,192,60,3,64,52,2,48,96,248],[0,224,96,24,3,0,99,7,14,192,60,3,64,52,2,48,96,248],[1,224,96,24,3,0,103,198,14,192,60,3,64,52,3,48,32,252],[1,224,224,56,7,0,111,14,14,192,108,2,192,36,2,96,67,248],[0,240,96,24,3,0,103,15,14,192,108,3,192,36,2,96,99,152],[1,224,224,24,2,0,127,142,12,192,108,6,192,100,6,96,193,240]]},{"symbol":"7","fingerprints":[[31,246,2,0,96,6,0,96,12,0,192,8,1,128,24,3,0,48],[127,228,6,128,96,6,0,192,8,0,128,24,3,0,48,3,0,112],[127,246,2,128,96,6,0,64,12,0,128,24,1,128,48,3,0,112],[127,244,6,128,96,4,0,192,8,1,128,24,3,0,48,6,0,224],[127,244,2,128,96,6,0,192,8,0,128,24,3,0,48,6,0,224],[127,244,2,128,96,12,0,192,8,1,128,16,3,0,96,6,0,224],[127,244,2,128,96,6,0,192,8,1,128,48,3,0,96,12,0,192],[127,244,2,128,96,12,0,192,24,1,0,48,6,0,96,12,0,128],[127,244,3,128,96,6,0,192,8,1,128,48,6,0,192,12,1,128],[127,244,2,0,96,12,0,192,24,1,0,48,6,0,96,12,1,128],[63,244,2,0,32,12,0,192,24,1,0,48,6,0,96,12,1,128]]},{"symbol":"8","fingerprints":[[30,4,24,192,204,8,97,131,224,19,198,6,64,52,2,96,97,248],[55,8,12,128,204,12,113,1,224,55,196,14,192,60,3,96,35,248],[63,4,12,192,204,12,113,1,224,23,198,14,192,60,3,96,35,248],[63,4,12,64,68,12,113,129,224,31,134,14,192,60,3,96,35,252],[31,4,12,64,100,12,112,129,224,31,134,14,64,60,3,96,35,156],[15,6,4,64,102,6,48,193,224,19,198,14,192,60,3,96,33,248],[25,198,2,64,39,6,56,128,240,27,198,14,64,60,3,96,33,248],[15,194,2,96,39,2,56,192,240,27,198,14,64,60,3,96,33,252],[15,195,2,32,35,2,56,192,240,11,198,14,64,52,3,96,35,220],[15,130,2,96,55,2,56,64,240,27,134,14,192,124,3,96,51,140],[15,131,2,32,35,2,56,192,240,51,196,14,192,108,2,64,97,248]]},{"symbol":"9","fingerprints":[[49,132,12,64,108,3,192,54,3,63,176,2,0,224,28,7,3,128],[51,4,12,192,108,6,192,44,2,57,160,6,0,192,24,6,3,0],[59,4,12,64,108,2,192,52,3,57,160,6,0,192,24,7,3,128],[27,6,12,64,108,3,192,54,3,56,240,2,0,192,28,7,3,128],[31,134,14,192,108,7,192,62,3,112,240,6,0,224,24,7,3,128],[31,6,12,64,108,2,192,60,3,112,224,6,0,192,24,6,3,128],[25,134,6,64,44,3,192,54,3,48,96,6,0,192,24,7,3,128],[25,134,6,192,108,3,192,62,3,112,112,230,0,224,24,7,7,128],[31,134,12,64,108,2,192,52,3,112,96,230,0,192,24,6,3,128],[15,131,6,64,36,3,192,52,3,112,33,246,0,192,24,7,3,128],[24,195,6,96,52,3,64,54,3,112,49,242,0,224,28,7,3,128]]},{"symbol":"A","fingerprints":[[8,1,128,28,1,64,22,2,48,35,3,248,64,132,12,64,110,24],[8,0,128,28,1,96,22,2,48,33,3,248,32,132,12,64,110,30],[8,0,192,12,1,96,18,1,48,33,3,248,32,132,12,64,110,31],[0,0,192,12,0,96,18,1,48,33,3,248,32,132,12,64,78,31],[4,0,192,14,0,160,19,1,48,1,3,248,32,132,12,64,78,31],[4,0,64,14,0,160,19,1,16,17,130,24,32,132,12,64,78,14],[4,0,96,14,0,160,11,1,16,17,130,24,32,132,12,64,76,14],[0,0,96,6,0,176,11,1,16,17,131,248,32,196,12,64,78,31],[2,0,96,7,0,176,9,1,24,17,131,248,32,196,12,64,78,30],[2,0,32,7,0,176,9,1,24,17,131,248,32,196,12,64,64,31],[2,0,48,7,0,80,9,128,152,17,131,248,32,196,12,64,66,30]]},{"symbol":"B","fingerprints":[[255,131,4,48,99,6,16,65,248,16,113,3,24,17,131,24,99,248],[255,130,12,48,99,6,48,195,240,48,97,3,16,49,3,16,103,248],[255,131,6,48,99,6,48,195,248,16,97,3,16,49,3,16,103,248],[255,130,6,32,99,6,48,67,248,48,227,3,48,51,3,48,103,252],[255,131,6,48,35,2,48,99,248,48,227,3,48,51,3,48,55,252],[255,130,4,32,98,6,32,67,240,32,194,6,32,50,3,32,111,252],[255,131,6,48,35,2,48,99,248,49,195,6,32,50,3,32,111,252],[255,131,6,48,35,2,48,99,248,48,227,3,48,50,3,32,111,248],[127,129,6,16,35,3,48,35,252,48,195,3,48,51,3,32,111,252],[127,1,6,16,49,3,16,35,252,48,195,3,48,51,3,32,111,252],[127,1,134,16,49,3,16,49,254,48,195,3,48,51,3,32,47,252]]},{"symbol":"C","fingerprints":[[15,194,6,64,44,2,192,12,0,192,12,0,192,6,1,48,33,252],[15,227,6,96,44,2,192,12,0,192,12,0,192,6,1,56,32,248],[15,163,6,96,36,0,192,12,0,192,12,0,64,6,1,48,32,248],[31,226,6,64,44,2,192,8,0,128,12,0,192,6,0,48,33,248],[15,163,6,96,44,0,192,12,0,192,12,0,192,6,0,48,33,248],[15,163,6,96,44,0,192,12,0,192,12,0,192,6,1,48,32,248],[15,227,3,96,28,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,211,3,96,20,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,131,6,96,60,1,192,12,0,192,12,0,192,4,0,112,33,248],[15,147,3,96,52,1,192,12,0,192,12,0,192,6,0,48,96,240]]},{"symbol":"D","fingerprints":[[255,2,12,32,98,3,48,51,3,48,49,3,16,49,6,16,195,240],[255,130,12,32,98,3,32,50,3,48,51,3,48,51,2,48,199,240],[255,130,14,32,34,3,32,51,1,48,19,1,48,51,2,48,199,240],[255,2,12,32,98,3,32,50,3,32,50,3,32,50,6,32,199,240],[255,6,12,32,98,2,32,50,3,32,50,3,32,34,6,32,207,240],[127,3,12,48,99,3,32,50,3,32,50,3,32,50,6,96,207,240],[126,1,12,16,33,3,48,51,1,48,18,3,32,50,6,96,207,248]]},{"symbol":"E","fingerprints":[[15,195,2,48,35,0,48,67,28,16,65,0,16,1,129,24,51,252],[255,194,0,32,2,0,48,3,252,48,67,0,48,1,1,16,55,254],[255,195,2,48,3,0,48,67,252,48,67,4,16,1,1,16,55,254],[255,226,2,32,34,0,32,67,252,48,67,4,48,3,1,48,55,255],[255,227,2,48,3,0,48,67,252,48,67,4,48,3,1,48,23,255],[255,226,2,32,2,0,32,67,252,32,194,4,32,2,1,32,47,254],[255,227,2,48,3,0,48,67,252,32,66,4,32,2,1,32,47,254],[127,227,3,48,19,0,48,67,252,48,67,4,32,2,1,32,47,254],[127,193,3,16,19,0,48,3,236,48,67,4,32,2,1,96,33,254],[127,1,3,16,17,0,16,3,132,48,67,4,32,2,1,96,33,254]]},{"symbol":"F","fingerprints":[[15,227,2,48,19,0,48,67,12,16,33,0,16,1,128,24,3,224],[255,243,1,48,3,0,16,33,254,16,33,2,16,1,128,24,3,224],[255,227,1,48,3,0,48,67,252,48,67,0,16,1,0,16,7,192],[255,243,1,48,19,0,48,67,124,48,65,2,16,1,0,16,7,192],[255,227,1,48,3,0,48,67,252,48,67,4,48,3,0,48,7,192],[127,243,1,48,19,0,48,67,252,48,67,4,48,3,0,48,7,128],[255,243,1,48,19,0,48,67,252,33,194,4,32,2,0,32,15,0],[127,243,1,48,19,0,48,67,236,48,67,4,32,2,0,32,15,128],[127,193,1,16,19,0,48,3,132,48,67,4,32,2,0,32,15,128],[127,1,1,16,1,0,16,35,4,48,195,4,48,2,0,32,15,128]]},{"symbol":"G","fingerprints":[[15,195,6,96,44,2,192,12,1,192,108,2,64,38,2,48,32,204],[15,66,12,64,76,0,128,8,0,128,108,6,192,102,6,48,96,248],[15,67,12,96,108,2,192,12,0,192,108,6,192,102,6,48,96,248],[15,163,6,96,44,0,192,12,0,192,108,6,64,102,6,48,96,252],[31,66,4,64,108,2,128,8,0,128,72,4,192,68,4,96,65,216],[15,35,6,96,44,2,192,8,0,128,76,4,192,70,4,48,64,248],[29,162,6,96,44,0,192,12,0,192,108,4,192,70,4,48,64,248],[15,163,6,96,36,0,192,12,0,192,108,6,192,102,4,48,65,248],[15,163,6,96,44,2,192,8,0,128,104,4,192,76,4,96,193,216],[15,131,6,96,44,2,192,8,0,128,72,4,192,68,4,32,192,240],[13,211,2,96,44,0,192,12,0,128,108,4,192,68,4,32,193,248]]},{"symbol":"H","fingerprints":[[1,230,8,32,194,12,32,194,12,48,67,4,48,65,4,16,99,200],[241,198,12,96,198,12,32,194,252,32,66,4,32,67,6,48,103,222],[249,230,12,32,194,4,32,66,252,32,66,4,48,67,6,48,103,159],[241,246,4,96,70,4,96,70,60,96,66,4,32,98,6,32,103,143],[240,230,4,32,66,4,32,67,254,32,98,6,32,98,6,32,103,143],[241,246,4,96,70,4,96,71,252,96,70,4,96,70,4,96,79,30],[249,242,6,32,98,6,32,71,244,96,70,4,96,70,4,96,79,31],[121,243,4,32,66,4,32,67,132,32,198,12,96,198,12,96,207,28],[124,131,6,48,98,4,32,67,4,32,66,12,96,198,12,96,193,62],[120,3,6,48,67,4,48,195,12,32,194,12,96,134,8,96,131,60]]},{"symbol":"I","fingerprints":[[255,0,192,12,0,96,6,0,96,6,0,48,3,0,48,3,0,127],[255,192,224,14,0,224,14,0,224,6,0,96,6,0,96,7,3,255],[255,192,192,12,0,192,12,0,96,6,0,96,6,0,96,7,3,255],[63,0,224,6,0,96,6,0,96,6,0,96,6,0,96,7,3,255],[255,128,224,14,0,224,14,0,224,14,0,224,14,0,224,15,7,255],[127,224,240,14,0,224,14,0,224,14,0,224,14,0,224,15,3,252],[127,240,112,7,0,112,7,0,112,7,0,112,7,0,112,15,1,248],[127,240,112,6,0,96,6,0,96,6,0,96,6,0,96,14,15,252],[15,240,48,3,0,48,6,0,96,6,0,96,6,0,96,14,15,252],[15,240,96,6,0,96,6,0,96,14,0,224,14,0,224,14,15,240],[15,240,48,3,0,96,6,0,96,6,0,224,14,0,224,14,15,252]]},{"symbol":"J","fingerprints":[[127,128,112,7,0,120,3,128,56,3,128,56,1,128,24,97,135,224],[127,224,120,7,128,56,3,128,56,3,128,56,1,128,24,97,135,224],[63,224,48,3,0,48,3,128,56,3,128,56,3,128,56,67,7,224],[63,240,56,3,128,56,3,128,56,3,128,56,3,128,56,67,135,224],[15,192,48,3,0,48,3,0,48,3,0,48,3,0,48,226,7,192],[31,240,56,3,128,56,3,128,56,3,128,56,3,0,48,226,7,192],[31,240,48,3,0,48,3,0,48,3,0,48,3,0,48,226,7,192],[15,240,56,3,0,48,3,0,48,3,0,48,3,0,48,227,7,192],[31,240,56,1,128,56,3,0,48,3,0,48,3,0,112,230,7,192],[3,240,24,1,128,24,3,128,56,3,0,48,3,0,112,230,7,192],[7,240,56,3,128,48,3,0,48,3,0,48,3,0,48,230,7,192]]},{"symbol":"K","fingerprints":[[3,198,16,33,2,32,36,3,128,54,3,48,49,1,12,16,227,200],[251,134,16,98,2,0,36,2,128,52,2,32,51,3,8,48,231,158],[251,198,16,34,2,0,36,2,192,52,3,32,51,3,24,48,231,159],[251,230,8,97,6,32,100,2,128,60,2,96,35,2,24,32,199,159],[240,194,8,33,2,32,32,3,192,60,2,96,35,2,24,32,199,159],[241,230,24,98,6,64,104,7,128,108,6,96,99,6,24,96,207,30],[249,242,8,33,2,32,104,7,128,124,6,96,99,6,24,96,207,14],[249,242,8,33,2,32,36,3,128,44,6,96,99,6,24,96,207,31],[121,243,12,33,2,32,36,2,128,44,2,96,99,6,24,96,207,30],[124,195,4,48,131,32,52,2,128,38,2,32,35,6,24,96,193,31],[124,3,12,48,131,32,52,3,128,36,2,32,35,6,16,97,131,62]]},{"symbol":"L","fingerprints":[[248,3,0,48,3,0,48,3,0,16,1,0,16,1,129,24,51,252],[248,2,0,32,2,0,48,3,0,48,3,0,48,1,1,16,55,255],[240,3,0,48,3,0,48,3,0,48,3,0,16,1,1,16,55,254],[240,2,0,32,2,0,32,2,0,48,3,0,48,3,1,48,55,254],[248,3,0,48,3,0,48,3,0,48,3,0,48,3,1,48,55,254],[248,2,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,48,3,0,48,3,0,32,2,0,32,2,1,32,47,254],[124,3,0,48,3,0,48,3,0,48,3,0,32,2,1,32,47,254],[124,1,0,16,3,0,48,3,0,48,3,0,32,2,1,32,47,254],[126,1,128,16,1,0,16,3,0,48,3,0,32,2,1,96,33,254]]},{"symbol":"M","fingerprints":[[0,230,12,112,197,12,81,66,148,41,98,214,36,98,102,34,99,40],[224,198,12,113,69,20,89,68,150,72,100,230,38,98,102,34,103,14],[224,231,12,112,69,22,89,100,150,77,98,102,38,98,102,34,103,15],[224,246,14,112,229,6,81,101,150,73,100,198,78,100,102,70,103,15],[224,103,14,80,229,14,89,100,150,73,100,198,70,100,102,70,102,15],[224,246,14,112,229,22,81,101,150,88,100,166,74,100,198,68,110,78],[224,119,14,112,229,14,81,101,150,73,100,166,78,100,230,68,110,78],[240,119,6,80,229,14,89,101,150,73,100,166,78,100,70,68,110,79],[112,115,14,80,229,134,89,100,150,74,68,164,76,68,68,68,206,94],[112,3,6,48,227,142,89,100,150,74,100,228,76,68,68,68,192,30],[112,3,14,48,227,6,40,66,148,72,196,172,72,196,204,76,194,28]]},{"symbol":"N","fingerprints":[[0,246,2,112,37,130,12,34,98,33,146,13,32,114,3,32,19,128],[192,230,2,112,37,130,76,36,98,67,34,26,32,226,6,32,55,128],[192,246,2,112,37,130,76,36,98,35,34,26,32,226,7,32,55,129],[192,246,2,112,37,130,76,36,98,67,36,26,64,228,6,64,39,0],[224,103,2,88,37,194,76,36,98,67,36,26,64,228,6,64,39,2],[192,246,2,112,37,130,76,36,98,70,36,50,65,164,14,64,110,2],[224,247,2,112,37,130,76,36,98,67,36,50,65,164,14,64,110,2],[224,247,2,88,37,130,76,36,98,67,36,26,65,164,14,64,111,2],[96,243,2,56,36,194,76,36,98,66,4,52,65,196,12,64,207,4],[96,3,2,56,34,194,44,36,98,66,36,48,65,196,12,64,206,4],[112,3,2,56,34,130,44,2,100,66,68,52,65,68,12,64,206,4]]},{"symbol":"O","fingerprints":[[15,2,12,64,108,2,192,60,3,192,60,3,64,54,2,48,64,248],[19,6,12,192,108,6,128,56,3,192,60,3,192,38,6,48,64,240],[27,6,12,64,108,2,192,60,3,192,60,3,192,54,6,48,65,248],[31,2,12,64,108,2,192,60,3,192,60,3,192,54,2,48,65,248],[31,6,12,64,108,6,128,40,3,128,56,3,192,36,6,96,193,184],[15,2,12,64,108,2,192,60,3,192,60,3,192,36,6,32,193,240],[25,130,4,64,108,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,131,4,96,44,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,2,12,64,108,2,192,56,3,128,56,2,192,108,6,96,193,240],[15,3,4,96,108,2,192,60,3,128,56,3,192,108,6,96,195,176],[25,131,4,96,44,3,192,60,3,192,60,3,192,100,6,96,193,240]]},{"symbol":"P","fingerprints":[[255,195,7,48,51,3,16,49,6,30,1,128,24,1,128,24,3,240],[255,130,6,48,51,3,48,51,6,63,3,0,16,1,0,24,7,224],[255,195,3,48,51,3,48,51,12,31,1,0,16,1,0,24,7,224],[255,194,6,48,51,3,48,35,12,63,3,0,48,3,0,48,7,192],[255,195,6,48,51,3,48,51,14,63,131,0,48,3,0,48,7,192],[255,130,6,32,50,3,32,34,12,63,130,0,32,2,0,48,15,128],[255,131,6,48,51,3,48,51,6,63,131,0,48,2,0,48,15,128],[255,131,6,48,51,3,48,51,6,63,195,0,48,3,0,48,15,0],[127,131,6,48,51,1,48,51,6,63,131,0,48,3,0,48,15,192],[127,1,14,16,49,3,16,51,6,63,131,0,48,3,0,48,15,192],[126,1,142,24,49,3,16,49,6,63,195,0,48,3,0,48,15,128]]},{"symbol":"Q","fingerprints":[[14,6,8,64,204,6,192,108,6,192,102,6,32,65,8,6,0,31],[27,4,12,192,76,6,128,108,6,192,108,6,96,65,24,6,0,28],[27,6,4,192,108,3,192,60,3,192,52,2,96,97,152,7,0,15],[31,6,4,64,108,3,192,60,3,192,52,2,96,97,152,6,0,14],[31,6,12,192,108,2,128,56,3,192,60,6,64,67,24,6,0,28],[15,6,4,64,108,2,192,60,3,192,60,2,96,65,184,6,0,31],[25,134,6,64,44,3,192,60,3,192,52,6,96,65,152,6,0,28],[15,130,6,96,44,3,192,60,3,192,52,2,32,65,240,6,0,15],[31,6,4,64,108,2,128,56,3,128,44,6,64,193,240,4,0,28],[15,2,4,64,44,3,192,56,3,192,44,6,64,193,240,12,0,24],[25,130,6,96,44,3,192,60,3,192,44,6,96,193,240,4,0,30]]},{"symbol":"R","fingerprints":[[255,2,8,48,195,12,48,195,48,55,1,48,17,129,12,16,99,192],[255,6,12,32,194,4,48,195,48,50,3,48,49,131,12,48,103,198],[255,130,12,48,67,4,48,195,240,50,3,48,49,131,12,48,231,199],[255,134,12,32,98,6,32,194,240,54,2,48,49,131,12,48,199,199],[255,130,12,32,98,6,48,67,120,62,3,48,49,131,12,48,199,199],[255,6,12,32,66,6,32,194,120,62,2,48,35,2,24,96,207,134],[255,2,12,32,98,6,32,66,56,62,2,48,35,2,24,96,207,14],[255,3,12,48,99,6,48,98,24,38,2,48,33,130,24,96,207,135],[127,3,12,48,99,6,48,99,28,54,2,48,33,130,24,96,207,142],[127,3,12,48,99,2,48,99,12,50,2,48,33,130,24,96,193,135],[127,1,12,16,35,2,48,35,12,50,3,48,33,130,24,96,195,142]]},{"symbol":"S","fingerprints":[[62,68,12,192,76,0,112,3,224,3,192,6,0,52,3,96,103,248],[30,70,12,64,68,2,112,3,224,3,192,6,0,52,3,96,103,248],[63,196,12,192,44,0,120,1,224,3,192,14,0,56,3,64,103,252],[63,196,14,192,38,2,120,1,224,3,192,14,128,56,3,64,39,252],[31,38,6,64,38,2,120,1,224,3,192,14,0,56,3,64,39,156],[31,38,6,64,38,0,120,1,224,1,192,6,128,60,3,96,100,252],[27,230,6,96,38,2,56,0,224,3,192,14,128,44,2,96,101,248],[31,162,6,96,38,0,56,0,224,3,192,14,128,44,2,96,101,252],[31,162,6,32,35,1,56,0,224,3,192,14,128,44,3,96,101,252],[15,147,3,32,51,1,60,0,224,1,192,6,128,52,3,96,96,248],[15,147,3,48,19,1,60,0,224,1,192,6,0,52,3,96,97,248]]},{"symbol":"T","fingerprints":[[31,236,66,132,16,96,6,0,96,6,0,32,2,0,32,3,0,124],[255,248,97,134,16,96,6,0,96,2,0,32,2,0,32,3,0,252],[255,232,66,132,16,64,6,0,96,6,0,96,6,0,96,6,1,248],[255,248,99,134,16,96,6,0,96,6,0,96,6,0,96,6,0,248],[255,232,66,4,16,64,4,0,64,4,0,64,4,0,96,6,1,248],[255,248,99,4,16,64,4,0,64,4,0,64,4,0,64,12,3,240],[255,248,99,134,16,96,6,0,64,4,0,64,4,0,64,12,3,240],[255,136,99,4,16,64,4,0,64,12,0,192,12,0,192,12,3,224],[255,8,99,134,16,97,4,0,64,4,0,192,12,0,192,12,3,240]]},{"symbol":"U","fingerprints":[[0,246,2,96,34,2,32,35,2,48,35,2,48,33,2,24,32,120],[240,230,4,96,6,2,96,34,2,32,34,2,48,35,2,24,64,248],[248,246,2,96,38,2,32,34,2,48,35,2,48,35,2,24,64,248],[248,246,4,96,70,4,96,6,2,96,38,2,96,34,0,48,65,248],[240,102,2,96,38,2,96,38,2,96,38,2,32,35,0,48,65,216],[240,246,4,96,70,4,96,70,4,96,70,4,96,70,4,48,129,240],[248,246,2,96,38,0,96,6,0,96,70,4,96,70,4,48,129,240],[248,246,4,96,70,4,96,70,4,96,70,4,96,70,4,96,129,240],[240,230,4,64,68,4,64,76,4,192,76,4,192,12,8,96,131,240],[248,134,6,96,70,4,96,68,4,64,76,4,192,68,8,96,131,176],[240,6,4,64,68,4,192,76,4,192,140,8,192,140,8,65,3,224]]},{"symbol":"V","fingerprints":[[0,246,2,48,35,4,24,64,132,12,0,104,6,128,56,1,0,16],[240,102,2,32,67,4,24,65,136,12,128,200,6,0,48,3,0,0],[248,118,2,48,35,4,24,64,132,12,128,200,6,128,48,3,0,0],[240,246,2,32,67,4,16,65,136,24,128,200,5,0,112,2,0,32],[240,38,2,48,3,4,24,65,136,12,128,200,7,0,112,2,0,32],[240,118,2,32,67,4,16,129,136,24,128,208,13,0,96,6,0,0],[240,118,2,48,35,4,16,65,136,24,128,208,13,0,96,6,0,0],[240,246,2,32,67,4,48,129,136,24,1,144,12,0,224,4,0,64],[240,230,6,96,66,4,48,131,0,17,1,144,26,0,224,12,0,0],[240,6,2,96,67,4,48,129,8,25,1,144,10,0,192,12,0,0],[240,6,6,96,70,4,48,131,16,49,1,160,26,1,192,8,0,128]]},{"symbol":"W","fingerprints":[[15,126,98,102,38,50,51,35,82,21,161,200,12,192,196,12,64,4],[238,44,98,102,38,98,39,35,84,53,193,92,24,192,140,8,192,128],[239,54,98,102,38,50,55,35,82,53,129,220,28,192,140,8,192,128],[239,124,98,102,38,98,39,3,116,53,67,156,25,193,136,24,128,8],[238,54,98,102,38,98,39,35,116,53,65,28,25,193,136,24,128,8],[238,116,98,102,38,98,102,66,116,59,67,144,57,129,24,17,129,0],[239,54,98,102,38,98,39,3,116,51,67,148,25,129,24,16,129,0],[239,116,98,102,38,96,102,70,180,43,67,184,49,131,24,17,0,16],[238,108,66,196,36,100,110,70,224,106,135,56,51,131,48,35,2,0],[239,12,66,70,38,100,102,70,164,106,131,56,51,2,48,33,2,0],[238,12,194,196,36,68,78,70,232,118,135,40,99,6,48,34,0,32]]},{"symbol":"X","fingerprints":[[9,230,8,48,129,144,14,0,96,6,0,176,9,129,12,48,103,152],[249,195,8,16,129,144,14,0,96,6,0,176,9,129,12,48,103,158],[249,231,4,48,129,144,14,0,96,6,0,176,17,129,12,32,103,31],[248,243,4,48,129,144,13,0,96,6,0,176,17,129,12,32,103,31],[240,227,12,48,129,144,14,0,96,6,0,176,17,130,24,96,206,31],[248,243,4,16,129,144,14,0,96,6,0,176,17,130,24,96,206,30],[248,243,4,24,128,144,13,0,96,6,0,176,17,130,24,96,206,14],[124,243,6,24,64,136,13,0,96,6,0,176,17,130,8,96,207,31],[124,241,130,24,64,200,13,0,96,6,0,176,17,130,8,96,207,30],[124,129,134,24,64,200,5,0,96,6,0,176,17,2,24,64,192,62],[124,1,130,8,64,200,5,0,96,6,0,176,17,2,24,64,194,62]]},{"symbol":"Y","fingerprints":[[0,246,4,48,65,136,12,128,112,3,0,48,3,0,48,3,0,60],[240,230,4,48,129,136,13,0,112,6,0,32,2,0,32,3,0,252],[248,246,4,48,65,136,13,0,112,2,0,32,2,0,32,3,0,252],[240,246,4,48,129,136,9,0,240,6,0,96,6,0,96,6,0,248],[248,98,4,16,129,136,13,0,96,6,0,96,6,0,96,6,0,248],[240,246,4,48,129,136,9,0,224,6,0,96,6,0,96,6,0,240],[240,246,4,48,129,16,25,0,224,12,0,64,4,0,64,12,1,224],[248,246,4,48,129,8,25,0,224,4,0,64,4,0,64,12,3,240],[240,230,4,32,131,16,25,0,160,12,0,192,12,0,192,12,3,224],[248,134,6,48,129,8,25,0,160,12,0,192,12,0,192,12,3,224],[240,6,4,32,131,16,19,1,160,12,0,128,8,0,128,24,7,224]]},{"symbol":"Z","fingerprints":[[31,204,12,129,128,48,3,0,96,12,1,128,16,19,1,96,55,248],[255,200,12,129,128,48,3,0,96,12,1,128,24,19,1,96,55,254],[255,200,12,1,128,48,6,0,64,12,1,128,48,2,1,96,47,254],[255,232,12,129,128,48,2,0,96,12,1,128,48,2,1,96,47,254],[127,232,12,128,128,24,3,0,96,12,1,128,16,3,1,96,63,254],[127,244,6,128,192,24,3,0,96,12,0,192,24,3,1,96,63,254],[127,244,6,0,192,24,3,0,96,12,1,128,48,6,1,96,63,254],[127,244,6,64,192,24,3,0,96,12,0,128,24,3,1,96,63,254],[63,230,3,64,96,12,1,128,48,12,1,128,48,6,1,192,49,254],[63,244,6,64,192,24,3,0,32,12,1,128,48,6,0,192,33,254]]},{"symbol":"<","fingerprints":[[0,32,14,3,128,112,24,7,0,192,14,0,30,0,120,0,224,3],[0,96,14,3,128,96,56,6,0,192,14,0,60,0,112,1,224,7],[0,96,12,3,128,224,56,14,0,192,15,0,30,0,120,0,224,3],[0,32,14,3,128,224,56,14,0,192,15,0,30,0,120,1,224,7],[0,96,30,3,128,224,112,12,0,224,7,128,15,0,60,0,224,3],[0,48,14,3,128,224,112,14,0,224,7,128,14,0,56,0,224,3],[0,48,15,3,192,240,120,14,0,224,7,0,14,0,56,0,224,7],[0,48,14,3,128,224,112,12,0,240,3,128,7,0,60,0,224,3],[0,48,14,3,129,224,240,12,0,224,3,128,14,0,56,1,192,6],[0,112,30,7,129,192,224,12,0,112,3,128,7,0,56,0,224,2],[0,48,15,7,129,224,224,12,0,112,3,128,7,0,56,0,224,6]]}]} -------------------------------------------------------------------------------- /fontData/12x12/mrz/ming_lt_hkscs_uni_h.json: -------------------------------------------------------------------------------- 1 | {"font":"Ming-Lt-HKSCS-UNI-H","fingerprint":[{"symbol":"0","fingerprints":[[31,2,12,96,100,6,192,44,3,64,52,3,96,50,2,24,96,120],[57,6,12,64,108,2,192,60,3,192,60,3,64,54,2,48,96,248],[27,134,12,64,108,6,192,44,3,192,60,3,64,38,6,48,65,248],[31,130,12,96,100,6,192,44,3,192,52,3,96,38,6,48,65,216],[31,131,4,96,102,2,64,60,3,192,52,3,96,54,6,48,65,152],[15,3,12,96,100,3,192,60,3,192,60,3,64,54,6,48,192,240],[25,130,4,96,100,2,192,44,3,192,60,2,64,102,6,32,193,248],[29,131,4,96,102,2,64,60,3,192,60,3,64,38,6,32,193,248],[15,131,6,32,38,3,64,52,3,192,52,3,64,38,6,32,65,184],[15,131,6,96,36,3,192,60,3,192,60,3,192,36,6,96,195,24],[29,131,6,96,102,2,192,60,3,192,44,2,192,100,4,97,193,240]]},{"symbol":"1","fingerprints":[[28,1,192,28,1,224,14,0,224,14,0,112,7,0,112,7,131,255],[12,12,224,6,0,96,6,0,96,7,0,48,3,0,48,3,131,255],[14,13,224,14,0,224,14,0,112,7,0,112,7,0,112,7,3,255],[14,15,224,7,0,112,7,0,112,7,0,112,7,0,112,7,3,255],[30,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,3,255],[14,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,1,252],[15,0,240,7,0,112,7,0,112,7,0,112,7,0,240,14,3,248],[7,128,112,7,0,112,7,0,112,7,0,112,7,0,112,15,15,255],[15,128,56,3,128,120,7,0,112,7,0,112,7,0,112,15,15,254],[7,192,56,3,128,56,3,128,120,7,0,112,7,0,112,15,15,248],[3,192,60,3,192,56,3,128,56,7,128,112,7,0,112,15,15,255]]},{"symbol":"2","fingerprints":[[63,4,24,0,200,12,0,192,8,1,0,32,4,0,129,16,99,252],[63,4,24,128,200,12,0,192,24,1,128,32,4,1,129,32,39,254],[31,4,28,0,200,4,0,192,12,1,128,32,4,1,129,48,39,254],[63,4,28,128,200,12,0,192,12,1,128,48,4,1,129,48,39,254],[31,4,28,0,232,14,0,192,12,1,128,48,6,0,129,48,39,254],[15,2,28,64,232,6,0,224,12,1,128,48,6,0,128,48,23,254],[31,132,14,64,96,6,0,96,12,0,192,16,6,0,128,48,23,254],[15,130,14,64,96,6,0,96,12,1,192,48,6,1,128,32,63,254],[15,195,14,64,96,2,0,96,14,0,192,16,6,1,128,48,31,254],[15,195,14,64,48,3,0,32,6,0,192,16,6,0,128,48,31,254],[15,195,6,0,48,3,0,32,6,0,192,16,6,1,128,96,51,254]]},{"symbol":"3","fingerprints":[[31,4,24,128,192,8,1,0,120,0,96,3,0,48,2,0,71,240],[63,128,12,128,64,8,1,1,252,0,96,3,0,48,2,0,103,240],[63,132,12,128,96,4,1,128,252,0,96,3,0,48,3,0,103,240],[31,132,14,128,96,4,1,128,124,0,112,3,0,16,3,0,103,248],[31,132,28,128,96,4,1,128,248,0,224,6,0,48,2,0,79,240],[31,132,14,128,96,4,1,128,120,0,96,7,0,48,6,0,199,224],[31,196,6,0,96,6,1,128,252,0,96,7,0,48,2,0,71,224],[31,198,6,0,96,6,1,128,252,0,96,7,0,48,2,0,79,240],[31,194,6,64,96,6,0,128,252,0,96,7,0,48,2,0,111,240],[15,194,6,64,48,2,0,64,124,0,224,7,0,48,3,0,111,240],[7,193,7,96,48,3,0,96,124,0,224,7,0,48,3,0,111,248]]},{"symbol":"4","fingerprints":[[1,0,48,7,128,152,25,130,24,33,132,24,255,240,24,1,192,12],[1,128,56,7,128,88,25,129,24,33,132,24,255,240,28,1,192,12],[1,128,24,3,128,88,25,129,24,33,132,28,255,240,28,0,192,12],[0,128,24,3,128,88,9,193,28,33,196,28,255,240,12,0,192,12],[0,128,24,6,128,72,8,129,8,32,132,8,255,240,8,0,128,8],[0,128,24,3,128,88,25,130,24,33,132,24,255,240,24,1,128,24],[0,64,28,3,192,92,25,195,24,97,140,24,255,240,24,1,128,24],[0,64,28,2,192,76,8,193,28,33,196,24,255,240,24,1,128,24],[0,64,28,2,192,76,8,195,12,33,196,28,255,240,24,1,128,24],[0,96,12,1,64,108,12,193,12,32,204,28,31,240,24,1,128,24]]},{"symbol":"5","fingerprints":[[0,99,252,96,4,0,255,0,62,0,96,3,0,48,2,0,207,240],[0,35,254,112,6,0,255,0,62,0,96,3,0,16,2,0,207,240],[7,225,224,48,6,0,127,0,62,0,112,1,0,16,2,0,111,240],[0,241,254,48,7,0,127,0,62,0,48,1,0,16,3,0,111,240],[15,225,128,48,7,0,127,128,30,0,96,3,0,48,2,0,79,240],[15,241,128,16,3,0,127,128,30,0,96,3,0,48,6,0,71,224],[15,240,142,16,3,0,127,0,60,0,96,6,0,96,6,0,135,224],[15,240,128,16,3,192,63,128,14,0,96,6,0,96,6,0,135,240],[7,240,128,16,3,128,63,0,28,0,224,6,0,32,4,0,199,224],[7,240,130,24,3,128,63,0,28,0,224,2,0,32,4,0,199,240],[7,240,128,24,3,192,15,128,28,0,192,6,0,64,4,0,143,224]]},{"symbol":"6","fingerprints":[[1,192,224,56,6,0,71,15,14,192,44,3,64,54,3,48,32,248],[1,192,192,56,7,0,103,15,14,192,60,3,64,54,3,48,32,252],[1,192,192,24,2,0,98,7,156,192,100,2,64,38,2,48,97,248],[1,224,224,56,7,0,64,15,156,192,108,3,192,52,2,112,97,248],[1,192,192,56,7,0,103,15,14,192,108,3,192,52,2,96,33,252],[1,224,224,24,3,0,103,15,14,192,60,3,64,52,2,48,96,248],[0,224,96,24,3,0,99,7,14,192,60,3,64,52,2,48,96,248],[1,224,96,24,3,0,103,198,14,192,60,3,64,52,3,48,32,252],[1,224,224,56,7,0,111,14,14,192,108,2,192,36,2,96,67,248],[0,240,96,24,3,0,103,15,14,192,108,3,192,36,2,96,99,152],[1,224,224,24,2,0,127,142,12,192,108,6,192,100,6,96,193,240]]},{"symbol":"7","fingerprints":[[31,246,2,0,96,6,0,96,12,0,192,8,1,128,24,3,0,48],[127,228,6,128,96,6,0,192,8,0,128,24,3,0,48,3,0,112],[127,246,2,128,96,6,0,64,12,0,128,24,1,128,48,3,0,112],[127,244,6,128,96,4,0,192,8,1,128,24,3,0,48,6,0,224],[127,244,2,128,96,6,0,192,8,0,128,24,3,0,48,6,0,224],[127,244,2,128,96,12,0,192,8,1,128,16,3,0,96,6,0,224],[127,244,2,128,96,6,0,192,8,1,128,48,3,0,96,12,0,192],[127,244,2,128,96,12,0,192,24,1,0,48,6,0,96,12,0,128],[127,244,3,128,96,6,0,192,8,1,128,48,6,0,192,12,1,128],[127,244,2,0,96,12,0,192,24,1,0,48,6,0,96,12,1,128],[63,244,2,0,32,12,0,192,24,1,0,48,6,0,96,12,1,128]]},{"symbol":"8","fingerprints":[[30,4,24,192,204,8,97,131,224,19,198,6,64,52,2,96,97,248],[55,8,12,128,204,12,113,1,224,55,196,14,192,60,3,96,35,248],[63,4,12,192,204,12,113,1,224,23,198,14,192,60,3,96,35,248],[63,4,12,64,68,12,113,129,224,31,134,14,192,60,3,96,35,252],[31,4,12,64,100,12,112,129,224,31,134,14,64,60,3,96,35,156],[15,6,4,64,102,6,48,193,224,19,198,14,192,60,3,96,33,248],[25,198,2,64,39,6,56,128,240,27,198,14,64,60,3,96,33,248],[15,194,2,96,39,2,56,192,240,27,198,14,64,60,3,96,33,252],[15,195,2,32,35,2,56,192,240,11,198,14,64,52,3,96,35,220],[15,130,2,96,55,2,56,64,240,27,134,14,192,124,3,96,51,140],[15,131,2,32,35,2,56,192,240,51,196,14,192,108,2,64,97,248]]},{"symbol":"9","fingerprints":[[49,132,12,64,108,3,192,54,3,63,176,2,0,224,28,7,3,128],[51,4,12,192,108,6,192,44,2,57,160,6,0,192,24,6,3,0],[59,4,12,64,108,2,192,52,3,57,160,6,0,192,24,7,3,128],[27,6,12,64,108,3,192,54,3,56,240,2,0,192,28,7,3,128],[31,134,14,192,108,7,192,62,3,112,240,6,0,224,24,7,3,128],[31,6,12,64,108,2,192,60,3,112,224,6,0,192,24,6,3,128],[25,134,6,64,44,3,192,54,3,48,96,6,0,192,24,7,3,128],[25,134,6,192,108,3,192,62,3,112,112,230,0,224,24,7,7,128],[31,134,12,64,108,2,192,52,3,112,96,230,0,192,24,6,3,128],[15,131,6,64,36,3,192,52,3,112,33,246,0,192,24,7,3,128],[24,195,6,96,52,3,64,54,3,112,49,242,0,224,28,7,3,128]]},{"symbol":"A","fingerprints":[[8,1,128,28,1,64,22,2,48,35,3,248,64,132,12,64,110,24],[8,0,128,28,1,96,22,2,48,33,3,248,32,132,12,64,110,30],[8,0,192,12,1,96,18,1,48,33,3,248,32,132,12,64,110,31],[0,0,192,12,0,96,18,1,48,33,3,248,32,132,12,64,78,31],[4,0,192,14,0,160,19,1,48,1,3,248,32,132,12,64,78,31],[4,0,64,14,0,160,19,1,16,17,130,24,32,132,12,64,78,14],[4,0,96,14,0,160,11,1,16,17,130,24,32,132,12,64,76,14],[0,0,96,6,0,176,11,1,16,17,131,248,32,196,12,64,78,31],[2,0,96,7,0,176,9,1,24,17,131,248,32,196,12,64,78,30],[2,0,32,7,0,176,9,1,24,17,131,248,32,196,12,64,64,31],[2,0,48,7,0,80,9,128,152,17,131,248,32,196,12,64,66,30]]},{"symbol":"B","fingerprints":[[255,131,4,48,99,6,16,65,248,16,113,3,24,17,131,24,99,248],[255,130,12,48,99,6,48,195,240,48,97,3,16,49,3,16,103,248],[255,131,6,48,99,6,48,195,248,16,97,3,16,49,3,16,103,248],[255,130,6,32,99,6,48,67,248,48,227,3,48,51,3,48,103,252],[255,131,6,48,35,2,48,99,248,48,227,3,48,51,3,48,55,252],[255,130,4,32,98,6,32,67,240,32,194,6,32,50,3,32,111,252],[255,131,6,48,35,2,48,99,248,49,195,6,32,50,3,32,111,252],[255,131,6,48,35,2,48,99,248,48,227,3,48,50,3,32,111,248],[127,129,6,16,35,3,48,35,252,48,195,3,48,51,3,32,111,252],[127,1,6,16,49,3,16,35,252,48,195,3,48,51,3,32,111,252],[127,1,134,16,49,3,16,49,254,48,195,3,48,51,3,32,47,252]]},{"symbol":"C","fingerprints":[[15,194,6,64,44,2,192,12,0,192,12,0,192,6,1,48,33,252],[15,227,6,96,44,2,192,12,0,192,12,0,192,6,1,56,32,248],[15,163,6,96,36,0,192,12,0,192,12,0,64,6,1,48,32,248],[31,226,6,64,44,2,192,8,0,128,12,0,192,6,0,48,33,248],[15,163,6,96,44,0,192,12,0,192,12,0,192,6,0,48,33,248],[15,163,6,96,44,0,192,12,0,192,12,0,192,6,1,48,32,248],[15,227,3,96,28,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,211,3,96,20,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,131,6,96,60,1,192,12,0,192,12,0,192,4,0,112,33,248],[15,147,3,96,52,1,192,12,0,192,12,0,192,6,0,48,96,240]]},{"symbol":"D","fingerprints":[[255,2,12,32,98,3,48,51,3,48,49,3,16,49,6,16,195,240],[255,130,12,32,98,3,32,50,3,48,51,3,48,51,2,48,199,240],[255,130,14,32,34,3,32,51,1,48,19,1,48,51,2,48,199,240],[255,2,12,32,98,3,32,50,3,32,50,3,32,50,6,32,199,240],[255,6,12,32,98,2,32,50,3,32,50,3,32,34,6,32,207,240],[127,3,12,48,99,3,32,50,3,32,50,3,32,50,6,96,207,240],[126,1,12,16,33,3,48,51,1,48,18,3,32,50,6,96,207,248]]},{"symbol":"E","fingerprints":[[15,195,2,48,35,0,48,67,28,16,65,0,16,1,129,24,51,252],[255,194,0,32,2,0,48,3,252,48,67,0,48,1,1,16,55,254],[255,195,2,48,3,0,48,67,252,48,67,4,16,1,1,16,55,254],[255,226,2,32,34,0,32,67,252,48,67,4,48,3,1,48,55,255],[255,227,2,48,3,0,48,67,252,48,67,4,48,3,1,48,23,255],[255,226,2,32,2,0,32,67,252,32,194,4,32,2,1,32,47,254],[255,227,2,48,3,0,48,67,252,32,66,4,32,2,1,32,47,254],[127,227,3,48,19,0,48,67,252,48,67,4,32,2,1,32,47,254],[127,193,3,16,19,0,48,3,236,48,67,4,32,2,1,96,33,254],[127,1,3,16,17,0,16,3,132,48,67,4,32,2,1,96,33,254]]},{"symbol":"F","fingerprints":[[15,227,2,48,19,0,48,67,12,16,33,0,16,1,128,24,3,224],[255,243,1,48,3,0,16,33,254,16,33,2,16,1,128,24,3,224],[255,227,1,48,3,0,48,67,252,48,67,0,16,1,0,16,7,192],[255,243,1,48,19,0,48,67,124,48,65,2,16,1,0,16,7,192],[255,227,1,48,3,0,48,67,252,48,67,4,48,3,0,48,7,192],[127,243,1,48,19,0,48,67,252,48,67,4,48,3,0,48,7,128],[255,243,1,48,19,0,48,67,252,33,194,4,32,2,0,32,15,0],[127,243,1,48,19,0,48,67,236,48,67,4,32,2,0,32,15,128],[127,193,1,16,19,0,48,3,132,48,67,4,32,2,0,32,15,128],[127,1,1,16,1,0,16,35,4,48,195,4,48,2,0,32,15,128]]},{"symbol":"G","fingerprints":[[15,195,6,96,44,2,192,12,1,192,108,2,64,38,2,48,32,204],[15,66,12,64,76,0,128,8,0,128,108,6,192,102,6,48,96,248],[15,67,12,96,108,2,192,12,0,192,108,6,192,102,6,48,96,248],[15,163,6,96,44,0,192,12,0,192,108,6,64,102,6,48,96,252],[31,66,4,64,108,2,128,8,0,128,72,4,192,68,4,96,65,216],[15,35,6,96,44,2,192,8,0,128,76,4,192,70,4,48,64,248],[29,162,6,96,44,0,192,12,0,192,108,4,192,70,4,48,64,248],[15,163,6,96,36,0,192,12,0,192,108,6,192,102,4,48,65,248],[15,163,6,96,44,2,192,8,0,128,104,4,192,76,4,96,193,216],[15,131,6,96,44,2,192,8,0,128,72,4,192,68,4,32,192,240],[13,211,2,96,44,0,192,12,0,128,108,4,192,68,4,32,193,248]]},{"symbol":"H","fingerprints":[[1,230,8,32,194,12,32,194,12,48,67,4,48,65,4,16,99,200],[241,198,12,96,198,12,32,194,252,32,66,4,32,67,6,48,103,222],[249,230,12,32,194,4,32,66,252,32,66,4,48,67,6,48,103,159],[241,246,4,96,70,4,96,70,60,96,66,4,32,98,6,32,103,143],[240,230,4,32,66,4,32,67,254,32,98,6,32,98,6,32,103,143],[241,246,4,96,70,4,96,71,252,96,70,4,96,70,4,96,79,30],[249,242,6,32,98,6,32,71,244,96,70,4,96,70,4,96,79,31],[121,243,4,32,66,4,32,67,132,32,198,12,96,198,12,96,207,28],[124,131,6,48,98,4,32,67,4,32,66,12,96,198,12,96,193,62],[120,3,6,48,67,4,48,195,12,32,194,12,96,134,8,96,131,60]]},{"symbol":"I","fingerprints":[[255,0,192,12,0,96,6,0,96,6,0,48,3,0,48,3,0,127],[255,192,224,14,0,224,14,0,224,6,0,96,6,0,96,7,3,255],[255,192,192,12,0,192,12,0,96,6,0,96,6,0,96,7,3,255],[63,0,224,6,0,96,6,0,96,6,0,96,6,0,96,7,3,255],[255,128,224,14,0,224,14,0,224,14,0,224,14,0,224,15,7,255],[127,224,240,14,0,224,14,0,224,14,0,224,14,0,224,15,3,252],[127,240,112,7,0,112,7,0,112,7,0,112,7,0,112,15,1,248],[127,240,112,6,0,96,6,0,96,6,0,96,6,0,96,14,15,252],[15,240,48,3,0,48,6,0,96,6,0,96,6,0,96,14,15,252],[15,240,96,6,0,96,6,0,96,14,0,224,14,0,224,14,15,240],[15,240,48,3,0,96,6,0,96,6,0,224,14,0,224,14,15,252]]},{"symbol":"J","fingerprints":[[127,128,112,7,0,120,3,128,56,3,128,56,1,128,24,97,135,224],[127,224,120,7,128,56,3,128,56,3,128,56,1,128,24,97,135,224],[63,224,48,3,0,48,3,128,56,3,128,56,3,128,56,67,7,224],[63,240,56,3,128,56,3,128,56,3,128,56,3,128,56,67,135,224],[15,192,48,3,0,48,3,0,48,3,0,48,3,0,48,226,7,192],[31,240,56,3,128,56,3,128,56,3,128,56,3,0,48,226,7,192],[31,240,48,3,0,48,3,0,48,3,0,48,3,0,48,226,7,192],[15,240,56,3,0,48,3,0,48,3,0,48,3,0,48,227,7,192],[31,240,56,1,128,56,3,0,48,3,0,48,3,0,112,230,7,192],[3,240,24,1,128,24,3,128,56,3,0,48,3,0,112,230,7,192],[7,240,56,3,128,48,3,0,48,3,0,48,3,0,48,230,7,192]]},{"symbol":"K","fingerprints":[[3,198,16,33,2,32,36,3,128,54,3,48,49,1,12,16,227,200],[251,134,16,98,2,0,36,2,128,52,2,32,51,3,8,48,231,158],[251,198,16,34,2,0,36,2,192,52,3,32,51,3,24,48,231,159],[251,230,8,97,6,32,100,2,128,60,2,96,35,2,24,32,199,159],[240,194,8,33,2,32,32,3,192,60,2,96,35,2,24,32,199,159],[241,230,24,98,6,64,104,7,128,108,6,96,99,6,24,96,207,30],[249,242,8,33,2,32,104,7,128,124,6,96,99,6,24,96,207,14],[249,242,8,33,2,32,36,3,128,44,6,96,99,6,24,96,207,31],[121,243,12,33,2,32,36,2,128,44,2,96,99,6,24,96,207,30],[124,195,4,48,131,32,52,2,128,38,2,32,35,6,24,96,193,31],[124,3,12,48,131,32,52,3,128,36,2,32,35,6,16,97,131,62]]},{"symbol":"L","fingerprints":[[248,3,0,48,3,0,48,3,0,16,1,0,16,1,129,24,51,252],[248,2,0,32,2,0,48,3,0,48,3,0,48,1,1,16,55,255],[240,3,0,48,3,0,48,3,0,48,3,0,16,1,1,16,55,254],[240,2,0,32,2,0,32,2,0,48,3,0,48,3,1,48,55,254],[248,3,0,48,3,0,48,3,0,48,3,0,48,3,1,48,55,254],[248,2,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,48,3,0,48,3,0,32,2,0,32,2,1,32,47,254],[124,3,0,48,3,0,48,3,0,48,3,0,32,2,1,32,47,254],[124,1,0,16,3,0,48,3,0,48,3,0,32,2,1,32,47,254],[126,1,128,16,1,0,16,3,0,48,3,0,32,2,1,96,33,254]]},{"symbol":"M","fingerprints":[[0,230,12,112,197,12,81,66,148,41,98,214,36,98,102,34,99,40],[224,198,12,113,69,20,89,68,150,72,100,230,38,98,102,34,103,14],[224,231,12,112,69,22,89,100,150,77,98,102,38,98,102,34,103,15],[224,246,14,112,229,6,81,101,150,73,100,198,78,100,102,70,103,15],[224,103,14,80,229,14,89,100,150,73,100,198,70,100,102,70,102,15],[224,246,14,112,229,22,81,101,150,88,100,166,74,100,198,68,110,78],[224,119,14,112,229,14,81,101,150,73,100,166,78,100,230,68,110,78],[240,119,6,80,229,14,89,101,150,73,100,166,78,100,70,68,110,79],[112,115,14,80,229,134,89,100,150,74,68,164,76,68,68,68,206,94],[112,3,6,48,227,142,89,100,150,74,100,228,76,68,68,68,192,30],[112,3,14,48,227,6,40,66,148,72,196,172,72,196,204,76,194,28]]},{"symbol":"N","fingerprints":[[0,246,2,112,37,130,12,34,98,33,146,13,32,114,3,32,19,128],[192,230,2,112,37,130,76,36,98,67,34,26,32,226,6,32,55,128],[192,246,2,112,37,130,76,36,98,35,34,26,32,226,7,32,55,129],[192,246,2,112,37,130,76,36,98,67,36,26,64,228,6,64,39,0],[224,103,2,88,37,194,76,36,98,67,36,26,64,228,6,64,39,2],[192,246,2,112,37,130,76,36,98,70,36,50,65,164,14,64,110,2],[224,247,2,112,37,130,76,36,98,67,36,50,65,164,14,64,110,2],[224,247,2,88,37,130,76,36,98,67,36,26,65,164,14,64,111,2],[96,243,2,56,36,194,76,36,98,66,4,52,65,196,12,64,207,4],[96,3,2,56,34,194,44,36,98,66,36,48,65,196,12,64,206,4],[112,3,2,56,34,130,44,2,100,66,68,52,65,68,12,64,206,4]]},{"symbol":"O","fingerprints":[[15,2,12,64,108,2,192,60,3,192,60,3,64,54,2,48,64,248],[19,6,12,192,108,6,128,56,3,192,60,3,192,38,6,48,64,240],[27,6,12,64,108,2,192,60,3,192,60,3,192,54,6,48,65,248],[31,2,12,64,108,2,192,60,3,192,60,3,192,54,2,48,65,248],[31,6,12,64,108,6,128,40,3,128,56,3,192,36,6,96,193,184],[15,2,12,64,108,2,192,60,3,192,60,3,192,36,6,32,193,240],[25,130,4,64,108,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,131,4,96,44,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,2,12,64,108,2,192,56,3,128,56,2,192,108,6,96,193,240],[15,3,4,96,108,2,192,60,3,128,56,3,192,108,6,96,195,176],[25,131,4,96,44,3,192,60,3,192,60,3,192,100,6,96,193,240]]},{"symbol":"P","fingerprints":[[255,195,7,48,51,3,16,49,6,30,1,128,24,1,128,24,3,240],[255,130,6,48,51,3,48,51,6,63,3,0,16,1,0,24,7,224],[255,195,3,48,51,3,48,51,12,31,1,0,16,1,0,24,7,224],[255,194,6,48,51,3,48,35,12,63,3,0,48,3,0,48,7,192],[255,195,6,48,51,3,48,51,14,63,131,0,48,3,0,48,7,192],[255,130,6,32,50,3,32,34,12,63,130,0,32,2,0,48,15,128],[255,131,6,48,51,3,48,51,6,63,131,0,48,2,0,48,15,128],[255,131,6,48,51,3,48,51,6,63,195,0,48,3,0,48,15,0],[127,131,6,48,51,1,48,51,6,63,131,0,48,3,0,48,15,192],[127,1,14,16,49,3,16,51,6,63,131,0,48,3,0,48,15,192],[126,1,142,24,49,3,16,49,6,63,195,0,48,3,0,48,15,128]]},{"symbol":"Q","fingerprints":[[14,6,8,64,204,6,192,108,6,192,102,6,32,65,8,6,0,31],[27,4,12,192,76,6,128,108,6,192,108,6,96,65,24,6,0,28],[27,6,4,192,108,3,192,60,3,192,52,2,96,97,152,7,0,15],[31,6,4,64,108,3,192,60,3,192,52,2,96,97,152,6,0,14],[31,6,12,192,108,2,128,56,3,192,60,6,64,67,24,6,0,28],[15,6,4,64,108,2,192,60,3,192,60,2,96,65,184,6,0,31],[25,134,6,64,44,3,192,60,3,192,52,6,96,65,152,6,0,28],[15,130,6,96,44,3,192,60,3,192,52,2,32,65,240,6,0,15],[31,6,4,64,108,2,128,56,3,128,44,6,64,193,240,4,0,28],[15,2,4,64,44,3,192,56,3,192,44,6,64,193,240,12,0,24],[25,130,6,96,44,3,192,60,3,192,44,6,96,193,240,4,0,30]]},{"symbol":"R","fingerprints":[[255,2,8,48,195,12,48,195,48,55,1,48,17,129,12,16,99,192],[255,6,12,32,194,4,48,195,48,50,3,48,49,131,12,48,103,198],[255,130,12,48,67,4,48,195,240,50,3,48,49,131,12,48,231,199],[255,134,12,32,98,6,32,194,240,54,2,48,49,131,12,48,199,199],[255,130,12,32,98,6,48,67,120,62,3,48,49,131,12,48,199,199],[255,6,12,32,66,6,32,194,120,62,2,48,35,2,24,96,207,134],[255,2,12,32,98,6,32,66,56,62,2,48,35,2,24,96,207,14],[255,3,12,48,99,6,48,98,24,38,2,48,33,130,24,96,207,135],[127,3,12,48,99,6,48,99,28,54,2,48,33,130,24,96,207,142],[127,3,12,48,99,2,48,99,12,50,2,48,33,130,24,96,193,135],[127,1,12,16,35,2,48,35,12,50,3,48,33,130,24,96,195,142]]},{"symbol":"S","fingerprints":[[62,68,12,192,76,0,112,3,224,3,192,6,0,52,3,96,103,248],[30,70,12,64,68,2,112,3,224,3,192,6,0,52,3,96,103,248],[63,196,12,192,44,0,120,1,224,3,192,14,0,56,3,64,103,252],[63,196,14,192,38,2,120,1,224,3,192,14,128,56,3,64,39,252],[31,38,6,64,38,2,120,1,224,3,192,14,0,56,3,64,39,156],[31,38,6,64,38,0,120,1,224,1,192,6,128,60,3,96,100,252],[27,230,6,96,38,2,56,0,224,3,192,14,128,44,2,96,101,248],[31,162,6,96,38,0,56,0,224,3,192,14,128,44,2,96,101,252],[31,162,6,32,35,1,56,0,224,3,192,14,128,44,3,96,101,252],[15,147,3,32,51,1,60,0,224,1,192,6,128,52,3,96,96,248],[15,147,3,48,19,1,60,0,224,1,192,6,0,52,3,96,97,248]]},{"symbol":"T","fingerprints":[[31,236,66,132,16,96,6,0,96,6,0,32,2,0,32,3,0,124],[255,248,97,134,16,96,6,0,96,2,0,32,2,0,32,3,0,252],[255,232,66,132,16,64,6,0,96,6,0,96,6,0,96,6,1,248],[255,248,99,134,16,96,6,0,96,6,0,96,6,0,96,6,0,248],[255,232,66,4,16,64,4,0,64,4,0,64,4,0,96,6,1,248],[255,248,99,4,16,64,4,0,64,4,0,64,4,0,64,12,3,240],[255,248,99,134,16,96,6,0,64,4,0,64,4,0,64,12,3,240],[255,136,99,4,16,64,4,0,64,12,0,192,12,0,192,12,3,224],[255,8,99,134,16,97,4,0,64,4,0,192,12,0,192,12,3,240]]},{"symbol":"U","fingerprints":[[0,246,2,96,34,2,32,35,2,48,35,2,48,33,2,24,32,120],[240,230,4,96,6,2,96,34,2,32,34,2,48,35,2,24,64,248],[248,246,2,96,38,2,32,34,2,48,35,2,48,35,2,24,64,248],[248,246,4,96,70,4,96,6,2,96,38,2,96,34,0,48,65,248],[240,102,2,96,38,2,96,38,2,96,38,2,32,35,0,48,65,216],[240,246,4,96,70,4,96,70,4,96,70,4,96,70,4,48,129,240],[248,246,2,96,38,0,96,6,0,96,70,4,96,70,4,48,129,240],[248,246,4,96,70,4,96,70,4,96,70,4,96,70,4,96,129,240],[240,230,4,64,68,4,64,76,4,192,76,4,192,12,8,96,131,240],[248,134,6,96,70,4,96,68,4,64,76,4,192,68,8,96,131,176],[240,6,4,64,68,4,192,76,4,192,140,8,192,140,8,65,3,224]]},{"symbol":"V","fingerprints":[[0,246,2,48,35,4,24,64,132,12,0,104,6,128,56,1,0,16],[240,102,2,32,67,4,24,65,136,12,128,200,6,0,48,3,0,0],[248,118,2,48,35,4,24,64,132,12,128,200,6,128,48,3,0,0],[240,246,2,32,67,4,16,65,136,24,128,200,5,0,112,2,0,32],[240,38,2,48,3,4,24,65,136,12,128,200,7,0,112,2,0,32],[240,118,2,32,67,4,16,129,136,24,128,208,13,0,96,6,0,0],[240,118,2,48,35,4,16,65,136,24,128,208,13,0,96,6,0,0],[240,246,2,32,67,4,48,129,136,24,1,144,12,0,224,4,0,64],[240,230,6,96,66,4,48,131,0,17,1,144,26,0,224,12,0,0],[240,6,2,96,67,4,48,129,8,25,1,144,10,0,192,12,0,0],[240,6,6,96,70,4,48,131,16,49,1,160,26,1,192,8,0,128]]},{"symbol":"W","fingerprints":[[15,126,98,102,38,50,51,35,82,21,161,200,12,192,196,12,64,4],[238,44,98,102,38,98,39,35,84,53,193,92,24,192,140,8,192,128],[239,54,98,102,38,50,55,35,82,53,129,220,28,192,140,8,192,128],[239,124,98,102,38,98,39,3,116,53,67,156,25,193,136,24,128,8],[238,54,98,102,38,98,39,35,116,53,65,28,25,193,136,24,128,8],[238,116,98,102,38,98,102,66,116,59,67,144,57,129,24,17,129,0],[239,54,98,102,38,98,39,3,116,51,67,148,25,129,24,16,129,0],[239,116,98,102,38,96,102,70,180,43,67,184,49,131,24,17,0,16],[238,108,66,196,36,100,110,70,224,106,135,56,51,131,48,35,2,0],[239,12,66,70,38,100,102,70,164,106,131,56,51,2,48,33,2,0],[238,12,194,196,36,68,78,70,232,118,135,40,99,6,48,34,0,32]]},{"symbol":"X","fingerprints":[[9,230,8,48,129,144,14,0,96,6,0,176,9,129,12,48,103,152],[249,195,8,16,129,144,14,0,96,6,0,176,9,129,12,48,103,158],[249,231,4,48,129,144,14,0,96,6,0,176,17,129,12,32,103,31],[248,243,4,48,129,144,13,0,96,6,0,176,17,129,12,32,103,31],[240,227,12,48,129,144,14,0,96,6,0,176,17,130,24,96,206,31],[248,243,4,16,129,144,14,0,96,6,0,176,17,130,24,96,206,30],[248,243,4,24,128,144,13,0,96,6,0,176,17,130,24,96,206,14],[124,243,6,24,64,136,13,0,96,6,0,176,17,130,8,96,207,31],[124,241,130,24,64,200,13,0,96,6,0,176,17,130,8,96,207,30],[124,129,134,24,64,200,5,0,96,6,0,176,17,2,24,64,192,62],[124,1,130,8,64,200,5,0,96,6,0,176,17,2,24,64,194,62]]},{"symbol":"Y","fingerprints":[[0,246,4,48,65,136,12,128,112,3,0,48,3,0,48,3,0,60],[240,230,4,48,129,136,13,0,112,6,0,32,2,0,32,3,0,252],[248,246,4,48,65,136,13,0,112,2,0,32,2,0,32,3,0,252],[240,246,4,48,129,136,9,0,240,6,0,96,6,0,96,6,0,248],[248,98,4,16,129,136,13,0,96,6,0,96,6,0,96,6,0,248],[240,246,4,48,129,136,9,0,224,6,0,96,6,0,96,6,0,240],[240,246,4,48,129,16,25,0,224,12,0,64,4,0,64,12,1,224],[248,246,4,48,129,8,25,0,224,4,0,64,4,0,64,12,3,240],[240,230,4,32,131,16,25,0,160,12,0,192,12,0,192,12,3,224],[248,134,6,48,129,8,25,0,160,12,0,192,12,0,192,12,3,224],[240,6,4,32,131,16,19,1,160,12,0,128,8,0,128,24,7,224]]},{"symbol":"Z","fingerprints":[[31,204,12,129,128,48,3,0,96,12,1,128,16,19,1,96,55,248],[255,200,12,129,128,48,3,0,96,12,1,128,24,19,1,96,55,254],[255,200,12,1,128,48,6,0,64,12,1,128,48,2,1,96,47,254],[255,232,12,129,128,48,2,0,96,12,1,128,48,2,1,96,47,254],[127,232,12,128,128,24,3,0,96,12,1,128,16,3,1,96,63,254],[127,244,6,128,192,24,3,0,96,12,0,192,24,3,1,96,63,254],[127,244,6,0,192,24,3,0,96,12,1,128,48,6,1,96,63,254],[127,244,6,64,192,24,3,0,96,12,0,128,24,3,1,96,63,254],[63,230,3,64,96,12,1,128,48,12,1,128,48,6,1,192,49,254],[63,244,6,64,192,24,3,0,32,12,1,128,48,6,0,192,33,254]]},{"symbol":"<","fingerprints":[[0,32,14,3,128,112,24,7,0,192,14,0,30,0,120,0,224,3],[0,96,14,3,128,96,56,6,0,192,14,0,60,0,112,1,224,7],[0,96,12,3,128,224,56,14,0,192,15,0,30,0,120,0,224,3],[0,32,14,3,128,224,56,14,0,192,15,0,30,0,120,1,224,7],[0,96,30,3,128,224,112,12,0,224,7,128,15,0,60,0,224,3],[0,48,14,3,128,224,112,14,0,224,7,128,14,0,56,0,224,3],[0,48,15,3,192,240,120,14,0,224,7,0,14,0,56,0,224,7],[0,48,14,3,128,224,112,12,0,240,3,128,7,0,60,0,224,3],[0,48,14,3,129,224,240,12,0,224,3,128,14,0,56,1,192,6],[0,112,30,7,129,192,224,12,0,112,3,128,7,0,56,0,224,2],[0,48,15,7,129,224,224,12,0,112,3,128,7,0,56,0,224,6]]}]} -------------------------------------------------------------------------------- /fontData/12x12/mrz/mingliu.json: -------------------------------------------------------------------------------- 1 | {"font":"MingLiU","fingerprint":[{"symbol":"0","fingerprints":[[31,2,12,96,100,6,192,44,3,64,52,3,96,50,2,24,96,120],[57,6,12,64,108,2,192,60,3,192,60,3,64,54,2,48,96,248],[27,134,12,64,108,6,192,44,3,192,60,3,64,38,6,48,65,248],[31,130,12,96,100,6,192,44,3,192,52,3,96,38,6,48,65,216],[31,131,4,96,102,2,64,60,3,192,52,3,96,54,6,48,65,152],[15,3,12,96,100,3,192,60,3,192,60,3,64,54,6,48,192,240],[25,130,4,96,100,2,192,44,3,192,60,2,64,102,6,32,193,248],[29,131,4,96,102,2,64,60,3,192,60,3,64,38,6,32,193,248],[15,131,6,32,38,3,64,52,3,192,52,3,64,38,6,32,65,184],[15,131,6,96,36,3,192,60,3,192,60,3,192,36,6,96,195,24],[29,131,6,96,102,2,192,60,3,192,44,2,192,100,4,97,193,240]]},{"symbol":"1","fingerprints":[[28,1,192,28,1,224,14,0,224,14,0,112,7,0,112,7,131,255],[12,12,224,6,0,96,6,0,96,7,0,48,3,0,48,3,131,255],[14,13,224,14,0,224,14,0,112,7,0,112,7,0,112,7,3,255],[14,15,224,7,0,112,7,0,112,7,0,112,7,0,112,7,3,255],[30,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,3,255],[14,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,1,252],[15,0,240,7,0,112,7,0,112,7,0,112,7,0,240,14,3,248],[7,128,112,7,0,112,7,0,112,7,0,112,7,0,112,15,15,255],[15,128,56,3,128,120,7,0,112,7,0,112,7,0,112,15,15,254],[7,192,56,3,128,56,3,128,120,7,0,112,7,0,112,15,15,248],[3,192,60,3,192,56,3,128,56,7,128,112,7,0,112,15,15,255]]},{"symbol":"2","fingerprints":[[63,4,24,0,200,12,0,192,8,1,0,32,4,0,129,16,99,252],[63,4,24,128,200,12,0,192,24,1,128,32,4,1,129,32,39,254],[31,4,28,0,200,4,0,192,12,1,128,32,4,1,129,48,39,254],[63,4,28,128,200,12,0,192,12,1,128,48,4,1,129,48,39,254],[31,4,28,0,232,14,0,192,12,1,128,48,6,0,129,48,39,254],[15,2,28,64,232,6,0,224,12,1,128,48,6,0,128,48,23,254],[31,132,14,64,96,6,0,96,12,0,192,16,6,0,128,48,23,254],[15,130,14,64,96,6,0,96,12,1,192,48,6,1,128,32,63,254],[15,195,14,64,96,2,0,96,14,0,192,16,6,1,128,48,31,254],[15,195,14,64,48,3,0,32,6,0,192,16,6,0,128,48,31,254],[15,195,6,0,48,3,0,32,6,0,192,16,6,1,128,96,51,254]]},{"symbol":"3","fingerprints":[[31,4,24,128,192,8,1,0,120,0,96,3,0,48,2,0,71,240],[63,128,12,128,64,8,1,1,252,0,96,3,0,48,2,0,103,240],[63,132,12,128,96,4,1,128,252,0,96,3,0,48,3,0,103,240],[31,132,14,128,96,4,1,128,124,0,112,3,0,16,3,0,103,248],[31,132,28,128,96,4,1,128,248,0,224,6,0,48,2,0,79,240],[31,132,14,128,96,4,1,128,120,0,96,7,0,48,6,0,199,224],[31,196,6,0,96,6,1,128,252,0,96,7,0,48,2,0,71,224],[31,198,6,0,96,6,1,128,252,0,96,7,0,48,2,0,79,240],[31,194,6,64,96,6,0,128,252,0,96,7,0,48,2,0,111,240],[15,194,6,64,48,2,0,64,124,0,224,7,0,48,3,0,111,240],[7,193,7,96,48,3,0,96,124,0,224,7,0,48,3,0,111,248]]},{"symbol":"4","fingerprints":[[1,0,48,7,128,152,25,130,24,33,132,24,255,240,24,1,192,12],[1,128,56,7,128,88,25,129,24,33,132,24,255,240,28,1,192,12],[1,128,24,3,128,88,25,129,24,33,132,28,255,240,28,0,192,12],[0,128,24,3,128,88,9,193,28,33,196,28,255,240,12,0,192,12],[0,128,24,6,128,72,8,129,8,32,132,8,255,240,8,0,128,8],[0,128,24,3,128,88,25,130,24,33,132,24,255,240,24,1,128,24],[0,64,28,3,192,92,25,195,24,97,140,24,255,240,24,1,128,24],[0,64,28,2,192,76,8,193,28,33,196,24,255,240,24,1,128,24],[0,64,28,2,192,76,8,195,12,33,196,28,255,240,24,1,128,24],[0,96,12,1,64,108,12,193,12,32,204,28,31,240,24,1,128,24]]},{"symbol":"5","fingerprints":[[0,99,252,96,4,0,255,0,62,0,96,3,0,48,2,0,207,240],[0,35,254,112,6,0,255,0,62,0,96,3,0,16,2,0,207,240],[7,225,224,48,6,0,127,0,62,0,112,1,0,16,2,0,111,240],[0,241,254,48,7,0,127,0,62,0,48,1,0,16,3,0,111,240],[15,225,128,48,7,0,127,128,30,0,96,3,0,48,2,0,79,240],[15,241,128,16,3,0,127,128,30,0,96,3,0,48,6,0,71,224],[15,240,142,16,3,0,127,0,60,0,96,6,0,96,6,0,135,224],[15,240,128,16,3,192,63,128,14,0,96,6,0,96,6,0,135,240],[7,240,128,16,3,128,63,0,28,0,224,6,0,32,4,0,199,224],[7,240,130,24,3,128,63,0,28,0,224,2,0,32,4,0,199,240],[7,240,128,24,3,192,15,128,28,0,192,6,0,64,4,0,143,224]]},{"symbol":"6","fingerprints":[[1,192,224,56,6,0,71,15,14,192,44,3,64,54,3,48,32,248],[1,192,192,56,7,0,103,15,14,192,60,3,64,54,3,48,32,252],[1,192,192,24,2,0,98,7,156,192,100,2,64,38,2,48,97,248],[1,224,224,56,7,0,64,15,156,192,108,3,192,52,2,112,97,248],[1,192,192,56,7,0,103,15,14,192,108,3,192,52,2,96,33,252],[1,224,224,24,3,0,103,15,14,192,60,3,64,52,2,48,96,248],[0,224,96,24,3,0,99,7,14,192,60,3,64,52,2,48,96,248],[1,224,96,24,3,0,103,198,14,192,60,3,64,52,3,48,32,252],[1,224,224,56,7,0,111,14,14,192,108,2,192,36,2,96,67,248],[0,240,96,24,3,0,103,15,14,192,108,3,192,36,2,96,99,152],[1,224,224,24,2,0,127,142,12,192,108,6,192,100,6,96,193,240]]},{"symbol":"7","fingerprints":[[31,246,2,0,96,6,0,96,12,0,192,8,1,128,24,3,0,48],[127,228,6,128,96,6,0,192,8,0,128,24,3,0,48,3,0,112],[127,246,2,128,96,6,0,64,12,0,128,24,1,128,48,3,0,112],[127,244,6,128,96,4,0,192,8,1,128,24,3,0,48,6,0,224],[127,244,2,128,96,6,0,192,8,0,128,24,3,0,48,6,0,224],[127,244,2,128,96,12,0,192,8,1,128,16,3,0,96,6,0,224],[127,244,2,128,96,6,0,192,8,1,128,48,3,0,96,12,0,192],[127,244,2,128,96,12,0,192,24,1,0,48,6,0,96,12,0,128],[127,244,3,128,96,6,0,192,8,1,128,48,6,0,192,12,1,128],[127,244,2,0,96,12,0,192,24,1,0,48,6,0,96,12,1,128],[63,244,2,0,32,12,0,192,24,1,0,48,6,0,96,12,1,128]]},{"symbol":"8","fingerprints":[[30,4,24,192,204,8,97,131,224,19,198,6,64,52,2,96,97,248],[55,8,12,128,204,12,113,1,224,55,196,14,192,60,3,96,35,248],[63,4,12,192,204,12,113,1,224,23,198,14,192,60,3,96,35,248],[63,4,12,64,68,12,113,129,224,31,134,14,192,60,3,96,35,252],[31,4,12,64,100,12,112,129,224,31,134,14,64,60,3,96,35,156],[15,6,4,64,102,6,48,193,224,19,198,14,192,60,3,96,33,248],[25,198,2,64,39,6,56,128,240,27,198,14,64,60,3,96,33,248],[15,194,2,96,39,2,56,192,240,27,198,14,64,60,3,96,33,252],[15,195,2,32,35,2,56,192,240,11,198,14,64,52,3,96,35,220],[15,130,2,96,55,2,56,64,240,27,134,14,192,124,3,96,51,140],[15,131,2,32,35,2,56,192,240,51,196,14,192,108,2,64,97,248]]},{"symbol":"9","fingerprints":[[49,132,12,64,108,3,192,54,3,63,176,2,0,224,28,7,3,128],[51,4,12,192,108,6,192,44,2,57,160,6,0,192,24,6,3,0],[59,4,12,64,108,2,192,52,3,57,160,6,0,192,24,7,3,128],[27,6,12,64,108,3,192,54,3,56,240,2,0,192,28,7,3,128],[31,134,14,192,108,7,192,62,3,112,240,6,0,224,24,7,3,128],[31,6,12,64,108,2,192,60,3,112,224,6,0,192,24,6,3,128],[25,134,6,64,44,3,192,54,3,48,96,6,0,192,24,7,3,128],[25,134,6,192,108,3,192,62,3,112,112,230,0,224,24,7,7,128],[31,134,12,64,108,2,192,52,3,112,96,230,0,192,24,6,3,128],[15,131,6,64,36,3,192,52,3,112,33,246,0,192,24,7,3,128],[24,195,6,96,52,3,64,54,3,112,49,242,0,224,28,7,3,128]]},{"symbol":"A","fingerprints":[[8,1,128,28,1,64,22,2,48,35,3,248,64,132,12,64,110,24],[8,0,128,28,1,96,22,2,48,33,3,248,32,132,12,64,110,30],[8,0,192,12,1,96,18,1,48,33,3,248,32,132,12,64,110,31],[0,0,192,12,0,96,18,1,48,33,3,248,32,132,12,64,78,31],[4,0,192,14,0,160,19,1,48,1,3,248,32,132,12,64,78,31],[4,0,64,14,0,160,19,1,16,17,130,24,32,132,12,64,78,14],[4,0,96,14,0,160,11,1,16,17,130,24,32,132,12,64,76,14],[0,0,96,6,0,176,11,1,16,17,131,248,32,196,12,64,78,31],[2,0,96,7,0,176,9,1,24,17,131,248,32,196,12,64,78,30],[2,0,32,7,0,176,9,1,24,17,131,248,32,196,12,64,64,31],[2,0,48,7,0,80,9,128,152,17,131,248,32,196,12,64,66,30]]},{"symbol":"B","fingerprints":[[255,131,4,48,99,6,16,65,248,16,113,3,24,17,131,24,99,248],[255,130,12,48,99,6,48,195,240,48,97,3,16,49,3,16,103,248],[255,131,6,48,99,6,48,195,248,16,97,3,16,49,3,16,103,248],[255,130,6,32,99,6,48,67,248,48,227,3,48,51,3,48,103,252],[255,131,6,48,35,2,48,99,248,48,227,3,48,51,3,48,55,252],[255,130,4,32,98,6,32,67,240,32,194,6,32,50,3,32,111,252],[255,131,6,48,35,2,48,99,248,49,195,6,32,50,3,32,111,252],[255,131,6,48,35,2,48,99,248,48,227,3,48,50,3,32,111,248],[127,129,6,16,35,3,48,35,252,48,195,3,48,51,3,32,111,252],[127,1,6,16,49,3,16,35,252,48,195,3,48,51,3,32,111,252],[127,1,134,16,49,3,16,49,254,48,195,3,48,51,3,32,47,252]]},{"symbol":"C","fingerprints":[[15,194,6,64,44,2,192,12,0,192,12,0,192,6,1,48,33,252],[15,227,6,96,44,2,192,12,0,192,12,0,192,6,1,56,32,248],[15,163,6,96,36,0,192,12,0,192,12,0,64,6,1,48,32,248],[31,226,6,64,44,2,192,8,0,128,12,0,192,6,0,48,33,248],[15,163,6,96,44,0,192,12,0,192,12,0,192,6,0,48,33,248],[15,163,6,96,44,0,192,12,0,192,12,0,192,6,1,48,32,248],[15,227,3,96,28,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,211,3,96,20,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,131,6,96,60,1,192,12,0,192,12,0,192,4,0,112,33,248],[15,147,3,96,52,1,192,12,0,192,12,0,192,6,0,48,96,240]]},{"symbol":"D","fingerprints":[[255,2,12,32,98,3,48,51,3,48,49,3,16,49,6,16,195,240],[255,130,12,32,98,3,32,50,3,48,51,3,48,51,2,48,199,240],[255,130,14,32,34,3,32,51,1,48,19,1,48,51,2,48,199,240],[255,2,12,32,98,3,32,50,3,32,50,3,32,50,6,32,199,240],[255,6,12,32,98,2,32,50,3,32,50,3,32,34,6,32,207,240],[127,3,12,48,99,3,32,50,3,32,50,3,32,50,6,96,207,240],[126,1,12,16,33,3,48,51,1,48,18,3,32,50,6,96,207,248]]},{"symbol":"E","fingerprints":[[15,195,2,48,35,0,48,67,28,16,65,0,16,1,129,24,51,252],[255,194,0,32,2,0,48,3,252,48,67,0,48,1,1,16,55,254],[255,195,2,48,3,0,48,67,252,48,67,4,16,1,1,16,55,254],[255,226,2,32,34,0,32,67,252,48,67,4,48,3,1,48,55,255],[255,227,2,48,3,0,48,67,252,48,67,4,48,3,1,48,23,255],[255,226,2,32,2,0,32,67,252,32,194,4,32,2,1,32,47,254],[255,227,2,48,3,0,48,67,252,32,66,4,32,2,1,32,47,254],[127,227,3,48,19,0,48,67,252,48,67,4,32,2,1,32,47,254],[127,193,3,16,19,0,48,3,236,48,67,4,32,2,1,96,33,254],[127,1,3,16,17,0,16,3,132,48,67,4,32,2,1,96,33,254]]},{"symbol":"F","fingerprints":[[15,227,2,48,19,0,48,67,12,16,33,0,16,1,128,24,3,224],[255,243,1,48,3,0,16,33,254,16,33,2,16,1,128,24,3,224],[255,227,1,48,3,0,48,67,252,48,67,0,16,1,0,16,7,192],[255,243,1,48,19,0,48,67,124,48,65,2,16,1,0,16,7,192],[255,227,1,48,3,0,48,67,252,48,67,4,48,3,0,48,7,192],[127,243,1,48,19,0,48,67,252,48,67,4,48,3,0,48,7,128],[255,243,1,48,19,0,48,67,252,33,194,4,32,2,0,32,15,0],[127,243,1,48,19,0,48,67,236,48,67,4,32,2,0,32,15,128],[127,193,1,16,19,0,48,3,132,48,67,4,32,2,0,32,15,128],[127,1,1,16,1,0,16,35,4,48,195,4,48,2,0,32,15,128]]},{"symbol":"G","fingerprints":[[15,195,6,96,44,2,192,12,1,192,108,2,64,38,2,48,32,204],[15,66,12,64,76,0,128,8,0,128,108,6,192,102,6,48,96,248],[15,67,12,96,108,2,192,12,0,192,108,6,192,102,6,48,96,248],[15,163,6,96,44,0,192,12,0,192,108,6,64,102,6,48,96,252],[31,66,4,64,108,2,128,8,0,128,72,4,192,68,4,96,65,216],[15,35,6,96,44,2,192,8,0,128,76,4,192,70,4,48,64,248],[29,162,6,96,44,0,192,12,0,192,108,4,192,70,4,48,64,248],[15,163,6,96,36,0,192,12,0,192,108,6,192,102,4,48,65,248],[15,163,6,96,44,2,192,8,0,128,104,4,192,76,4,96,193,216],[15,131,6,96,44,2,192,8,0,128,72,4,192,68,4,32,192,240],[13,211,2,96,44,0,192,12,0,128,108,4,192,68,4,32,193,248]]},{"symbol":"H","fingerprints":[[1,230,8,32,194,12,32,194,12,48,67,4,48,65,4,16,99,200],[241,198,12,96,198,12,32,194,252,32,66,4,32,67,6,48,103,222],[249,230,12,32,194,4,32,66,252,32,66,4,48,67,6,48,103,159],[241,246,4,96,70,4,96,70,60,96,66,4,32,98,6,32,103,143],[240,230,4,32,66,4,32,67,254,32,98,6,32,98,6,32,103,143],[241,246,4,96,70,4,96,71,252,96,70,4,96,70,4,96,79,30],[249,242,6,32,98,6,32,71,244,96,70,4,96,70,4,96,79,31],[121,243,4,32,66,4,32,67,132,32,198,12,96,198,12,96,207,28],[124,131,6,48,98,4,32,67,4,32,66,12,96,198,12,96,193,62],[120,3,6,48,67,4,48,195,12,32,194,12,96,134,8,96,131,60]]},{"symbol":"I","fingerprints":[[255,0,192,12,0,96,6,0,96,6,0,48,3,0,48,3,0,127],[255,192,224,14,0,224,14,0,224,6,0,96,6,0,96,7,3,255],[255,192,192,12,0,192,12,0,96,6,0,96,6,0,96,7,3,255],[63,0,224,6,0,96,6,0,96,6,0,96,6,0,96,7,3,255],[255,128,224,14,0,224,14,0,224,14,0,224,14,0,224,15,7,255],[127,224,240,14,0,224,14,0,224,14,0,224,14,0,224,15,3,252],[127,240,112,7,0,112,7,0,112,7,0,112,7,0,112,15,1,248],[127,240,112,6,0,96,6,0,96,6,0,96,6,0,96,14,15,252],[15,240,48,3,0,48,6,0,96,6,0,96,6,0,96,14,15,252],[15,240,96,6,0,96,6,0,96,14,0,224,14,0,224,14,15,240],[15,240,48,3,0,96,6,0,96,6,0,224,14,0,224,14,15,252]]},{"symbol":"J","fingerprints":[[127,128,112,7,0,120,3,128,56,3,128,56,1,128,24,97,135,224],[127,224,120,7,128,56,3,128,56,3,128,56,1,128,24,97,135,224],[63,224,48,3,0,48,3,128,56,3,128,56,3,128,56,67,7,224],[63,240,56,3,128,56,3,128,56,3,128,56,3,128,56,67,135,224],[15,192,48,3,0,48,3,0,48,3,0,48,3,0,48,226,7,192],[31,240,56,3,128,56,3,128,56,3,128,56,3,0,48,226,7,192],[31,240,48,3,0,48,3,0,48,3,0,48,3,0,48,226,7,192],[15,240,56,3,0,48,3,0,48,3,0,48,3,0,48,227,7,192],[31,240,56,1,128,56,3,0,48,3,0,48,3,0,112,230,7,192],[3,240,24,1,128,24,3,128,56,3,0,48,3,0,112,230,7,192],[7,240,56,3,128,48,3,0,48,3,0,48,3,0,48,230,7,192]]},{"symbol":"K","fingerprints":[[3,198,16,33,2,32,36,3,128,54,3,48,49,1,12,16,227,200],[251,134,16,98,2,0,36,2,128,52,2,32,51,3,8,48,231,158],[251,198,16,34,2,0,36,2,192,52,3,32,51,3,24,48,231,159],[251,230,8,97,6,32,100,2,128,60,2,96,35,2,24,32,199,159],[240,194,8,33,2,32,32,3,192,60,2,96,35,2,24,32,199,159],[241,230,24,98,6,64,104,7,128,108,6,96,99,6,24,96,207,30],[249,242,8,33,2,32,104,7,128,124,6,96,99,6,24,96,207,14],[249,242,8,33,2,32,36,3,128,44,6,96,99,6,24,96,207,31],[121,243,12,33,2,32,36,2,128,44,2,96,99,6,24,96,207,30],[124,195,4,48,131,32,52,2,128,38,2,32,35,6,24,96,193,31],[124,3,12,48,131,32,52,3,128,36,2,32,35,6,16,97,131,62]]},{"symbol":"L","fingerprints":[[248,3,0,48,3,0,48,3,0,16,1,0,16,1,129,24,51,252],[248,2,0,32,2,0,48,3,0,48,3,0,48,1,1,16,55,255],[240,3,0,48,3,0,48,3,0,48,3,0,16,1,1,16,55,254],[240,2,0,32,2,0,32,2,0,48,3,0,48,3,1,48,55,254],[248,3,0,48,3,0,48,3,0,48,3,0,48,3,1,48,55,254],[248,2,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,48,3,0,48,3,0,32,2,0,32,2,1,32,47,254],[124,3,0,48,3,0,48,3,0,48,3,0,32,2,1,32,47,254],[124,1,0,16,3,0,48,3,0,48,3,0,32,2,1,32,47,254],[126,1,128,16,1,0,16,3,0,48,3,0,32,2,1,96,33,254]]},{"symbol":"M","fingerprints":[[0,230,12,112,197,12,81,66,148,41,98,214,36,98,102,34,99,40],[224,198,12,113,69,20,89,68,150,72,100,230,38,98,102,34,103,14],[224,231,12,112,69,22,89,100,150,77,98,102,38,98,102,34,103,15],[224,246,14,112,229,6,81,101,150,73,100,198,78,100,102,70,103,15],[224,103,14,80,229,14,89,100,150,73,100,198,70,100,102,70,102,15],[224,246,14,112,229,22,81,101,150,88,100,166,74,100,198,68,110,78],[224,119,14,112,229,14,81,101,150,73,100,166,78,100,230,68,110,78],[240,119,6,80,229,14,89,101,150,73,100,166,78,100,70,68,110,79],[112,115,14,80,229,134,89,100,150,74,68,164,76,68,68,68,206,94],[112,3,6,48,227,142,89,100,150,74,100,228,76,68,68,68,192,30],[112,3,14,48,227,6,40,66,148,72,196,172,72,196,204,76,194,28]]},{"symbol":"N","fingerprints":[[0,246,2,112,37,130,12,34,98,33,146,13,32,114,3,32,19,128],[192,230,2,112,37,130,76,36,98,67,34,26,32,226,6,32,55,128],[192,246,2,112,37,130,76,36,98,35,34,26,32,226,7,32,55,129],[192,246,2,112,37,130,76,36,98,67,36,26,64,228,6,64,39,0],[224,103,2,88,37,194,76,36,98,67,36,26,64,228,6,64,39,2],[192,246,2,112,37,130,76,36,98,70,36,50,65,164,14,64,110,2],[224,247,2,112,37,130,76,36,98,67,36,50,65,164,14,64,110,2],[224,247,2,88,37,130,76,36,98,67,36,26,65,164,14,64,111,2],[96,243,2,56,36,194,76,36,98,66,4,52,65,196,12,64,207,4],[96,3,2,56,34,194,44,36,98,66,36,48,65,196,12,64,206,4],[112,3,2,56,34,130,44,2,100,66,68,52,65,68,12,64,206,4]]},{"symbol":"O","fingerprints":[[15,2,12,64,108,2,192,60,3,192,60,3,64,54,2,48,64,248],[19,6,12,192,108,6,128,56,3,192,60,3,192,38,6,48,64,240],[27,6,12,64,108,2,192,60,3,192,60,3,192,54,6,48,65,248],[31,2,12,64,108,2,192,60,3,192,60,3,192,54,2,48,65,248],[31,6,12,64,108,6,128,40,3,128,56,3,192,36,6,96,193,184],[15,2,12,64,108,2,192,60,3,192,60,3,192,36,6,32,193,240],[25,130,4,64,108,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,131,4,96,44,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,2,12,64,108,2,192,56,3,128,56,2,192,108,6,96,193,240],[15,3,4,96,108,2,192,60,3,128,56,3,192,108,6,96,195,176],[25,131,4,96,44,3,192,60,3,192,60,3,192,100,6,96,193,240]]},{"symbol":"P","fingerprints":[[255,195,7,48,51,3,16,49,6,30,1,128,24,1,128,24,3,240],[255,130,6,48,51,3,48,51,6,63,3,0,16,1,0,24,7,224],[255,195,3,48,51,3,48,51,12,31,1,0,16,1,0,24,7,224],[255,194,6,48,51,3,48,35,12,63,3,0,48,3,0,48,7,192],[255,195,6,48,51,3,48,51,14,63,131,0,48,3,0,48,7,192],[255,130,6,32,50,3,32,34,12,63,130,0,32,2,0,48,15,128],[255,131,6,48,51,3,48,51,6,63,131,0,48,2,0,48,15,128],[255,131,6,48,51,3,48,51,6,63,195,0,48,3,0,48,15,0],[127,131,6,48,51,1,48,51,6,63,131,0,48,3,0,48,15,192],[127,1,14,16,49,3,16,51,6,63,131,0,48,3,0,48,15,192],[126,1,142,24,49,3,16,49,6,63,195,0,48,3,0,48,15,128]]},{"symbol":"Q","fingerprints":[[14,6,8,64,204,6,192,108,6,192,102,6,32,65,8,6,0,31],[27,4,12,192,76,6,128,108,6,192,108,6,96,65,24,6,0,28],[27,6,4,192,108,3,192,60,3,192,52,2,96,97,152,7,0,15],[31,6,4,64,108,3,192,60,3,192,52,2,96,97,152,6,0,14],[31,6,12,192,108,2,128,56,3,192,60,6,64,67,24,6,0,28],[15,6,4,64,108,2,192,60,3,192,60,2,96,65,184,6,0,31],[25,134,6,64,44,3,192,60,3,192,52,6,96,65,152,6,0,28],[15,130,6,96,44,3,192,60,3,192,52,2,32,65,240,6,0,15],[31,6,4,64,108,2,128,56,3,128,44,6,64,193,240,4,0,28],[15,2,4,64,44,3,192,56,3,192,44,6,64,193,240,12,0,24],[25,130,6,96,44,3,192,60,3,192,44,6,96,193,240,4,0,30]]},{"symbol":"R","fingerprints":[[255,2,8,48,195,12,48,195,48,55,1,48,17,129,12,16,99,192],[255,6,12,32,194,4,48,195,48,50,3,48,49,131,12,48,103,198],[255,130,12,48,67,4,48,195,240,50,3,48,49,131,12,48,231,199],[255,134,12,32,98,6,32,194,240,54,2,48,49,131,12,48,199,199],[255,130,12,32,98,6,48,67,120,62,3,48,49,131,12,48,199,199],[255,6,12,32,66,6,32,194,120,62,2,48,35,2,24,96,207,134],[255,2,12,32,98,6,32,66,56,62,2,48,35,2,24,96,207,14],[255,3,12,48,99,6,48,98,24,38,2,48,33,130,24,96,207,135],[127,3,12,48,99,6,48,99,28,54,2,48,33,130,24,96,207,142],[127,3,12,48,99,2,48,99,12,50,2,48,33,130,24,96,193,135],[127,1,12,16,35,2,48,35,12,50,3,48,33,130,24,96,195,142]]},{"symbol":"S","fingerprints":[[62,68,12,192,76,0,112,3,224,3,192,6,0,52,3,96,103,248],[30,70,12,64,68,2,112,3,224,3,192,6,0,52,3,96,103,248],[63,196,12,192,44,0,120,1,224,3,192,14,0,56,3,64,103,252],[63,196,14,192,38,2,120,1,224,3,192,14,128,56,3,64,39,252],[31,38,6,64,38,2,120,1,224,3,192,14,0,56,3,64,39,156],[31,38,6,64,38,0,120,1,224,1,192,6,128,60,3,96,100,252],[27,230,6,96,38,2,56,0,224,3,192,14,128,44,2,96,101,248],[31,162,6,96,38,0,56,0,224,3,192,14,128,44,2,96,101,252],[31,162,6,32,35,1,56,0,224,3,192,14,128,44,3,96,101,252],[15,147,3,32,51,1,60,0,224,1,192,6,128,52,3,96,96,248],[15,147,3,48,19,1,60,0,224,1,192,6,0,52,3,96,97,248]]},{"symbol":"T","fingerprints":[[31,236,66,132,16,96,6,0,96,6,0,32,2,0,32,3,0,124],[255,248,97,134,16,96,6,0,96,2,0,32,2,0,32,3,0,252],[255,232,66,132,16,64,6,0,96,6,0,96,6,0,96,6,1,248],[255,248,99,134,16,96,6,0,96,6,0,96,6,0,96,6,0,248],[255,232,66,4,16,64,4,0,64,4,0,64,4,0,96,6,1,248],[255,248,99,4,16,64,4,0,64,4,0,64,4,0,64,12,3,240],[255,248,99,134,16,96,6,0,64,4,0,64,4,0,64,12,3,240],[255,136,99,4,16,64,4,0,64,12,0,192,12,0,192,12,3,224],[255,8,99,134,16,97,4,0,64,4,0,192,12,0,192,12,3,240]]},{"symbol":"U","fingerprints":[[0,246,2,96,34,2,32,35,2,48,35,2,48,33,2,24,32,120],[240,230,4,96,6,2,96,34,2,32,34,2,48,35,2,24,64,248],[248,246,2,96,38,2,32,34,2,48,35,2,48,35,2,24,64,248],[248,246,4,96,70,4,96,6,2,96,38,2,96,34,0,48,65,248],[240,102,2,96,38,2,96,38,2,96,38,2,32,35,0,48,65,216],[240,246,4,96,70,4,96,70,4,96,70,4,96,70,4,48,129,240],[248,246,2,96,38,0,96,6,0,96,70,4,96,70,4,48,129,240],[248,246,4,96,70,4,96,70,4,96,70,4,96,70,4,96,129,240],[240,230,4,64,68,4,64,76,4,192,76,4,192,12,8,96,131,240],[248,134,6,96,70,4,96,68,4,64,76,4,192,68,8,96,131,176],[240,6,4,64,68,4,192,76,4,192,140,8,192,140,8,65,3,224]]},{"symbol":"V","fingerprints":[[0,246,2,48,35,4,24,64,132,12,0,104,6,128,56,1,0,16],[240,102,2,32,67,4,24,65,136,12,128,200,6,0,48,3,0,0],[248,118,2,48,35,4,24,64,132,12,128,200,6,128,48,3,0,0],[240,246,2,32,67,4,16,65,136,24,128,200,5,0,112,2,0,32],[240,38,2,48,3,4,24,65,136,12,128,200,7,0,112,2,0,32],[240,118,2,32,67,4,16,129,136,24,128,208,13,0,96,6,0,0],[240,118,2,48,35,4,16,65,136,24,128,208,13,0,96,6,0,0],[240,246,2,32,67,4,48,129,136,24,1,144,12,0,224,4,0,64],[240,230,6,96,66,4,48,131,0,17,1,144,26,0,224,12,0,0],[240,6,2,96,67,4,48,129,8,25,1,144,10,0,192,12,0,0],[240,6,6,96,70,4,48,131,16,49,1,160,26,1,192,8,0,128]]},{"symbol":"W","fingerprints":[[15,126,98,102,38,50,51,35,82,21,161,200,12,192,196,12,64,4],[238,44,98,102,38,98,39,35,84,53,193,92,24,192,140,8,192,128],[239,54,98,102,38,50,55,35,82,53,129,220,28,192,140,8,192,128],[239,124,98,102,38,98,39,3,116,53,67,156,25,193,136,24,128,8],[238,54,98,102,38,98,39,35,116,53,65,28,25,193,136,24,128,8],[238,116,98,102,38,98,102,66,116,59,67,144,57,129,24,17,129,0],[239,54,98,102,38,98,39,3,116,51,67,148,25,129,24,16,129,0],[239,116,98,102,38,96,102,70,180,43,67,184,49,131,24,17,0,16],[238,108,66,196,36,100,110,70,224,106,135,56,51,131,48,35,2,0],[239,12,66,70,38,100,102,70,164,106,131,56,51,2,48,33,2,0],[238,12,194,196,36,68,78,70,232,118,135,40,99,6,48,34,0,32]]},{"symbol":"X","fingerprints":[[9,230,8,48,129,144,14,0,96,6,0,176,9,129,12,48,103,152],[249,195,8,16,129,144,14,0,96,6,0,176,9,129,12,48,103,158],[249,231,4,48,129,144,14,0,96,6,0,176,17,129,12,32,103,31],[248,243,4,48,129,144,13,0,96,6,0,176,17,129,12,32,103,31],[240,227,12,48,129,144,14,0,96,6,0,176,17,130,24,96,206,31],[248,243,4,16,129,144,14,0,96,6,0,176,17,130,24,96,206,30],[248,243,4,24,128,144,13,0,96,6,0,176,17,130,24,96,206,14],[124,243,6,24,64,136,13,0,96,6,0,176,17,130,8,96,207,31],[124,241,130,24,64,200,13,0,96,6,0,176,17,130,8,96,207,30],[124,129,134,24,64,200,5,0,96,6,0,176,17,2,24,64,192,62],[124,1,130,8,64,200,5,0,96,6,0,176,17,2,24,64,194,62]]},{"symbol":"Y","fingerprints":[[0,246,4,48,65,136,12,128,112,3,0,48,3,0,48,3,0,60],[240,230,4,48,129,136,13,0,112,6,0,32,2,0,32,3,0,252],[248,246,4,48,65,136,13,0,112,2,0,32,2,0,32,3,0,252],[240,246,4,48,129,136,9,0,240,6,0,96,6,0,96,6,0,248],[248,98,4,16,129,136,13,0,96,6,0,96,6,0,96,6,0,248],[240,246,4,48,129,136,9,0,224,6,0,96,6,0,96,6,0,240],[240,246,4,48,129,16,25,0,224,12,0,64,4,0,64,12,1,224],[248,246,4,48,129,8,25,0,224,4,0,64,4,0,64,12,3,240],[240,230,4,32,131,16,25,0,160,12,0,192,12,0,192,12,3,224],[248,134,6,48,129,8,25,0,160,12,0,192,12,0,192,12,3,224],[240,6,4,32,131,16,19,1,160,12,0,128,8,0,128,24,7,224]]},{"symbol":"Z","fingerprints":[[31,204,12,129,128,48,3,0,96,12,1,128,16,19,1,96,55,248],[255,200,12,129,128,48,3,0,96,12,1,128,24,19,1,96,55,254],[255,200,12,1,128,48,6,0,64,12,1,128,48,2,1,96,47,254],[255,232,12,129,128,48,2,0,96,12,1,128,48,2,1,96,47,254],[127,232,12,128,128,24,3,0,96,12,1,128,16,3,1,96,63,254],[127,244,6,128,192,24,3,0,96,12,0,192,24,3,1,96,63,254],[127,244,6,0,192,24,3,0,96,12,1,128,48,6,1,96,63,254],[127,244,6,64,192,24,3,0,96,12,0,128,24,3,1,96,63,254],[63,230,3,64,96,12,1,128,48,12,1,128,48,6,1,192,49,254],[63,244,6,64,192,24,3,0,32,12,1,128,48,6,0,192,33,254]]},{"symbol":"<","fingerprints":[[0,32,14,3,128,112,24,7,0,192,14,0,30,0,120,0,224,3],[0,96,14,3,128,96,56,6,0,192,14,0,60,0,112,1,224,7],[0,96,12,3,128,224,56,14,0,192,15,0,30,0,120,0,224,3],[0,32,14,3,128,224,56,14,0,192,15,0,30,0,120,1,224,7],[0,96,30,3,128,224,112,12,0,224,7,128,15,0,60,0,224,3],[0,48,14,3,128,224,112,14,0,224,7,128,14,0,56,0,224,3],[0,48,15,3,192,240,120,14,0,224,7,0,14,0,56,0,224,7],[0,48,14,3,128,224,112,12,0,240,3,128,7,0,60,0,224,3],[0,48,14,3,129,224,240,12,0,224,3,128,14,0,56,1,192,6],[0,112,30,7,129,192,224,12,0,112,3,128,7,0,56,0,224,2],[0,48,15,7,129,224,224,12,0,112,3,128,7,0,56,0,224,6]]}]} -------------------------------------------------------------------------------- /fontData/12x12/mrz/mingliu_extb.json: -------------------------------------------------------------------------------- 1 | {"font":"MingLiU-ExtB","fingerprint":[{"symbol":"0","fingerprints":[[31,2,12,96,100,6,192,44,3,64,52,3,96,50,2,24,96,120],[57,6,12,64,108,2,192,60,3,192,60,3,64,54,2,48,96,248],[27,134,12,64,108,6,192,44,3,192,60,3,64,38,6,48,65,248],[31,130,12,96,100,6,192,44,3,192,52,3,96,38,6,48,65,216],[31,131,4,96,102,2,64,60,3,192,52,3,96,54,6,48,65,152],[15,3,12,96,100,3,192,60,3,192,60,3,64,54,6,48,192,240],[25,130,4,96,100,2,192,44,3,192,60,2,64,102,6,32,193,248],[29,131,4,96,102,2,64,60,3,192,60,3,64,38,6,32,193,248],[15,131,6,32,38,3,64,52,3,192,52,3,64,38,6,32,65,184],[15,131,6,96,36,3,192,60,3,192,60,3,192,36,6,96,195,24],[29,131,6,96,102,2,192,60,3,192,44,2,192,100,4,97,193,240]]},{"symbol":"1","fingerprints":[[28,1,192,28,1,224,14,0,224,14,0,112,7,0,112,7,131,255],[12,12,224,6,0,96,6,0,96,7,0,48,3,0,48,3,131,255],[14,13,224,14,0,224,14,0,112,7,0,112,7,0,112,7,3,255],[14,15,224,7,0,112,7,0,112,7,0,112,7,0,112,7,3,255],[30,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,3,255],[14,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,1,252],[15,0,240,7,0,112,7,0,112,7,0,112,7,0,240,14,3,248],[7,128,112,7,0,112,7,0,112,7,0,112,7,0,112,15,15,255],[15,128,56,3,128,120,7,0,112,7,0,112,7,0,112,15,15,254],[7,192,56,3,128,56,3,128,120,7,0,112,7,0,112,15,15,248],[3,192,60,3,192,56,3,128,56,7,128,112,7,0,112,15,15,255]]},{"symbol":"2","fingerprints":[[63,4,24,0,200,12,0,192,8,1,0,32,4,0,129,16,99,252],[63,4,24,128,200,12,0,192,24,1,128,32,4,1,129,32,39,254],[31,4,28,0,200,4,0,192,12,1,128,32,4,1,129,48,39,254],[63,4,28,128,200,12,0,192,12,1,128,48,4,1,129,48,39,254],[31,4,28,0,232,14,0,192,12,1,128,48,6,0,129,48,39,254],[15,2,28,64,232,6,0,224,12,1,128,48,6,0,128,48,23,254],[31,132,14,64,96,6,0,96,12,0,192,16,6,0,128,48,23,254],[15,130,14,64,96,6,0,96,12,1,192,48,6,1,128,32,63,254],[15,195,14,64,96,2,0,96,14,0,192,16,6,1,128,48,31,254],[15,195,14,64,48,3,0,32,6,0,192,16,6,0,128,48,31,254],[15,195,6,0,48,3,0,32,6,0,192,16,6,1,128,96,51,254]]},{"symbol":"3","fingerprints":[[31,4,24,128,192,8,1,0,120,0,96,3,0,48,2,0,71,240],[63,128,12,128,64,8,1,1,252,0,96,3,0,48,2,0,103,240],[63,132,12,128,96,4,1,128,252,0,96,3,0,48,3,0,103,240],[31,132,14,128,96,4,1,128,124,0,112,3,0,16,3,0,103,248],[31,132,28,128,96,4,1,128,248,0,224,6,0,48,2,0,79,240],[31,132,14,128,96,4,1,128,120,0,96,7,0,48,6,0,199,224],[31,196,6,0,96,6,1,128,252,0,96,7,0,48,2,0,71,224],[31,198,6,0,96,6,1,128,252,0,96,7,0,48,2,0,79,240],[31,194,6,64,96,6,0,128,252,0,96,7,0,48,2,0,111,240],[15,194,6,64,48,2,0,64,124,0,224,7,0,48,3,0,111,240],[7,193,7,96,48,3,0,96,124,0,224,7,0,48,3,0,111,248]]},{"symbol":"4","fingerprints":[[1,0,48,7,128,152,25,130,24,33,132,24,255,240,24,1,192,12],[1,128,56,7,128,88,25,129,24,33,132,24,255,240,28,1,192,12],[1,128,24,3,128,88,25,129,24,33,132,28,255,240,28,0,192,12],[0,128,24,3,128,88,9,193,28,33,196,28,255,240,12,0,192,12],[0,128,24,6,128,72,8,129,8,32,132,8,255,240,8,0,128,8],[0,128,24,3,128,88,25,130,24,33,132,24,255,240,24,1,128,24],[0,64,28,3,192,92,25,195,24,97,140,24,255,240,24,1,128,24],[0,64,28,2,192,76,8,193,28,33,196,24,255,240,24,1,128,24],[0,64,28,2,192,76,8,195,12,33,196,28,255,240,24,1,128,24],[0,96,12,1,64,108,12,193,12,32,204,28,31,240,24,1,128,24]]},{"symbol":"5","fingerprints":[[0,99,252,96,4,0,255,0,62,0,96,3,0,48,2,0,207,240],[0,35,254,112,6,0,255,0,62,0,96,3,0,16,2,0,207,240],[7,225,224,48,6,0,127,0,62,0,112,1,0,16,2,0,111,240],[0,241,254,48,7,0,127,0,62,0,48,1,0,16,3,0,111,240],[15,225,128,48,7,0,127,128,30,0,96,3,0,48,2,0,79,240],[15,241,128,16,3,0,127,128,30,0,96,3,0,48,6,0,71,224],[15,240,142,16,3,0,127,0,60,0,96,6,0,96,6,0,135,224],[15,240,128,16,3,192,63,128,14,0,96,6,0,96,6,0,135,240],[7,240,128,16,3,128,63,0,28,0,224,6,0,32,4,0,199,224],[7,240,130,24,3,128,63,0,28,0,224,2,0,32,4,0,199,240],[7,240,128,24,3,192,15,128,28,0,192,6,0,64,4,0,143,224]]},{"symbol":"6","fingerprints":[[1,192,224,56,6,0,71,15,14,192,44,3,64,54,3,48,32,248],[1,192,192,56,7,0,103,15,14,192,60,3,64,54,3,48,32,252],[1,192,192,24,2,0,98,7,156,192,100,2,64,38,2,48,97,248],[1,224,224,56,7,0,64,15,156,192,108,3,192,52,2,112,97,248],[1,192,192,56,7,0,103,15,14,192,108,3,192,52,2,96,33,252],[1,224,224,24,3,0,103,15,14,192,60,3,64,52,2,48,96,248],[0,224,96,24,3,0,99,7,14,192,60,3,64,52,2,48,96,248],[1,224,96,24,3,0,103,198,14,192,60,3,64,52,3,48,32,252],[1,224,224,56,7,0,111,14,14,192,108,2,192,36,2,96,67,248],[0,240,96,24,3,0,103,15,14,192,108,3,192,36,2,96,99,152],[1,224,224,24,2,0,127,142,12,192,108,6,192,100,6,96,193,240]]},{"symbol":"7","fingerprints":[[31,246,2,0,96,6,0,96,12,0,192,8,1,128,24,3,0,48],[127,228,6,128,96,6,0,192,8,0,128,24,3,0,48,3,0,112],[127,246,2,128,96,6,0,64,12,0,128,24,1,128,48,3,0,112],[127,244,6,128,96,4,0,192,8,1,128,24,3,0,48,6,0,224],[127,244,2,128,96,6,0,192,8,0,128,24,3,0,48,6,0,224],[127,244,2,128,96,12,0,192,8,1,128,16,3,0,96,6,0,224],[127,244,2,128,96,6,0,192,8,1,128,48,3,0,96,12,0,192],[127,244,2,128,96,12,0,192,24,1,0,48,6,0,96,12,0,128],[127,244,3,128,96,6,0,192,8,1,128,48,6,0,192,12,1,128],[127,244,2,0,96,12,0,192,24,1,0,48,6,0,96,12,1,128],[63,244,2,0,32,12,0,192,24,1,0,48,6,0,96,12,1,128]]},{"symbol":"8","fingerprints":[[30,4,24,192,204,8,97,131,224,19,198,6,64,52,2,96,97,248],[55,8,12,128,204,12,113,1,224,55,196,14,192,60,3,96,35,248],[63,4,12,192,204,12,113,1,224,23,198,14,192,60,3,96,35,248],[63,4,12,64,68,12,113,129,224,31,134,14,192,60,3,96,35,252],[31,4,12,64,100,12,112,129,224,31,134,14,64,60,3,96,35,156],[15,6,4,64,102,6,48,193,224,19,198,14,192,60,3,96,33,248],[25,198,2,64,39,6,56,128,240,27,198,14,64,60,3,96,33,248],[15,194,2,96,39,2,56,192,240,27,198,14,64,60,3,96,33,252],[15,195,2,32,35,2,56,192,240,11,198,14,64,52,3,96,35,220],[15,130,2,96,55,2,56,64,240,27,134,14,192,124,3,96,51,140],[15,131,2,32,35,2,56,192,240,51,196,14,192,108,2,64,97,248]]},{"symbol":"9","fingerprints":[[49,132,12,64,108,3,192,54,3,63,176,2,0,224,28,7,3,128],[51,4,12,192,108,6,192,44,2,57,160,6,0,192,24,6,3,0],[59,4,12,64,108,2,192,52,3,57,160,6,0,192,24,7,3,128],[27,6,12,64,108,3,192,54,3,56,240,2,0,192,28,7,3,128],[31,134,14,192,108,7,192,62,3,112,240,6,0,224,24,7,3,128],[31,6,12,64,108,2,192,60,3,112,224,6,0,192,24,6,3,128],[25,134,6,64,44,3,192,54,3,48,96,6,0,192,24,7,3,128],[25,134,6,192,108,3,192,62,3,112,112,230,0,224,24,7,7,128],[31,134,12,64,108,2,192,52,3,112,96,230,0,192,24,6,3,128],[15,131,6,64,36,3,192,52,3,112,33,246,0,192,24,7,3,128],[24,195,6,96,52,3,64,54,3,112,49,242,0,224,28,7,3,128]]},{"symbol":"A","fingerprints":[[8,1,128,28,1,64,22,2,48,35,3,248,64,132,12,64,110,24],[8,0,128,28,1,96,22,2,48,33,3,248,32,132,12,64,110,30],[8,0,192,12,1,96,18,1,48,33,3,248,32,132,12,64,110,31],[0,0,192,12,0,96,18,1,48,33,3,248,32,132,12,64,78,31],[4,0,192,14,0,160,19,1,48,1,3,248,32,132,12,64,78,31],[4,0,64,14,0,160,19,1,16,17,130,24,32,132,12,64,78,14],[4,0,96,14,0,160,11,1,16,17,130,24,32,132,12,64,76,14],[0,0,96,6,0,176,11,1,16,17,131,248,32,196,12,64,78,31],[2,0,96,7,0,176,9,1,24,17,131,248,32,196,12,64,78,30],[2,0,32,7,0,176,9,1,24,17,131,248,32,196,12,64,64,31],[2,0,48,7,0,80,9,128,152,17,131,248,32,196,12,64,66,30]]},{"symbol":"B","fingerprints":[[255,131,4,48,99,6,16,65,248,16,113,3,24,17,131,24,99,248],[255,130,12,48,99,6,48,195,240,48,97,3,16,49,3,16,103,248],[255,131,6,48,99,6,48,195,248,16,97,3,16,49,3,16,103,248],[255,130,6,32,99,6,48,67,248,48,227,3,48,51,3,48,103,252],[255,131,6,48,35,2,48,99,248,48,227,3,48,51,3,48,55,252],[255,130,4,32,98,6,32,67,240,32,194,6,32,50,3,32,111,252],[255,131,6,48,35,2,48,99,248,49,195,6,32,50,3,32,111,252],[255,131,6,48,35,2,48,99,248,48,227,3,48,50,3,32,111,248],[127,129,6,16,35,3,48,35,252,48,195,3,48,51,3,32,111,252],[127,1,6,16,49,3,16,35,252,48,195,3,48,51,3,32,111,252],[127,1,134,16,49,3,16,49,254,48,195,3,48,51,3,32,47,252]]},{"symbol":"C","fingerprints":[[15,194,6,64,44,2,192,12,0,192,12,0,192,6,1,48,33,252],[15,227,6,96,44,2,192,12,0,192,12,0,192,6,1,56,32,248],[15,163,6,96,36,0,192,12,0,192,12,0,64,6,1,48,32,248],[31,226,6,64,44,2,192,8,0,128,12,0,192,6,0,48,33,248],[15,163,6,96,44,0,192,12,0,192,12,0,192,6,0,48,33,248],[15,163,6,96,44,0,192,12,0,192,12,0,192,6,1,48,32,248],[15,227,3,96,28,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,211,3,96,20,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,131,6,96,60,1,192,12,0,192,12,0,192,4,0,112,33,248],[15,147,3,96,52,1,192,12,0,192,12,0,192,6,0,48,96,240]]},{"symbol":"D","fingerprints":[[255,2,12,32,98,3,48,51,3,48,49,3,16,49,6,16,195,240],[255,130,12,32,98,3,32,50,3,48,51,3,48,51,2,48,199,240],[255,130,14,32,34,3,32,51,1,48,19,1,48,51,2,48,199,240],[255,2,12,32,98,3,32,50,3,32,50,3,32,50,6,32,199,240],[255,6,12,32,98,2,32,50,3,32,50,3,32,34,6,32,207,240],[127,3,12,48,99,3,32,50,3,32,50,3,32,50,6,96,207,240],[126,1,12,16,33,3,48,51,1,48,18,3,32,50,6,96,207,248]]},{"symbol":"E","fingerprints":[[15,195,2,48,35,0,48,67,28,16,65,0,16,1,129,24,51,252],[255,194,0,32,2,0,48,3,252,48,67,0,48,1,1,16,55,254],[255,195,2,48,3,0,48,67,252,48,67,4,16,1,1,16,55,254],[255,226,2,32,34,0,32,67,252,48,67,4,48,3,1,48,55,255],[255,227,2,48,3,0,48,67,252,48,67,4,48,3,1,48,23,255],[255,226,2,32,2,0,32,67,252,32,194,4,32,2,1,32,47,254],[255,227,2,48,3,0,48,67,252,32,66,4,32,2,1,32,47,254],[127,227,3,48,19,0,48,67,252,48,67,4,32,2,1,32,47,254],[127,193,3,16,19,0,48,3,236,48,67,4,32,2,1,96,33,254],[127,1,3,16,17,0,16,3,132,48,67,4,32,2,1,96,33,254]]},{"symbol":"F","fingerprints":[[15,227,2,48,19,0,48,67,12,16,33,0,16,1,128,24,3,224],[255,243,1,48,3,0,16,33,254,16,33,2,16,1,128,24,3,224],[255,227,1,48,3,0,48,67,252,48,67,0,16,1,0,16,7,192],[255,243,1,48,19,0,48,67,124,48,65,2,16,1,0,16,7,192],[255,227,1,48,3,0,48,67,252,48,67,4,48,3,0,48,7,192],[127,243,1,48,19,0,48,67,252,48,67,4,48,3,0,48,7,128],[255,243,1,48,19,0,48,67,252,33,194,4,32,2,0,32,15,0],[127,243,1,48,19,0,48,67,236,48,67,4,32,2,0,32,15,128],[127,193,1,16,19,0,48,3,132,48,67,4,32,2,0,32,15,128],[127,1,1,16,1,0,16,35,4,48,195,4,48,2,0,32,15,128]]},{"symbol":"G","fingerprints":[[15,195,6,96,44,2,192,12,1,192,108,2,64,38,2,48,32,204],[15,66,12,64,76,0,128,8,0,128,108,6,192,102,6,48,96,248],[15,67,12,96,108,2,192,12,0,192,108,6,192,102,6,48,96,248],[15,163,6,96,44,0,192,12,0,192,108,6,64,102,6,48,96,252],[31,66,4,64,108,2,128,8,0,128,72,4,192,68,4,96,65,216],[15,35,6,96,44,2,192,8,0,128,76,4,192,70,4,48,64,248],[29,162,6,96,44,0,192,12,0,192,108,4,192,70,4,48,64,248],[15,163,6,96,36,0,192,12,0,192,108,6,192,102,4,48,65,248],[15,163,6,96,44,2,192,8,0,128,104,4,192,76,4,96,193,216],[15,131,6,96,44,2,192,8,0,128,72,4,192,68,4,32,192,240],[13,211,2,96,44,0,192,12,0,128,108,4,192,68,4,32,193,248]]},{"symbol":"H","fingerprints":[[1,230,8,32,194,12,32,194,12,48,67,4,48,65,4,16,99,200],[241,198,12,96,198,12,32,194,252,32,66,4,32,67,6,48,103,222],[249,230,12,32,194,4,32,66,252,32,66,4,48,67,6,48,103,159],[241,246,4,96,70,4,96,70,60,96,66,4,32,98,6,32,103,143],[240,230,4,32,66,4,32,67,254,32,98,6,32,98,6,32,103,143],[241,246,4,96,70,4,96,71,252,96,70,4,96,70,4,96,79,30],[249,242,6,32,98,6,32,71,244,96,70,4,96,70,4,96,79,31],[121,243,4,32,66,4,32,67,132,32,198,12,96,198,12,96,207,28],[124,131,6,48,98,4,32,67,4,32,66,12,96,198,12,96,193,62],[120,3,6,48,67,4,48,195,12,32,194,12,96,134,8,96,131,60]]},{"symbol":"I","fingerprints":[[255,0,192,12,0,96,6,0,96,6,0,48,3,0,48,3,0,127],[255,192,224,14,0,224,14,0,224,6,0,96,6,0,96,7,3,255],[255,192,192,12,0,192,12,0,96,6,0,96,6,0,96,7,3,255],[63,0,224,6,0,96,6,0,96,6,0,96,6,0,96,7,3,255],[255,128,224,14,0,224,14,0,224,14,0,224,14,0,224,15,7,255],[127,224,240,14,0,224,14,0,224,14,0,224,14,0,224,15,3,252],[127,240,112,7,0,112,7,0,112,7,0,112,7,0,112,15,1,248],[127,240,112,6,0,96,6,0,96,6,0,96,6,0,96,14,15,252],[15,240,48,3,0,48,6,0,96,6,0,96,6,0,96,14,15,252],[15,240,96,6,0,96,6,0,96,14,0,224,14,0,224,14,15,240],[15,240,48,3,0,96,6,0,96,6,0,224,14,0,224,14,15,252]]},{"symbol":"J","fingerprints":[[127,128,112,7,0,120,3,128,56,3,128,56,1,128,24,97,135,224],[127,224,120,7,128,56,3,128,56,3,128,56,1,128,24,97,135,224],[63,224,48,3,0,48,3,128,56,3,128,56,3,128,56,67,7,224],[63,240,56,3,128,56,3,128,56,3,128,56,3,128,56,67,135,224],[15,192,48,3,0,48,3,0,48,3,0,48,3,0,48,226,7,192],[31,240,56,3,128,56,3,128,56,3,128,56,3,0,48,226,7,192],[31,240,48,3,0,48,3,0,48,3,0,48,3,0,48,226,7,192],[15,240,56,3,0,48,3,0,48,3,0,48,3,0,48,227,7,192],[31,240,56,1,128,56,3,0,48,3,0,48,3,0,112,230,7,192],[3,240,24,1,128,24,3,128,56,3,0,48,3,0,112,230,7,192],[7,240,56,3,128,48,3,0,48,3,0,48,3,0,48,230,7,192]]},{"symbol":"K","fingerprints":[[3,198,16,33,2,32,36,3,128,54,3,48,49,1,12,16,227,200],[251,134,16,98,2,0,36,2,128,52,2,32,51,3,8,48,231,158],[251,198,16,34,2,0,36,2,192,52,3,32,51,3,24,48,231,159],[251,230,8,97,6,32,100,2,128,60,2,96,35,2,24,32,199,159],[240,194,8,33,2,32,32,3,192,60,2,96,35,2,24,32,199,159],[241,230,24,98,6,64,104,7,128,108,6,96,99,6,24,96,207,30],[249,242,8,33,2,32,104,7,128,124,6,96,99,6,24,96,207,14],[249,242,8,33,2,32,36,3,128,44,6,96,99,6,24,96,207,31],[121,243,12,33,2,32,36,2,128,44,2,96,99,6,24,96,207,30],[124,195,4,48,131,32,52,2,128,38,2,32,35,6,24,96,193,31],[124,3,12,48,131,32,52,3,128,36,2,32,35,6,16,97,131,62]]},{"symbol":"L","fingerprints":[[248,3,0,48,3,0,48,3,0,16,1,0,16,1,129,24,51,252],[248,2,0,32,2,0,48,3,0,48,3,0,48,1,1,16,55,255],[240,3,0,48,3,0,48,3,0,48,3,0,16,1,1,16,55,254],[240,2,0,32,2,0,32,2,0,48,3,0,48,3,1,48,55,254],[248,3,0,48,3,0,48,3,0,48,3,0,48,3,1,48,55,254],[248,2,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,32,2,0,32,2,0,32,2,0,32,2,1,32,47,254],[252,3,0,48,3,0,48,3,0,32,2,0,32,2,1,32,47,254],[124,3,0,48,3,0,48,3,0,48,3,0,32,2,1,32,47,254],[124,1,0,16,3,0,48,3,0,48,3,0,32,2,1,32,47,254],[126,1,128,16,1,0,16,3,0,48,3,0,32,2,1,96,33,254]]},{"symbol":"M","fingerprints":[[0,230,12,112,197,12,81,66,148,41,98,214,36,98,102,34,99,40],[224,198,12,113,69,20,89,68,150,72,100,230,38,98,102,34,103,14],[224,231,12,112,69,22,89,100,150,77,98,102,38,98,102,34,103,15],[224,246,14,112,229,6,81,101,150,73,100,198,78,100,102,70,103,15],[224,103,14,80,229,14,89,100,150,73,100,198,70,100,102,70,102,15],[224,246,14,112,229,22,81,101,150,88,100,166,74,100,198,68,110,78],[224,119,14,112,229,14,81,101,150,73,100,166,78,100,230,68,110,78],[240,119,6,80,229,14,89,101,150,73,100,166,78,100,70,68,110,79],[112,115,14,80,229,134,89,100,150,74,68,164,76,68,68,68,206,94],[112,3,6,48,227,142,89,100,150,74,100,228,76,68,68,68,192,30],[112,3,14,48,227,6,40,66,148,72,196,172,72,196,204,76,194,28]]},{"symbol":"N","fingerprints":[[0,246,2,112,37,130,12,34,98,33,146,13,32,114,3,32,19,128],[192,230,2,112,37,130,76,36,98,67,34,26,32,226,6,32,55,128],[192,246,2,112,37,130,76,36,98,35,34,26,32,226,7,32,55,129],[192,246,2,112,37,130,76,36,98,67,36,26,64,228,6,64,39,0],[224,103,2,88,37,194,76,36,98,67,36,26,64,228,6,64,39,2],[192,246,2,112,37,130,76,36,98,70,36,50,65,164,14,64,110,2],[224,247,2,112,37,130,76,36,98,67,36,50,65,164,14,64,110,2],[224,247,2,88,37,130,76,36,98,67,36,26,65,164,14,64,111,2],[96,243,2,56,36,194,76,36,98,66,4,52,65,196,12,64,207,4],[96,3,2,56,34,194,44,36,98,66,36,48,65,196,12,64,206,4],[112,3,2,56,34,130,44,2,100,66,68,52,65,68,12,64,206,4]]},{"symbol":"O","fingerprints":[[15,2,12,64,108,2,192,60,3,192,60,3,64,54,2,48,64,248],[19,6,12,192,108,6,128,56,3,192,60,3,192,38,6,48,64,240],[27,6,12,64,108,2,192,60,3,192,60,3,192,54,6,48,65,248],[31,2,12,64,108,2,192,60,3,192,60,3,192,54,2,48,65,248],[31,6,12,64,108,6,128,40,3,128,56,3,192,36,6,96,193,184],[15,2,12,64,108,2,192,60,3,192,60,3,192,36,6,32,193,240],[25,130,4,64,108,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,131,4,96,44,3,192,60,3,192,60,3,192,36,6,32,193,240],[31,2,12,64,108,2,192,56,3,128,56,2,192,108,6,96,193,240],[15,3,4,96,108,2,192,60,3,128,56,3,192,108,6,96,195,176],[25,131,4,96,44,3,192,60,3,192,60,3,192,100,6,96,193,240]]},{"symbol":"P","fingerprints":[[255,195,7,48,51,3,16,49,6,30,1,128,24,1,128,24,3,240],[255,130,6,48,51,3,48,51,6,63,3,0,16,1,0,24,7,224],[255,195,3,48,51,3,48,51,12,31,1,0,16,1,0,24,7,224],[255,194,6,48,51,3,48,35,12,63,3,0,48,3,0,48,7,192],[255,195,6,48,51,3,48,51,14,63,131,0,48,3,0,48,7,192],[255,130,6,32,50,3,32,34,12,63,130,0,32,2,0,48,15,128],[255,131,6,48,51,3,48,51,6,63,131,0,48,2,0,48,15,128],[255,131,6,48,51,3,48,51,6,63,195,0,48,3,0,48,15,0],[127,131,6,48,51,1,48,51,6,63,131,0,48,3,0,48,15,192],[127,1,14,16,49,3,16,51,6,63,131,0,48,3,0,48,15,192],[126,1,142,24,49,3,16,49,6,63,195,0,48,3,0,48,15,128]]},{"symbol":"Q","fingerprints":[[14,6,8,64,204,6,192,108,6,192,102,6,32,65,8,6,0,31],[27,4,12,192,76,6,128,108,6,192,108,6,96,65,24,6,0,28],[27,6,4,192,108,3,192,60,3,192,52,2,96,97,152,7,0,15],[31,6,4,64,108,3,192,60,3,192,52,2,96,97,152,6,0,14],[31,6,12,192,108,2,128,56,3,192,60,6,64,67,24,6,0,28],[15,6,4,64,108,2,192,60,3,192,60,2,96,65,184,6,0,31],[25,134,6,64,44,3,192,60,3,192,52,6,96,65,152,6,0,28],[15,130,6,96,44,3,192,60,3,192,52,2,32,65,240,6,0,15],[31,6,4,64,108,2,128,56,3,128,44,6,64,193,240,4,0,28],[15,2,4,64,44,3,192,56,3,192,44,6,64,193,240,12,0,24],[25,130,6,96,44,3,192,60,3,192,44,6,96,193,240,4,0,30]]},{"symbol":"R","fingerprints":[[255,2,8,48,195,12,48,195,48,55,1,48,17,129,12,16,99,192],[255,6,12,32,194,4,48,195,48,50,3,48,49,131,12,48,103,198],[255,130,12,48,67,4,48,195,240,50,3,48,49,131,12,48,231,199],[255,134,12,32,98,6,32,194,240,54,2,48,49,131,12,48,199,199],[255,130,12,32,98,6,48,67,120,62,3,48,49,131,12,48,199,199],[255,6,12,32,66,6,32,194,120,62,2,48,35,2,24,96,207,134],[255,2,12,32,98,6,32,66,56,62,2,48,35,2,24,96,207,14],[255,3,12,48,99,6,48,98,24,38,2,48,33,130,24,96,207,135],[127,3,12,48,99,6,48,99,28,54,2,48,33,130,24,96,207,142],[127,3,12,48,99,2,48,99,12,50,2,48,33,130,24,96,193,135],[127,1,12,16,35,2,48,35,12,50,3,48,33,130,24,96,195,142]]},{"symbol":"S","fingerprints":[[62,68,12,192,76,0,112,3,224,3,192,6,0,52,3,96,103,248],[30,70,12,64,68,2,112,3,224,3,192,6,0,52,3,96,103,248],[63,196,12,192,44,0,120,1,224,3,192,14,0,56,3,64,103,252],[63,196,14,192,38,2,120,1,224,3,192,14,128,56,3,64,39,252],[31,38,6,64,38,2,120,1,224,3,192,14,0,56,3,64,39,156],[31,38,6,64,38,0,120,1,224,1,192,6,128,60,3,96,100,252],[27,230,6,96,38,2,56,0,224,3,192,14,128,44,2,96,101,248],[31,162,6,96,38,0,56,0,224,3,192,14,128,44,2,96,101,252],[31,162,6,32,35,1,56,0,224,3,192,14,128,44,3,96,101,252],[15,147,3,32,51,1,60,0,224,1,192,6,128,52,3,96,96,248],[15,147,3,48,19,1,60,0,224,1,192,6,0,52,3,96,97,248]]},{"symbol":"T","fingerprints":[[31,236,66,132,16,96,6,0,96,6,0,32,2,0,32,3,0,124],[255,248,97,134,16,96,6,0,96,2,0,32,2,0,32,3,0,252],[255,232,66,132,16,64,6,0,96,6,0,96,6,0,96,6,1,248],[255,248,99,134,16,96,6,0,96,6,0,96,6,0,96,6,0,248],[255,232,66,4,16,64,4,0,64,4,0,64,4,0,96,6,1,248],[255,248,99,4,16,64,4,0,64,4,0,64,4,0,64,12,3,240],[255,248,99,134,16,96,6,0,64,4,0,64,4,0,64,12,3,240],[255,136,99,4,16,64,4,0,64,12,0,192,12,0,192,12,3,224],[255,8,99,134,16,97,4,0,64,4,0,192,12,0,192,12,3,240]]},{"symbol":"U","fingerprints":[[0,246,2,96,34,2,32,35,2,48,35,2,48,33,2,24,32,120],[240,230,4,96,6,2,96,34,2,32,34,2,48,35,2,24,64,248],[248,246,2,96,38,2,32,34,2,48,35,2,48,35,2,24,64,248],[248,246,4,96,70,4,96,6,2,96,38,2,96,34,0,48,65,248],[240,102,2,96,38,2,96,38,2,96,38,2,32,35,0,48,65,216],[240,246,4,96,70,4,96,70,4,96,70,4,96,70,4,48,129,240],[248,246,2,96,38,0,96,6,0,96,70,4,96,70,4,48,129,240],[248,246,4,96,70,4,96,70,4,96,70,4,96,70,4,96,129,240],[240,230,4,64,68,4,64,76,4,192,76,4,192,12,8,96,131,240],[248,134,6,96,70,4,96,68,4,64,76,4,192,68,8,96,131,176],[240,6,4,64,68,4,192,76,4,192,140,8,192,140,8,65,3,224]]},{"symbol":"V","fingerprints":[[0,246,2,48,35,4,24,64,132,12,0,104,6,128,56,1,0,16],[240,102,2,32,67,4,24,65,136,12,128,200,6,0,48,3,0,0],[248,118,2,48,35,4,24,64,132,12,128,200,6,128,48,3,0,0],[240,246,2,32,67,4,16,65,136,24,128,200,5,0,112,2,0,32],[240,38,2,48,3,4,24,65,136,12,128,200,7,0,112,2,0,32],[240,118,2,32,67,4,16,129,136,24,128,208,13,0,96,6,0,0],[240,118,2,48,35,4,16,65,136,24,128,208,13,0,96,6,0,0],[240,246,2,32,67,4,48,129,136,24,1,144,12,0,224,4,0,64],[240,230,6,96,66,4,48,131,0,17,1,144,26,0,224,12,0,0],[240,6,2,96,67,4,48,129,8,25,1,144,10,0,192,12,0,0],[240,6,6,96,70,4,48,131,16,49,1,160,26,1,192,8,0,128]]},{"symbol":"W","fingerprints":[[15,126,98,102,38,50,51,35,82,21,161,200,12,192,196,12,64,4],[238,44,98,102,38,98,39,35,84,53,193,92,24,192,140,8,192,128],[239,54,98,102,38,50,55,35,82,53,129,220,28,192,140,8,192,128],[239,124,98,102,38,98,39,3,116,53,67,156,25,193,136,24,128,8],[238,54,98,102,38,98,39,35,116,53,65,28,25,193,136,24,128,8],[238,116,98,102,38,98,102,66,116,59,67,144,57,129,24,17,129,0],[239,54,98,102,38,98,39,3,116,51,67,148,25,129,24,16,129,0],[239,116,98,102,38,96,102,70,180,43,67,184,49,131,24,17,0,16],[238,108,66,196,36,100,110,70,224,106,135,56,51,131,48,35,2,0],[239,12,66,70,38,100,102,70,164,106,131,56,51,2,48,33,2,0],[238,12,194,196,36,68,78,70,232,118,135,40,99,6,48,34,0,32]]},{"symbol":"X","fingerprints":[[9,230,8,48,129,144,14,0,96,6,0,176,9,129,12,48,103,152],[249,195,8,16,129,144,14,0,96,6,0,176,9,129,12,48,103,158],[249,231,4,48,129,144,14,0,96,6,0,176,17,129,12,32,103,31],[248,243,4,48,129,144,13,0,96,6,0,176,17,129,12,32,103,31],[240,227,12,48,129,144,14,0,96,6,0,176,17,130,24,96,206,31],[248,243,4,16,129,144,14,0,96,6,0,176,17,130,24,96,206,30],[248,243,4,24,128,144,13,0,96,6,0,176,17,130,24,96,206,14],[124,243,6,24,64,136,13,0,96,6,0,176,17,130,8,96,207,31],[124,241,130,24,64,200,13,0,96,6,0,176,17,130,8,96,207,30],[124,129,134,24,64,200,5,0,96,6,0,176,17,2,24,64,192,62],[124,1,130,8,64,200,5,0,96,6,0,176,17,2,24,64,194,62]]},{"symbol":"Y","fingerprints":[[0,246,4,48,65,136,12,128,112,3,0,48,3,0,48,3,0,60],[240,230,4,48,129,136,13,0,112,6,0,32,2,0,32,3,0,252],[248,246,4,48,65,136,13,0,112,2,0,32,2,0,32,3,0,252],[240,246,4,48,129,136,9,0,240,6,0,96,6,0,96,6,0,248],[248,98,4,16,129,136,13,0,96,6,0,96,6,0,96,6,0,248],[240,246,4,48,129,136,9,0,224,6,0,96,6,0,96,6,0,240],[240,246,4,48,129,16,25,0,224,12,0,64,4,0,64,12,1,224],[248,246,4,48,129,8,25,0,224,4,0,64,4,0,64,12,3,240],[240,230,4,32,131,16,25,0,160,12,0,192,12,0,192,12,3,224],[248,134,6,48,129,8,25,0,160,12,0,192,12,0,192,12,3,224],[240,6,4,32,131,16,19,1,160,12,0,128,8,0,128,24,7,224]]},{"symbol":"Z","fingerprints":[[31,204,12,129,128,48,3,0,96,12,1,128,16,19,1,96,55,248],[255,200,12,129,128,48,3,0,96,12,1,128,24,19,1,96,55,254],[255,200,12,1,128,48,6,0,64,12,1,128,48,2,1,96,47,254],[255,232,12,129,128,48,2,0,96,12,1,128,48,2,1,96,47,254],[127,232,12,128,128,24,3,0,96,12,1,128,16,3,1,96,63,254],[127,244,6,128,192,24,3,0,96,12,0,192,24,3,1,96,63,254],[127,244,6,0,192,24,3,0,96,12,1,128,48,6,1,96,63,254],[127,244,6,64,192,24,3,0,96,12,0,128,24,3,1,96,63,254],[63,230,3,64,96,12,1,128,48,12,1,128,48,6,1,192,49,254],[63,244,6,64,192,24,3,0,32,12,1,128,48,6,0,192,33,254]]},{"symbol":"<","fingerprints":[[0,32,14,3,128,112,24,7,0,192,14,0,30,0,120,0,224,3],[0,96,14,3,128,96,56,6,0,192,14,0,60,0,112,1,224,7],[0,96,12,3,128,224,56,14,0,192,15,0,30,0,120,0,224,3],[0,32,14,3,128,224,56,14,0,192,15,0,30,0,120,1,224,7],[0,96,30,3,128,224,112,12,0,224,7,128,15,0,60,0,224,3],[0,48,14,3,128,224,112,14,0,224,7,128,14,0,56,0,224,3],[0,48,15,3,192,240,120,14,0,224,7,0,14,0,56,0,224,7],[0,48,14,3,128,224,112,12,0,240,3,128,7,0,60,0,224,3],[0,48,14,3,129,224,240,12,0,224,3,128,14,0,56,1,192,6],[0,112,30,7,129,192,224,12,0,112,3,128,7,0,56,0,224,2],[0,48,15,7,129,224,224,12,0,112,3,128,7,0,56,0,224,6]]}]} -------------------------------------------------------------------------------- /fontData/12x12/mrz/pmingliu.json: -------------------------------------------------------------------------------- 1 | {"font":"PMingLiU","fingerprint":[{"symbol":"0","fingerprints":[[31,2,12,96,100,6,64,60,3,64,54,3,96,50,2,24,96,120],[59,6,12,64,76,6,192,44,2,192,60,2,64,38,6,48,65,248],[27,130,12,96,100,6,192,44,3,192,52,3,96,38,6,48,65,248],[31,130,12,96,100,2,192,60,3,192,52,3,96,38,6,48,65,216],[31,3,12,96,108,2,192,60,3,192,60,3,192,54,2,48,97,152],[31,2,12,96,100,6,192,44,2,192,44,2,64,102,6,32,193,240],[25,130,4,96,100,2,192,60,3,192,60,2,64,102,6,32,193,248],[29,131,4,96,102,2,64,60,3,192,52,3,64,38,6,32,193,248],[15,131,6,96,36,3,192,60,3,192,60,3,192,36,6,96,195,176],[15,131,4,96,102,2,192,44,3,192,44,2,192,100,6,96,195,184],[15,131,132,32,102,2,64,60,3,192,60,2,192,100,4,33,193,240]]},{"symbol":"1","fingerprints":[[12,8,224,14,0,224,14,0,96,6,0,96,6,0,48,3,0,255],[28,13,192,12,0,192,6,0,96,6,0,96,7,0,48,3,3,255],[12,12,224,6,0,96,6,0,96,6,0,96,3,0,48,3,3,255],[14,15,224,14,0,224,14,0,224,7,0,112,7,0,112,7,3,255],[30,0,240,7,0,112,7,0,112,7,0,112,7,0,112,7,3,254],[14,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,3,248],[7,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,1,240],[7,132,120,3,128,56,3,128,56,7,0,112,7,0,112,7,15,255],[15,128,48,3,0,48,3,0,48,3,0,112,6,0,96,6,15,252],[7,128,56,3,128,48,3,0,48,3,0,48,6,0,96,6,15,248],[3,224,28,1,192,28,1,192,56,3,128,56,3,128,112,7,15,248]]},{"symbol":"2","fingerprints":[[63,4,24,64,200,12,0,192,8,1,0,48,6,0,129,16,35,252],[63,4,24,128,200,4,0,192,24,1,128,32,4,1,129,48,39,254],[31,4,28,64,200,4,0,64,12,1,128,32,4,1,129,48,39,254],[63,4,28,128,200,12,0,192,12,1,128,48,4,0,129,48,39,254],[31,4,28,0,232,6,0,192,12,1,128,48,6,0,128,48,55,254],[15,2,28,64,232,6,0,96,12,1,192,16,6,0,128,48,23,254],[31,128,14,64,96,6,0,96,12,0,192,16,6,0,128,48,23,254],[15,194,14,64,96,2,0,96,12,0,192,16,6,1,128,32,63,254],[31,130,12,64,96,6,0,96,4,1,128,48,4,1,128,32,47,254],[15,195,14,0,48,3,0,32,6,0,192,16,6,0,128,48,31,254],[7,129,14,32,96,2,0,32,6,1,128,48,4,1,128,96,35,252]]},{"symbol":"3","fingerprints":[[63,132,8,128,192,8,3,0,252,0,96,3,0,48,2,0,71,240],[31,134,12,128,64,8,1,0,252,0,96,3,0,48,2,0,71,240],[63,132,12,128,96,4,1,128,252,0,96,3,0,16,2,0,103,240],[31,134,14,128,96,4,1,128,252,0,96,3,0,16,3,0,103,248],[31,132,14,128,96,6,1,128,252,0,112,3,0,16,2,0,199,224],[31,134,12,128,96,4,1,128,120,0,96,3,0,32,6,0,199,224],[31,134,6,0,96,4,1,129,252,0,96,3,0,48,2,0,79,224],[31,198,6,0,96,6,1,128,252,0,96,3,0,48,2,0,79,224],[31,194,6,64,96,6,0,128,252,0,96,3,0,48,2,0,111,240],[15,194,6,64,48,2,0,192,124,0,96,3,0,48,2,0,111,240],[7,193,7,96,48,3,0,64,124,0,224,3,0,48,3,0,111,248]]},{"symbol":"4","fingerprints":[[1,0,48,7,0,144,25,130,24,33,132,24,255,240,24,1,128,12],[1,0,48,5,128,88,25,131,24,33,132,24,255,240,24,1,128,8],[1,128,56,3,128,88,25,129,24,33,132,24,255,240,24,0,128,8],[0,128,24,3,128,88,9,129,24,33,132,24,255,240,8,0,128,8],[0,0,24,3,128,72,8,129,136,32,132,8,255,240,8,0,128,8],[0,128,24,2,128,72,8,129,8,32,132,8,255,240,8,0,128,8],[0,128,24,3,128,104,8,129,8,32,132,8,127,240,8,0,128,24],[0,64,28,2,192,76,8,129,24,97,140,24,255,240,24,1,128,24],[0,64,28,2,192,76,24,195,8,33,132,24,255,240,24,1,128,24],[0,64,28,3,64,76,8,193,12,32,196,24,255,240,24,1,128,24]]},{"symbol":"5","fingerprints":[[0,99,252,112,6,0,255,0,62,0,112,3,0,16,2,0,103,240],[15,225,192,32,6,0,127,0,60,0,96,3,0,32,2,0,71,240],[3,225,240,32,6,0,127,0,60,0,96,3,0,48,2,0,71,240],[0,97,254,16,6,0,127,0,60,0,96,3,0,48,2,0,71,240],[0,17,254,16,3,128,127,128,30,0,96,3,0,48,2,64,71,224],[15,225,128,16,3,128,127,128,28,0,96,6,0,96,6,64,135,224],[15,240,198,16,3,128,127,128,28,0,96,2,0,32,6,0,135,240],[15,224,128,16,3,192,63,128,28,0,96,2,0,32,4,0,199,224],[7,240,128,24,3,192,63,128,28,0,96,2,0,32,6,0,199,224],[7,240,192,24,3,192,63,128,28,0,64,6,0,96,4,0,135,224],[7,240,192,24,3,224,7,128,28,0,64,6,0,96,4,0,135,224]]},{"symbol":"6","fingerprints":[[1,192,64,24,6,0,103,15,28,192,108,2,64,54,2,48,96,248],[3,128,192,24,2,0,99,7,28,192,100,3,64,54,2,48,96,248],[1,192,224,48,7,0,66,15,28,192,108,3,192,52,2,48,97,248],[0,224,224,24,3,0,96,15,156,192,44,3,192,52,2,48,33,252],[1,192,224,56,7,0,103,143,14,192,44,3,64,52,3,48,33,252],[1,224,96,24,3,0,103,7,14,192,60,3,64,54,3,48,96,248],[0,240,224,24,7,0,99,15,14,192,124,3,192,54,3,96,97,248],[1,192,224,56,7,0,111,142,14,192,108,3,192,36,2,96,97,248],[1,224,96,24,3,0,111,142,14,192,108,3,192,52,2,96,97,248],[0,240,112,24,3,0,103,7,14,192,44,3,192,52,2,96,99,220],[1,224,96,24,3,0,111,134,6,192,108,2,64,36,6,32,65,248]]},{"symbol":"7","fingerprints":[[127,244,3,128,32,6,0,96,4,0,192,8,1,128,24,1,128,48],[127,246,2,128,96,6,0,64,12,0,128,8,1,128,48,3,0,48],[127,244,6,128,96,4,0,192,8,0,128,24,3,0,48,3,0,96],[127,246,2,128,96,6,0,64,8,0,128,24,3,0,48,3,0,96],[127,232,6,128,96,4,0,128,8,1,128,16,3,0,48,6,0,192],[127,244,2,128,96,6,0,192,8,0,128,16,3,0,48,6,0,192],[127,244,2,128,96,4,0,192,8,1,0,16,3,0,96,6,0,192],[127,244,2,128,96,6,0,192,8,1,128,48,3,0,96,12,0,192],[127,244,2,128,32,12,0,192,24,1,0,48,6,0,96,12,0,128],[127,228,3,128,96,4,0,128,8,1,0,48,6,0,192,12,1,128],[127,244,2,0,96,12,0,128,16,1,0,32,6,0,192,8,1,128]]},{"symbol":"8","fingerprints":[[31,4,12,192,196,12,113,131,224,25,194,6,96,54,3,48,32,248],[59,132,12,128,78,12,113,129,240,19,198,6,96,54,3,96,33,248],[31,132,4,192,102,4,112,129,240,27,134,6,96,54,3,96,33,248],[63,132,6,128,108,6,113,129,224,31,134,14,192,60,3,96,35,252],[31,132,6,192,110,6,112,129,224,31,134,14,64,60,1,96,35,156],[31,134,6,64,38,6,112,193,224,25,198,6,192,60,1,96,33,248],[25,198,2,96,54,6,56,192,240,25,198,6,64,60,1,96,33,248],[31,196,3,192,22,2,120,192,240,19,198,14,128,56,1,192,35,252],[31,198,6,64,54,6,120,193,224,27,134,14,192,104,2,192,99,248],[31,198,2,96,54,3,56,97,240,27,134,14,192,104,3,192,99,152],[15,194,3,96,22,3,56,97,240,49,198,6,192,124,3,96,97,248]]},{"symbol":"9","fingerprints":[[49,132,12,64,108,3,192,54,3,61,176,2,0,224,28,3,3,128],[51,4,12,192,108,2,192,44,3,57,160,6,0,192,24,6,3,128],[59,4,12,64,108,2,192,52,3,56,160,6,0,192,24,7,3,128],[31,6,12,64,108,3,192,54,3,56,240,2,0,224,28,7,3,128],[31,134,14,64,108,3,192,62,3,112,240,6,0,224,24,7,3,128],[15,6,12,64,108,2,192,60,3,112,224,6,0,192,24,7,3,128],[25,134,6,64,36,3,192,54,3,48,112,6,0,192,24,7,3,128],[25,134,6,64,108,3,192,62,3,112,112,198,0,224,24,7,7,0],[27,134,12,64,108,2,192,52,3,112,96,230,0,192,24,6,7,128],[15,131,6,64,36,3,192,54,3,112,32,246,0,192,24,7,3,128],[15,131,6,96,36,3,64,54,3,112,48,242,0,224,28,7,3,128]]},{"symbol":"A","fingerprints":[[8,0,192,20,1,96,18,0,16,33,131,248,32,192,4,64,110,0],[0,0,192,12,1,32,18,0,16,33,131,248,32,192,4,64,110,8],[0,0,192,14,0,32,18,1,16,1,131,248,32,192,4,64,78,14],[4,0,64,14,0,160,19,1,16,1,131,248,32,192,4,64,78,15],[4,0,96,10,0,160,1,1,16,17,129,248,32,130,4,64,78,15],[0,0,96,6,0,160,1,1,16,17,129,8,32,130,4,64,70,7],[0,0,96,6,0,160,9,0,24,17,129,248,32,194,4,64,78,31],[2,0,32,6,0,144,9,0,24,17,129,248,32,194,4,64,78,14],[2,0,32,5,0,16,9,128,136,16,129,252,32,66,4,64,96,15],[2,0,32,5,0,80,9,0,24,16,129,248,32,66,4,64,66,30],[0,0,48,3,0,88,0,128,136,16,193,252,32,66,4,96,96,15]]},{"symbol":"B","fingerprints":[[255,130,4,32,99,6,16,65,248,16,97,3,16,49,3,24,103,240],[255,131,4,48,97,6,16,65,248,16,97,3,16,49,3,24,103,248],[255,131,14,48,99,6,48,67,248,16,97,3,16,49,3,16,103,248],[255,195,6,48,33,2,16,65,248,16,225,3,16,49,3,16,119,252],[255,195,6,48,51,2,48,99,248,48,227,3,48,51,3,48,55,252],[255,131,6,48,99,2,48,99,240,48,195,7,48,51,3,48,103,252],[255,129,6,16,33,2,16,97,248,16,195,7,48,51,3,48,119,252],[127,129,6,16,49,3,16,97,248,16,225,3,48,51,3,48,111,252],[127,1,6,16,49,3,16,33,252,16,193,3,16,51,3,48,127,252],[127,1,134,16,49,3,16,49,252,16,193,3,16,49,3,48,127,252],[31,128,134,24,49,1,16,49,252,16,193,3,16,49,3,48,63,254]]},{"symbol":"C","fingerprints":[[7,35,6,96,44,2,192,8,0,192,12,0,192,6,0,48,33,248],[15,226,6,96,44,1,192,12,0,192,12,0,192,6,0,48,49,252],[15,161,6,96,52,1,192,12,0,192,12,0,64,6,0,48,32,248],[15,242,3,96,20,1,192,12,0,192,12,0,96,6,0,48,48,252],[15,226,6,96,60,1,192,12,0,192,12,0,192,6,0,48,33,248],[15,211,3,96,28,1,192,12,0,192,12,0,192,6,0,48,48,248],[15,242,3,96,28,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,209,3,96,20,1,192,12,0,192,12,0,192,6,0,48,48,252],[15,195,3,96,28,1,192,12,0,192,12,0,192,6,0,48,17,252],[31,210,3,96,28,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,195,3,96,20,1,192,12,0,192,12,0,192,6,0,48,33,248]]},{"symbol":"D","fingerprints":[[255,6,12,32,98,2,32,50,3,32,51,3,48,33,4,17,135,224],[255,2,12,32,98,3,32,50,3,32,51,3,16,33,6,16,199,224],[255,130,4,32,34,3,32,50,3,32,50,3,32,50,6,32,199,240],[255,2,12,32,98,3,32,50,3,32,50,3,32,34,6,32,199,240],[255,2,12,32,98,3,32,50,3,32,50,3,32,50,2,32,71,248],[126,3,12,48,99,2,32,50,3,32,50,3,32,34,6,32,207,240],[126,1,28,16,97,2,48,51,3,32,50,3,32,50,6,32,207,248],[124,1,24,16,97,3,16,51,3,48,50,3,32,50,2,32,79,248]]},{"symbol":"E","fingerprints":[[31,194,4,32,2,0,32,3,60,16,65,0,16,1,1,16,55,248],[255,226,2,32,3,0,16,65,252,16,65,0,16,1,1,16,55,252],[255,194,4,32,2,0,32,3,248,48,3,0,48,1,1,16,55,254],[255,226,2,32,34,0,48,3,252,48,67,4,16,1,1,16,55,254],[255,227,2,48,3,0,48,67,252,48,195,4,48,3,1,48,55,254],[127,241,3,16,17,0,16,67,252,48,67,4,48,3,1,48,63,254],[127,241,3,16,17,0,16,65,252,16,67,4,48,3,1,48,31,254],[127,129,3,16,17,0,16,1,196,16,67,4,48,3,1,48,49,254],[127,1,131,16,17,0,16,33,134,16,65,4,48,3,0,48,51,254]]},{"symbol":"F","fingerprints":[[31,243,1,48,19,0,48,35,14,16,33,0,24,1,128,24,7,224],[255,243,1,48,3,2,16,33,254,16,33,128,24,1,128,24,7,224],[255,243,1,48,3,0,48,35,254,48,35,2,48,1,0,16,7,224],[255,243,1,48,3,0,48,67,252,48,67,0,48,3,0,48,15,192],[255,243,1,48,3,0,48,35,254,48,99,2,48,3,0,48,15,128],[127,241,1,16,17,0,16,67,252,48,195,4,48,3,0,48,7,128],[127,241,129,24,17,0,16,33,196,16,67,4,48,3,0,48,15,192],[127,129,3,16,17,0,16,65,132,16,193,4,48,3,0,48,15,128],[127,1,131,16,17,0,16,1,4,16,193,4,48,3,0,48,15,128]]},{"symbol":"G","fingerprints":[[14,67,12,64,76,0,192,12,0,192,76,6,192,100,2,32,33,248],[31,194,4,64,76,0,192,12,3,192,108,6,192,38,2,32,33,220],[15,67,4,96,68,0,192,12,0,192,108,2,64,38,2,48,96,248],[15,3,12,64,12,2,192,8,0,128,108,2,192,36,2,48,32,252],[31,194,4,64,76,0,192,12,0,192,108,4,192,68,4,32,65,216],[15,3,4,96,4,0,192,12,0,192,108,4,64,70,4,48,64,248],[29,162,6,96,36,2,192,12,0,192,108,6,64,102,4,48,64,248],[15,163,6,64,44,2,192,8,0,128,108,6,192,100,6,32,65,220],[15,35,6,96,44,2,192,12,0,192,76,4,192,68,4,32,64,248],[29,162,6,96,44,2,192,12,0,192,108,4,192,68,4,32,65,248],[15,163,6,96,36,2,192,12,0,192,108,4,192,68,4,32,65,220]]},{"symbol":"H","fingerprints":[[17,198,12,32,194,12,32,194,60,32,67,4,48,67,4,48,103,128],[17,230,8,96,130,8,32,194,12,32,66,4,32,66,4,48,103,128],[241,198,12,32,194,4,32,67,252,32,66,4,32,66,4,48,103,158],[241,230,4,96,70,4,96,66,252,32,66,4,32,66,4,32,71,159],[240,194,4,32,66,4,32,67,252,32,66,4,32,66,4,32,71,159],[249,242,4,32,66,4,32,67,252,32,66,4,32,66,4,32,79,14],[249,242,4,32,66,4,32,67,252,32,66,4,32,66,4,32,79,159],[121,243,4,32,66,4,32,67,196,32,66,4,32,66,4,32,79,158],[120,131,6,48,67,4,32,67,4,32,66,4,32,66,4,96,193,158],[120,3,6,48,67,4,48,67,4,32,66,12,32,194,12,96,195,158],[120,3,6,48,67,4,48,67,228,48,66,4,32,194,12,112,192,30]]},{"symbol":"I","fingerprints":[[255,192,224,14,0,224,14,0,224,6,0,96,6,0,112,7,3,255],[255,193,192,12,0,192,14,0,96,6,0,96,6,0,112,7,3,255],[255,0,224,6,0,96,6,0,96,6,0,96,7,0,48,3,3,255],[255,128,224,14,0,224,14,0,224,14,0,240,7,0,112,7,3,255],[255,192,240,15,0,240,15,0,112,7,0,112,7,0,112,7,3,255],[255,240,96,6,0,96,6,0,96,6,0,96,6,0,96,6,7,252],[127,240,112,6,0,96,6,0,96,6,0,96,6,0,96,6,3,248],[63,240,48,3,0,48,7,0,112,6,0,96,6,0,96,6,15,254],[127,240,112,6,0,96,6,0,96,14,0,224,14,0,224,14,15,252],[63,240,112,3,0,96,6,0,96,6,0,224,14,0,224,14,15,252],[63,224,48,3,0,48,7,0,96,6,0,96,14,0,192,12,15,240]]},{"symbol":"J","fingerprints":[[255,192,112,7,0,48,3,0,56,3,128,56,3,128,56,227,143,224],[255,240,112,3,0,48,3,128,56,3,128,56,3,192,56,227,143,224],[127,240,120,7,128,120,3,128,56,3,128,56,3,128,56,227,143,224],[63,192,112,3,0,48,3,0,48,3,128,56,3,128,56,195,15,64],[63,192,56,3,128,56,3,128,56,3,128,56,3,128,56,195,7,192],[63,224,112,3,0,48,3,0,48,3,0,48,3,0,48,198,7,128],[31,240,56,3,0,48,3,0,48,3,0,48,3,0,48,198,7,192],[15,240,56,3,0,48,3,0,48,3,0,48,3,0,48,198,15,192],[31,240,56,3,128,56,3,0,48,7,0,112,6,0,96,198,15,128],[7,240,24,1,128,56,3,128,48,3,0,112,7,0,96,198,15,128]]},{"symbol":"K","fingerprints":[[51,134,16,34,2,0,32,2,128,52,2,32,49,3,12,48,231,128],[27,198,16,32,2,0,36,2,128,52,3,32,49,3,24,48,231,144],[243,134,16,34,2,64,32,2,128,60,2,96,33,2,24,32,199,158],[249,226,16,32,2,32,32,2,128,60,2,96,35,2,24,32,199,159],[241,134,16,34,2,64,40,3,128,44,2,96,35,2,24,32,207,159],[249,226,24,32,2,0,40,3,128,60,2,96,35,2,24,32,199,30],[249,242,8,33,2,32,36,2,128,38,2,32,33,2,24,32,207,159],[121,226,8,33,2,32,36,2,128,60,2,32,35,2,24,32,207,158],[124,195,4,48,130,0,36,2,128,38,2,32,33,130,24,32,193,159],[124,1,4,16,131,16,50,2,128,38,2,32,33,2,24,32,195,158],[61,193,4,16,129,32,52,3,192,38,2,32,33,2,24,96,192,31]]},{"symbol":"L","fingerprints":[[248,2,0,32,2,0,48,3,0,16,1,0,16,1,1,16,55,248],[252,2,0,32,3,0,16,1,0,16,1,0,16,1,1,16,55,252],[240,2,0,32,2,0,32,2,0,48,3,0,48,1,1,16,55,254],[240,2,0,32,2,0,48,3,0,48,3,0,16,1,1,16,55,254],[240,3,0,48,3,0,48,3,0,48,3,0,48,3,1,48,63,254],[252,3,0,48,3,0,48,3,0,48,3,0,48,3,1,48,23,254],[124,1,0,16,1,0,16,3,0,48,3,0,48,3,1,48,63,254],[126,1,0,16,1,0,16,1,0,16,3,0,48,3,1,48,63,254],[126,1,0,16,1,0,16,1,0,16,3,0,48,3,1,48,49,254],[126,1,128,16,1,0,16,1,0,16,1,0,48,3,1,48,51,254]]},{"symbol":"M","fingerprints":[[0,238,12,96,71,4,81,69,20,73,68,132,6,96,98,0,119,0],[0,230,12,96,197,4,80,69,20,73,96,134,6,32,98,0,103,0],[0,102,12,96,199,4,81,69,20,72,68,128,78,4,96,68,103,8],[224,102,4,96,197,4,81,69,16,72,4,128,78,4,96,68,39,15],[224,102,0,96,133,8,80,5,144,73,4,128,78,4,64,68,46,15],[224,118,4,96,133,8,80,5,144,73,4,128,78,4,96,68,14,7],[96,118,0,112,133,12,80,69,20,72,68,132,74,68,100,68,78,79],[96,102,6,112,5,8,80,4,16,73,4,132,74,68,100,68,78,78],[96,3,6,16,37,10,80,132,16,73,4,128,74,68,100,68,66,78],[96,3,6,16,33,10,16,100,148,73,68,132,74,68,68,68,64,14],[112,3,7,16,97,10,0,32,134,73,100,132,74,68,68,68,64,14]]},{"symbol":"N","fingerprints":[[0,230,2,48,33,130,12,34,98,33,162,14,32,98,3,32,23,128],[0,246,0,112,3,128,44,34,98,35,34,26,32,226,6,32,39,128],[0,246,2,48,33,130,12,32,98,35,34,26,32,226,6,32,39,128],[224,247,0,80,5,128,44,2,96,35,34,26,32,226,6,32,39,2],[224,99,2,24,32,130,4,32,98,3,32,26,0,160,6,32,111,2],[96,247,0,80,4,128,76,4,96,66,4,16,65,132,12,96,79,0],[96,243,2,56,2,192,44,4,96,67,4,24,65,132,12,96,79,0],[96,243,2,56,34,130,44,34,98,35,2,20,65,196,12,96,79,4],[96,195,2,24,0,128,12,0,96,2,0,48,1,68,12,64,207,4],[112,3,2,56,34,130,36,0,96,2,0,16,1,132,12,64,195,4],[96,3,6,56,2,128,44,2,96,2,64,20,1,196,12,64,194,4]]},{"symbol":"O","fingerprints":[[31,2,12,64,108,2,192,60,3,192,60,3,192,52,2,48,65,248],[15,2,12,64,108,3,192,60,3,192,60,3,64,54,2,48,64,240],[25,130,4,64,44,3,128,56,1,128,28,3,192,52,2,32,64,248],[15,2,12,64,44,3,192,60,3,192,60,3,192,52,2,32,65,248],[15,3,12,96,36,3,192,60,3,192,60,3,64,54,2,48,192,240],[25,130,4,64,44,3,192,56,1,128,28,3,192,52,2,32,65,248],[31,2,4,64,44,3,192,60,3,192,60,3,192,36,6,32,193,240],[15,3,4,96,44,3,192,60,3,192,60,3,192,52,2,32,65,152],[25,131,4,64,44,3,192,60,3,192,60,3,192,52,2,32,192,240],[15,131,4,96,36,3,192,60,1,192,60,3,192,52,2,32,65,248]]},{"symbol":"P","fingerprints":[[255,195,6,48,51,3,48,51,14,30,1,0,24,1,128,24,7,224],[255,195,6,48,51,3,16,49,6,31,1,128,24,1,128,24,7,224],[255,195,6,48,51,3,48,35,12,63,3,0,48,1,0,16,7,224],[255,195,7,48,51,3,48,51,14,63,131,0,16,1,0,16,7,224],[255,131,6,48,51,3,48,35,12,63,131,0,48,3,0,48,7,192],[255,131,6,48,51,3,48,51,6,63,195,0,48,3,0,48,7,128],[127,129,6,16,49,1,16,51,6,63,195,0,48,3,0,48,7,128],[127,1,134,24,49,3,16,49,6,31,131,0,48,3,0,48,15,192],[127,1,134,24,49,131,24,49,6,31,193,0,48,3,0,48,15,192],[126,1,134,24,49,129,24,49,131,31,193,0,48,3,0,48,15,128]]},{"symbol":"Q","fingerprints":[[31,6,12,192,72,6,128,40,2,128,44,6,96,65,24,6,0,30],[31,6,12,64,72,2,128,40,2,128,36,6,96,65,248,6,0,31],[27,6,4,64,76,2,128,40,2,192,36,2,32,65,152,6,0,30],[31,6,4,192,108,2,192,44,2,192,36,6,32,65,240,6,0,31],[31,2,4,64,108,2,192,60,3,192,36,2,32,65,248,6,0,30],[15,2,4,64,44,3,192,60,3,192,52,3,32,64,240,3,0,15],[27,4,4,192,44,3,128,56,3,192,60,2,96,65,240,6,0,28],[31,2,4,64,44,3,192,60,3,192,52,2,32,192,240,7,0,15],[15,2,4,64,44,3,192,60,3,192,52,2,32,64,240,6,0,28],[25,130,2,64,60,3,192,60,3,192,52,2,32,192,224,7,0,14],[15,130,2,64,60,3,192,28,1,192,52,2,32,64,240,6,0,12]]},{"symbol":"R","fingerprints":[[255,6,24,32,130,8,33,130,96,38,2,48,49,129,8,16,71,192],[255,2,24,32,130,8,33,130,48,38,3,48,49,129,8,16,71,192],[254,2,24,32,130,8,32,130,48,38,2,48,33,130,24,32,71,135],[255,2,8,32,194,12,32,131,240,52,2,32,35,2,24,32,199,135],[255,2,24,32,194,12,32,194,112,60,2,96,35,2,24,32,207,134],[255,3,12,48,195,12,48,195,56,54,2,48,33,2,24,48,207,135],[127,3,12,48,195,4,48,195,24,54,3,48,51,2,24,48,207,134],[127,3,12,48,67,6,48,67,28,54,3,48,49,130,12,48,64,135],[126,1,12,16,67,4,48,67,12,54,3,48,49,3,8,48,195,134],[126,1,140,16,97,2,16,99,28,54,3,48,49,131,12,112,64,7]]},{"symbol":"S","fingerprints":[[62,196,12,192,76,0,112,3,224,3,192,6,0,52,3,96,103,248],[30,68,12,64,76,2,112,3,224,3,192,14,0,52,3,96,103,248],[63,196,4,64,38,0,120,1,224,3,192,14,0,52,3,96,103,252],[63,196,14,192,44,2,120,3,224,7,192,14,0,56,3,192,103,252],[63,36,14,64,38,2,120,1,224,7,192,14,0,56,3,192,39,156],[31,38,6,64,38,0,120,1,224,3,192,14,128,60,3,96,100,248],[57,230,2,96,39,0,56,0,240,3,192,14,128,60,3,96,101,252],[31,227,3,96,23,1,56,0,240,3,192,14,128,60,3,64,37,252],[31,162,6,96,39,0,56,1,224,3,192,14,128,108,2,64,101,252],[15,131,7,32,51,1,56,1,224,3,192,6,128,124,2,96,96,248],[15,147,3,32,51,1,60,0,224,3,192,14,128,124,3,96,97,248]]},{"symbol":"T","fingerprints":[[31,252,97,134,24,96,6,0,32,2,0,32,3,0,48,3,0,124],[15,252,65,134,16,96,2,0,32,2,0,32,2,0,32,2,0,124],[255,248,33,130,0,32,2,0,32,2,0,32,2,0,32,3,0,252],[255,248,65,134,16,96,6,0,96,2,0,32,2,0,32,2,0,248],[255,248,33,130,0,32,2,0,32,2,0,32,2,0,32,2,0,248],[255,248,97,134,16,96,6,0,96,6,0,96,6,0,96,6,0,240],[255,248,97,134,16,96,4,0,64,4,0,64,4,0,64,4,3,240],[255,8,99,134,16,97,6,0,96,4,0,64,12,0,192,12,3,224],[254,8,99,6,16,65,4,0,64,4,0,64,4,0,192,12,3,240]]},{"symbol":"U","fingerprints":[[24,226,0,32,2,0,32,34,2,32,34,2,48,33,2,24,0,248],[24,246,4,32,2,0,32,2,0,32,3,2,16,33,0,24,64,248],[8,242,4,32,2,0,32,2,0,32,34,2,32,35,0,16,64,248],[248,242,4,32,66,0,32,2,0,32,2,0,32,3,0,16,64,248],[240,98,0,32,2,0,32,2,0,32,2,0,32,2,0,48,65,248],[248,242,4,32,66,4,32,66,4,32,66,4,32,66,4,16,0,240],[248,242,0,32,2,0,32,2,0,32,2,0,32,66,4,48,1,240],[248,242,4,32,66,4,32,66,4,96,70,4,96,66,4,32,129,240],[248,194,6,32,2,0,32,66,4,32,66,4,32,66,4,32,1,144],[248,2,6,32,66,4,96,70,4,64,68,4,64,70,0,32,129,224],[248,2,7,32,66,4,32,70,4,64,68,4,64,70,0,32,129,240]]},{"symbol":"V","fingerprints":[[24,102,0,32,3,4,24,65,128,8,0,72,6,128,48,3,0,16],[24,114,2,32,1,4,24,64,132,12,0,72,6,128,48,1,0,0],[248,98,0,32,65,4,24,65,128,8,128,72,7,0,112,2,0,0],[248,114,2,48,1,4,24,64,128,8,128,72,7,128,112,3,0,0],[240,34,0,32,65,4,24,1,136,8,128,208,5,0,96,2,0,32],[248,114,2,48,1,4,24,65,136,8,128,200,5,0,112,2,0,32],[248,114,2,32,67,4,16,1,136,24,128,144,13,0,64,6,0,32],[240,242,2,48,3,4,16,65,136,24,128,144,13,0,96,6,0,0],[248,66,2,32,3,4,16,1,136,25,128,144,12,0,96,6,0,64],[248,6,2,32,3,4,48,65,8,24,0,144,14,0,224,4,0,64],[248,2,3,32,2,4,16,1,8,25,1,144,10,0,160,4,0,0]]},{"symbol":"W","fingerprints":[[6,46,66,66,34,34,34,32,16,21,1,92,28,192,140,8,0,0],[0,124,66,70,38,34,34,2,64,21,65,20,16,128,136,8,128,128],[14,52,66,98,34,34,34,2,80,21,65,84,16,192,136,8,128,128],[238,36,66,66,34,32,38,2,68,5,65,20,17,1,136,8,128,136],[238,52,66,98,34,34,34,2,68,5,65,20,17,1,8,8,128,136],[230,52,66,66,34,32,38,66,68,1,65,16,17,1,152,24,128,8],[238,116,66,68,38,96,38,66,36,34,0,16,25,1,152,17,129,0],[238,36,66,70,34,32,38,66,100,32,0,16,25,1,152,17,1,0],[238,4,66,64,36,34,38,2,100,34,67,144,25,129,24,17,1,0],[236,4,67,68,38,34,38,2,36,34,0,128,25,129,24,17,0,16],[224,4,71,68,36,64,102,66,36,42,2,168,32,129,16,1,0,16]]},{"symbol":"X","fingerprints":[[25,199,8,48,0,144,14,0,96,6,0,144,9,129,12,48,231,128],[25,231,8,16,129,144,8,0,96,6,0,144,1,129,12,32,231,16],[248,195,8,16,128,144,12,0,96,6,0,144,1,129,8,32,231,30],[249,227,0,16,129,144,14,0,96,6,0,176,17,129,8,32,207,31],[240,67,4,16,128,144,14,0,96,6,0,176,17,129,8,32,207,31],[248,241,4,16,128,144,12,0,96,6,0,176,1,129,24,32,207,30],[124,241,4,24,0,152,12,0,96,6,0,144,17,128,8,96,207,31],[124,241,4,24,64,200,5,0,96,6,0,144,17,129,8,32,207,30],[124,129,6,24,0,136,5,0,96,7,0,144,17,130,8,96,193,30],[124,1,134,8,64,136,5,0,96,7,0,144,17,128,8,96,195,30],[124,1,134,8,64,200,5,0,96,6,0,176,17,2,24,96,192,62]]},{"symbol":"Y","fingerprints":[[24,226,4,16,65,136,12,128,112,2,0,32,2,0,48,3,0,124],[8,247,0,48,65,136,12,0,112,2,0,32,3,0,48,3,0,124],[248,98,4,16,65,136,13,0,112,2,0,32,2,0,32,2,0,248],[248,242,4,16,1,136,9,0,64,6,0,96,6,0,32,6,0,248],[248,99,4,16,1,136,13,0,96,6,0,32,2,0,32,6,0,248],[248,242,4,16,1,136,9,0,96,6,0,96,6,0,96,6,0,240],[248,114,4,16,65,136,13,0,64,6,0,96,6,0,96,6,0,224],[248,242,4,16,65,136,9,0,224,6,0,64,4,0,64,4,1,240],[248,130,6,48,65,8,9,0,224,4,0,64,4,0,64,4,1,224],[248,2,6,48,65,136,25,0,224,4,0,64,4,0,64,12,1,240],[248,2,7,48,65,8,25,0,224,4,0,192,12,0,192,12,3,224]]},{"symbol":"Z","fingerprints":[[31,236,12,128,136,16,3,0,96,12,0,128,16,3,1,96,55,240],[255,232,12,1,128,16,2,0,64,12,0,128,16,3,1,96,63,252],[255,232,12,128,128,16,3,0,96,12,0,128,16,3,1,96,63,255],[127,244,6,128,192,24,3,0,96,4,0,128,16,3,1,96,31,255],[127,244,6,0,192,8,1,0,32,6,0,192,16,3,1,96,31,255],[127,244,2,64,192,8,1,0,32,4,0,128,16,3,1,96,31,255],[63,246,3,64,96,8,1,0,48,6,0,128,16,3,1,96,31,255],[63,130,3,64,64,8,1,128,32,4,1,128,16,2,1,192,33,254],[63,242,3,64,64,8,1,128,32,4,0,128,16,2,1,192,51,254]]},{"symbol":"<","fingerprints":[[0,96,14,3,128,96,56,6,0,192,14,0,30,0,120,1,224,3],[0,96,28,3,128,224,24,7,0,192,15,0,30,0,120,1,224,7],[0,96,14,3,128,224,56,14,0,192,15,0,14,0,60,0,240,3],[0,32,14,3,128,112,56,14,0,192,15,0,14,0,56,0,224,3],[0,48,14,3,128,224,112,14,0,224,7,128,15,0,60,0,240,3],[0,48,14,3,128,240,56,14,0,224,3,128,15,0,60,0,224,3],[0,112,28,7,1,224,240,12,0,224,3,128,7,0,60,0,224,2],[0,48,14,3,128,224,240,12,0,224,3,128,7,0,56,0,224,2],[0,48,15,3,192,224,112,12,0,224,3,128,14,0,56,0,224,6],[0,112,30,7,3,192,224,12,0,112,3,128,7,0,56,0,224,6],[0,48,14,7,129,224,224,12,0,96,3,128,14,0,56,0,192,6]]}]} -------------------------------------------------------------------------------- /fontData/12x12/mrz/pmingliu_extb.json: -------------------------------------------------------------------------------- 1 | {"font":"PMingLiU-ExtB","fingerprint":[{"symbol":"0","fingerprints":[[31,2,12,96,100,6,64,60,3,64,54,3,96,50,2,24,96,120],[59,6,12,64,76,6,192,44,2,192,60,2,64,38,6,48,65,248],[27,130,12,96,100,6,192,44,3,192,52,3,96,38,6,48,65,248],[31,130,12,96,100,2,192,60,3,192,52,3,96,38,6,48,65,216],[31,3,12,96,108,2,192,60,3,192,60,3,192,54,2,48,97,152],[31,2,12,96,100,6,192,44,2,192,44,2,64,102,6,32,193,240],[25,130,4,96,100,2,192,60,3,192,60,2,64,102,6,32,193,248],[29,131,4,96,102,2,64,60,3,192,52,3,64,38,6,32,193,248],[15,131,6,96,36,3,192,60,3,192,60,3,192,36,6,96,195,176],[15,131,4,96,102,2,192,44,3,192,44,2,192,100,6,96,195,184],[15,131,132,32,102,2,64,60,3,192,60,2,192,100,4,33,193,240]]},{"symbol":"1","fingerprints":[[12,8,224,14,0,224,14,0,96,6,0,96,6,0,48,3,0,255],[28,13,192,12,0,192,6,0,96,6,0,96,7,0,48,3,3,255],[12,12,224,6,0,96,6,0,96,6,0,96,3,0,48,3,3,255],[14,15,224,14,0,224,14,0,224,7,0,112,7,0,112,7,3,255],[30,0,240,7,0,112,7,0,112,7,0,112,7,0,112,7,3,254],[14,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,3,248],[7,0,96,6,0,96,6,0,96,6,0,96,6,0,96,6,1,240],[7,132,120,3,128,56,3,128,56,7,0,112,7,0,112,7,15,255],[15,128,48,3,0,48,3,0,48,3,0,112,6,0,96,6,15,252],[7,128,56,3,128,48,3,0,48,3,0,48,6,0,96,6,15,248],[3,224,28,1,192,28,1,192,56,3,128,56,3,128,112,7,15,248]]},{"symbol":"2","fingerprints":[[63,4,24,64,200,12,0,192,8,1,0,48,6,0,129,16,35,252],[63,4,24,128,200,4,0,192,24,1,128,32,4,1,129,48,39,254],[31,4,28,64,200,4,0,64,12,1,128,32,4,1,129,48,39,254],[63,4,28,128,200,12,0,192,12,1,128,48,4,0,129,48,39,254],[31,4,28,0,232,6,0,192,12,1,128,48,6,0,128,48,55,254],[15,2,28,64,232,6,0,96,12,1,192,16,6,0,128,48,23,254],[31,128,14,64,96,6,0,96,12,0,192,16,6,0,128,48,23,254],[15,194,14,64,96,2,0,96,12,0,192,16,6,1,128,32,63,254],[31,130,12,64,96,6,0,96,4,1,128,48,4,1,128,32,47,254],[15,195,14,0,48,3,0,32,6,0,192,16,6,0,128,48,31,254],[7,129,14,32,96,2,0,32,6,1,128,48,4,1,128,96,35,252]]},{"symbol":"3","fingerprints":[[63,132,8,128,192,8,3,0,252,0,96,3,0,48,2,0,71,240],[31,134,12,128,64,8,1,0,252,0,96,3,0,48,2,0,71,240],[63,132,12,128,96,4,1,128,252,0,96,3,0,16,2,0,103,240],[31,134,14,128,96,4,1,128,252,0,96,3,0,16,3,0,103,248],[31,132,14,128,96,6,1,128,252,0,112,3,0,16,2,0,199,224],[31,134,12,128,96,4,1,128,120,0,96,3,0,32,6,0,199,224],[31,134,6,0,96,4,1,129,252,0,96,3,0,48,2,0,79,224],[31,198,6,0,96,6,1,128,252,0,96,3,0,48,2,0,79,224],[31,194,6,64,96,6,0,128,252,0,96,3,0,48,2,0,111,240],[15,194,6,64,48,2,0,192,124,0,96,3,0,48,2,0,111,240],[7,193,7,96,48,3,0,64,124,0,224,3,0,48,3,0,111,248]]},{"symbol":"4","fingerprints":[[1,0,48,7,0,144,25,130,24,33,132,24,255,240,24,1,128,12],[1,0,48,5,128,88,25,131,24,33,132,24,255,240,24,1,128,8],[1,128,56,3,128,88,25,129,24,33,132,24,255,240,24,0,128,8],[0,128,24,3,128,88,9,129,24,33,132,24,255,240,8,0,128,8],[0,0,24,3,128,72,8,129,136,32,132,8,255,240,8,0,128,8],[0,128,24,2,128,72,8,129,8,32,132,8,255,240,8,0,128,8],[0,128,24,3,128,104,8,129,8,32,132,8,127,240,8,0,128,24],[0,64,28,2,192,76,8,129,24,97,140,24,255,240,24,1,128,24],[0,64,28,2,192,76,24,195,8,33,132,24,255,240,24,1,128,24],[0,64,28,3,64,76,8,193,12,32,196,24,255,240,24,1,128,24]]},{"symbol":"5","fingerprints":[[0,99,252,112,6,0,255,0,62,0,112,3,0,16,2,0,103,240],[15,225,192,32,6,0,127,0,60,0,96,3,0,32,2,0,71,240],[3,225,240,32,6,0,127,0,60,0,96,3,0,48,2,0,71,240],[0,97,254,16,6,0,127,0,60,0,96,3,0,48,2,0,71,240],[0,17,254,16,3,128,127,128,30,0,96,3,0,48,2,64,71,224],[15,225,128,16,3,128,127,128,28,0,96,6,0,96,6,64,135,224],[15,240,198,16,3,128,127,128,28,0,96,2,0,32,6,0,135,240],[15,224,128,16,3,192,63,128,28,0,96,2,0,32,4,0,199,224],[7,240,128,24,3,192,63,128,28,0,96,2,0,32,6,0,199,224],[7,240,192,24,3,192,63,128,28,0,64,6,0,96,4,0,135,224],[7,240,192,24,3,224,7,128,28,0,64,6,0,96,4,0,135,224]]},{"symbol":"6","fingerprints":[[1,192,64,24,6,0,103,15,28,192,108,2,64,54,2,48,96,248],[3,128,192,24,2,0,99,7,28,192,100,3,64,54,2,48,96,248],[1,192,224,48,7,0,66,15,28,192,108,3,192,52,2,48,97,248],[0,224,224,24,3,0,96,15,156,192,44,3,192,52,2,48,33,252],[1,192,224,56,7,0,103,143,14,192,44,3,64,52,3,48,33,252],[1,224,96,24,3,0,103,7,14,192,60,3,64,54,3,48,96,248],[0,240,224,24,7,0,99,15,14,192,124,3,192,54,3,96,97,248],[1,192,224,56,7,0,111,142,14,192,108,3,192,36,2,96,97,248],[1,224,96,24,3,0,111,142,14,192,108,3,192,52,2,96,97,248],[0,240,112,24,3,0,103,7,14,192,44,3,192,52,2,96,99,220],[1,224,96,24,3,0,111,134,6,192,108,2,64,36,6,32,65,248]]},{"symbol":"7","fingerprints":[[127,244,3,128,32,6,0,96,4,0,192,8,1,128,24,1,128,48],[127,246,2,128,96,6,0,64,12,0,128,8,1,128,48,3,0,48],[127,244,6,128,96,4,0,192,8,0,128,24,3,0,48,3,0,96],[127,246,2,128,96,6,0,64,8,0,128,24,3,0,48,3,0,96],[127,232,6,128,96,4,0,128,8,1,128,16,3,0,48,6,0,192],[127,244,2,128,96,6,0,192,8,0,128,16,3,0,48,6,0,192],[127,244,2,128,96,4,0,192,8,1,0,16,3,0,96,6,0,192],[127,244,2,128,96,6,0,192,8,1,128,48,3,0,96,12,0,192],[127,244,2,128,32,12,0,192,24,1,0,48,6,0,96,12,0,128],[127,228,3,128,96,4,0,128,8,1,0,48,6,0,192,12,1,128],[127,244,2,0,96,12,0,128,16,1,0,32,6,0,192,8,1,128]]},{"symbol":"8","fingerprints":[[31,4,12,192,196,12,113,131,224,25,194,6,96,54,3,48,32,248],[59,132,12,128,78,12,113,129,240,19,198,6,96,54,3,96,33,248],[31,132,4,192,102,4,112,129,240,27,134,6,96,54,3,96,33,248],[63,132,6,128,108,6,113,129,224,31,134,14,192,60,3,96,35,252],[31,132,6,192,110,6,112,129,224,31,134,14,64,60,1,96,35,156],[31,134,6,64,38,6,112,193,224,25,198,6,192,60,1,96,33,248],[25,198,2,96,54,6,56,192,240,25,198,6,64,60,1,96,33,248],[31,196,3,192,22,2,120,192,240,19,198,14,128,56,1,192,35,252],[31,198,6,64,54,6,120,193,224,27,134,14,192,104,2,192,99,248],[31,198,2,96,54,3,56,97,240,27,134,14,192,104,3,192,99,152],[15,194,3,96,22,3,56,97,240,49,198,6,192,124,3,96,97,248]]},{"symbol":"9","fingerprints":[[49,132,12,64,108,3,192,54,3,61,176,2,0,224,28,3,3,128],[51,4,12,192,108,2,192,44,3,57,160,6,0,192,24,6,3,128],[59,4,12,64,108,2,192,52,3,56,160,6,0,192,24,7,3,128],[31,6,12,64,108,3,192,54,3,56,240,2,0,224,28,7,3,128],[31,134,14,64,108,3,192,62,3,112,240,6,0,224,24,7,3,128],[15,6,12,64,108,2,192,60,3,112,224,6,0,192,24,7,3,128],[25,134,6,64,36,3,192,54,3,48,112,6,0,192,24,7,3,128],[25,134,6,64,108,3,192,62,3,112,112,198,0,224,24,7,7,0],[27,134,12,64,108,2,192,52,3,112,96,230,0,192,24,6,7,128],[15,131,6,64,36,3,192,54,3,112,32,246,0,192,24,7,3,128],[15,131,6,96,36,3,64,54,3,112,48,242,0,224,28,7,3,128]]},{"symbol":"A","fingerprints":[[8,0,192,20,1,96,18,0,16,33,131,248,32,192,4,64,110,0],[0,0,192,12,1,32,18,0,16,33,131,248,32,192,4,64,110,8],[0,0,192,14,0,32,18,1,16,1,131,248,32,192,4,64,78,14],[4,0,64,14,0,160,19,1,16,1,131,248,32,192,4,64,78,15],[4,0,96,10,0,160,1,1,16,17,129,248,32,130,4,64,78,15],[0,0,96,6,0,160,1,1,16,17,129,8,32,130,4,64,70,7],[0,0,96,6,0,160,9,0,24,17,129,248,32,194,4,64,78,31],[2,0,32,6,0,144,9,0,24,17,129,248,32,194,4,64,78,14],[2,0,32,5,0,16,9,128,136,16,129,252,32,66,4,64,96,15],[2,0,32,5,0,80,9,0,24,16,129,248,32,66,4,64,66,30],[0,0,48,3,0,88,0,128,136,16,193,252,32,66,4,96,96,15]]},{"symbol":"B","fingerprints":[[255,130,4,32,99,6,16,65,248,16,97,3,16,49,3,24,103,240],[255,131,4,48,97,6,16,65,248,16,97,3,16,49,3,24,103,248],[255,131,14,48,99,6,48,67,248,16,97,3,16,49,3,16,103,248],[255,195,6,48,33,2,16,65,248,16,225,3,16,49,3,16,119,252],[255,195,6,48,51,2,48,99,248,48,227,3,48,51,3,48,55,252],[255,131,6,48,99,2,48,99,240,48,195,7,48,51,3,48,103,252],[255,129,6,16,33,2,16,97,248,16,195,7,48,51,3,48,119,252],[127,129,6,16,49,3,16,97,248,16,225,3,48,51,3,48,111,252],[127,1,6,16,49,3,16,33,252,16,193,3,16,51,3,48,127,252],[127,1,134,16,49,3,16,49,252,16,193,3,16,49,3,48,127,252],[31,128,134,24,49,1,16,49,252,16,193,3,16,49,3,48,63,254]]},{"symbol":"C","fingerprints":[[7,35,6,96,44,2,192,8,0,192,12,0,192,6,0,48,33,248],[15,226,6,96,44,1,192,12,0,192,12,0,192,6,0,48,49,252],[15,161,6,96,52,1,192,12,0,192,12,0,64,6,0,48,32,248],[15,242,3,96,20,1,192,12,0,192,12,0,96,6,0,48,48,252],[15,226,6,96,60,1,192,12,0,192,12,0,192,6,0,48,33,248],[15,211,3,96,28,1,192,12,0,192,12,0,192,6,0,48,48,248],[15,242,3,96,28,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,209,3,96,20,1,192,12,0,192,12,0,192,6,0,48,48,252],[15,195,3,96,28,1,192,12,0,192,12,0,192,6,0,48,17,252],[31,210,3,96,28,1,192,12,0,192,12,0,192,6,0,48,32,248],[15,195,3,96,20,1,192,12,0,192,12,0,192,6,0,48,33,248]]},{"symbol":"D","fingerprints":[[255,6,12,32,98,2,32,50,3,32,51,3,48,33,4,17,135,224],[255,2,12,32,98,3,32,50,3,32,51,3,16,33,6,16,199,224],[255,130,4,32,34,3,32,50,3,32,50,3,32,50,6,32,199,240],[255,2,12,32,98,3,32,50,3,32,50,3,32,34,6,32,199,240],[255,2,12,32,98,3,32,50,3,32,50,3,32,50,2,32,71,248],[126,3,12,48,99,2,32,50,3,32,50,3,32,34,6,32,207,240],[126,1,28,16,97,2,48,51,3,32,50,3,32,50,6,32,207,248],[124,1,24,16,97,3,16,51,3,48,50,3,32,50,2,32,79,248]]},{"symbol":"E","fingerprints":[[31,194,4,32,2,0,32,3,60,16,65,0,16,1,1,16,55,248],[255,226,2,32,3,0,16,65,252,16,65,0,16,1,1,16,55,252],[255,194,4,32,2,0,32,3,248,48,3,0,48,1,1,16,55,254],[255,226,2,32,34,0,48,3,252,48,67,4,16,1,1,16,55,254],[255,227,2,48,3,0,48,67,252,48,195,4,48,3,1,48,55,254],[127,241,3,16,17,0,16,67,252,48,67,4,48,3,1,48,63,254],[127,241,3,16,17,0,16,65,252,16,67,4,48,3,1,48,31,254],[127,129,3,16,17,0,16,1,196,16,67,4,48,3,1,48,49,254],[127,1,131,16,17,0,16,33,134,16,65,4,48,3,0,48,51,254]]},{"symbol":"F","fingerprints":[[31,243,1,48,19,0,48,35,14,16,33,0,24,1,128,24,7,224],[255,243,1,48,3,2,16,33,254,16,33,128,24,1,128,24,7,224],[255,243,1,48,3,0,48,35,254,48,35,2,48,1,0,16,7,224],[255,243,1,48,3,0,48,67,252,48,67,0,48,3,0,48,15,192],[255,243,1,48,3,0,48,35,254,48,99,2,48,3,0,48,15,128],[127,241,1,16,17,0,16,67,252,48,195,4,48,3,0,48,7,128],[127,241,129,24,17,0,16,33,196,16,67,4,48,3,0,48,15,192],[127,129,3,16,17,0,16,65,132,16,193,4,48,3,0,48,15,128],[127,1,131,16,17,0,16,1,4,16,193,4,48,3,0,48,15,128]]},{"symbol":"G","fingerprints":[[14,67,12,64,76,0,192,12,0,192,76,6,192,100,2,32,33,248],[31,194,4,64,76,0,192,12,3,192,108,6,192,38,2,32,33,220],[15,67,4,96,68,0,192,12,0,192,108,2,64,38,2,48,96,248],[15,3,12,64,12,2,192,8,0,128,108,2,192,36,2,48,32,252],[31,194,4,64,76,0,192,12,0,192,108,4,192,68,4,32,65,216],[15,3,4,96,4,0,192,12,0,192,108,4,64,70,4,48,64,248],[29,162,6,96,36,2,192,12,0,192,108,6,64,102,4,48,64,248],[15,163,6,64,44,2,192,8,0,128,108,6,192,100,6,32,65,220],[15,35,6,96,44,2,192,12,0,192,76,4,192,68,4,32,64,248],[29,162,6,96,44,2,192,12,0,192,108,4,192,68,4,32,65,248],[15,163,6,96,36,2,192,12,0,192,108,4,192,68,4,32,65,220]]},{"symbol":"H","fingerprints":[[17,198,12,32,194,12,32,194,60,32,67,4,48,67,4,48,103,128],[17,230,8,96,130,8,32,194,12,32,66,4,32,66,4,48,103,128],[241,198,12,32,194,4,32,67,252,32,66,4,32,66,4,48,103,158],[241,230,4,96,70,4,96,66,252,32,66,4,32,66,4,32,71,159],[240,194,4,32,66,4,32,67,252,32,66,4,32,66,4,32,71,159],[249,242,4,32,66,4,32,67,252,32,66,4,32,66,4,32,79,14],[249,242,4,32,66,4,32,67,252,32,66,4,32,66,4,32,79,159],[121,243,4,32,66,4,32,67,196,32,66,4,32,66,4,32,79,158],[120,131,6,48,67,4,32,67,4,32,66,4,32,66,4,96,193,158],[120,3,6,48,67,4,48,67,4,32,66,12,32,194,12,96,195,158],[120,3,6,48,67,4,48,67,228,48,66,4,32,194,12,112,192,30]]},{"symbol":"I","fingerprints":[[255,192,224,14,0,224,14,0,224,6,0,96,6,0,112,7,3,255],[255,193,192,12,0,192,14,0,96,6,0,96,6,0,112,7,3,255],[255,0,224,6,0,96,6,0,96,6,0,96,7,0,48,3,3,255],[255,128,224,14,0,224,14,0,224,14,0,240,7,0,112,7,3,255],[255,192,240,15,0,240,15,0,112,7,0,112,7,0,112,7,3,255],[255,240,96,6,0,96,6,0,96,6,0,96,6,0,96,6,7,252],[127,240,112,6,0,96,6,0,96,6,0,96,6,0,96,6,3,248],[63,240,48,3,0,48,7,0,112,6,0,96,6,0,96,6,15,254],[127,240,112,6,0,96,6,0,96,14,0,224,14,0,224,14,15,252],[63,240,112,3,0,96,6,0,96,6,0,224,14,0,224,14,15,252],[63,224,48,3,0,48,7,0,96,6,0,96,14,0,192,12,15,240]]},{"symbol":"J","fingerprints":[[255,192,112,7,0,48,3,0,56,3,128,56,3,128,56,227,143,224],[255,240,112,3,0,48,3,128,56,3,128,56,3,192,56,227,143,224],[127,240,120,7,128,120,3,128,56,3,128,56,3,128,56,227,143,224],[63,192,112,3,0,48,3,0,48,3,128,56,3,128,56,195,15,64],[63,192,56,3,128,56,3,128,56,3,128,56,3,128,56,195,7,192],[63,224,112,3,0,48,3,0,48,3,0,48,3,0,48,198,7,128],[31,240,56,3,0,48,3,0,48,3,0,48,3,0,48,198,7,192],[15,240,56,3,0,48,3,0,48,3,0,48,3,0,48,198,15,192],[31,240,56,3,128,56,3,0,48,7,0,112,6,0,96,198,15,128],[7,240,24,1,128,56,3,128,48,3,0,112,7,0,96,198,15,128]]},{"symbol":"K","fingerprints":[[51,134,16,34,2,0,32,2,128,52,2,32,49,3,12,48,231,128],[27,198,16,32,2,0,36,2,128,52,3,32,49,3,24,48,231,144],[243,134,16,34,2,64,32,2,128,60,2,96,33,2,24,32,199,158],[249,226,16,32,2,32,32,2,128,60,2,96,35,2,24,32,199,159],[241,134,16,34,2,64,40,3,128,44,2,96,35,2,24,32,207,159],[249,226,24,32,2,0,40,3,128,60,2,96,35,2,24,32,199,30],[249,242,8,33,2,32,36,2,128,38,2,32,33,2,24,32,207,159],[121,226,8,33,2,32,36,2,128,60,2,32,35,2,24,32,207,158],[124,195,4,48,130,0,36,2,128,38,2,32,33,130,24,32,193,159],[124,1,4,16,131,16,50,2,128,38,2,32,33,2,24,32,195,158],[61,193,4,16,129,32,52,3,192,38,2,32,33,2,24,96,192,31]]},{"symbol":"L","fingerprints":[[248,2,0,32,2,0,48,3,0,16,1,0,16,1,1,16,55,248],[252,2,0,32,3,0,16,1,0,16,1,0,16,1,1,16,55,252],[240,2,0,32,2,0,32,2,0,48,3,0,48,1,1,16,55,254],[240,2,0,32,2,0,48,3,0,48,3,0,16,1,1,16,55,254],[240,3,0,48,3,0,48,3,0,48,3,0,48,3,1,48,63,254],[252,3,0,48,3,0,48,3,0,48,3,0,48,3,1,48,23,254],[124,1,0,16,1,0,16,3,0,48,3,0,48,3,1,48,63,254],[126,1,0,16,1,0,16,1,0,16,3,0,48,3,1,48,63,254],[126,1,0,16,1,0,16,1,0,16,3,0,48,3,1,48,49,254],[126,1,128,16,1,0,16,1,0,16,1,0,48,3,1,48,51,254]]},{"symbol":"M","fingerprints":[[0,238,12,96,71,4,81,69,20,73,68,132,6,96,98,0,119,0],[0,230,12,96,197,4,80,69,20,73,96,134,6,32,98,0,103,0],[0,102,12,96,199,4,81,69,20,72,68,128,78,4,96,68,103,8],[224,102,4,96,197,4,81,69,16,72,4,128,78,4,96,68,39,15],[224,102,0,96,133,8,80,5,144,73,4,128,78,4,64,68,46,15],[224,118,4,96,133,8,80,5,144,73,4,128,78,4,96,68,14,7],[96,118,0,112,133,12,80,69,20,72,68,132,74,68,100,68,78,79],[96,102,6,112,5,8,80,4,16,73,4,132,74,68,100,68,78,78],[96,3,6,16,37,10,80,132,16,73,4,128,74,68,100,68,66,78],[96,3,6,16,33,10,16,100,148,73,68,132,74,68,68,68,64,14],[112,3,7,16,97,10,0,32,134,73,100,132,74,68,68,68,64,14]]},{"symbol":"N","fingerprints":[[0,230,2,48,33,130,12,34,98,33,162,14,32,98,3,32,23,128],[0,246,0,112,3,128,44,34,98,35,34,26,32,226,6,32,39,128],[0,246,2,48,33,130,12,32,98,35,34,26,32,226,6,32,39,128],[224,247,0,80,5,128,44,2,96,35,34,26,32,226,6,32,39,2],[224,99,2,24,32,130,4,32,98,3,32,26,0,160,6,32,111,2],[96,247,0,80,4,128,76,4,96,66,4,16,65,132,12,96,79,0],[96,243,2,56,2,192,44,4,96,67,4,24,65,132,12,96,79,0],[96,243,2,56,34,130,44,34,98,35,2,20,65,196,12,96,79,4],[96,195,2,24,0,128,12,0,96,2,0,48,1,68,12,64,207,4],[112,3,2,56,34,130,36,0,96,2,0,16,1,132,12,64,195,4],[96,3,6,56,2,128,44,2,96,2,64,20,1,196,12,64,194,4]]},{"symbol":"O","fingerprints":[[31,2,12,64,108,2,192,60,3,192,60,3,192,52,2,48,65,248],[15,2,12,64,108,3,192,60,3,192,60,3,64,54,2,48,64,240],[25,130,4,64,44,3,128,56,1,128,28,3,192,52,2,32,64,248],[15,2,12,64,44,3,192,60,3,192,60,3,192,52,2,32,65,248],[15,3,12,96,36,3,192,60,3,192,60,3,64,54,2,48,192,240],[25,130,4,64,44,3,192,56,1,128,28,3,192,52,2,32,65,248],[31,2,4,64,44,3,192,60,3,192,60,3,192,36,6,32,193,240],[15,3,4,96,44,3,192,60,3,192,60,3,192,52,2,32,65,152],[25,131,4,64,44,3,192,60,3,192,60,3,192,52,2,32,192,240],[15,131,4,96,36,3,192,60,1,192,60,3,192,52,2,32,65,248]]},{"symbol":"P","fingerprints":[[255,195,6,48,51,3,48,51,14,30,1,0,24,1,128,24,7,224],[255,195,6,48,51,3,16,49,6,31,1,128,24,1,128,24,7,224],[255,195,6,48,51,3,48,35,12,63,3,0,48,1,0,16,7,224],[255,195,7,48,51,3,48,51,14,63,131,0,16,1,0,16,7,224],[255,131,6,48,51,3,48,35,12,63,131,0,48,3,0,48,7,192],[255,131,6,48,51,3,48,51,6,63,195,0,48,3,0,48,7,128],[127,129,6,16,49,1,16,51,6,63,195,0,48,3,0,48,7,128],[127,1,134,24,49,3,16,49,6,31,131,0,48,3,0,48,15,192],[127,1,134,24,49,131,24,49,6,31,193,0,48,3,0,48,15,192],[126,1,134,24,49,129,24,49,131,31,193,0,48,3,0,48,15,128]]},{"symbol":"Q","fingerprints":[[31,6,12,192,72,6,128,40,2,128,44,6,96,65,24,6,0,30],[31,6,12,64,72,2,128,40,2,128,36,6,96,65,248,6,0,31],[27,6,4,64,76,2,128,40,2,192,36,2,32,65,152,6,0,30],[31,6,4,192,108,2,192,44,2,192,36,6,32,65,240,6,0,31],[31,2,4,64,108,2,192,60,3,192,36,2,32,65,248,6,0,30],[15,2,4,64,44,3,192,60,3,192,52,3,32,64,240,3,0,15],[27,4,4,192,44,3,128,56,3,192,60,2,96,65,240,6,0,28],[31,2,4,64,44,3,192,60,3,192,52,2,32,192,240,7,0,15],[15,2,4,64,44,3,192,60,3,192,52,2,32,64,240,6,0,28],[25,130,2,64,60,3,192,60,3,192,52,2,32,192,224,7,0,14],[15,130,2,64,60,3,192,28,1,192,52,2,32,64,240,6,0,12]]},{"symbol":"R","fingerprints":[[255,6,24,32,130,8,33,130,96,38,2,48,49,129,8,16,71,192],[255,2,24,32,130,8,33,130,48,38,3,48,49,129,8,16,71,192],[254,2,24,32,130,8,32,130,48,38,2,48,33,130,24,32,71,135],[255,2,8,32,194,12,32,131,240,52,2,32,35,2,24,32,199,135],[255,2,24,32,194,12,32,194,112,60,2,96,35,2,24,32,207,134],[255,3,12,48,195,12,48,195,56,54,2,48,33,2,24,48,207,135],[127,3,12,48,195,4,48,195,24,54,3,48,51,2,24,48,207,134],[127,3,12,48,67,6,48,67,28,54,3,48,49,130,12,48,64,135],[126,1,12,16,67,4,48,67,12,54,3,48,49,3,8,48,195,134],[126,1,140,16,97,2,16,99,28,54,3,48,49,131,12,112,64,7]]},{"symbol":"S","fingerprints":[[62,196,12,192,76,0,112,3,224,3,192,6,0,52,3,96,103,248],[30,68,12,64,76,2,112,3,224,3,192,14,0,52,3,96,103,248],[63,196,4,64,38,0,120,1,224,3,192,14,0,52,3,96,103,252],[63,196,14,192,44,2,120,3,224,7,192,14,0,56,3,192,103,252],[63,36,14,64,38,2,120,1,224,7,192,14,0,56,3,192,39,156],[31,38,6,64,38,0,120,1,224,3,192,14,128,60,3,96,100,248],[57,230,2,96,39,0,56,0,240,3,192,14,128,60,3,96,101,252],[31,227,3,96,23,1,56,0,240,3,192,14,128,60,3,64,37,252],[31,162,6,96,39,0,56,1,224,3,192,14,128,108,2,64,101,252],[15,131,7,32,51,1,56,1,224,3,192,6,128,124,2,96,96,248],[15,147,3,32,51,1,60,0,224,3,192,14,128,124,3,96,97,248]]},{"symbol":"T","fingerprints":[[31,252,97,134,24,96,6,0,32,2,0,32,3,0,48,3,0,124],[15,252,65,134,16,96,2,0,32,2,0,32,2,0,32,2,0,124],[255,248,33,130,0,32,2,0,32,2,0,32,2,0,32,3,0,252],[255,248,65,134,16,96,6,0,96,2,0,32,2,0,32,2,0,248],[255,248,33,130,0,32,2,0,32,2,0,32,2,0,32,2,0,248],[255,248,97,134,16,96,6,0,96,6,0,96,6,0,96,6,0,240],[255,248,97,134,16,96,4,0,64,4,0,64,4,0,64,4,3,240],[255,8,99,134,16,97,6,0,96,4,0,64,12,0,192,12,3,224],[254,8,99,6,16,65,4,0,64,4,0,64,4,0,192,12,3,240]]},{"symbol":"U","fingerprints":[[24,226,0,32,2,0,32,34,2,32,34,2,48,33,2,24,0,248],[24,246,4,32,2,0,32,2,0,32,3,2,16,33,0,24,64,248],[8,242,4,32,2,0,32,2,0,32,34,2,32,35,0,16,64,248],[248,242,4,32,66,0,32,2,0,32,2,0,32,3,0,16,64,248],[240,98,0,32,2,0,32,2,0,32,2,0,32,2,0,48,65,248],[248,242,4,32,66,4,32,66,4,32,66,4,32,66,4,16,0,240],[248,242,0,32,2,0,32,2,0,32,2,0,32,66,4,48,1,240],[248,242,4,32,66,4,32,66,4,96,70,4,96,66,4,32,129,240],[248,194,6,32,2,0,32,66,4,32,66,4,32,66,4,32,1,144],[248,2,6,32,66,4,96,70,4,64,68,4,64,70,0,32,129,224],[248,2,7,32,66,4,32,70,4,64,68,4,64,70,0,32,129,240]]},{"symbol":"V","fingerprints":[[24,102,0,32,3,4,24,65,128,8,0,72,6,128,48,3,0,16],[24,114,2,32,1,4,24,64,132,12,0,72,6,128,48,1,0,0],[248,98,0,32,65,4,24,65,128,8,128,72,7,0,112,2,0,0],[248,114,2,48,1,4,24,64,128,8,128,72,7,128,112,3,0,0],[240,34,0,32,65,4,24,1,136,8,128,208,5,0,96,2,0,32],[248,114,2,48,1,4,24,65,136,8,128,200,5,0,112,2,0,32],[248,114,2,32,67,4,16,1,136,24,128,144,13,0,64,6,0,32],[240,242,2,48,3,4,16,65,136,24,128,144,13,0,96,6,0,0],[248,66,2,32,3,4,16,1,136,25,128,144,12,0,96,6,0,64],[248,6,2,32,3,4,48,65,8,24,0,144,14,0,224,4,0,64],[248,2,3,32,2,4,16,1,8,25,1,144,10,0,160,4,0,0]]},{"symbol":"W","fingerprints":[[6,46,66,66,34,34,34,32,16,21,1,92,28,192,140,8,0,0],[0,124,66,70,38,34,34,2,64,21,65,20,16,128,136,8,128,128],[14,52,66,98,34,34,34,2,80,21,65,84,16,192,136,8,128,128],[238,36,66,66,34,32,38,2,68,5,65,20,17,1,136,8,128,136],[238,52,66,98,34,34,34,2,68,5,65,20,17,1,8,8,128,136],[230,52,66,66,34,32,38,66,68,1,65,16,17,1,152,24,128,8],[238,116,66,68,38,96,38,66,36,34,0,16,25,1,152,17,129,0],[238,36,66,70,34,32,38,66,100,32,0,16,25,1,152,17,1,0],[238,4,66,64,36,34,38,2,100,34,67,144,25,129,24,17,1,0],[236,4,67,68,38,34,38,2,36,34,0,128,25,129,24,17,0,16],[224,4,71,68,36,64,102,66,36,42,2,168,32,129,16,1,0,16]]},{"symbol":"X","fingerprints":[[25,199,8,48,0,144,14,0,96,6,0,144,9,129,12,48,231,128],[25,231,8,16,129,144,8,0,96,6,0,144,1,129,12,32,231,16],[248,195,8,16,128,144,12,0,96,6,0,144,1,129,8,32,231,30],[249,227,0,16,129,144,14,0,96,6,0,176,17,129,8,32,207,31],[240,67,4,16,128,144,14,0,96,6,0,176,17,129,8,32,207,31],[248,241,4,16,128,144,12,0,96,6,0,176,1,129,24,32,207,30],[124,241,4,24,0,152,12,0,96,6,0,144,17,128,8,96,207,31],[124,241,4,24,64,200,5,0,96,6,0,144,17,129,8,32,207,30],[124,129,6,24,0,136,5,0,96,7,0,144,17,130,8,96,193,30],[124,1,134,8,64,136,5,0,96,7,0,144,17,128,8,96,195,30],[124,1,134,8,64,200,5,0,96,6,0,176,17,2,24,96,192,62]]},{"symbol":"Y","fingerprints":[[24,226,4,16,65,136,12,128,112,2,0,32,2,0,48,3,0,124],[8,247,0,48,65,136,12,0,112,2,0,32,3,0,48,3,0,124],[248,98,4,16,65,136,13,0,112,2,0,32,2,0,32,2,0,248],[248,242,4,16,1,136,9,0,64,6,0,96,6,0,32,6,0,248],[248,99,4,16,1,136,13,0,96,6,0,32,2,0,32,6,0,248],[248,242,4,16,1,136,9,0,96,6,0,96,6,0,96,6,0,240],[248,114,4,16,65,136,13,0,64,6,0,96,6,0,96,6,0,224],[248,242,4,16,65,136,9,0,224,6,0,64,4,0,64,4,1,240],[248,130,6,48,65,8,9,0,224,4,0,64,4,0,64,4,1,224],[248,2,6,48,65,136,25,0,224,4,0,64,4,0,64,12,1,240],[248,2,7,48,65,8,25,0,224,4,0,192,12,0,192,12,3,224]]},{"symbol":"Z","fingerprints":[[31,236,12,128,136,16,3,0,96,12,0,128,16,3,1,96,55,240],[255,232,12,1,128,16,2,0,64,12,0,128,16,3,1,96,63,252],[255,232,12,128,128,16,3,0,96,12,0,128,16,3,1,96,63,255],[127,244,6,128,192,24,3,0,96,4,0,128,16,3,1,96,31,255],[127,244,6,0,192,8,1,0,32,6,0,192,16,3,1,96,31,255],[127,244,2,64,192,8,1,0,32,4,0,128,16,3,1,96,31,255],[63,246,3,64,96,8,1,0,48,6,0,128,16,3,1,96,31,255],[63,130,3,64,64,8,1,128,32,4,1,128,16,2,1,192,33,254],[63,242,3,64,64,8,1,128,32,4,0,128,16,2,1,192,51,254]]},{"symbol":"<","fingerprints":[[0,96,14,3,128,96,56,6,0,192,14,0,30,0,120,1,224,3],[0,96,28,3,128,224,24,7,0,192,15,0,30,0,120,1,224,7],[0,96,14,3,128,224,56,14,0,192,15,0,14,0,60,0,240,3],[0,32,14,3,128,112,56,14,0,192,15,0,14,0,56,0,224,3],[0,48,14,3,128,224,112,14,0,224,7,128,15,0,60,0,240,3],[0,48,14,3,128,240,56,14,0,224,3,128,15,0,60,0,224,3],[0,112,28,7,1,224,240,12,0,224,3,128,7,0,60,0,224,2],[0,48,14,3,128,224,240,12,0,224,3,128,7,0,56,0,224,2],[0,48,15,3,192,224,112,12,0,224,3,128,14,0,56,0,224,6],[0,112,30,7,3,192,224,12,0,112,3,128,7,0,56,0,224,6],[0,48,14,7,129,224,224,12,0,96,3,128,14,0,56,0,192,6]]}]} -------------------------------------------------------------------------------- /models/ESC-v2.svm.descriptors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-js/mrz-detection/f86da8f7ea14960d4fab9de22da5cc02098b678e/models/ESC-v2.svm.descriptors -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mrz-detection", 3 | "version": "0.4.1", 4 | "description": "Detect Machine Readable Zones (MRZ) in images of identity documents", 5 | "main": "src/index.js", 6 | "files": [ 7 | "src", 8 | "fontData/12x12/mrz/ocrb.json", 9 | "models" 10 | ], 11 | "scripts": { 12 | "eslint": "eslint src run", 13 | "eslint-fix": "npm run eslint -- --fix", 14 | "test": "run-s testonly eslint", 15 | "test-travis": "eslint src && jest --coverage && codecov", 16 | "testonly": "jest" 17 | }, 18 | "repository": { 19 | "type": "git", 20 | "url": "git+https://github.com/image-js/mrz-detection.git" 21 | }, 22 | "keywords": [], 23 | "author": "Jefferson Hernández", 24 | "license": "MIT", 25 | "bugs": { 26 | "url": "https://github.com/image-js/mrz-detection/issues" 27 | }, 28 | "homepage": "https://github.com/image-js/mrz-detection#readme", 29 | "jest": { 30 | "testEnvironment": "node" 31 | }, 32 | "devDependencies": { 33 | "babel-eslint": "^8.2.6", 34 | "codecov": "^3.0.4", 35 | "eslint": "^4.18.0", 36 | "eslint-config-cheminfo": "^1.18.0", 37 | "eslint-plugin-import": "^2.13.0", 38 | "eslint-plugin-jest": "^21.18.0", 39 | "jest": "^23.4.1", 40 | "make-promises-safe": "^1.1.0", 41 | "npm-run-all": "^4.1.2", 42 | "papaparse": "^4.5.0", 43 | "rimraf": "^2.6.2", 44 | "tableify": "^1.1.0" 45 | }, 46 | "dependencies": { 47 | "bson": "^2.0.8", 48 | "fs-extra": "^6.0.1", 49 | "hog-features": "^1.0.0", 50 | "image-js": "^0.21.0", 51 | "libsvm-js": "^0.2.1", 52 | "lodash.groupby": "^4.6.0", 53 | "lodash.mapvalues": "^4.6.0", 54 | "lodash.range": "^3.2.0", 55 | "lodash.uniq": "^4.5.0", 56 | "minimist": "^1.2.0", 57 | "mkdirp": "^0.5.1", 58 | "ml-array-mean": "^1.0.1", 59 | "ml-array-median": "^1.0.1", 60 | "ml-distance": "^2.1.1", 61 | "ml-kernel": "^2.3.4", 62 | "ml-matrix": "^5.0.1", 63 | "ml-param-grid": "^1.0.0", 64 | "mrz": "^3.1.0", 65 | "ocr-tools": "^0.2.0", 66 | "radians-degrees": "^1.0.0", 67 | "transformation-matrix": "^1.12.0" 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /run/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | no-console: off 3 | -------------------------------------------------------------------------------- /run/LettersStatistics.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var fs = require('fs'); 4 | 5 | var Papa = require('papaparse'); 6 | 7 | const ALPHABET = 'abcdefghijklmnopqrstuvwxyz0123456789<'.toUpperCase(); 8 | const LINE_LENGTH = 'line length'; 9 | const NOT_EQUAL_LINES = 'not equal lines'; 10 | 11 | class LettersStatistics { 12 | constructor(filepath) { 13 | var file = fs.readFileSync(filepath, 'utf-8'); 14 | var data = Papa.parse(file).data.filter((elem) => elem[0] !== ''); 15 | this.data = {}; 16 | for (var i = 0; i < data.length; ++i) { 17 | var currentMRZ = data[i].slice(1); 18 | var name = data[i][0]; 19 | 20 | if (currentMRZ.length < 2) { 21 | throw new Error(`MRZ for ${name} should have at least 2 lines`); 22 | } 23 | 24 | this.data[name] = currentMRZ; 25 | } 26 | 27 | this.letters = {}; 28 | for (i = 0; i < ALPHABET.length; ++i) { 29 | var letter = ALPHABET[i]; 30 | this.letters[letter] = { 31 | count: 0, 32 | errors: new Set([]) 33 | }; 34 | } 35 | 36 | for (var elem of [LINE_LENGTH, NOT_EQUAL_LINES]) { 37 | this.letters[elem] = { 38 | count: 0, 39 | errors: new Set([]) 40 | }; 41 | } 42 | } 43 | 44 | check(filename, mrz) { 45 | var data = this.data[filename]; 46 | 47 | if (data.length !== mrz.length) { 48 | this.letters[NOT_EQUAL_LINES].count++; 49 | this.letters[NOT_EQUAL_LINES].errors.add(filename); 50 | return; 51 | } 52 | 53 | for (var i = 0; i < mrz.length; ++i) { 54 | var currentLine = mrz[i]; 55 | var ground = data[i]; 56 | 57 | if (currentLine.length !== ground.length) { 58 | this.letters[LINE_LENGTH].count++; 59 | this.letters[LINE_LENGTH].errors.add(filename); 60 | continue; 61 | } 62 | 63 | for (var j = 0; j < currentLine.length; ++j) { 64 | var predictedLetter = currentLine[j]; 65 | 66 | var groundLetter = ground[j]; 67 | if (predictedLetter !== groundLetter) { 68 | this.letters[groundLetter].count++; 69 | this.letters[groundLetter].errors.add( 70 | `${predictedLetter} ${i + 1}:${j + 1} ${filename}` 71 | ); 72 | } 73 | } 74 | } 75 | } 76 | 77 | getResults() { 78 | return this.letters; 79 | } 80 | } 81 | 82 | module.exports = LettersStatistics; 83 | -------------------------------------------------------------------------------- /run/classifyCardFont.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const groupBy = require('lodash.groupby'); 4 | const minimist = require('minimist'); 5 | 6 | const { loadData } = require('../src/svm'); 7 | const { getNumberToLetterHeightRatio } = require('../src/util/rois'); 8 | 9 | const argv = minimist(process.argv.slice(2)); 10 | 11 | async function exec() { 12 | const dir = argv.dir; 13 | if (!dir) throw new Error('--dir option is required'); 14 | 15 | const data = await loadData(dir); 16 | 17 | const cards = groupBy(data, (data) => data.card); 18 | 19 | const features = getFeatures(cards); 20 | 21 | console.log(features); 22 | } 23 | 24 | function getFeatures(cards) { 25 | const features = []; 26 | for (let cardKey in cards) { 27 | const ratio = getNumberToLetterHeightRatio(cards[cardKey]); 28 | console.log(cardKey, ratio); 29 | features.push(ratio); 30 | } 31 | return features; 32 | } 33 | 34 | exec().catch(console.log); 35 | -------------------------------------------------------------------------------- /run/generateCharacters.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | const assert = require('assert'); 5 | 6 | const fs = require('fs-extra'); 7 | const { generateSymbolImage, getLinesFromImage } = require('ocr-tools'); 8 | const minimist = require('minimist'); 9 | 10 | const argv = minimist(process.argv.slice(2), { 11 | string: ['fontSizes', 'dilations', 'blurs'] 12 | }); 13 | const roiOptions = require('../src/roiOptions'); 14 | const { writeImages } = require('../src/util/readWrite'); 15 | 16 | if (!argv.outDir) { 17 | throw new Error('outDir argument is required'); 18 | } 19 | 20 | let outDir = path.resolve(argv.outDir); 21 | let blurs = getParam('blurs', [1, 2, 3]); 22 | let fontSizes = getParam('fontSizes', [78]); 23 | let dilations = getParam('dilations', [0]); 24 | 25 | let maxRotation = 2; 26 | let rotations = 3; 27 | let fonts = getParam('fonts', ['ocrb']); 28 | 29 | async function generate() { 30 | await fs.mkdirp(outDir); 31 | const files = await fs.readdir(outDir); 32 | if (files.length > 0) throw new Error('outDir must be emtpy'); 33 | 34 | let globalCount = 0; 35 | // grid over parameters 36 | for (let blur of blurs) { 37 | for (let kernelSize of dilations) { 38 | for (let fontSize of fontSizes) { 39 | // eslint-disable-next-line no-await-in-loop 40 | for (let font of fonts) { 41 | console.log(` 42 | font: ${font} 43 | fontSize: ${fontSize} 44 | blur: ${blur} 45 | dilation: ${kernelSize} 46 | `); 47 | const imageOptions = { 48 | allowedRotation: maxRotation, 49 | numberPerLine: rotations + ((rotations + 1) % 2), // odd number to ensure 0 angle included 50 | fontSize, 51 | fontName: font 52 | }; 53 | let { image, chars } = await generateSymbolImage(imageOptions); 54 | const { lines } = getLinesFromImage(image, { 55 | roiOptions: Object.assign({}, roiOptions, { 56 | minRatio: undefined, 57 | maxRatio: undefined 58 | }), 59 | fingerprintOptions: { 60 | width: 18, 61 | height: 18 62 | } 63 | }); 64 | checkExpectedRois(lines, imageOptions); 65 | let count = 0; 66 | for (let line of lines) { 67 | // eslint-disable-next-line no-await-in-loop 68 | for (let roi of line.rois) { 69 | let img = image 70 | .crop({ 71 | x: roi.minX, 72 | y: roi.minY, 73 | width: roi.width, 74 | height: roi.height 75 | }) 76 | .grey(); 77 | 78 | let borderSize = (kernelSize - 1) / 2; 79 | borderSize = Math.max(borderSize, Math.round(blur * 1.5)); 80 | let mask; 81 | let roiManager; 82 | img = img.pad({ 83 | size: borderSize, 84 | algorithm: 'set', 85 | color: [255] 86 | }); 87 | if (kernelSize) { 88 | img = img.dilate({ kernel: getKernel(kernelSize) }); 89 | } 90 | 91 | if (blur) { 92 | img = img.gaussianFilter({ radius: blur }); 93 | } 94 | 95 | mask = img.mask({ algorithm: 'otsu' }); 96 | 97 | roiManager = img.getRoiManager(); 98 | roiManager.fromMask(mask); 99 | let rois = roiManager.getRois(); 100 | rois = rois.filter((roi) => roi.minX > 0); 101 | rois.forEach((roi) => { 102 | let mask = roi.getMask(); 103 | let mbr = mask.minimalBoundingRectangle(); 104 | if (mbr[0] === undefined) { 105 | roi.fillingFactor = 1; 106 | return; 107 | } 108 | roi.mbrWidth = getDistance(mbr[0], mbr[1]); 109 | roi.mbrHeight = getDistance(mbr[1], mbr[2]); 110 | roi.mbrSurface = roi.mbrWidth * roi.mbrHeight; 111 | roi.fillingFactor = roi.surface / roi.mbrSurface; 112 | }); 113 | 114 | rois.sort( 115 | (roiA, roiB) => roiA.fillingFactor - roiB.fillingFactor 116 | ); 117 | img = img.crop({ 118 | x: rois[0].minX, 119 | y: rois[0].minY, 120 | width: rois[0].width, 121 | height: rois[0].height 122 | }); 123 | // img = img.scale({ width: 18, height: 18 }); 124 | 125 | await writeImages({ 126 | filePath: path.join( 127 | outDir, 128 | `${chars[count]}-${globalCount}.png` 129 | ), 130 | image: img /* roiManager.paint() */, 131 | generated: true, 132 | card: `generated-blur${blur}-font${font}-fontSize${fontSize}-dilation${kernelSize}`, 133 | char: chars[count], 134 | code: chars[count].charCodeAt(0) 135 | }); 136 | globalCount++; 137 | count++; 138 | } 139 | } 140 | } 141 | } 142 | } 143 | } 144 | } 145 | 146 | function checkExpectedRois(lines, options) { 147 | assert.equal(lines.length, 37, 'correct number of lines'); 148 | const nbRois = lines.reduce((prev, current) => prev + current.rois.length, 0); 149 | assert.equal(nbRois, options.numberPerLine * 37); 150 | } 151 | 152 | generate(); 153 | 154 | function getKernel(size) { 155 | const array = new Array(size); 156 | for (let i = 0; i < size; i++) { 157 | array[i] = new Array(size); 158 | for (let j = 0; j < size; j++) { 159 | array[i][j] = 1; 160 | } 161 | } 162 | return array; 163 | } 164 | 165 | function getDistance(p1, p2) { 166 | return Math.sqrt((p1[0] - p2[0]) ** 2 + (p1[1] - p2[1]) ** 2); 167 | } 168 | 169 | function getParam(name, def) { 170 | const val = argv[name]; 171 | if (!val) return def; 172 | return val.split(',').map((v) => +v); 173 | } 174 | -------------------------------------------------------------------------------- /run/getMrz.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | 5 | const fs = require('fs-extra'); 6 | const minimist = require('minimist'); 7 | const { Image } = require('image-js'); 8 | 9 | const { getMrz } = require('..'); 10 | 11 | const argv = minimist(process.argv.slice(2)); 12 | 13 | exec().catch(console.error); 14 | 15 | async function exec() { 16 | if (argv.file) { 17 | const pathname = path.resolve(argv.file); 18 | console.time(pathname); 19 | const result = {}; 20 | try { 21 | await getMrz(await Image.load(pathname), { 22 | debug: true, 23 | out: result 24 | }); 25 | } catch (e) { 26 | console.error(e); 27 | } 28 | console.timeEnd(pathname); 29 | await saveImages( 30 | pathname, 31 | result, 32 | path.join(path.dirname(pathname), 'out') 33 | ); 34 | await saveSingleReport( 35 | pathname, 36 | result, 37 | path.join(path.dirname(pathname), 'out') 38 | ); 39 | } else if (argv.dir) { 40 | const dirname = path.resolve(argv.dir); 41 | const files = (await fs.readdir(dirname)).filter((f) => { 42 | f = f.toLowerCase(); 43 | return f.endsWith('jpg') || f.endsWith('png') || f.endsWith('jpeg'); 44 | }); 45 | const out = path.join(dirname, 'out'); 46 | const toSave = []; 47 | await fs.emptyDir(out); 48 | for (let file of files) { 49 | console.log(`process ${file}`); 50 | const imagePath = path.join(dirname, file); 51 | console.time(imagePath); 52 | const result = {}; 53 | try { 54 | getMrz(await Image.load(imagePath), { 55 | debug: true, 56 | out: result 57 | }); 58 | } catch (e) { 59 | console.error(e); 60 | } 61 | console.timeEnd(imagePath); 62 | await saveImages(imagePath, result, out); 63 | toSave.push([imagePath, result]); 64 | } 65 | await saveReports(toSave, out); 66 | } 67 | } 68 | 69 | async function saveImages(imagePath, images, out) { 70 | const filename = path.basename(imagePath); 71 | const ext = path.extname(filename); 72 | const pngName = filename.replace(ext, '.png'); 73 | for (const prefix in images) { 74 | const kind = path.join(out, prefix); 75 | await fs.ensureDir(kind); 76 | await images[prefix].save(path.join(kind, pngName)); 77 | } 78 | } 79 | 80 | const head = ` 81 |
82 | 83 | 84 | 85 | `; 86 | 87 | const sparklines = ` 88 | 99 | `; 100 | 101 | async function saveSingleReport(imagePath, images, out) { 102 | const prefixes = Object.keys(images); 103 | const report = ` 104 | 105 | 106 | ${head} 107 |Name | 111 | ${getHeaders(prefixes)} 112 |
---|