├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── kubernetes ├── base │ ├── ingress.yaml │ └── kustomization.yaml ├── frontend │ ├── deployment.yaml │ ├── kustomization.yaml │ └── svc.yaml └── server │ ├── deployment.yaml │ ├── kustomization.yaml │ └── svc.yaml ├── package.json ├── postcss.config.js ├── rollup.config.js ├── server ├── .data │ └── postgres │ │ └── .gitkeep ├── Dockerfile ├── Dockerfile.dev ├── Dockerfile.libvips ├── Monkey Server Guide.pdf ├── assets │ └── illustrations │ │ ├── accessories │ │ ├── glasses │ │ │ ├── eye-patch-[w-0.5].svg │ │ │ ├── glasses-nerd-cyan-[w-1].svg │ │ │ ├── glasses-nerd-green-[w-1].svg │ │ │ ├── glasses-nerd-pink-[w-1].svg │ │ │ ├── monocle-[w-0.5].svg │ │ │ ├── sunglasses-aviator-cyan-[removes-eyes][w-1].svg │ │ │ ├── sunglasses-aviator-green-[removes-eyes][w-1].svg │ │ │ ├── sunglasses-aviator-yellow-[removes-eyes][w-1].svg │ │ │ └── sunglasses-thug-[removes-eyes][w-1].svg │ │ ├── hats │ │ │ ├── bandana-[w-1].svg │ │ │ ├── beanie-[w-1].svg │ │ │ ├── beanie-banano-[w-1].svg │ │ │ ├── beanie-hippie-[unique][w-0.125].svg │ │ │ ├── beanie-long-[colorable-random][w-1].svg │ │ │ ├── beanie-long-banano-[colorable-random][w-1].svg │ │ │ ├── cap-[w-0.8].svg │ │ │ ├── cap-backwards-[w-1].svg │ │ │ ├── cap-banano-[w-0.8].svg │ │ │ ├── cap-bebe-[w-0.8].svg │ │ │ ├── cap-carlos-[w-0.8].svg │ │ │ ├── cap-hng-[w-0.8].svg │ │ │ ├── cap-hng-plus-[unique][w-0.125].svg │ │ │ ├── cap-kappa-[w-0.8].svg │ │ │ ├── cap-pepe-[w-0.8].svg │ │ │ ├── cap-rick-[w-0.8].svg │ │ │ ├── cap-smug-[w-0.8].svg │ │ │ ├── cap-smug-green-[w-0.8].svg │ │ │ ├── cap-thonk-[w-0.8].svg │ │ │ ├── crown-[unique][w-0.225].svg │ │ │ ├── fedora-[w-1].svg │ │ │ ├── fedora-long-[w-1].svg │ │ │ ├── hat-cowboy-[w-1].svg │ │ │ ├── hat-jester-[unique][w-0.125].svg │ │ │ └── helmet-viking-[w-1].svg │ │ ├── misc │ │ │ ├── banana-hands-[above-hands][removes-hands][w-1].svg │ │ │ ├── banana-right-hand-[above-hands][removes-hand-right][w-1].svg │ │ │ ├── bowtie-[above-hands][w-1].svg │ │ │ ├── camera-[above-shirts-pants][w-1].svg │ │ │ ├── club-[above-hands][removes-hands][w-1].svg │ │ │ ├── flamethrower-[removes-hands][above-hands][w-0.04].svg │ │ │ ├── gloves-white-[above-hands][removes-hands][w-1].svg │ │ │ ├── guitar-[above-hands][removes-left-hand][w-1].svg │ │ │ ├── microphone-[above-hands][removes-hand-right][w-1].svg │ │ │ ├── necklace-boss-[above-shirts-pants][w-0.75].svg │ │ │ ├── tie-cyan-[above-shirts-pants][w-1].svg │ │ │ ├── tie-pink-[above-shirts-pants][w-1].svg │ │ │ └── whisky-right-[above-hands][removes-hand-right][w-0.5].svg │ │ ├── mouths │ │ │ ├── cigar-[w-0.5].svg │ │ │ ├── confused-[w-1].svg │ │ │ ├── joint-[unique][w-0.06].svg │ │ │ ├── meh-[w-1].svg │ │ │ ├── pipe-[w-0.5].svg │ │ │ ├── smile-big-teeth-[w-1].svg │ │ │ ├── smile-normal-[w-1].svg │ │ │ └── smile-tongue-[w-0.5].svg │ │ ├── shirt-pants │ │ │ ├── overalls-blue[w-1].svg │ │ │ ├── overalls-red[w-1].svg │ │ │ ├── pants-business-blue-[removes-legs][w-1].svg │ │ │ ├── pants-flower-[removes-legs][w-1].svg │ │ │ ├── tshirt-long-stripes-[colorable-random][w-1].svg │ │ │ └── tshirt-short-white[w-1].svg │ │ ├── shoes │ │ │ ├── sneakers-blue-[removes-feet][w-1].svg │ │ │ ├── sneakers-green-[removes-feet][w-1].svg │ │ │ ├── sneakers-red-[removes-feet][w-1].svg │ │ │ ├── sneakers-swagger-[removes-feet][w-1].svg │ │ │ ├── socks-h-stripe-[removes-feet][w-1].svg │ │ │ └── socks-v-stripe-[colorable-random][removes-feet][w-1].svg │ │ └── tails │ │ │ └── tail-sock-[colorable-random][w-1].svg │ │ ├── body-parts │ │ ├── arms-[fur-color][shadow-fur].svg │ │ ├── body-upper-[fur-color][shadow-fur].svg │ │ ├── body.svg │ │ ├── ears.svg │ │ ├── eyes-[eye-color][shadow-iris].svg │ │ ├── face-[fur-color][shadow-fur].svg │ │ ├── foot-left.svg │ │ ├── foot-right.svg │ │ ├── hand-left.svg │ │ ├── hand-right.svg │ │ ├── legs-[fur-color][shadow-fur].svg │ │ ├── nose.svg │ │ └── tail-[fur-color][shadow-fur-dark].svg │ │ └── vanities │ │ ├── ban_19bantanopcajd8ptfg9aedn8osgrzyrbupte5j4p1je69e5diz8qtc4dopf-[bg-fff4bf].svg │ │ ├── ban_1arbhot3nd1ocih46ocoa7xsaqn6u8qrfqaswe3ygg8xmzno5of1zq5sp3r6-[bg-dfeaff].svg │ │ ├── ban_1arbwrp3rk8us7m7nwox9xbqky59dmeez7k4k7hpettfcay357qx6615xx7w-[bg-dfeaff].svg │ │ ├── ban_1basehot9in87y99rojans5ibqj41rz7kxcn85rph3gmg79ek816az9da85y-[bg-dadfff].svg │ │ ├── ban_1basewrp5iqna8qzcyeiof6ifaz196o8je5pre846qu117djx15nqqfkswfd-[bg-dadfff].svg │ │ ├── ban_1bboss18y784j9rbwgt95uwqamjpsi9oips5syohsjk37rn5ud7ndbjq61ft-[bg-fff6a6].svg │ │ ├── ban_1benisborxg1xdyiszp561t8dtu193cmirdue3gqanwubj8gm5ak87c5j8e7-[bg-fff4db].svg │ │ ├── ban_1bigturd8xaryj3q3q9h9xz9t69xyzqc7oketrx6dww3hbugjso7bk539q1r-[bg-ffeabf].svg │ │ ├── ban_1ce1ery6hqwyqqyh15m4atcoaywd8rycyapjjooqeg7gi149kmatjbb3wiwx-[bg-e3ffe0].svg │ │ ├── ban_1creepi89mp48wkyg5fktgap9j6165d8yz6g1fbe5pneinz3by9o54fuq63m-[bg-ccfffa].svg │ │ ├── ban_1defi11tou1nbhyp8y4onwsiq5jcur19xe54mcmew1xonnz6e1d1sw74yefu-[bg-fff8ca].svg │ │ ├── ban_1duckjfam7tcartyzk4eeouu17h7t8bpcjyyh4o31ih3qd7scz9w5a4u6qd4-[bg-cbffd2].svg │ │ ├── ban_1eska1qx1cd1x7tkbo4wmuofpsq69dekk7h5n6yo967kjq43nhhobrhno95x-[bg-ffe5cc].svg │ │ ├── ban_1fomofudww7niykjtpzqgu9zpojtxx1f4pedjguk1gsrft44ere77sh1ky8g-[bg-f5ffbf].svg │ │ ├── ban_1h11mrypctfiexeo3swn1odo78uazf8oudrbqhcpzqyxjpu7eksrad8t1shg-[bg-b2deff].svg │ │ ├── ban_1ka1ium4pfue3uxtntqsrib8mumxgazsjf58gidh1xeo5te3whsq8z476goo-[bg-fffabf].svg │ │ ├── ban_1kirby19w89i35yenyesnz7zqdyguzdb3e819dxrhdegdnsaphzeug39ntxj-[bg-ffdbf4].svg │ │ ├── ban_1mak1hc3fnopkh7xbt7z4b3d8qn4bhysaddwg8uw6a7rb9x5od6gxzkzo6gp-[bg-f3d9ff].svg │ │ ├── ban_1monkeyt1x77a1rp9bwtthajb8odapbmnzpyt8357ac8a1bcron34i3r9y66-[bg-ffbecc].svg │ │ ├── ban_1po1yco1cnoyymrm3xnf7h9iaway1bg5kqxq3cfb3za98gq73tfmjm4mp11n-[bg-f0e8ff].svg │ │ ├── ban_1purian887obzya9jjrsz18eiu45dzzgr9q1mh1zg7rw1kybgx5nmr843afb-[bg-ffb2ba].svg │ │ ├── ban_1waifusa1tnk3eo7dstc4z9tt7puurh5jyettyj59mis5m86ofiwywahcccm-[bg-fff4bf].svg │ │ ├── ban_1wbanktxc5mtnydsjq6doy81wsnn7fw1z7yzw4zzieb6dfkihjtbwzgrxt9i-[bg-fff4db].svg │ │ ├── ban_1wirginxksoeggr1u51a797tytmicokwnxxsosmd1q3mapuad4j6hdzeh617-[bg-d8ffbf].svg │ │ ├── ban_1yekta1xn94qdnbmmj1tqg76zk3apcfd31pjmuy6d879e3mr469a4o4sdhd4-[bg-ffa6a6].svg │ │ ├── ban_31dhbgirwzd3ce7naor6o94woefws9hpxu4q8uxm1bz98w89zqpfks5rk3ad-[bg-beffbe].svg │ │ ├── ban_3arbc1d3usn8not6ddbegexdi7qdabp4d1g3emcgtirign1c6akjc55bexko-[bg-dfeaff].svg │ │ ├── ban_3basec1d9e9zg7kuy9guufirigbk14mizpmzza5593ct3n74piws1ng97ar7-[bg-dadfff].svg │ │ ├── ban_3bsco1dfwmwpnnjjqyqb9f7f83gtxsrmgdzdjdz58u6dhga5ajsgtsdz1g8h-[bg-fff4db].svg │ │ ├── ban_3eksah6pqhinb5dfbwnt5i1noqwqahndrgd1g1ggna7uxba1wrhd8yn9ch8z-[bg-ccdcff].svg │ │ ├── ban_3ethco1d34b1mmerybpw6pdgi3zt6p7ieb4aqcmbfn8i7af5w43d8ag8s7hk-[bg-daffe0].svg │ │ ├── ban_3ethhot3otmrcizy8kxkxbfmb3qjswatr4pnixexpdy6u18e1mjgxteynmay-[bg-daffe0].svg │ │ ├── ban_3ethwrap7kzguicmh3birwszzyg5giw93o7zkrqj7sxbcw8z83ihd3k4hps9-[bg-daffe0].svg │ │ ├── ban_3ftmco1d3sogpnq9j8gsa7t95xugtzj116hkudxj1spkw86476pzicua61ek-[bg-dae7ff].svg │ │ ├── ban_3ftmhot3nssj1ae3gt4o4ksa6p1wamub3jaet4odjt67wp9wy9ahn83umw81-[bg-dae7ff].svg │ │ ├── ban_3ftmwrap5qeirm53wndr6811tbnnraho587awkxn1xgrwfgry97cb4bouiwh-[bg-dae7ff].svg │ │ ├── ban_3fudcakefr9jyw7b4kfafrgaekmd37ez7q4pmzuo1fd7wo9jo8gsha7z7e1c-[bg-b2ecff].svg │ │ ├── ban_3hxnx1gegfqmmhcnd13qipjxgo7mbw1bwprxq7334sr5b4hie5u1wj845n6m-[bg-ffc7b2].svg │ │ ├── ban_3po1yhotz68w6mogy6budr7g8y7gw5wjqhbgc5gt549emeoof9npf315xmn4-[bg-f0e8ff].svg │ │ └── ban_3po1ywrp9m967z9xpd9cwwfdg1gteuk4n7dcyoatkgpjgne5yx459wyoyxzj-[bg-f0e8ff].svg ├── color │ ├── color.go │ └── color_test.go ├── controller │ ├── monkey.go │ └── stats.go ├── database │ ├── postgres.go │ └── redis.go ├── db │ └── redis.go ├── docker-compose.yaml ├── go.mod ├── go.sum ├── image │ ├── accessories.go │ ├── assemble.go │ ├── asset.go │ ├── color_picker.go │ ├── color_picker_test.go │ └── raster.go ├── main.go ├── models │ └── stats.go ├── scripts │ ├── reset_db.sh │ └── setup_test_db.sh ├── spc │ └── constants.go ├── stress.sh └── utils │ ├── banano.go │ ├── banano_test.go │ ├── hash.go │ ├── hash_test.go │ ├── misc.go │ ├── misc_test.go │ └── net.go ├── src ├── client.js ├── components │ ├── ClickOutside.svelte │ ├── Footer.svelte │ ├── GoogleAnalytics.svelte │ ├── LazyImage.svelte │ ├── Meta.svelte │ ├── MonkeyGenerator.svelte │ ├── Navbar.svelte │ ├── NavbarItems.svelte │ ├── SocialIcon.svelte │ ├── StatsCard.svelte │ ├── Tailwindcss.svelte │ └── sections │ │ ├── Available.svelte │ │ ├── Hero.svelte │ │ ├── How.svelte │ │ ├── Integrate.svelte │ │ ├── OpenSource.svelte │ │ ├── Rigged.svelte │ │ └── Stats.svelte ├── css │ └── tailwind.css ├── plugins │ ├── address.js │ ├── nacl.js │ └── transitions.js ├── routes │ ├── _error.svelte │ ├── _layout.svelte │ ├── documentation.svelte │ └── index.svelte ├── server.js ├── service-worker.js └── template.html ├── static ├── favicon.png ├── fonts │ ├── now-alt-bold.ttf │ ├── now-alt-bold.woff │ ├── now-alt-bold.woff2 │ ├── now-alt-medium.ttf │ ├── now-alt-medium.woff │ ├── now-alt-medium.woff2 │ ├── now-alt-regular.ttf │ ├── now-alt-regular.woff │ ├── now-alt-regular.woff2 │ ├── overpass-mono-bold.ttf │ ├── overpass-mono-bold.woff │ ├── overpass-mono-bold.woff2 │ ├── overpass-mono-regular.ttf │ ├── overpass-mono-regular.woff │ └── overpass-mono-regular.woff2 ├── global.css ├── images │ ├── icons │ │ ├── icon-arrow-down.svg │ │ ├── icon-arrow-right.svg │ │ ├── icon-discord.svg │ │ ├── icon-facebook.svg │ │ ├── icon-github.svg │ │ ├── icon-instagram.svg │ │ ├── icon-medium.svg │ │ ├── icon-menu.svg │ │ ├── icon-reddit.svg │ │ ├── icon-telegram.svg │ │ └── icon-twitter.svg │ ├── illustrations-background │ │ ├── bg-banano.svg │ │ ├── bg-code-left.svg │ │ ├── bg-footer-mobile.svg │ │ ├── bg-footer.svg │ │ ├── bg-glasses-right.svg │ │ ├── bg-hat-left.svg │ │ ├── bg-heart-right.svg │ │ ├── bg-hero-mobile.svg │ │ ├── bg-hero.svg │ │ ├── bg-rigged-left.svg │ │ └── bg-rigged-right.svg │ ├── illustrations-foreground │ │ ├── arthas-placeholder.svg │ │ ├── arthas.svg │ │ ├── call-heisenberg-png-mobile-placeholder.svg │ │ ├── call-heisenberg-png-mobile.svg │ │ ├── call-heisenberg-png-placeholder.svg │ │ ├── call-heisenberg-png.svg │ │ ├── call-heisenberg-svg-placeholder.svg │ │ ├── call-heisenberg-svg.svg │ │ ├── creeper-1-placeholder.svg │ │ ├── creeper-1.svg │ │ ├── creeper-2-placeholder.svg │ │ ├── creeper-2.svg │ │ ├── error.svg │ │ ├── formula-mobile-placeholder.svg │ │ ├── formula-mobile.svg │ │ ├── formula-placeholder.svg │ │ ├── formula.svg │ │ ├── heisenberg-placeholder.svg │ │ ├── heisenberg.svg │ │ ├── hero-bg-mobile.svg │ │ ├── hero-bg-tablet.svg │ │ ├── hero-bg.svg │ │ ├── hero-mobile.svg │ │ ├── hero-tablet.svg │ │ ├── hero.svg │ │ ├── integrate-mobile-placeholder.svg │ │ ├── integrate-mobile.svg │ │ ├── integrate-placeholder.svg │ │ ├── integrate.svg │ │ ├── ironman-placeholder.svg │ │ ├── ironman.svg │ │ ├── kalium-placeholder.svg │ │ ├── kalium.svg │ │ ├── open-source-mobile-placeholder.svg │ │ ├── open-source-mobile.svg │ │ ├── open-source-placeholder.svg │ │ ├── open-source.svg │ │ ├── vader-placeholder.svg │ │ └── vader.svg │ └── logos │ │ ├── logo-appditto-horizontal.svg │ │ └── logo-monkey-horizontal.svg ├── manifest.json ├── mark-192.png ├── mark-512.png ├── mark-ios-192.png ├── mark-maskable-192.png ├── monkeyText.json └── previews │ ├── preview-documentation.png │ ├── preview-error.png │ └── preview.png └── tailwind.config.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:3000", 3 | "video": false 4 | } -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/cypress/integration/spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /kubernetes/base/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/kubernetes/base/ingress.yaml -------------------------------------------------------------------------------- /kubernetes/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/kubernetes/base/kustomization.yaml -------------------------------------------------------------------------------- /kubernetes/frontend/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/kubernetes/frontend/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/frontend/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/kubernetes/frontend/kustomization.yaml -------------------------------------------------------------------------------- /kubernetes/frontend/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/kubernetes/frontend/svc.yaml -------------------------------------------------------------------------------- /kubernetes/server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/kubernetes/server/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/server/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/kubernetes/server/kustomization.yaml -------------------------------------------------------------------------------- /kubernetes/server/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/kubernetes/server/svc.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/postcss.config.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/rollup.config.js -------------------------------------------------------------------------------- /server/.data/postgres/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/Dockerfile.dev -------------------------------------------------------------------------------- /server/Dockerfile.libvips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/Dockerfile.libvips -------------------------------------------------------------------------------- /server/Monkey Server Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/Monkey Server Guide.pdf -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/eye-patch-[w-0.5].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/eye-patch-[w-0.5].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/glasses-nerd-cyan-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/glasses-nerd-cyan-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/glasses-nerd-green-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/glasses-nerd-green-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/glasses-nerd-pink-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/glasses-nerd-pink-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/monocle-[w-0.5].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/monocle-[w-0.5].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/sunglasses-aviator-cyan-[removes-eyes][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/sunglasses-aviator-cyan-[removes-eyes][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/sunglasses-aviator-green-[removes-eyes][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/sunglasses-aviator-green-[removes-eyes][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/sunglasses-aviator-yellow-[removes-eyes][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/sunglasses-aviator-yellow-[removes-eyes][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/glasses/sunglasses-thug-[removes-eyes][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/glasses/sunglasses-thug-[removes-eyes][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/bandana-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/bandana-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/beanie-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/beanie-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/beanie-banano-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/beanie-banano-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/beanie-hippie-[unique][w-0.125].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/beanie-hippie-[unique][w-0.125].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/beanie-long-[colorable-random][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/beanie-long-[colorable-random][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/beanie-long-banano-[colorable-random][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/beanie-long-banano-[colorable-random][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-backwards-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-backwards-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-banano-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-banano-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-bebe-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-bebe-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-carlos-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-carlos-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-hng-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-hng-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-hng-plus-[unique][w-0.125].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-hng-plus-[unique][w-0.125].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-kappa-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-kappa-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-pepe-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-pepe-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-rick-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-rick-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-smug-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-smug-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-smug-green-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-smug-green-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/cap-thonk-[w-0.8].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/cap-thonk-[w-0.8].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/crown-[unique][w-0.225].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/crown-[unique][w-0.225].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/fedora-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/fedora-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/fedora-long-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/fedora-long-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/hat-cowboy-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/hat-cowboy-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/hat-jester-[unique][w-0.125].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/hat-jester-[unique][w-0.125].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/hats/helmet-viking-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/hats/helmet-viking-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/banana-hands-[above-hands][removes-hands][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/banana-hands-[above-hands][removes-hands][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/banana-right-hand-[above-hands][removes-hand-right][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/banana-right-hand-[above-hands][removes-hand-right][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/bowtie-[above-hands][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/bowtie-[above-hands][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/camera-[above-shirts-pants][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/camera-[above-shirts-pants][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/club-[above-hands][removes-hands][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/club-[above-hands][removes-hands][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/flamethrower-[removes-hands][above-hands][w-0.04].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/flamethrower-[removes-hands][above-hands][w-0.04].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/gloves-white-[above-hands][removes-hands][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/gloves-white-[above-hands][removes-hands][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/guitar-[above-hands][removes-left-hand][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/guitar-[above-hands][removes-left-hand][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/microphone-[above-hands][removes-hand-right][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/microphone-[above-hands][removes-hand-right][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/necklace-boss-[above-shirts-pants][w-0.75].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/necklace-boss-[above-shirts-pants][w-0.75].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/tie-cyan-[above-shirts-pants][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/tie-cyan-[above-shirts-pants][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/tie-pink-[above-shirts-pants][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/tie-pink-[above-shirts-pants][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/misc/whisky-right-[above-hands][removes-hand-right][w-0.5].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/misc/whisky-right-[above-hands][removes-hand-right][w-0.5].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/mouths/cigar-[w-0.5].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/mouths/cigar-[w-0.5].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/mouths/confused-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/mouths/confused-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/mouths/joint-[unique][w-0.06].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/mouths/joint-[unique][w-0.06].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/mouths/meh-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/mouths/meh-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/mouths/pipe-[w-0.5].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/mouths/pipe-[w-0.5].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/mouths/smile-big-teeth-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/mouths/smile-big-teeth-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/mouths/smile-normal-[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/mouths/smile-normal-[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/mouths/smile-tongue-[w-0.5].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/mouths/smile-tongue-[w-0.5].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shirt-pants/overalls-blue[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shirt-pants/overalls-blue[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shirt-pants/overalls-red[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shirt-pants/overalls-red[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shirt-pants/pants-business-blue-[removes-legs][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shirt-pants/pants-business-blue-[removes-legs][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shirt-pants/pants-flower-[removes-legs][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shirt-pants/pants-flower-[removes-legs][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shirt-pants/tshirt-long-stripes-[colorable-random][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shirt-pants/tshirt-long-stripes-[colorable-random][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shirt-pants/tshirt-short-white[w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shirt-pants/tshirt-short-white[w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shoes/sneakers-blue-[removes-feet][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shoes/sneakers-blue-[removes-feet][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shoes/sneakers-green-[removes-feet][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shoes/sneakers-green-[removes-feet][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shoes/sneakers-red-[removes-feet][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shoes/sneakers-red-[removes-feet][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shoes/sneakers-swagger-[removes-feet][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shoes/sneakers-swagger-[removes-feet][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shoes/socks-h-stripe-[removes-feet][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shoes/socks-h-stripe-[removes-feet][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/shoes/socks-v-stripe-[colorable-random][removes-feet][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/shoes/socks-v-stripe-[colorable-random][removes-feet][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/accessories/tails/tail-sock-[colorable-random][w-1].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/accessories/tails/tail-sock-[colorable-random][w-1].svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/arms-[fur-color][shadow-fur].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/arms-[fur-color][shadow-fur].svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/body-upper-[fur-color][shadow-fur].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/body-upper-[fur-color][shadow-fur].svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/body.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/body.svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/ears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/ears.svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/eyes-[eye-color][shadow-iris].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/eyes-[eye-color][shadow-iris].svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/face-[fur-color][shadow-fur].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/face-[fur-color][shadow-fur].svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/foot-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/foot-left.svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/foot-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/foot-right.svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/hand-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/hand-left.svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/hand-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/hand-right.svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/legs-[fur-color][shadow-fur].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/legs-[fur-color][shadow-fur].svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/nose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/nose.svg -------------------------------------------------------------------------------- /server/assets/illustrations/body-parts/tail-[fur-color][shadow-fur-dark].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/body-parts/tail-[fur-color][shadow-fur-dark].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_19bantanopcajd8ptfg9aedn8osgrzyrbupte5j4p1je69e5diz8qtc4dopf-[bg-fff4bf].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_19bantanopcajd8ptfg9aedn8osgrzyrbupte5j4p1je69e5diz8qtc4dopf-[bg-fff4bf].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1arbhot3nd1ocih46ocoa7xsaqn6u8qrfqaswe3ygg8xmzno5of1zq5sp3r6-[bg-dfeaff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1arbhot3nd1ocih46ocoa7xsaqn6u8qrfqaswe3ygg8xmzno5of1zq5sp3r6-[bg-dfeaff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1arbwrp3rk8us7m7nwox9xbqky59dmeez7k4k7hpettfcay357qx6615xx7w-[bg-dfeaff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1arbwrp3rk8us7m7nwox9xbqky59dmeez7k4k7hpettfcay357qx6615xx7w-[bg-dfeaff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1basehot9in87y99rojans5ibqj41rz7kxcn85rph3gmg79ek816az9da85y-[bg-dadfff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1basehot9in87y99rojans5ibqj41rz7kxcn85rph3gmg79ek816az9da85y-[bg-dadfff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1basewrp5iqna8qzcyeiof6ifaz196o8je5pre846qu117djx15nqqfkswfd-[bg-dadfff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1basewrp5iqna8qzcyeiof6ifaz196o8je5pre846qu117djx15nqqfkswfd-[bg-dadfff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1bboss18y784j9rbwgt95uwqamjpsi9oips5syohsjk37rn5ud7ndbjq61ft-[bg-fff6a6].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1bboss18y784j9rbwgt95uwqamjpsi9oips5syohsjk37rn5ud7ndbjq61ft-[bg-fff6a6].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1benisborxg1xdyiszp561t8dtu193cmirdue3gqanwubj8gm5ak87c5j8e7-[bg-fff4db].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1benisborxg1xdyiszp561t8dtu193cmirdue3gqanwubj8gm5ak87c5j8e7-[bg-fff4db].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1bigturd8xaryj3q3q9h9xz9t69xyzqc7oketrx6dww3hbugjso7bk539q1r-[bg-ffeabf].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1bigturd8xaryj3q3q9h9xz9t69xyzqc7oketrx6dww3hbugjso7bk539q1r-[bg-ffeabf].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1ce1ery6hqwyqqyh15m4atcoaywd8rycyapjjooqeg7gi149kmatjbb3wiwx-[bg-e3ffe0].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1ce1ery6hqwyqqyh15m4atcoaywd8rycyapjjooqeg7gi149kmatjbb3wiwx-[bg-e3ffe0].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1creepi89mp48wkyg5fktgap9j6165d8yz6g1fbe5pneinz3by9o54fuq63m-[bg-ccfffa].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1creepi89mp48wkyg5fktgap9j6165d8yz6g1fbe5pneinz3by9o54fuq63m-[bg-ccfffa].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1defi11tou1nbhyp8y4onwsiq5jcur19xe54mcmew1xonnz6e1d1sw74yefu-[bg-fff8ca].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1defi11tou1nbhyp8y4onwsiq5jcur19xe54mcmew1xonnz6e1d1sw74yefu-[bg-fff8ca].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1duckjfam7tcartyzk4eeouu17h7t8bpcjyyh4o31ih3qd7scz9w5a4u6qd4-[bg-cbffd2].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1duckjfam7tcartyzk4eeouu17h7t8bpcjyyh4o31ih3qd7scz9w5a4u6qd4-[bg-cbffd2].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1eska1qx1cd1x7tkbo4wmuofpsq69dekk7h5n6yo967kjq43nhhobrhno95x-[bg-ffe5cc].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1eska1qx1cd1x7tkbo4wmuofpsq69dekk7h5n6yo967kjq43nhhobrhno95x-[bg-ffe5cc].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1fomofudww7niykjtpzqgu9zpojtxx1f4pedjguk1gsrft44ere77sh1ky8g-[bg-f5ffbf].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1fomofudww7niykjtpzqgu9zpojtxx1f4pedjguk1gsrft44ere77sh1ky8g-[bg-f5ffbf].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1h11mrypctfiexeo3swn1odo78uazf8oudrbqhcpzqyxjpu7eksrad8t1shg-[bg-b2deff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1h11mrypctfiexeo3swn1odo78uazf8oudrbqhcpzqyxjpu7eksrad8t1shg-[bg-b2deff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1ka1ium4pfue3uxtntqsrib8mumxgazsjf58gidh1xeo5te3whsq8z476goo-[bg-fffabf].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1ka1ium4pfue3uxtntqsrib8mumxgazsjf58gidh1xeo5te3whsq8z476goo-[bg-fffabf].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1kirby19w89i35yenyesnz7zqdyguzdb3e819dxrhdegdnsaphzeug39ntxj-[bg-ffdbf4].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1kirby19w89i35yenyesnz7zqdyguzdb3e819dxrhdegdnsaphzeug39ntxj-[bg-ffdbf4].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1mak1hc3fnopkh7xbt7z4b3d8qn4bhysaddwg8uw6a7rb9x5od6gxzkzo6gp-[bg-f3d9ff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1mak1hc3fnopkh7xbt7z4b3d8qn4bhysaddwg8uw6a7rb9x5od6gxzkzo6gp-[bg-f3d9ff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1monkeyt1x77a1rp9bwtthajb8odapbmnzpyt8357ac8a1bcron34i3r9y66-[bg-ffbecc].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1monkeyt1x77a1rp9bwtthajb8odapbmnzpyt8357ac8a1bcron34i3r9y66-[bg-ffbecc].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1po1yco1cnoyymrm3xnf7h9iaway1bg5kqxq3cfb3za98gq73tfmjm4mp11n-[bg-f0e8ff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1po1yco1cnoyymrm3xnf7h9iaway1bg5kqxq3cfb3za98gq73tfmjm4mp11n-[bg-f0e8ff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1purian887obzya9jjrsz18eiu45dzzgr9q1mh1zg7rw1kybgx5nmr843afb-[bg-ffb2ba].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1purian887obzya9jjrsz18eiu45dzzgr9q1mh1zg7rw1kybgx5nmr843afb-[bg-ffb2ba].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1waifusa1tnk3eo7dstc4z9tt7puurh5jyettyj59mis5m86ofiwywahcccm-[bg-fff4bf].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1waifusa1tnk3eo7dstc4z9tt7puurh5jyettyj59mis5m86ofiwywahcccm-[bg-fff4bf].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1wbanktxc5mtnydsjq6doy81wsnn7fw1z7yzw4zzieb6dfkihjtbwzgrxt9i-[bg-fff4db].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1wbanktxc5mtnydsjq6doy81wsnn7fw1z7yzw4zzieb6dfkihjtbwzgrxt9i-[bg-fff4db].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1wirginxksoeggr1u51a797tytmicokwnxxsosmd1q3mapuad4j6hdzeh617-[bg-d8ffbf].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1wirginxksoeggr1u51a797tytmicokwnxxsosmd1q3mapuad4j6hdzeh617-[bg-d8ffbf].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_1yekta1xn94qdnbmmj1tqg76zk3apcfd31pjmuy6d879e3mr469a4o4sdhd4-[bg-ffa6a6].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_1yekta1xn94qdnbmmj1tqg76zk3apcfd31pjmuy6d879e3mr469a4o4sdhd4-[bg-ffa6a6].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_31dhbgirwzd3ce7naor6o94woefws9hpxu4q8uxm1bz98w89zqpfks5rk3ad-[bg-beffbe].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_31dhbgirwzd3ce7naor6o94woefws9hpxu4q8uxm1bz98w89zqpfks5rk3ad-[bg-beffbe].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3arbc1d3usn8not6ddbegexdi7qdabp4d1g3emcgtirign1c6akjc55bexko-[bg-dfeaff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3arbc1d3usn8not6ddbegexdi7qdabp4d1g3emcgtirign1c6akjc55bexko-[bg-dfeaff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3basec1d9e9zg7kuy9guufirigbk14mizpmzza5593ct3n74piws1ng97ar7-[bg-dadfff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3basec1d9e9zg7kuy9guufirigbk14mizpmzza5593ct3n74piws1ng97ar7-[bg-dadfff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3bsco1dfwmwpnnjjqyqb9f7f83gtxsrmgdzdjdz58u6dhga5ajsgtsdz1g8h-[bg-fff4db].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3bsco1dfwmwpnnjjqyqb9f7f83gtxsrmgdzdjdz58u6dhga5ajsgtsdz1g8h-[bg-fff4db].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3eksah6pqhinb5dfbwnt5i1noqwqahndrgd1g1ggna7uxba1wrhd8yn9ch8z-[bg-ccdcff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3eksah6pqhinb5dfbwnt5i1noqwqahndrgd1g1ggna7uxba1wrhd8yn9ch8z-[bg-ccdcff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3ethco1d34b1mmerybpw6pdgi3zt6p7ieb4aqcmbfn8i7af5w43d8ag8s7hk-[bg-daffe0].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3ethco1d34b1mmerybpw6pdgi3zt6p7ieb4aqcmbfn8i7af5w43d8ag8s7hk-[bg-daffe0].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3ethhot3otmrcizy8kxkxbfmb3qjswatr4pnixexpdy6u18e1mjgxteynmay-[bg-daffe0].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3ethhot3otmrcizy8kxkxbfmb3qjswatr4pnixexpdy6u18e1mjgxteynmay-[bg-daffe0].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3ethwrap7kzguicmh3birwszzyg5giw93o7zkrqj7sxbcw8z83ihd3k4hps9-[bg-daffe0].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3ethwrap7kzguicmh3birwszzyg5giw93o7zkrqj7sxbcw8z83ihd3k4hps9-[bg-daffe0].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3ftmco1d3sogpnq9j8gsa7t95xugtzj116hkudxj1spkw86476pzicua61ek-[bg-dae7ff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3ftmco1d3sogpnq9j8gsa7t95xugtzj116hkudxj1spkw86476pzicua61ek-[bg-dae7ff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3ftmhot3nssj1ae3gt4o4ksa6p1wamub3jaet4odjt67wp9wy9ahn83umw81-[bg-dae7ff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3ftmhot3nssj1ae3gt4o4ksa6p1wamub3jaet4odjt67wp9wy9ahn83umw81-[bg-dae7ff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3ftmwrap5qeirm53wndr6811tbnnraho587awkxn1xgrwfgry97cb4bouiwh-[bg-dae7ff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3ftmwrap5qeirm53wndr6811tbnnraho587awkxn1xgrwfgry97cb4bouiwh-[bg-dae7ff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3fudcakefr9jyw7b4kfafrgaekmd37ez7q4pmzuo1fd7wo9jo8gsha7z7e1c-[bg-b2ecff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3fudcakefr9jyw7b4kfafrgaekmd37ez7q4pmzuo1fd7wo9jo8gsha7z7e1c-[bg-b2ecff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3hxnx1gegfqmmhcnd13qipjxgo7mbw1bwprxq7334sr5b4hie5u1wj845n6m-[bg-ffc7b2].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3hxnx1gegfqmmhcnd13qipjxgo7mbw1bwprxq7334sr5b4hie5u1wj845n6m-[bg-ffc7b2].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3po1yhotz68w6mogy6budr7g8y7gw5wjqhbgc5gt549emeoof9npf315xmn4-[bg-f0e8ff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3po1yhotz68w6mogy6budr7g8y7gw5wjqhbgc5gt549emeoof9npf315xmn4-[bg-f0e8ff].svg -------------------------------------------------------------------------------- /server/assets/illustrations/vanities/ban_3po1ywrp9m967z9xpd9cwwfdg1gteuk4n7dcyoatkgpjgne5yx459wyoyxzj-[bg-f0e8ff].svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/assets/illustrations/vanities/ban_3po1ywrp9m967z9xpd9cwwfdg1gteuk4n7dcyoatkgpjgne5yx459wyoyxzj-[bg-f0e8ff].svg -------------------------------------------------------------------------------- /server/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/color/color.go -------------------------------------------------------------------------------- /server/color/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/color/color_test.go -------------------------------------------------------------------------------- /server/controller/monkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/controller/monkey.go -------------------------------------------------------------------------------- /server/controller/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/controller/stats.go -------------------------------------------------------------------------------- /server/database/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/database/postgres.go -------------------------------------------------------------------------------- /server/database/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/database/redis.go -------------------------------------------------------------------------------- /server/db/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/db/redis.go -------------------------------------------------------------------------------- /server/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/docker-compose.yaml -------------------------------------------------------------------------------- /server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/go.mod -------------------------------------------------------------------------------- /server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/go.sum -------------------------------------------------------------------------------- /server/image/accessories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/image/accessories.go -------------------------------------------------------------------------------- /server/image/assemble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/image/assemble.go -------------------------------------------------------------------------------- /server/image/asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/image/asset.go -------------------------------------------------------------------------------- /server/image/color_picker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/image/color_picker.go -------------------------------------------------------------------------------- /server/image/color_picker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/image/color_picker_test.go -------------------------------------------------------------------------------- /server/image/raster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/image/raster.go -------------------------------------------------------------------------------- /server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/main.go -------------------------------------------------------------------------------- /server/models/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/models/stats.go -------------------------------------------------------------------------------- /server/scripts/reset_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/scripts/reset_db.sh -------------------------------------------------------------------------------- /server/scripts/setup_test_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/scripts/setup_test_db.sh -------------------------------------------------------------------------------- /server/spc/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/spc/constants.go -------------------------------------------------------------------------------- /server/stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/stress.sh -------------------------------------------------------------------------------- /server/utils/banano.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/utils/banano.go -------------------------------------------------------------------------------- /server/utils/banano_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/utils/banano_test.go -------------------------------------------------------------------------------- /server/utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/utils/hash.go -------------------------------------------------------------------------------- /server/utils/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/utils/hash_test.go -------------------------------------------------------------------------------- /server/utils/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/utils/misc.go -------------------------------------------------------------------------------- /server/utils/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/utils/misc_test.go -------------------------------------------------------------------------------- /server/utils/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/server/utils/net.go -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/client.js -------------------------------------------------------------------------------- /src/components/ClickOutside.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/ClickOutside.svelte -------------------------------------------------------------------------------- /src/components/Footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/Footer.svelte -------------------------------------------------------------------------------- /src/components/GoogleAnalytics.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/GoogleAnalytics.svelte -------------------------------------------------------------------------------- /src/components/LazyImage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/LazyImage.svelte -------------------------------------------------------------------------------- /src/components/Meta.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/Meta.svelte -------------------------------------------------------------------------------- /src/components/MonkeyGenerator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/MonkeyGenerator.svelte -------------------------------------------------------------------------------- /src/components/Navbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/Navbar.svelte -------------------------------------------------------------------------------- /src/components/NavbarItems.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/NavbarItems.svelte -------------------------------------------------------------------------------- /src/components/SocialIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/SocialIcon.svelte -------------------------------------------------------------------------------- /src/components/StatsCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/StatsCard.svelte -------------------------------------------------------------------------------- /src/components/Tailwindcss.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/Tailwindcss.svelte -------------------------------------------------------------------------------- /src/components/sections/Available.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/sections/Available.svelte -------------------------------------------------------------------------------- /src/components/sections/Hero.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/sections/Hero.svelte -------------------------------------------------------------------------------- /src/components/sections/How.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/sections/How.svelte -------------------------------------------------------------------------------- /src/components/sections/Integrate.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/sections/Integrate.svelte -------------------------------------------------------------------------------- /src/components/sections/OpenSource.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/sections/OpenSource.svelte -------------------------------------------------------------------------------- /src/components/sections/Rigged.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/sections/Rigged.svelte -------------------------------------------------------------------------------- /src/components/sections/Stats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/components/sections/Stats.svelte -------------------------------------------------------------------------------- /src/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/css/tailwind.css -------------------------------------------------------------------------------- /src/plugins/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/plugins/address.js -------------------------------------------------------------------------------- /src/plugins/nacl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/plugins/nacl.js -------------------------------------------------------------------------------- /src/plugins/transitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/plugins/transitions.js -------------------------------------------------------------------------------- /src/routes/_error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/routes/_error.svelte -------------------------------------------------------------------------------- /src/routes/_layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/routes/_layout.svelte -------------------------------------------------------------------------------- /src/routes/documentation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/routes/documentation.svelte -------------------------------------------------------------------------------- /src/routes/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/routes/index.svelte -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/server.js -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/src/template.html -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/now-alt-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-bold.ttf -------------------------------------------------------------------------------- /static/fonts/now-alt-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-bold.woff -------------------------------------------------------------------------------- /static/fonts/now-alt-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-bold.woff2 -------------------------------------------------------------------------------- /static/fonts/now-alt-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-medium.ttf -------------------------------------------------------------------------------- /static/fonts/now-alt-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-medium.woff -------------------------------------------------------------------------------- /static/fonts/now-alt-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-medium.woff2 -------------------------------------------------------------------------------- /static/fonts/now-alt-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-regular.ttf -------------------------------------------------------------------------------- /static/fonts/now-alt-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-regular.woff -------------------------------------------------------------------------------- /static/fonts/now-alt-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/now-alt-regular.woff2 -------------------------------------------------------------------------------- /static/fonts/overpass-mono-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/overpass-mono-bold.ttf -------------------------------------------------------------------------------- /static/fonts/overpass-mono-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/overpass-mono-bold.woff -------------------------------------------------------------------------------- /static/fonts/overpass-mono-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/overpass-mono-bold.woff2 -------------------------------------------------------------------------------- /static/fonts/overpass-mono-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/overpass-mono-regular.ttf -------------------------------------------------------------------------------- /static/fonts/overpass-mono-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/overpass-mono-regular.woff -------------------------------------------------------------------------------- /static/fonts/overpass-mono-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/fonts/overpass-mono-regular.woff2 -------------------------------------------------------------------------------- /static/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/global.css -------------------------------------------------------------------------------- /static/images/icons/icon-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-arrow-down.svg -------------------------------------------------------------------------------- /static/images/icons/icon-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-arrow-right.svg -------------------------------------------------------------------------------- /static/images/icons/icon-discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-discord.svg -------------------------------------------------------------------------------- /static/images/icons/icon-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-facebook.svg -------------------------------------------------------------------------------- /static/images/icons/icon-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-github.svg -------------------------------------------------------------------------------- /static/images/icons/icon-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-instagram.svg -------------------------------------------------------------------------------- /static/images/icons/icon-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-medium.svg -------------------------------------------------------------------------------- /static/images/icons/icon-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-menu.svg -------------------------------------------------------------------------------- /static/images/icons/icon-reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-reddit.svg -------------------------------------------------------------------------------- /static/images/icons/icon-telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-telegram.svg -------------------------------------------------------------------------------- /static/images/icons/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/icons/icon-twitter.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-banano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-banano.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-code-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-code-left.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-footer-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-footer-mobile.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-footer.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-glasses-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-glasses-right.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-hat-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-hat-left.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-heart-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-heart-right.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-hero-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-hero-mobile.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-hero.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-rigged-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-rigged-left.svg -------------------------------------------------------------------------------- /static/images/illustrations-background/bg-rigged-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-background/bg-rigged-right.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/arthas-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/arthas-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/arthas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/arthas.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/call-heisenberg-png-mobile-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/call-heisenberg-png-mobile-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/call-heisenberg-png-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/call-heisenberg-png-mobile.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/call-heisenberg-png-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/call-heisenberg-png-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/call-heisenberg-png.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/call-heisenberg-png.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/call-heisenberg-svg-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/call-heisenberg-svg-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/call-heisenberg-svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/call-heisenberg-svg.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/creeper-1-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/creeper-1-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/creeper-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/creeper-1.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/creeper-2-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/creeper-2-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/creeper-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/creeper-2.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/error.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/formula-mobile-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/formula-mobile-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/formula-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/formula-mobile.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/formula-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/formula-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/formula.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/formula.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/heisenberg-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/heisenberg-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/heisenberg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/heisenberg.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/hero-bg-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/hero-bg-mobile.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/hero-bg-tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/hero-bg-tablet.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/hero-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/hero-bg.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/hero-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/hero-mobile.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/hero-tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/hero-tablet.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/hero.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/integrate-mobile-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/integrate-mobile-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/integrate-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/integrate-mobile.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/integrate-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/integrate-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/integrate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/integrate.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/ironman-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/ironman-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/ironman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/ironman.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/kalium-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/kalium-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/kalium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/kalium.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/open-source-mobile-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/open-source-mobile-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/open-source-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/open-source-mobile.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/open-source-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/open-source-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/open-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/open-source.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/vader-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/vader-placeholder.svg -------------------------------------------------------------------------------- /static/images/illustrations-foreground/vader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/illustrations-foreground/vader.svg -------------------------------------------------------------------------------- /static/images/logos/logo-appditto-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/logos/logo-appditto-horizontal.svg -------------------------------------------------------------------------------- /static/images/logos/logo-monkey-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/images/logos/logo-monkey-horizontal.svg -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/mark-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/mark-192.png -------------------------------------------------------------------------------- /static/mark-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/mark-512.png -------------------------------------------------------------------------------- /static/mark-ios-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/mark-ios-192.png -------------------------------------------------------------------------------- /static/mark-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/mark-maskable-192.png -------------------------------------------------------------------------------- /static/monkeyText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/monkeyText.json -------------------------------------------------------------------------------- /static/previews/preview-documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/previews/preview-documentation.png -------------------------------------------------------------------------------- /static/previews/preview-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/previews/preview-error.png -------------------------------------------------------------------------------- /static/previews/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/static/previews/preview.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appditto/MonKey/HEAD/tailwind.config.js --------------------------------------------------------------------------------