gitextract_77ap7ofj/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── README.md ├── configs/ │ ├── bmp-1.ls │ ├── bmp-2.ls │ ├── bmp-3.ls │ └── index.ls ├── data/ │ ├── codepoints/ │ │ ├── 0000.yml │ │ ├── 0800.yml │ │ ├── 0A00.yml │ │ ├── 0C00.yml │ │ ├── 0E00.yml │ │ ├── 1000.yml │ │ ├── 1800.yml │ │ ├── 1A00.yml │ │ ├── 1C00.yml │ │ ├── 1E00.yml │ │ ├── 2000.yml │ │ ├── 2200.yml │ │ ├── 2C00.yml │ │ ├── 2E00.yml │ │ ├── 3000.yml │ │ ├── 3200.yml │ │ ├── 3400.yml │ │ ├── A000.yml │ │ ├── A500.yml │ │ ├── A800.yml │ │ ├── AA00.yml │ │ └── AC00.yml │ └── layouts/ │ ├── bmp-1.ai │ ├── bmp-2.ai │ └── bmp-3.ai ├── index.ls ├── lib/ │ ├── codepoint-builder.ls │ ├── compose-poster.ls │ ├── convert-to-pdf.ls │ ├── convert-to-png.ls │ ├── download-fonts.ls │ ├── generate-svg.ls │ ├── load-codepoints.ls │ └── util.ls ├── package.json └── test/ ├── codepoint-builder.ls ├── expect.ls └── index.ls