gitextract_jflphtww/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── build.sh ├── carver.go ├── carver_benchmark_test.go ├── carver_test.go ├── cmd/ │ └── caire/ │ └── main.go ├── data/ │ └── facefinder ├── doc.go ├── draw.go ├── exec.go ├── go.mod ├── go.sum ├── gui.go ├── image.go ├── image_test.go ├── imop/ │ ├── blend.go │ ├── blend_test.go │ ├── comp.go │ └── comp_test.go ├── preview.go ├── processor.go ├── processor_test.go ├── snapcraft.yaml ├── sobel.go ├── stackblur.go └── utils/ ├── download.go ├── download_test.go ├── format.go ├── spinner.go └── utils.go