├── .gitignore ├── LICENSE ├── README.md ├── cal.py ├── conf.ini ├── draw.py ├── font └── regular.ttf ├── getdata.py ├── img └── base.jpg ├── main.py ├── output └── exam.jpg ├── pack.sh └── strbuild.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/README.md -------------------------------------------------------------------------------- /cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/cal.py -------------------------------------------------------------------------------- /conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/conf.ini -------------------------------------------------------------------------------- /draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/draw.py -------------------------------------------------------------------------------- /font/regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/font/regular.ttf -------------------------------------------------------------------------------- /getdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/getdata.py -------------------------------------------------------------------------------- /img/base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/img/base.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/main.py -------------------------------------------------------------------------------- /output/exam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/output/exam.jpg -------------------------------------------------------------------------------- /pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/pack.sh -------------------------------------------------------------------------------- /strbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swfeiyu/NUC-AFLtool/HEAD/strbuild.py --------------------------------------------------------------------------------