├── .github └── workflows │ ├── build.yml │ └── update_wiki.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── resources └── images │ ├── behead │ ├── 00.png │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ └── 20.png │ ├── bite │ ├── 00.png │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ └── 15.png │ ├── can_can_need │ └── 0.jpg │ ├── do │ ├── 0.png │ ├── 1.png │ └── 2.png │ ├── empathy │ └── 0.png │ ├── fleshlight │ ├── 00.png │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 30.png │ ├── 31.png │ ├── 32.png │ └── 33.png │ ├── jerk_off │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── 7.png │ ├── lash │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── 8.png │ ├── little_do │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png │ └── shoot │ ├── 00.png │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ └── 12.png └── src ├── lib.rs ├── memes.rs ├── memes ├── behead.rs ├── bite.rs ├── can_can_need.rs ├── do_.rs ├── empathy.rs ├── fleshlight.rs ├── jerk_off.rs ├── lash.rs ├── little_do.rs └── shoot.rs ├── options.rs └── registry.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/update_wiki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/.github/workflows/update_wiki.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/README.md -------------------------------------------------------------------------------- /resources/images/behead/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/00.png -------------------------------------------------------------------------------- /resources/images/behead/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/01.png -------------------------------------------------------------------------------- /resources/images/behead/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/02.png -------------------------------------------------------------------------------- /resources/images/behead/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/03.png -------------------------------------------------------------------------------- /resources/images/behead/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/04.png -------------------------------------------------------------------------------- /resources/images/behead/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/05.png -------------------------------------------------------------------------------- /resources/images/behead/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/06.png -------------------------------------------------------------------------------- /resources/images/behead/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/07.png -------------------------------------------------------------------------------- /resources/images/behead/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/08.png -------------------------------------------------------------------------------- /resources/images/behead/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/09.png -------------------------------------------------------------------------------- /resources/images/behead/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/10.png -------------------------------------------------------------------------------- /resources/images/behead/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/11.png -------------------------------------------------------------------------------- /resources/images/behead/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/12.png -------------------------------------------------------------------------------- /resources/images/behead/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/13.png -------------------------------------------------------------------------------- /resources/images/behead/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/14.png -------------------------------------------------------------------------------- /resources/images/behead/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/15.png -------------------------------------------------------------------------------- /resources/images/behead/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/16.png -------------------------------------------------------------------------------- /resources/images/behead/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/17.png -------------------------------------------------------------------------------- /resources/images/behead/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/18.png -------------------------------------------------------------------------------- /resources/images/behead/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/19.png -------------------------------------------------------------------------------- /resources/images/behead/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/behead/20.png -------------------------------------------------------------------------------- /resources/images/bite/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/00.png -------------------------------------------------------------------------------- /resources/images/bite/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/01.png -------------------------------------------------------------------------------- /resources/images/bite/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/02.png -------------------------------------------------------------------------------- /resources/images/bite/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/03.png -------------------------------------------------------------------------------- /resources/images/bite/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/04.png -------------------------------------------------------------------------------- /resources/images/bite/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/05.png -------------------------------------------------------------------------------- /resources/images/bite/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/06.png -------------------------------------------------------------------------------- /resources/images/bite/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/07.png -------------------------------------------------------------------------------- /resources/images/bite/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/08.png -------------------------------------------------------------------------------- /resources/images/bite/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/09.png -------------------------------------------------------------------------------- /resources/images/bite/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/10.png -------------------------------------------------------------------------------- /resources/images/bite/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/11.png -------------------------------------------------------------------------------- /resources/images/bite/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/12.png -------------------------------------------------------------------------------- /resources/images/bite/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/13.png -------------------------------------------------------------------------------- /resources/images/bite/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/14.png -------------------------------------------------------------------------------- /resources/images/bite/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/bite/15.png -------------------------------------------------------------------------------- /resources/images/can_can_need/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/can_can_need/0.jpg -------------------------------------------------------------------------------- /resources/images/do/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/do/0.png -------------------------------------------------------------------------------- /resources/images/do/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/do/1.png -------------------------------------------------------------------------------- /resources/images/do/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/do/2.png -------------------------------------------------------------------------------- /resources/images/empathy/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/empathy/0.png -------------------------------------------------------------------------------- /resources/images/fleshlight/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/00.png -------------------------------------------------------------------------------- /resources/images/fleshlight/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/01.png -------------------------------------------------------------------------------- /resources/images/fleshlight/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/02.png -------------------------------------------------------------------------------- /resources/images/fleshlight/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/03.png -------------------------------------------------------------------------------- /resources/images/fleshlight/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/04.png -------------------------------------------------------------------------------- /resources/images/fleshlight/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/05.png -------------------------------------------------------------------------------- /resources/images/fleshlight/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/06.png -------------------------------------------------------------------------------- /resources/images/fleshlight/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/07.png -------------------------------------------------------------------------------- /resources/images/fleshlight/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/08.png -------------------------------------------------------------------------------- /resources/images/fleshlight/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/09.png -------------------------------------------------------------------------------- /resources/images/fleshlight/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/10.png -------------------------------------------------------------------------------- /resources/images/fleshlight/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/11.png -------------------------------------------------------------------------------- /resources/images/fleshlight/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/12.png -------------------------------------------------------------------------------- /resources/images/fleshlight/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/13.png -------------------------------------------------------------------------------- /resources/images/fleshlight/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/14.png -------------------------------------------------------------------------------- /resources/images/fleshlight/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/15.png -------------------------------------------------------------------------------- /resources/images/fleshlight/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/16.png -------------------------------------------------------------------------------- /resources/images/fleshlight/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/17.png -------------------------------------------------------------------------------- /resources/images/fleshlight/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/18.png -------------------------------------------------------------------------------- /resources/images/fleshlight/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/19.png -------------------------------------------------------------------------------- /resources/images/fleshlight/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/20.png -------------------------------------------------------------------------------- /resources/images/fleshlight/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/21.png -------------------------------------------------------------------------------- /resources/images/fleshlight/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/22.png -------------------------------------------------------------------------------- /resources/images/fleshlight/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/23.png -------------------------------------------------------------------------------- /resources/images/fleshlight/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/24.png -------------------------------------------------------------------------------- /resources/images/fleshlight/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/25.png -------------------------------------------------------------------------------- /resources/images/fleshlight/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/26.png -------------------------------------------------------------------------------- /resources/images/fleshlight/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/27.png -------------------------------------------------------------------------------- /resources/images/fleshlight/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/28.png -------------------------------------------------------------------------------- /resources/images/fleshlight/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/29.png -------------------------------------------------------------------------------- /resources/images/fleshlight/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/30.png -------------------------------------------------------------------------------- /resources/images/fleshlight/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/31.png -------------------------------------------------------------------------------- /resources/images/fleshlight/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/32.png -------------------------------------------------------------------------------- /resources/images/fleshlight/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/fleshlight/33.png -------------------------------------------------------------------------------- /resources/images/jerk_off/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/jerk_off/0.png -------------------------------------------------------------------------------- /resources/images/jerk_off/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/jerk_off/1.png -------------------------------------------------------------------------------- /resources/images/jerk_off/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/jerk_off/2.png -------------------------------------------------------------------------------- /resources/images/jerk_off/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/jerk_off/3.png -------------------------------------------------------------------------------- /resources/images/jerk_off/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/jerk_off/4.png -------------------------------------------------------------------------------- /resources/images/jerk_off/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/jerk_off/5.png -------------------------------------------------------------------------------- /resources/images/jerk_off/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/jerk_off/6.png -------------------------------------------------------------------------------- /resources/images/jerk_off/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/jerk_off/7.png -------------------------------------------------------------------------------- /resources/images/lash/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/0.png -------------------------------------------------------------------------------- /resources/images/lash/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/1.png -------------------------------------------------------------------------------- /resources/images/lash/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/2.png -------------------------------------------------------------------------------- /resources/images/lash/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/3.png -------------------------------------------------------------------------------- /resources/images/lash/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/4.png -------------------------------------------------------------------------------- /resources/images/lash/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/5.png -------------------------------------------------------------------------------- /resources/images/lash/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/6.png -------------------------------------------------------------------------------- /resources/images/lash/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/7.png -------------------------------------------------------------------------------- /resources/images/lash/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/lash/8.png -------------------------------------------------------------------------------- /resources/images/little_do/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/little_do/0.png -------------------------------------------------------------------------------- /resources/images/little_do/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/little_do/1.png -------------------------------------------------------------------------------- /resources/images/little_do/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/little_do/2.png -------------------------------------------------------------------------------- /resources/images/little_do/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/little_do/3.png -------------------------------------------------------------------------------- /resources/images/little_do/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/little_do/4.png -------------------------------------------------------------------------------- /resources/images/little_do/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/little_do/5.png -------------------------------------------------------------------------------- /resources/images/little_do/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/little_do/6.png -------------------------------------------------------------------------------- /resources/images/shoot/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/00.png -------------------------------------------------------------------------------- /resources/images/shoot/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/01.png -------------------------------------------------------------------------------- /resources/images/shoot/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/02.png -------------------------------------------------------------------------------- /resources/images/shoot/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/03.png -------------------------------------------------------------------------------- /resources/images/shoot/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/04.png -------------------------------------------------------------------------------- /resources/images/shoot/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/05.png -------------------------------------------------------------------------------- /resources/images/shoot/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/06.png -------------------------------------------------------------------------------- /resources/images/shoot/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/07.png -------------------------------------------------------------------------------- /resources/images/shoot/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/08.png -------------------------------------------------------------------------------- /resources/images/shoot/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/09.png -------------------------------------------------------------------------------- /resources/images/shoot/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/10.png -------------------------------------------------------------------------------- /resources/images/shoot/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/11.png -------------------------------------------------------------------------------- /resources/images/shoot/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/resources/images/shoot/12.png -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/memes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes.rs -------------------------------------------------------------------------------- /src/memes/behead.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/behead.rs -------------------------------------------------------------------------------- /src/memes/bite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/bite.rs -------------------------------------------------------------------------------- /src/memes/can_can_need.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/can_can_need.rs -------------------------------------------------------------------------------- /src/memes/do_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/do_.rs -------------------------------------------------------------------------------- /src/memes/empathy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/empathy.rs -------------------------------------------------------------------------------- /src/memes/fleshlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/fleshlight.rs -------------------------------------------------------------------------------- /src/memes/jerk_off.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/jerk_off.rs -------------------------------------------------------------------------------- /src/memes/lash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/lash.rs -------------------------------------------------------------------------------- /src/memes/little_do.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/little_do.rs -------------------------------------------------------------------------------- /src/memes/shoot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/memes/shoot.rs -------------------------------------------------------------------------------- /src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/options.rs -------------------------------------------------------------------------------- /src/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MemeCrafters/meme-generator-contrib-rs/HEAD/src/registry.rs --------------------------------------------------------------------------------