├── .gcloudignore ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.yaml ├── dist ├── audio │ ├── countdown.mp4 │ ├── end-of-game.mp4 │ ├── fail.mp4 │ ├── foundit.mp4 │ ├── game-loop.mp4 │ ├── ios-speech-sprite-ja.m4a │ ├── ios-speech-sprite.m4a │ ├── time-running-out.mp4 │ ├── timer-increase.mp4 │ └── win.mp4 ├── img │ ├── badge.svg │ ├── emojis │ │ ├── game │ │ │ ├── baby-bottle.svg │ │ │ ├── backpack.svg │ │ │ ├── banana.svg │ │ │ ├── baseball.svg │ │ │ ├── basketball.svg │ │ │ ├── bathtub.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bicycle.svg │ │ │ ├── bird.svg │ │ │ ├── book.svg │ │ │ ├── bowl.svg │ │ │ ├── bread.svg │ │ │ ├── broccoli.svg │ │ │ ├── building.svg │ │ │ ├── burrito.svg │ │ │ ├── bus.svg │ │ │ ├── cabinet.svg │ │ │ ├── camera.svg │ │ │ ├── candle.svg │ │ │ ├── car.svg │ │ │ ├── cassette.svg │ │ │ ├── cat.svg │ │ │ ├── cellphone.svg │ │ │ ├── clock.svg │ │ │ ├── coat.svg │ │ │ ├── cup.svg │ │ │ ├── display.svg │ │ │ ├── dog.svg │ │ │ ├── donut.svg │ │ │ ├── door.svg │ │ │ ├── envelope.svg │ │ │ ├── fish.svg │ │ │ ├── flashlight.svg │ │ │ ├── flower.svg │ │ │ ├── fries.svg │ │ │ ├── frying-pan.svg │ │ │ ├── glove.svg │ │ │ ├── guitar.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer.svg │ │ │ ├── hand.svg │ │ │ ├── hat.svg │ │ │ ├── headphones.svg │ │ │ ├── hotdog.svg │ │ │ ├── house.svg │ │ │ ├── icecream.svg │ │ │ ├── jack-o-lantern.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── laptop.svg │ │ │ ├── lemon.svg │ │ │ ├── light-bulb.svg │ │ │ ├── lipstick.svg │ │ │ ├── lock.svg │ │ │ ├── magnifying-glass.svg │ │ │ ├── mailbox.svg │ │ │ ├── microphone.svg │ │ │ ├── motor-scooter.svg │ │ │ ├── mouse.svg │ │ │ ├── mushroom.svg │ │ │ ├── newspaper.svg │ │ │ ├── orange.svg │ │ │ ├── pants.svg │ │ │ ├── piano.svg │ │ │ ├── pizza.svg │ │ │ ├── plate.svg │ │ │ ├── plug.svg │ │ │ ├── printer.svg │ │ │ ├── radio.svg │ │ │ ├── ramen.svg │ │ │ ├── sax.svg │ │ │ ├── scarf.svg │ │ │ ├── scissors.svg │ │ │ ├── screw.svg │ │ │ ├── shirt.svg │ │ │ ├── shoe.svg │ │ │ ├── soccer-ball.svg │ │ │ ├── sock.svg │ │ │ ├── sofa.svg │ │ │ ├── spoon.svg │ │ │ ├── strawberry.svg │ │ │ ├── sunglasses.svg │ │ │ ├── sushi.svg │ │ │ ├── taco.svg │ │ │ ├── toilet.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trash-can.svg │ │ │ ├── tree.svg │ │ │ ├── truck.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella.svg │ │ │ ├── wallet.svg │ │ │ ├── watch.svg │ │ │ └── wine.svg │ │ └── ui │ │ │ ├── crossmark.svg │ │ │ ├── house.svg │ │ │ ├── info.svg │ │ │ ├── sleuth.svg │ │ │ ├── stopwatch.svg │ │ │ ├── thumbsdown.svg │ │ │ ├── thumbsup.svg │ │ │ └── trophy.svg │ ├── facebook.svg │ ├── favicon-152.png │ ├── favicon-192.png │ ├── favicon.ico │ ├── loading.gif │ ├── logo.svg │ ├── share.jpg │ ├── sound.svg │ └── twitter.svg ├── index.html ├── ja │ └── index.html └── model │ ├── group1-shard1of1 │ ├── tensorflowjs_model.pb │ └── weights_manifest.json ├── package.json ├── src ├── js │ ├── camera.ts │ ├── classes.ts │ ├── game.ts │ ├── game_levels.ts │ ├── index.ts │ ├── mobilenet.ts │ ├── scavenger_classes.ts │ ├── share.ts │ ├── speech_sprite_timestamps.ts │ ├── ui.ts │ └── utils.ts └── sass │ ├── camera.scss │ ├── main.scss │ ├── mixins.scss │ ├── ui.scss │ └── vars.scss ├── training └── Dockerfile ├── tsconfig.json ├── tslint.json └── yarn.lock /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/app.yaml -------------------------------------------------------------------------------- /dist/audio/countdown.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/countdown.mp4 -------------------------------------------------------------------------------- /dist/audio/end-of-game.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/end-of-game.mp4 -------------------------------------------------------------------------------- /dist/audio/fail.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/fail.mp4 -------------------------------------------------------------------------------- /dist/audio/foundit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/foundit.mp4 -------------------------------------------------------------------------------- /dist/audio/game-loop.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/game-loop.mp4 -------------------------------------------------------------------------------- /dist/audio/ios-speech-sprite-ja.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/ios-speech-sprite-ja.m4a -------------------------------------------------------------------------------- /dist/audio/ios-speech-sprite.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/ios-speech-sprite.m4a -------------------------------------------------------------------------------- /dist/audio/time-running-out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/time-running-out.mp4 -------------------------------------------------------------------------------- /dist/audio/timer-increase.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/timer-increase.mp4 -------------------------------------------------------------------------------- /dist/audio/win.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/audio/win.mp4 -------------------------------------------------------------------------------- /dist/img/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/badge.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/baby-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/baby-bottle.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/backpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/backpack.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/banana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/banana.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/baseball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/baseball.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/basketball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/basketball.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/bathtub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/bathtub.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/bed.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/beer.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/bicycle.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/bird.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/bird.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/book.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/bowl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/bowl.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/bread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/bread.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/broccoli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/broccoli.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/building.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/burrito.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/burrito.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/bus.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/cabinet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/cabinet.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/camera.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/candle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/candle.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/car.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/cassette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/cassette.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/cat.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/cellphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/cellphone.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/clock.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/coat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/coat.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/cup.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/display.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/display.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/dog.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/donut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/donut.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/door.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/door.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/envelope.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/fish.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/flashlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/flashlight.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/flower.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/fries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/fries.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/frying-pan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/frying-pan.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/glove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/glove.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/guitar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/guitar.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/hamburger.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/hammer.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/hand.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/hat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/hat.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/headphones.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/hotdog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/hotdog.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/house.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/icecream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/icecream.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/jack-o-lantern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/jack-o-lantern.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/key.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/keyboard.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/laptop.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/lemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/lemon.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/light-bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/light-bulb.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/lipstick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/lipstick.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/lock.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/magnifying-glass.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/mailbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/mailbox.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/microphone.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/motor-scooter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/motor-scooter.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/mouse.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/mushroom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/mushroom.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/newspaper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/newspaper.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/orange.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/pants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/pants.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/piano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/piano.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/pizza.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/plate.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/plug.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/printer.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/radio.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/ramen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/ramen.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/sax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/sax.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/scarf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/scarf.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/scissors.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/screw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/screw.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/shirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/shirt.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/shoe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/shoe.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/soccer-ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/soccer-ball.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/sock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/sock.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/sofa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/sofa.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/spoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/spoon.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/strawberry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/strawberry.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/sunglasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/sunglasses.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/sushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/sushi.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/taco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/taco.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/toilet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/toilet.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/traffic-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/traffic-light.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/trash-can.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/trash-can.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/tree.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/truck.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/tv.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/umbrella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/umbrella.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/wallet.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/watch.svg -------------------------------------------------------------------------------- /dist/img/emojis/game/wine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/game/wine.svg -------------------------------------------------------------------------------- /dist/img/emojis/ui/crossmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/ui/crossmark.svg -------------------------------------------------------------------------------- /dist/img/emojis/ui/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/ui/house.svg -------------------------------------------------------------------------------- /dist/img/emojis/ui/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/ui/info.svg -------------------------------------------------------------------------------- /dist/img/emojis/ui/sleuth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/ui/sleuth.svg -------------------------------------------------------------------------------- /dist/img/emojis/ui/stopwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/ui/stopwatch.svg -------------------------------------------------------------------------------- /dist/img/emojis/ui/thumbsdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/ui/thumbsdown.svg -------------------------------------------------------------------------------- /dist/img/emojis/ui/thumbsup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/ui/thumbsup.svg -------------------------------------------------------------------------------- /dist/img/emojis/ui/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/emojis/ui/trophy.svg -------------------------------------------------------------------------------- /dist/img/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/facebook.svg -------------------------------------------------------------------------------- /dist/img/favicon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/favicon-152.png -------------------------------------------------------------------------------- /dist/img/favicon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/favicon-192.png -------------------------------------------------------------------------------- /dist/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/favicon.ico -------------------------------------------------------------------------------- /dist/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/loading.gif -------------------------------------------------------------------------------- /dist/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/logo.svg -------------------------------------------------------------------------------- /dist/img/share.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/share.jpg -------------------------------------------------------------------------------- /dist/img/sound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/sound.svg -------------------------------------------------------------------------------- /dist/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/img/twitter.svg -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/ja/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/ja/index.html -------------------------------------------------------------------------------- /dist/model/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/model/group1-shard1of1 -------------------------------------------------------------------------------- /dist/model/tensorflowjs_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/model/tensorflowjs_model.pb -------------------------------------------------------------------------------- /dist/model/weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/dist/model/weights_manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/package.json -------------------------------------------------------------------------------- /src/js/camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/camera.ts -------------------------------------------------------------------------------- /src/js/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/classes.ts -------------------------------------------------------------------------------- /src/js/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/game.ts -------------------------------------------------------------------------------- /src/js/game_levels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/game_levels.ts -------------------------------------------------------------------------------- /src/js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/index.ts -------------------------------------------------------------------------------- /src/js/mobilenet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/mobilenet.ts -------------------------------------------------------------------------------- /src/js/scavenger_classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/scavenger_classes.ts -------------------------------------------------------------------------------- /src/js/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/share.ts -------------------------------------------------------------------------------- /src/js/speech_sprite_timestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/speech_sprite_timestamps.ts -------------------------------------------------------------------------------- /src/js/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/ui.ts -------------------------------------------------------------------------------- /src/js/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/js/utils.ts -------------------------------------------------------------------------------- /src/sass/camera.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/sass/camera.scss -------------------------------------------------------------------------------- /src/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/sass/main.scss -------------------------------------------------------------------------------- /src/sass/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/sass/mixins.scss -------------------------------------------------------------------------------- /src/sass/ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/sass/ui.scss -------------------------------------------------------------------------------- /src/sass/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/src/sass/vars.scss -------------------------------------------------------------------------------- /training/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/training/Dockerfile -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/emoji-scavenger-hunt/HEAD/yarn.lock --------------------------------------------------------------------------------