gitextract_05np7nyh/ ├── .bundle/ │ └── config ├── .eslintrc ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .lintstagedrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .ruby-version ├── .watchmanconfig ├── .yarn/ │ └── releases/ │ └── yarn-4.3.1.cjs ├── .yarnrc.yml ├── Gemfile ├── LICENSE ├── README.md ├── app.json ├── babel.config.js ├── index.js ├── ios/ │ ├── .xcode.env │ ├── Gemfile │ ├── GoogleService-Info.plist │ ├── Podfile │ ├── fastlane/ │ │ ├── Appfile │ │ ├── Fastfile │ │ ├── Matchfile │ │ └── README.md │ ├── matchimals/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Trianglify.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Matchimals.entitlements │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── matchimals.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── matchimals.xcscheme │ └── matchimals.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── jest.config.js ├── metro.config.js ├── package.json ├── public/ │ ├── .well-known/ │ │ └── apple-app-site-association │ ├── index.html │ └── manifest.json ├── react-native.config.js ├── src/ │ ├── AnimalChooser/ │ │ └── index.js │ ├── Animals/ │ │ ├── Bat.js │ │ ├── Bear.js │ │ ├── Boar.js │ │ ├── Bunny.js │ │ ├── Butterfly.js │ │ ├── Card.js │ │ ├── Cat.js │ │ ├── Chick.js │ │ ├── Chicken.js │ │ ├── Cow.js │ │ ├── Dog.js │ │ ├── Elephant.js │ │ ├── Fox.js │ │ ├── Frog.js │ │ ├── Giraffe.js │ │ ├── Gorilla.js │ │ ├── Hamster.js │ │ ├── Hedgehog.js │ │ ├── Koala.js │ │ ├── Lion.js │ │ ├── Monkey.js │ │ ├── Mouse.js │ │ ├── Owl.js │ │ ├── Panda.js │ │ ├── Penguin.js │ │ ├── Pig.js │ │ ├── Rhino.js │ │ ├── Tiger.js │ │ ├── Turtle.js │ │ ├── Wolf.js │ │ ├── Zebra.js │ │ └── index.js │ ├── App.js │ ├── Board/ │ │ └── index.js │ ├── Button/ │ │ └── index.js │ ├── Card/ │ │ ├── CardBack.js │ │ ├── CardFront.js │ │ └── index.js │ ├── CircleButton/ │ │ └── index.js │ ├── Confetti/ │ │ ├── Confetti.js │ │ ├── ConfettiView.js │ │ └── index.js │ ├── Deck/ │ │ └── index.js │ ├── Dialog/ │ │ ├── index.js │ │ └── index.web.js │ ├── Logo/ │ │ └── index.js │ ├── MainMenu/ │ │ └── index.js │ ├── Matchimals/ │ │ ├── game.js │ │ ├── index.js │ │ └── snapshots.js │ ├── Menu/ │ │ ├── DevTools.js │ │ └── index.js │ ├── Music/ │ │ ├── index.js │ │ └── index.web.js │ ├── Nameplate/ │ │ ├── index.js │ │ └── index.web.js │ ├── PlayerButton/ │ │ └── index.js │ ├── Print.js │ ├── Table/ │ │ └── index.js │ ├── Victory/ │ │ └── index.js │ ├── constants/ │ │ ├── animals.js │ │ ├── board.js │ │ ├── cards.js │ │ ├── colors.js │ │ └── og.js │ ├── hooks/ │ │ └── players.js │ └── index.js └── tsconfig.json