-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b0e7a2e
Showing
1,365 changed files
with
45,831 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
[android] | ||
target = Google Inc.:Google APIs:23 | ||
|
||
[maven_repositories] | ||
central = https://repo1.maven.org/maven2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
BUNDLE_PATH: "vendor/bundle" | ||
BUNDLE_FORCE_RUBY_PLATFORM: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# User-facing version | ||
APP_VERSION=8.0.0 | ||
|
||
# Internal build number uniquely identifying a version | ||
APP_VERSION_CODE=42 | ||
|
||
# The e-mail address receiving correction requests | ||
CONTACT_EMAIL=example@example.com | ||
|
||
# Google Maps API key | ||
GOOGLE_MAPS_API_KEY=fill_me_in | ||
|
||
# Which database instance to use | ||
DATABASE_TYPE=test | ||
# The URL of the Firebase database | ||
DATABASE_URL= | ||
# The path to the data in the database | ||
DATABASE_PATH= | ||
|
||
# Enable logging | ||
ENABLE_LOGGING=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONTACT_EMAIL=example@example.com | ||
GOOGLE_MAPS_API_KEY=test_key | ||
DATABASE_TYPE=test | ||
DATABASE_URL= | ||
DATABASE_PATH= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
use asdf | ||
|
||
export ANDROID_HOME=~/Library/Android/sdk | ||
export PATH=$ANDROID_HOME/platform-tools:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
module.exports = { | ||
root: true, | ||
extends: '@react-native-community', | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint', 'unused-imports', 'simple-import-sort'], | ||
ignorePatterns: ['**/*.min.js'], | ||
rules: { | ||
'simple-import-sort/imports': 'error', | ||
'simple-import-sort/exports': 'error', | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['*.ts', '*.tsx'], | ||
rules: { | ||
'@typescript-eslint/no-shadow': ['error'], | ||
'@typescript-eslint/no-unused-vars': 'off', | ||
'react/react-in-jsx-scope': 'off', | ||
'no-shadow': 'off', | ||
'no-undef': 'off', | ||
'no-unused-vars': 'off', | ||
'unused-imports/no-unused-imports': 'error', | ||
'unused-imports/no-unused-vars': [ | ||
'warn', | ||
{ | ||
vars: 'all', | ||
varsIgnorePattern: '^_', | ||
args: 'after-used', | ||
argsIgnorePattern: '^_', | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
env: { | ||
jest: true, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom: [ "https://www.buymeacoffee.com/muffix" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: 🐛 Bug report | ||
description: Create a report to help improve the app | ||
labels: [ "Needs triage" ] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking the time to fill out this bug report! | ||
A bug means that there is something broken or unexpected in the app. | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please [search the history](https://github.com/muffi/couleurbummel/issues) to see if an issue already exists for the same problem. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Happening on the latest app version? | ||
description: Please try again with the latest version before filing a bug report. | ||
options: | ||
- label: I have seen this on the latest version of the app | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: This is not a data update request | ||
description: Please use the in-app functionality to request data updates or additions. | ||
options: | ||
- label: I am not requesting a data update | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Explain what you did | ||
description: Describe how you interacted with the app when you encountered the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected behaviour | ||
description: Describe what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
render: Markdown | ||
description: | | ||
Please give a detailed description of how to reproduce the bug. | ||
1. Go to '...' | ||
2. Tap '....' | ||
3. Scroll to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Your device and OS | ||
description: Which device and operating system version are you using? | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Screenshots | ||
description: If applicable, add screenshots to help explain your problem. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: 💡 Feature Request | ||
about: Suggest an idea or enhancement for this project | ||
labels: "Feature Request" | ||
--- | ||
|
||
<!-- Please use the in-app functionality to request data updates or additions. --> | ||
|
||
**Is your feature request related to a problem? Please Describe.** | ||
|
||
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> | ||
|
||
**Describe the solution you'd like** | ||
|
||
<!-- A clear and concise description of what you want to happen. --> | ||
|
||
**Describe alternatives you've considered** | ||
|
||
<!-- A clear and concise description of any alternative solutions or features you've considered. --> | ||
|
||
**Additional context** | ||
|
||
<!-- Add any other context or screenshots about the feature request here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
## Motivation | ||
|
||
Fixes # (issue) | ||
|
||
## Type of change | ||
|
||
<!-- Please tick the right option --> | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] This change requires a documentation update | ||
|
||
# How Has This Been Tested? | ||
|
||
<!-- Please describe the tests that you ran to verify your changes. Provide instructions to reproduce if necessary. Please also list any relevant details for your test configuration --> | ||
|
||
- [ ] Jest Unit Test | ||
- [ ] Ran on iOS Simulator | ||
- [ ] Ran on iOS physical device | ||
- [ ] Ran on Android emulator | ||
- [ ] Ran on Android physical device | ||
|
||
## Checklist | ||
|
||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I have performed a self-review of my own code | ||
- [ ] I have commented my code, particularly in hard-to-understand areas | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] New and existing unit tests pass locally with my changes | ||
- [ ] Any dependent changes have been merged and published in downstream modules | ||
|
||
## Additional context | ||
|
||
<!-- Add any other context or screenshots here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-release | ||
- invalid | ||
- Blocked | ||
authors: | ||
- dependabot | ||
categories: | ||
- title: ":boom: Breaking Change" | ||
labels: | ||
- "PR: Breaking Change :boom:" | ||
- title: ":rocket: New Feature" | ||
labels: | ||
- "PR: New Feature :tada:" | ||
- title: ":bug: Bug Fix" | ||
labels: | ||
- "PR: Bug Fix :bug:" | ||
- title: ":memo: Documentation" | ||
labels: | ||
- "PR: Docs :memo:" | ||
- title: Other Changes | ||
labels: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test: | ||
name: Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'yarn' | ||
- name: 'Make yarn 3 available' | ||
run: | | ||
corepack enable | ||
- name: Install node modules | ||
run: | | ||
yarn install --frozen-lockfile | ||
- name: Lint | ||
run: | | ||
yarn lint | ||
- name: Run test | ||
run: | | ||
yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# OSX | ||
# | ||
.DS_Store | ||
|
||
# Xcode | ||
# | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
ios/.xcode.env.local | ||
|
||
# Android/IntelliJ | ||
# | ||
build/ | ||
.idea | ||
.gradle | ||
local.properties | ||
*.iml | ||
*.hprof | ||
.cxx/ | ||
|
||
# node.js | ||
# | ||
node_modules/ | ||
npm-debug.log | ||
yarn-error.log | ||
.yarn/* | ||
!.yarn/cache | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
# BUCK | ||
buck-out/ | ||
\.buckd/ | ||
*.keystore | ||
!debug.keystore | ||
|
||
# fastlane | ||
# | ||
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the | ||
# screenshots whenever they are needed. | ||
# For more information about the recommended setup visit: | ||
# https://docs.fastlane.tools/best-practices/source-control/ | ||
|
||
**/fastlane/report.xml | ||
**/fastlane/Preview.html | ||
**/fastlane/screenshots | ||
**/fastlane/test_output | ||
|
||
# Bundle artifact | ||
*.jsbundle | ||
|
||
# Ruby / CocoaPods | ||
/ios/Pods/ | ||
/vendor/bundle/ | ||
|
||
# Android keystores | ||
*.p12 | ||
|
||
# Production env files | ||
.env.release | ||
.env.prod | ||
ios/tmp.xcconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
16.18.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 # Use the ref you want to point at | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
- id: check-yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = { | ||
arrowParens: 'avoid', | ||
bracketSameLine: true, | ||
bracketSpacing: false, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.7.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java zulu-11.60.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
Binary file added
BIN
+20.5 KB
.yarn/cache/@ampproject-remapping-npm-2.2.0-114878fa50-d74d170d06.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.75 KB
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.18.6-36e25293d8-88ccd15ced.zip
Binary file not shown.
Binary file added
BIN
+3.19 KB
...el-helper-builder-binary-assignment-operator-visitor-npm-7.18.9-a2c86d7a16-b4bc214cb5.zip
Binary file not shown.
Binary file added
BIN
+21.7 KB
.yarn/cache/@babel-helper-compilation-targets-npm-7.20.0-f842a8700a-bc183f2109.zip
Binary file not shown.
Binary file added
BIN
+50 KB
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.19.0-684397371f-f0c6fb77b6.zip
Binary file not shown.
Binary file added
BIN
+11.8 KB
.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.19.0-664f2c7fc6-811cc90afe.zip
Binary file not shown.
Binary file added
BIN
+64.1 KB
.yarn/cache/@babel-helper-define-polyfill-provider-npm-0.3.3-8c896ae707-8e3fe75513.zip
Binary file not shown.
Binary file added
BIN
+2.89 KB
.yarn/cache/@babel-helper-environment-visitor-npm-7.18.9-9f5b3635a1-b25101f616.zip
Binary file not shown.
Binary file added
BIN
+3.3 KB
.yarn/cache/@babel-helper-explode-assignable-expression-npm-7.18.6-9b20d989e6-225cfcc337.zip
Binary file not shown.
Binary file added
BIN
+9.05 KB
.yarn/cache/@babel-helper-function-name-npm-7.19.0-5bcf55236f-eac1f5db42.zip
Binary file not shown.
Binary file added
BIN
+2.99 KB
.yarn/cache/@babel-helper-hoist-variables-npm-7.18.6-6eb061f405-fd9c35bb43.zip
Binary file not shown.
Binary file added
BIN
+15.9 KB
...n/cache/@babel-helper-member-expression-to-functions-npm-7.18.9-3d2128582a-fcf8184e3b.zip
Binary file not shown.
Binary file added
BIN
+6.07 KB
.yarn/cache/@babel-helper-module-imports-npm-7.18.6-1031faa864-f393f8a3b3.zip
Binary file not shown.
Binary file added
BIN
+42.4 KB
.yarn/cache/@babel-helper-module-transforms-npm-7.19.6-c73ab63519-c28692b37d.zip
Binary file not shown.
Binary file added
BIN
+40.1 KB
.yarn/cache/@babel-helper-module-transforms-npm-7.20.2-9a4905d6a2-33a60ca115.zip
Binary file not shown.
Binary file added
BIN
+2.89 KB
.yarn/cache/@babel-helper-optimise-call-expression-npm-7.18.6-65705387c4-e518fe8418.zip
Binary file not shown.
Binary file added
BIN
+6.31 KB
.yarn/cache/@babel-helper-plugin-utils-npm-7.19.0-744ad0c26b-eedc996c63.zip
Binary file not shown.
Binary file added
BIN
+3.3 KB
.yarn/cache/@babel-helper-remap-async-to-generator-npm-7.18.9-c29d128186-4be6076192.zip
Binary file not shown.
Binary file added
BIN
+9.82 KB
.yarn/cache/@babel-helper-replace-supers-npm-7.19.1-669aa2ecc7-a0e4bf79eb.zip
Binary file not shown.
Binary file added
BIN
+6 KB
.yarn/cache/@babel-helper-simple-access-npm-7.19.4-c02920b575-964cb1ec36.zip
Binary file not shown.
Binary file added
BIN
+5.79 KB
.yarn/cache/@babel-helper-simple-access-npm-7.20.2-842ec98fbb-ad1e96ee2e.zip
Binary file not shown.
Binary file added
BIN
+4.17 KB
...e/@babel-helper-skip-transparent-expression-wrappers-npm-7.20.0-3370bb1f83-34da8c832d.zip
Binary file not shown.
Binary file added
BIN
+3.17 KB
.yarn/cache/@babel-helper-split-export-declaration-npm-7.18.6-53ebf8ad4c-c6d3dede53.zip
Binary file not shown.
Binary file added
BIN
+10.4 KB
.yarn/cache/@babel-helper-string-parser-npm-7.19.4-0db110dc3a-b2f8a3920b.zip
Binary file not shown.
Binary file added
BIN
+20.8 KB
.yarn/cache/@babel-helper-validator-identifier-npm-7.19.1-d84f19e1dc-0eca5e86a7.zip
Binary file not shown.
Binary file added
BIN
+3.83 KB
.yarn/cache/@babel-helper-validator-option-npm-7.18.6-cc7d1a3315-f9cc6eb7cc.zip
Binary file not shown.
Binary file added
BIN
+6.57 KB
.yarn/cache/@babel-helper-wrap-function-npm-7.19.0-0db6124801-2453a6b134.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9.3 KB
...che/@babel-plugin-proposal-async-generator-functions-npm-7.19.1-ec555c8b68-f101555b00.zip
Binary file not shown.
Binary file added
BIN
+3.02 KB
.yarn/cache/@babel-plugin-proposal-class-properties-npm-7.18.6-5f5c2d730f-49a78a2773.zip
Binary file not shown.
Binary file added
BIN
+3.15 KB
.yarn/cache/@babel-plugin-proposal-export-default-from-npm-7.18.10-e44e23b3cf-2a12387e09.zip
Binary file not shown.
Binary file added
BIN
+3.42 KB
...e/@babel-plugin-proposal-nullish-coalescing-operator-npm-7.18.6-cf22ea8526-949c9ddcde.zip
Binary file not shown.
Binary file added
BIN
+20.5 KB
.yarn/cache/@babel-plugin-proposal-object-rest-spread-npm-7.19.4-68e455a9f2-90a2a59da3.zip
Binary file not shown.
Binary file added
BIN
+3.04 KB
.../cache/@babel-plugin-proposal-optional-catch-binding-npm-7.18.6-a4235a25be-7b5b39fb5d.zip
Binary file not shown.
Binary file added
BIN
+11.5 KB
.yarn/cache/@babel-plugin-proposal-optional-chaining-npm-7.18.9-f7302c42f9-f2db40e261.zip
Binary file not shown.
Binary file added
BIN
+2.73 KB
.yarn/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-7ed1c1d9b9.zip
Binary file not shown.
Binary file added
BIN
+2.59 KB
.yarn/cache/@babel-plugin-syntax-bigint-npm-7.8.3-b05d971e6c-3a10849d83.zip
Binary file not shown.
Binary file added
BIN
+2.76 KB
.yarn/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-24f34b196d.zip
Binary file not shown.
Binary file added
BIN
+2.69 KB
.yarn/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-ce307af83c.zip
Binary file not shown.
Binary file added
BIN
+2.85 KB
.yarn/cache/@babel-plugin-syntax-export-default-from-npm-7.18.6-fb421efc69-4258156553.zip
Binary file not shown.
Binary file added
BIN
+2.8 KB
.yarn/cache/@babel-plugin-syntax-flow-npm-7.18.6-4d4d494639-abe82062b3.zip
Binary file not shown.
Binary file added
BIN
+2.71 KB
.yarn/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-166ac1125d.zip
Binary file not shown.
Binary file added
BIN
+2.75 KB
.yarn/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-bf5aea1f31.zip
Binary file not shown.
Binary file added
BIN
+2.68 KB
.yarn/cache/@babel-plugin-syntax-jsx-npm-7.18.6-3e378d5f11-6d37ea9729.zip
Binary file not shown.
Binary file added
BIN
+2.95 KB
...he/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-aff3357703.zip
Binary file not shown.
Binary file added
BIN
+2.88 KB
...ache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-87aca49189.zip
Binary file not shown.
Binary file added
BIN
+2.88 KB
.yarn/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-01ec5547bd.zip
Binary file not shown.
Binary file added
BIN
+2.75 KB
.yarn/cache/@babel-plugin-syntax-object-rest-spread-npm-7.8.3-60bd05b6ae-fddcf581a5.zip
Binary file not shown.
Binary file added
BIN
+2.81 KB
.yarn/cache/@babel-plugin-syntax-optional-catch-binding-npm-7.8.3-ce337427d8-910d90e72b.zip
Binary file not shown.
Binary file added
BIN
+2.74 KB
.yarn/cache/@babel-plugin-syntax-optional-chaining-npm-7.8.3-f3f3c79579-eef94d53a1.zip
Binary file not shown.
Binary file added
BIN
+2.8 KB
.yarn/cache/@babel-plugin-syntax-top-level-await-npm-7.14.5-60a0a2e83b-bbd1a56b09.zip
Binary file not shown.
Binary file added
BIN
+4.44 KB
.yarn/cache/@babel-plugin-syntax-typescript-npm-7.20.0-21fa6329fe-6189c0b5c3.zip
Binary file not shown.
Binary file added
BIN
+2.98 KB
.yarn/cache/@babel-plugin-transform-arrow-functions-npm-7.18.6-ffcfe88ab6-900f5c6957.zip
Binary file not shown.
Binary file added
BIN
+3.25 KB
.yarn/cache/@babel-plugin-transform-async-to-generator-npm-7.18.6-17dc8a459f-c2cca47468.zip
Binary file not shown.
Binary file added
BIN
+3.23 KB
...cache/@babel-plugin-transform-block-scoped-functions-npm-7.18.6-34b3375353-0a0df61f94.zip
Binary file not shown.
Binary file added
BIN
+28 KB
.yarn/cache/@babel-plugin-transform-block-scoping-npm-7.20.0-d3e7681fac-ff5ba1a2c4.zip
Binary file not shown.
Binary file added
BIN
+27.1 KB
.yarn/cache/@babel-plugin-transform-classes-npm-7.19.0-6768e825ce-5500953031.zip
Binary file not shown.
Binary file added
BIN
+4.07 KB
.yarn/cache/@babel-plugin-transform-computed-properties-npm-7.18.9-bc774f46b8-a6bfbea207.zip
Binary file not shown.
Binary file added
BIN
+22 KB
.yarn/cache/@babel-plugin-transform-destructuring-npm-7.20.0-c8eb177478-ce43dfcc36.zip
Binary file not shown.
Binary file added
BIN
+3.09 KB
...ache/@babel-plugin-transform-exponentiation-operator-npm-7.18.6-2c202b4eb5-7f70222f68.zip
Binary file not shown.
Binary file added
BIN
+7.44 KB
.yarn/cache/@babel-plugin-transform-flow-strip-types-npm-7.19.0-9fdcf3079d-c35339bf80.zip
Binary file not shown.
Binary file added
BIN
+6.11 KB
.yarn/cache/@babel-plugin-transform-for-of-npm-7.18.8-ae76b5daf1-ca64c623cf.zip
Binary file not shown.
Binary file added
BIN
+3.08 KB
.yarn/cache/@babel-plugin-transform-function-name-npm-7.18.9-4e425dceeb-62dd9c6cdc.zip
Binary file not shown.
Binary file added
BIN
+2.84 KB
.yarn/cache/@babel-plugin-transform-literals-npm-7.18.9-d87aa5e6d7-3458dd2f1a.zip
Binary file not shown.
Binary file added
BIN
+3.13 KB
...e/@babel-plugin-transform-member-expression-literals-npm-7.18.6-a4d6fae7df-35a3d04f66.zip
Binary file not shown.
Binary file added
BIN
+12.4 KB
.yarn/cache/@babel-plugin-transform-modules-commonjs-npm-7.19.6-059b1e12cf-85d46945ab.zip
Binary file not shown.
Binary file added
BIN
+4.07 KB
...@babel-plugin-transform-named-capturing-groups-regex-npm-7.19.1-6822ddb28e-8a40f5d04f.zip
Binary file not shown.
Binary file added
BIN
+2.86 KB
.yarn/cache/@babel-plugin-transform-object-assign-npm-7.18.6-73b4680d00-a9738264cc.zip
Binary file not shown.
Binary file added
BIN
+3.1 KB
.yarn/cache/@babel-plugin-transform-object-super-npm-7.18.6-d30d73d9fb-0fcb04e15d.zip
Binary file not shown.
Binary file added
BIN
+8.26 KB
.yarn/cache/@babel-plugin-transform-parameters-npm-7.18.8-4c778bfd7e-2b5863300d.zip
Binary file not shown.
Binary file added
BIN
+3 KB
.yarn/cache/@babel-plugin-transform-property-literals-npm-7.18.6-e5f7030fd5-1c16e64de5.zip
Binary file not shown.
Binary file added
BIN
+3.6 KB
.yarn/cache/@babel-plugin-transform-react-display-name-npm-7.18.6-dad446a24b-51c087ab9e.zip
Binary file not shown.
Binary file added
BIN
+24 KB
.yarn/cache/@babel-plugin-transform-react-jsx-npm-7.19.0-a26bc7e3f9-d7d6f0b8f2.zip
Binary file not shown.
Binary file added
BIN
+3.25 KB
.yarn/cache/@babel-plugin-transform-react-jsx-self-npm-7.18.6-97bcab453d-7d24e29c63.zip
Binary file not shown.
Binary file added
BIN
+5.53 KB
.yarn/cache/@babel-plugin-transform-react-jsx-source-npm-7.19.6-f7b8cba2b3-1e9e29a4ef.zip
Binary file not shown.
Binary file added
BIN
+16.9 KB
.yarn/cache/@babel-plugin-transform-runtime-npm-7.19.6-03c4f8c199-ef93efbcbb.zip
Binary file not shown.
Binary file added
BIN
+3.16 KB
...n/cache/@babel-plugin-transform-shorthand-properties-npm-7.18.6-ceff6bef39-b8e4e8acc2.zip
Binary file not shown.
Binary file added
BIN
+8.23 KB
.yarn/cache/@babel-plugin-transform-spread-npm-7.19.0-ab4a212eb3-e73a4deb09.zip
Binary file not shown.
Binary file added
BIN
+2.96 KB
.yarn/cache/@babel-plugin-transform-sticky-regex-npm-7.18.6-a75414f831-68ea18884a.zip
Binary file not shown.
Binary file added
BIN
+3.83 KB
.yarn/cache/@babel-plugin-transform-template-literals-npm-7.18.9-787bf6a528-3d2fcd79b7.zip
Binary file not shown.
Binary file added
BIN
+34.7 KB
.yarn/cache/@babel-plugin-transform-typescript-npm-7.20.0-75ee609ac8-7cc335a953.zip
Binary file not shown.
Binary file added
BIN
+2.86 KB
.yarn/cache/@babel-plugin-transform-unicode-regex-npm-7.18.6-0f8a7395d6-d9e18d5753.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.84 KB
.yarn/cache/@babel-preset-typescript-npm-7.18.6-8099191daa-7fe0da5103.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+34.1 KB
.yarn/cache/@cspotcode-source-map-support-npm-0.8.1-964f2de99d-5718f26708.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.26 KB
.yarn/cache/@expo-sdk-runtime-versions-npm-1.0.0-f9b9f9beab-0942d5a356.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.3 KB
.yarn/cache/@humanwhocodes-config-array-npm-0.5.0-5ded120470-44ee6a9f05.zip
Binary file not shown.
Binary file added
BIN
+13.4 KB
.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip
Binary file not shown.
Binary file added
BIN
+5.7 KB
.yarn/cache/@istanbuljs-load-nyc-config-npm-1.1.0-42d17c9cb1-d578da5e2e.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.82 KB
.yarn/cache/@jest-create-cache-key-function-npm-27.5.1-d4c8561229-a6c3a8c769.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.03 KB
.yarn/cache/@jest-test-sequencer-npm-29.3.1-9e41fb7e41-a8325b1ea0.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+13.1 KB
.yarn/cache/@jimp-plugin-contain-npm-0.16.2-54bacf252b-6684cb995c.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+8.83 KB
.yarn/cache/@jimp-plugin-displace-npm-0.16.2-2da15a6c34-92e48e5bf2.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+10.7 KB
.yarn/cache/@jimp-plugin-fisheye-npm-0.16.2-eb455d75a5-ebe8a14b92.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+10.9 KB
.yarn/cache/@jimp-plugin-gaussian-npm-0.16.2-d0fc9a0338-b768e18e32.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+11.1 KB
.yarn/cache/@jimp-plugin-normalize-npm-0.16.2-5a1901f58c-79680c752b.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+567 KB
.yarn/cache/@jimp-plugin-threshold-npm-0.16.2-d577200c76-c3de882dfb.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+16.3 KB
.yarn/cache/@jridgewell-gen-mapping-npm-0.1.1-3bad172ac6-3bcc21fe78.zip
Binary file not shown.
Binary file added
BIN
+26.5 KB
.yarn/cache/@jridgewell-gen-mapping-npm-0.3.2-c64eeb4a4e-1832707a1c.zip
Binary file not shown.
Binary file added
BIN
+17.9 KB
.yarn/cache/@jridgewell-resolve-uri-npm-3.1.0-6ff2351e61-b5ceaaf9a1.zip
Binary file not shown.
Binary file added
BIN
+8.65 KB
.yarn/cache/@jridgewell-set-array-npm-1.1.2-45b82d7fb6-69a84d5980.zip
Binary file not shown.
Binary file added
BIN
+13.4 KB
.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.14-f5f0630788-61100637b6.zip
Binary file not shown.
Binary file added
BIN
+44.4 KB
.yarn/cache/@jridgewell-trace-mapping-npm-0.3.17-57578fd48c-9d703b859c.zip
Binary file not shown.
Binary file added
BIN
+27.5 KB
.yarn/cache/@jridgewell-trace-mapping-npm-0.3.9-91625cd7fb-d89597752f.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9.42 KB
.yarn/cache/@mapbox-sphericalmercator-npm-1.1.0-ad3c225cbb-d1bd2cdff0.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+140 KB
.yarn/cache/@react-native-async-storage-async-storage-npm-1.17.11-4e84945a36-691f2b7449.zip
Binary file not shown.
Binary file added
BIN
+10.8 KB
.yarn/cache/@react-native-community-cli-clean-npm-9.2.1-6349a1f9dd-52286695a7.zip
Binary file not shown.
Binary file added
BIN
+31.9 KB
.yarn/cache/@react-native-community-cli-config-npm-9.2.1-97d88ff25d-95a6f8f380.zip
Binary file not shown.
Binary file added
BIN
+57.4 KB
.yarn/cache/@react-native-community-cli-debugger-ui-npm-9.0.0-e0a8e4c0f4-32e16e3d5c.zip
Binary file not shown.
Binary file added
BIN
+128 KB
.yarn/cache/@react-native-community-cli-doctor-npm-9.3.0-1f0e974871-5bea6203f0.zip
Binary file not shown.
Binary file added
BIN
+17.6 KB
.yarn/cache/@react-native-community-cli-hermes-npm-9.3.1-d9f6748277-2e021c64de.zip
Binary file not shown.
Binary file added
BIN
+83.6 KB
.yarn/cache/@react-native-community-cli-npm-9.3.2-97adb6de6a-474711ebfa.zip
Binary file not shown.
Binary file added
BIN
+77.1 KB
.yarn/cache/@react-native-community-cli-platform-android-npm-9.3.1-9f8db2d8b6-147b581ce8.zip
Binary file not shown.
Binary file added
BIN
+58.1 KB
.yarn/cache/@react-native-community-cli-platform-ios-npm-9.3.0-33444e0785-c4bf882af9.zip
Binary file not shown.
Binary file added
BIN
+72 KB
.yarn/cache/@react-native-community-cli-plugin-metro-npm-9.2.1-69372e40e4-1581eb5515.zip
Binary file not shown.
Binary file added
BIN
+48.6 KB
.yarn/cache/@react-native-community-cli-server-api-npm-9.2.1-231adb9de2-0452310b2d.zip
Binary file not shown.
Binary file added
BIN
+71.3 KB
.yarn/cache/@react-native-community-cli-tools-npm-9.2.1-f1be628cdb-8f99ec43b5.zip
Binary file not shown.
Binary file added
BIN
+8.67 KB
.yarn/cache/@react-native-community-cli-types-npm-9.1.0-7c2519566d-4ac2b9ba8f.zip
Binary file not shown.
Binary file added
BIN
+6.53 KB
.yarn/cache/@react-native-community-eslint-config-npm-2.0.0-06eae4574c-9b15e65219.zip
Binary file not shown.
Binary file added
BIN
+8.12 KB
.yarn/cache/@react-native-community-eslint-plugin-npm-1.2.0-5fbff93c65-613f178625.zip
Binary file not shown.
Binary file added
BIN
+91 KB
.yarn/cache/@react-native-community-geolocation-npm-3.0.4-bf5e388d61-1361e7fe4a.zip
Binary file not shown.
Binary file added
BIN
+26.1 KB
.yarn/cache/@react-native-firebase-app-check-npm-16.5.0-c71491108a-7846ee742d.zip
Binary file not shown.
Binary file added
BIN
+143 KB
.yarn/cache/@react-native-firebase-app-npm-16.5.0-c46048f2d1-2eab11544f.zip
Binary file not shown.
Binary file added
BIN
+97 KB
.yarn/cache/@react-native-firebase-database-npm-16.5.0-1a1cfddaf3-b58063faee.zip
Binary file not shown.
Binary file added
BIN
+4.17 KB
.yarn/cache/@react-native-normalize-color-npm-2.0.0-8c17808f23-2da373297f.zip
Binary file not shown.
Binary file added
BIN
+4.38 KB
.yarn/cache/@react-native-normalize-color-npm-2.1.0-f85aac1754-8ccbd40b3c.zip
Binary file not shown.
Binary file added
BIN
+9.06 KB
.yarn/cache/@react-native-polyfills-npm-2.0.0-cf6f1fe13d-6f2a0d1c8c.zip
Binary file not shown.
Binary file added
BIN
+378 KB
.yarn/cache/@react-navigation-core-npm-6.4.5-7263cd558e-90d0153aff.zip
Binary file not shown.
Binary file added
BIN
+196 KB
.yarn/cache/@react-navigation-drawer-npm-6.5.6-f04ffd4026-703be97506.zip
Binary file not shown.
Binary file added
BIN
+139 KB
.yarn/cache/@react-navigation-elements-npm-1.3.12-14e2a49e8c-070bedf8ca.zip
Binary file not shown.
Binary file added
BIN
+152 KB
.yarn/cache/@react-navigation-native-npm-6.1.1-dff59abc78-31befabaf2.zip
Binary file not shown.
Binary file added
BIN
+94.3 KB
.yarn/cache/@react-navigation-native-stack-npm-6.9.7-f574438753-4b267aa6a9.zip
Binary file not shown.
Binary file added
BIN
+58.8 KB
.yarn/cache/@react-navigation-routers-npm-6.1.6-ac4ac1bfb3-3e765b66cf.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+25.5 KB
.yarn/cache/@testing-library-jest-native-npm-5.3.3-0a319e7b2d-49f05314f4.zip
Binary file not shown.
Binary file added
BIN
+137 KB
.yarn/cache/@testing-library-react-native-npm-11.5.0-89c7b342e9-841c769c27.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.72 KB
.yarn/cache/@tsconfig-react-native-npm-2.0.3-ac594e9376-757edb4435.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.99 KB
.yarn/cache/@types-babel__generator-npm-7.6.4-03e776f956-20effbbb5f.zip
Binary file not shown.
Binary file added
BIN
+3.71 KB
.yarn/cache/@types-babel__template-npm-7.4.1-fe1db49e53-649fe8b42c.zip
Binary file not shown.
Binary file added
BIN
+22 KB
.yarn/cache/@types-babel__traverse-npm-7.18.2-17d99e224e-05972775e2.zip
Binary file not shown.
Binary file added
BIN
+2.6 KB
.yarn/cache/@types-eslint-visitor-keys-npm-1.0.0-a300061b93-a90f0b023e.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.18 KB
.yarn/cache/@types-istanbul-lib-coverage-npm-2.0.4-734954bb56-a25d7589ee.zip
Binary file not shown.
Binary file added
BIN
+4.14 KB
.yarn/cache/@types-istanbul-lib-report-npm-3.0.0-50de3e6b3b-656398b62d.zip
Binary file not shown.
Binary file added
BIN
+3.79 KB
.yarn/cache/@types-istanbul-reports-npm-3.0.1-770e825002-f1ad54bc68.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+8.73 KB
.yarn/cache/@types-react-native-vector-icons-npm-6.4.12-33af343652-15d8c75979.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.63 KB
.yarn/cache/@types-react-test-renderer-npm-18.0.0-159e9589e1-6afc938a1d.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+524 KB
.yarn/cache/@typescript-eslint-eslint-plugin-npm-3.10.1-8c1dbd0dcd-f1720338b4.zip
Binary file not shown.
Binary file added
BIN
+694 KB
.yarn/cache/@typescript-eslint-eslint-plugin-npm-5.47.0-777e22770f-fd867eb2b6.zip
Binary file not shown.
Binary file added
BIN
+165 KB
.yarn/cache/@typescript-eslint-experimental-utils-npm-3.10.1-607d3ffe42-635cc1afe4.zip
Binary file not shown.
Binary file added
BIN
+27.5 KB
.yarn/cache/@typescript-eslint-parser-npm-3.10.1-8d6732da0b-4939ed1dd1.zip
Binary file not shown.
Binary file added
BIN
+9.85 KB
.yarn/cache/@typescript-eslint-parser-npm-5.47.0-5b98d28ddc-5c864ca74b.zip
Binary file not shown.
Binary file added
BIN
+307 KB
.yarn/cache/@typescript-eslint-scope-manager-npm-5.47.0-4c0e5e535c-f637268a4c.zip
Binary file not shown.
Binary file added
BIN
+49.7 KB
.yarn/cache/@typescript-eslint-type-utils-npm-5.47.0-e434bdc0f0-504b3e883a.zip
Binary file not shown.
Binary file added
BIN
+26.5 KB
.yarn/cache/@typescript-eslint-types-npm-3.10.1-faddecc057-3ea820d37c.zip
Binary file not shown.
Binary file added
BIN
+41.8 KB
.yarn/cache/@typescript-eslint-types-npm-5.47.0-e547b4cf4b-5a856e190c.zip
Binary file not shown.
Binary file added
BIN
+117 KB
.yarn/cache/@typescript-eslint-typescript-estree-npm-3.10.1-327d1c22a9-911680da9d.zip
Binary file not shown.
Binary file added
BIN
+160 KB
.yarn/cache/@typescript-eslint-typescript-estree-npm-5.47.0-85e45a7397-a9adfe8955.zip
Binary file not shown.
Binary file added
BIN
+174 KB
.yarn/cache/@typescript-eslint-utils-npm-5.47.0-c839038696-f168920eec.zip
Binary file not shown.
Binary file added
BIN
+8.18 KB
.yarn/cache/@typescript-eslint-visitor-keys-npm-3.10.1-6a80d0d416-0c4825b982.zip
Binary file not shown.
Binary file added
BIN
+11 KB
.yarn/cache/@typescript-eslint-visitor-keys-npm-5.47.0-5d7861deb1-2191c07915.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.