GithubHelp home page GithubHelp logo

kevlened / isomorphic-webcrypto Goto Github PK

View Code? Open in Web Editor NEW
114.0 3.0 43.0 1.78 MB

:game_die: webcrypto library for Node, React Native and IE11+

Home Page: https://www.w3.org/TR/WebCryptoAPI/

License: MIT License

JavaScript 100.00%
javascript webcrypto small isomorphic react-native

isomorphic-webcrypto's People

Contributors

dependabot[bot] avatar jmelberg-okta avatar kevlened avatar sirpy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

isomorphic-webcrypto's Issues

Problem with importKey method

Using a modified version of the ejected react native example you kindly supplied, I have this in my constructor:

 crypto.ensureSecure()
    .then(() => {
      const array = new Uint8Array(1);
      crypto.getRandomValues(array);
      this.setState({
        random: array[0]
      });
      this.doCryptoOps()
    });

By this stage it should be 'safe' to call importKey (not before, because it uses getRandomValues()), but the following gives me a RSoD:

 doCryptoOps () {
   crypto.subtle.digest(
     { name: 'SHA-256' },
     new Uint8Array([1,2,3]).buffer
   )
   .then(hash => {
     this.setState({
       hash: hex.fromBuffer(hash)
     });
   });

 crypto.subtle.importKey(
   'raw',
   crypto.getRandomValues(new Uint8Array(16)),
   {
     name: 'PBKDF2',
   },
   false,
   ['deriveKey', 'deriveBits']
 ).then(function(key){
   console.log('key: ', key);
 }).catch(function(err){
   console.error(err);
 });
}

And here is the Red Screen of Death:
simulator screen shot - iphone 6 - 2018-03-20 at 14 16 42

My example is derived partly from the need in our own app and partly from the PBKDF2 example in the WebCrypto examples you link to. Any idea what the problem might be?

typescript+es6 support

trying to integrate with webcrypto-liner and other libraries
can you help out by setting your project to support typescript + es6?

Is `node-webcrypto-ossl` a dependency still?

index.mjs imports node-webcrypto-ossl which is not listed in package.json. However, from your logs it seems you intended to remove this in favour of @peculiar/webcrypto. Should one of these things be fixed?

React Native TypeError: Cannot convert null value to object

Hello. I am getting this error when launching a React Native application. Here is the screenshot:

Screen Shot 2021-04-13 at 13 50 47

The error here is because of userAgent being equal to "chrome", therefore the exec function on a regex returns null.
I'm running React Native v.0.64.0, React 17.0.1 on macOS Catalina 10.15.6. I also enabled Hermes on iOS.
What is the correct way to handle this issue?
I should say that dismissing this error in development allows to continue using the application, but I'm afraid I this issue can have hidden consequences.

Update react-native-securerandom to 0.2.0

Hello,

The library react-native-securerandom version 0.1.1 has a type problem.
The index.js file contains typescript, but is not a ts file.

I have to manually remove the library in node_modules to be able to use pkg to package my application using your library as a dependency.

I will make a pull request (if you'll allow me) to change this, if you have other solutions I'll be happy to try them

Thanks!

image

seems like you are not using react native generatesecurerandom

const originalGetRandomValues = crypto.getRandomValues;
crypto.getRandomValues = function getRandomValues() {
  if (!secured) {
    throw new Error(`
      You must wait until the library is secure to call this method:
      crypto.ensureSecure(err => {
        if (err) throw err;
        const safeValues = crypto.getRandomValues();
      });
    `);
  }
  return originalGetRandomValues.apply(crypto, arguments);
}

you save and return the original crypto.getRandomValues
i'd expect you return generateSecureRandom.apply(crypto,arguments)
other wise i couldn't find anywhere else in the code you use the imported generateSecureRandom

Make jwk-lite choose key_ops more intelligently

A key like:

{
  alg: 'RS256',
  e: 'AQAB',
  kid: 'test-id',
  kty: 'RSA',
  n: '3ZWrUY0Y6IKN1qI4BhxR2C7oHVFgGPYkd38uGq1jQNSqEvJFcN93CYm16_G78FAFKWqwsJb3Wx-nbxDn6LtP4AhULB1H0K0g7_jLklDAHvI8yhOKlvoyvsUFPWtNxlJyh5JJXvkNKV_4Oo12e69f8QCuQ6NpEPl-cSvXIqUYBCs',
  use: 'sig'
}

can only be used to check signatures, but we default to ['sign', 'verify']

Migrate to Expo-Modules for Expo SDK 43 and newer

Using React : 17.0.2
react-native: 0.67.0
Expo SDK: 44 (Bare)

We are using this library due to the webcrypto polyfill.

This library is using expo unimodules, which causes a duplicate symbol issue on iOS, UMReactNativeAdapter belongs to expo unimodules. Could we get a version in which we don't depend on unimodules please? I would contribute but I currently have no idea how you have it set up for react-native support. No issues on Android

linking ProjectName

❌  duplicate symbol '_EXCanAskAgain' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_EXExpiresKey' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_EXGrantedKey' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_EXPermissionExpiresNever' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_EXStatusKey' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_OBJC_CLASS_$_EXPermissionsService' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_OBJC_IVAR_$_EXPermissionsService._moduleRegistry' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_OBJC_IVAR_$_EXPermissionsService._requesters' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_OBJC_IVAR_$_EXPermissionsService._requestersByClass' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_OBJC_METACLASS_$_EXPermissionsService' in
> libExpoModulesCore.a(EXPermissionsService.o)
> UMReactNativeAdapter(EXPermissionsService.o)


❌  duplicate symbol '_OBJC_CLASS_$_EXReactNativeUserNotificationCenterProxy' in
> libExpoModulesCore.a(EXReactNativeUserNotificationCenterProxy.o)
> UMReactNativeAdapter(EXReactNativeUserNotificationCenterProxy.o)


❌  duplicate symbol '_OBJC_METACLASS_$_EXReactNativeUserNotificationCenterProxy' in
> libExpoModulesCore.a(EXReactNativeUserNotificationCenterProxy.o)
> UMReactNativeAdapter(EXReactNativeUserNotificationCenterProxy.o)


❌  ld: 12 duplicate symbols for architecture x86_64



❌  clang: error: linker command failed with exit code 1 (use -v to see invocation)


error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening ProjectName.xcworkspace.
info Run CLI with --verbose flag for more details.

How do I adapt the example in the Usage section to work in React Native?

import crypto from 'isomorphic-webcrypto'

crypto.subtle.digest(
  { name: 'SHA-256' },
  new Uint8Array([1,2,3]).buffer
)
.then(hash => {
  // do something with the hash buffer
})

This does not work as is in React Native. I have tried the following, but I'm not really sure how to get the values into the digest function. I just want to prove it works as it should.

    const view = new Int8Array( new ArrayBuffer(3));
    crypto.subtle.digest(
      { name: 'SHA-256' },
      view
    )
    .then(hash => {
      // do something with the hash buffer
      console.log('hash: ', hash);
    });

Thanks!

Warning with react-native dependencies

Hello,

we have a warning related to react-native in dev

"react-native": "^0.61.5",

we are using vue with pubnub, why those dependencies are in dev and not in optional ?

For what i understand you need it in your tests, so you could install it in your test scripts, like in the .travis.yml file with a :

npm i react-native --no-save

thanks

Typescript error on crypto export...

node_modules/isomorphic-webcrypto/index.d.ts(2,1): error TS2309: An export assignment cannot be used in a module with other exported elements.

Removing the default export stops typescript complaining. (I'm on typescript 2.7.2)

Unsupported algorithm error

Thanks a lot for this package.

I am having issues generating a keyPair in React Native, it worked perfectly in plane JS.

But once I try the following

`
const KeyExchangeKeySpec = {
name: 'RSA-OAEP',
modulusLength: 2048,
publicExponent: new Uint8Array([0x01, 0x00, 0x01]),
hash: { name: 'SHA-256' }
};

generateKeyPair = async = > {
const keyPair = await subtle.generateKey(KeyExchangeKeySpec, false, ["encrypt", "decrypt"])

}
`

I get an unsupported algorithm error (I have tried other algorithms too, none seem to be supported).

Can you help please?

Huge dependency tree

Running npm install isomorphic-webcrypto downloads 200Mb of node modules, including all of react and react native.

Maybe react native could be switched to a peerDependency ?

❯ npm install isomorphic-webcrypto
npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated [email protected]: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: support for ECMAScript is superseded by `uglify-js` as of v3.13.0

added 729 packages, and audited 730 packages in 38s

26 packages are looking for funding
  run `npm fund` for details

7 moderate severity vulnerabilities

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

/tmp/tt is 📦 v1.0.0 via  v16.4.0 on ☁️  (eu-west-3) 
❯ du node_modules/
0	node_modules/.bin
16	node_modules/strip-ansi/node_modules/ansi-regex
16	node_modules/strip-ansi/node_modules

[...]

88K	node_modules/mime
152K	node_modules/js-yaml/dist
4,0K	node_modules/js-yaml/bin
20K	node_modules/js-yaml/lib/js-yaml/schema
12K	node_modules/js-yaml/lib/js-yaml/type/js
64K	node_modules/js-yaml/lib/js-yaml/type
176K	node_modules/js-yaml/lib/js-yaml
180K	node_modules/js-yaml/lib
376K	node_modules/js-yaml
8,0K	node_modules/nocache/dist
24K	node_modules/nocache
8,0K	node_modules/errorhandler/public
32K	node_modules/errorhandler
108K	node_modules/connect
56K	node_modules/xcode/lib/parser
144K	node_modules/xcode/lib
188K	node_modules/xcode
32K	node_modules/compression
436K	node_modules/plist/dist
12K	node_modules/plist/lib
4,0K	node_modules/plist/examples/browser
4,0K	node_modules/plist/examples
492K	node_modules/plist
16K	node_modules/xmldoc/test
12K	node_modules/xmldoc/lib
12K	node_modules/xmldoc/examples
72K	node_modules/xmldoc
4,0K	node_modules/hermes-profile-transformer/src/utils
24K	node_modules/hermes-profile-transformer/src/types
16K	node_modules/hermes-profile-transformer/src/profiler
12K	node_modules/hermes-profile-transformer/src/__test__
72K	node_modules/hermes-profile-transformer/src
4,0K	node_modules/hermes-profile-transformer/dist/utils
24K	node_modules/hermes-profile-transformer/dist/types
12K	node_modules/hermes-profile-transformer/dist/profiler
252K	node_modules/hermes-profile-transformer/dist
340K	node_modules/hermes-profile-transformer
8,0K	node_modules/jetifier/src
188K	node_modules/jetifier/mapping
2,7M	node_modules/jetifier/lib
20K	node_modules/jetifier/bin
2,9M	node_modules/jetifier
20K	node_modules/slash
4,0K	node_modules/logkitty/docs
68K	node_modules/logkitty/build/ios
72K	node_modules/logkitty/build/android
264K	node_modules/logkitty/build
4,0K	node_modules/logkitty/bin
284K	node_modules/logkitty
16K	node_modules/ip/test
12K	node_modules/ip/lib
56K	node_modules/ip
4,0K	node_modules/wcwidth/test
4,0K	node_modules/wcwidth/docs
32K	node_modules/wcwidth
68K	node_modules/sudo-prompt
36K	node_modules/serve-static
16K	node_modules/metro-core/src/errors
64K	node_modules/metro-core/src
72K	node_modules/metro-core
32K	node_modules/metro-config/src/defaults
80K	node_modules/metro-config/src
88K	node_modules/metro-config
8,0K	node_modules/mkdirp/bin
24K	node_modules/mkdirp
64K	node_modules/node-stream-zip
80K	node_modules/metro-resolver/src
92K	node_modules/metro-resolver
4,0K	node_modules/minimist/example
68K	node_modules/minimist/test
96K	node_modules/minimist
4,0K	node_modules/promise/.github
36K	node_modules/promise/src
36K	node_modules/promise/setimmediate
36K	node_modules/promise/lib
36K	node_modules/promise/domains
208K	node_modules/promise
24K	node_modules/nullthrows
1,7M	node_modules/lodash/fp
4,9M	node_modules/lodash
148K	node_modules/joi/dist
156K	node_modules/joi/lib/types
420K	node_modules/joi/lib
580K	node_modules/joi
20K	node_modules/leven
68K	node_modules/glob
8,0K	node_modules/execa/lib
36K	node_modules/execa
8,0K	node_modules/command-exists/lib
8,0K	node_modules/command-exists/test
44K	node_modules/command-exists
16K	node_modules/pretty-format/build/plugins/lib
76K	node_modules/pretty-format/build/plugins
116K	node_modules/pretty-format/build
140K	node_modules/pretty-format
144K	node_modules/envinfo/dist
168K	node_modules/envinfo
8,0K	node_modules/appdirsjs/dist
16K	node_modules/appdirsjs
4,0K	node_modules/deepmerge/dist
40K	node_modules/deepmerge
36K	node_modules/cosmiconfig/dist
72K	node_modules/cosmiconfig
100K	node_modules/ws/lib
132K	node_modules/ws
24K	node_modules/whatwg-fetch/dist
68K	node_modules/whatwg-fetch
12K	node_modules/stacktrace-parser/dist
24K	node_modules/stacktrace-parser
12K	node_modules/use-subscription/cjs
32K	node_modules/use-subscription
64K	node_modules/scheduler/umd
88K	node_modules/scheduler/cjs
188K	node_modules/scheduler
56K	node_modules/react-refresh/cjs
76K	node_modules/react-refresh
168K	node_modules/shelljs/src
4,0K	node_modules/shelljs/bin
308K	node_modules/shelljs
44K	node_modules/regenerator-runtime
8,0K	node_modules/react-native-codegen/lib/generators/modules/GenerateModuleObjCpp/source
48K	node_modules/react-native-codegen/lib/generators/modules/GenerateModuleObjCpp/header
128K	node_modules/react-native-codegen/lib/generators/modules/GenerateModuleObjCpp
88K	node_modules/react-native-codegen/lib/generators/modules/__test_fixtures__
332K	node_modules/react-native-codegen/lib/generators/modules
88K	node_modules/react-native-codegen/lib/generators/components/__test_fixtures__
340K	node_modules/react-native-codegen/lib/generators/components
688K	node_modules/react-native-codegen/lib/generators
8,0K	node_modules/react-native-codegen/lib/parsers/schema
48K	node_modules/react-native-codegen/lib/parsers/flow/modules/__test_fixtures__
124K	node_modules/react-native-codegen/lib/parsers/flow/modules
88K	node_modules/react-native-codegen/lib/parsers/flow/components/__test_fixtures__
184K	node_modules/react-native-codegen/lib/parsers/flow/components
340K	node_modules/react-native-codegen/lib/parsers/flow
348K	node_modules/react-native-codegen/lib/parsers
20K	node_modules/react-native-codegen/lib/cli/parser
12K	node_modules/react-native-codegen/lib/cli/generators
20K	node_modules/react-native-codegen/lib/cli/combine
68K	node_modules/react-native-codegen/lib/cli
1,2M	node_modules/react-native-codegen/lib
1,2M	node_modules/react-native-codegen
56K	node_modules/metro-runtime/src/polyfills
16K	node_modules/metro-runtime/src/modules/vendor
48K	node_modules/metro-runtime/src/modules
104K	node_modules/metro-runtime/src
108K	node_modules/metro-runtime
20K	node_modules/metro-react-native-babel-transformer/src
24K	node_modules/metro-react-native-babel-transformer
4,0K	node_modules/metro-babel-register/src
8,0K	node_modules/metro-babel-register
13M	node_modules/jsc-android/dist/org/webkit/android-jsc/r245459
13M	node_modules/jsc-android/dist/org/webkit/android-jsc
25M	node_modules/jsc-android/dist/org/webkit/android-jsc-intl/r245459
25M	node_modules/jsc-android/dist/org/webkit/android-jsc-intl
1,2M	node_modules/jsc-android/dist/org/webkit/android-jsc-cppruntime/r245459
1,3M	node_modules/jsc-android/dist/org/webkit/android-jsc-cppruntime
38M	node_modules/jsc-android/dist/org/webkit
38M	node_modules/jsc-android/dist/org
412K	node_modules/jsc-android/dist/include
39M	node_modules/jsc-android/dist
39M	node_modules/jsc-android
2,1M	node_modules/hermes-engine/win64-bin
2,7M	node_modules/hermes-engine/osx-bin
3,1M	node_modules/hermes-engine/linux64-bin
4,0K	node_modules/hermes-engine/android/include/jsi/test
108K	node_modules/hermes-engine/android/include/jsi
4,0K	node_modules/hermes-engine/android/include/hermes/synthtest/tests
4,0K	node_modules/hermes-engine/android/include/hermes/synthtest
52K	node_modules/hermes-engine/android/include/hermes/Public
152K	node_modules/hermes-engine/android/include/hermes
260K	node_modules/hermes-engine/android/include
12M	node_modules/hermes-engine/android
20M	node_modules/hermes-engine
176K	node_modules/event-target-shim/dist
208K	node_modules/event-target-shim
80K	node_modules/abort-controller/dist
108K	node_modules/abort-controller
32K	node_modules/anser/lib
56K	node_modules/anser
24K	node_modules/base-64
16K	node_modules/object-assign
32K	node_modules/to-regex-range
20K	node_modules/yocto-queue
20K	node_modules/p-limit
28K	node_modules/js-tokens
24K	node_modules/fill-range
16K	node_modules/at-least-node
64K	node_modules/picomatch/lib
112K	node_modules/picomatch
20K	node_modules/p-locate
28K	node_modules/braces/lib
76K	node_modules/braces
16K	node_modules/is-extglob
32K	node_modules/loose-envify
20K	node_modules/is-glob
36K	node_modules/jsonfile
16K	node_modules/universalify
48K	node_modules/graceful-fs
20K	node_modules/locate-path
20K	node_modules/path-exists
16K	node_modules/run-parallel
12K	node_modules/reusify/benchmarks
40K	node_modules/reusify
4,0K	node_modules/fastq/.github/workflows
8,0K	node_modules/fastq/.github
24K	node_modules/fastq/test
72K	node_modules/fastq
72K	node_modules/micromatch
28K	node_modules/glob-parent
16K	node_modules/merge2
20K	node_modules/color-name
24K	node_modules/base64-js
44K	node_modules/color-convert
20K	node_modules/supports-color
32K	node_modules/ansi-styles
12K	node_modules/fs-extra/lib/util
12K	node_modules/fs-extra/lib/remove
4,0K	node_modules/fs-extra/lib/path-exists
4,0K	node_modules/fs-extra/lib/output
8,0K	node_modules/fs-extra/lib/move
8,0K	node_modules/fs-extra/lib/move-sync
12K	node_modules/fs-extra/lib/mkdirs
16K	node_modules/fs-extra/lib/json
4,0K	node_modules/fs-extra/lib/fs
4,0K	node_modules/fs-extra/lib/empty
24K	node_modules/fs-extra/lib/ensure
12K	node_modules/fs-extra/lib/copy
12K	node_modules/fs-extra/lib/copy-sync
136K	node_modules/fs-extra/lib
220K	node_modules/fs-extra
20K	node_modules/find-up
8,0K	node_modules/fast-glob/out/managers
24K	node_modules/fast-glob/out/readers
8,0K	node_modules/fast-glob/out/types
16K	node_modules/fast-glob/out/providers/matchers
8,0K	node_modules/fast-glob/out/providers/transformers
24K	node_modules/fast-glob/out/providers/filters
80K	node_modules/fast-glob/out/providers
68K	node_modules/fast-glob/out/utils
208K	node_modules/fast-glob/out
240K	node_modules/fast-glob
16K	node_modules/chalk/source
52K	node_modules/chalk
24K	node_modules/commander/typings
164K	node_modules/commander
24K	node_modules/pvutils/src
68K	node_modules/pvutils/build
104K	node_modules/pvutils
28K	node_modules/invariant
8,0K	node_modules/expo-modules-autolinking/src/platforms
24K	node_modules/expo-modules-autolinking/src
4,0K	node_modules/expo-modules-autolinking/bin
28K	node_modules/expo-modules-autolinking/build/platforms
80K	node_modules/expo-modules-autolinking/build
124K	node_modules/expo-modules-autolinking
24K	node_modules/compare-versions
180K	node_modules/asn1js/src
508K	node_modules/asn1js/build
708K	node_modules/asn1js
12K	node_modules/webcrypto-core/build/types/utils
8,0K	node_modules/webcrypto-core/build/types/pbkdf
4,0K	node_modules/webcrypto-core/build/types/hmac
8,0K	node_modules/webcrypto-core/build/types/hkdf
12K	node_modules/webcrypto-core/build/types/json/converters
16K	node_modules/webcrypto-core/build/types/json
20K	node_modules/webcrypto-core/build/types/rsa
24K	node_modules/webcrypto-core/build/types/ec
8,0K	node_modules/webcrypto-core/build/types/des
32K	node_modules/webcrypto-core/build/types/aes
24K	node_modules/webcrypto-core/build/types/errors
8,0K	node_modules/webcrypto-core/build/types/asn1/converters
12K	node_modules/webcrypto-core/build/types/asn1/rfc8410
60K	node_modules/webcrypto-core/build/types/asn1
248K	node_modules/webcrypto-core/build/types
348K	node_modules/webcrypto-core/build
360K	node_modules/webcrypto-core
8,0K	node_modules/tslib/modules
68K	node_modules/tslib
16K	node_modules/pvtsutils/build/types
40K	node_modules/pvtsutils/build
52K	node_modules/pvtsutils
360K	node_modules/webcrypto-shim/test/alg
384K	node_modules/webcrypto-shim/test
480K	node_modules/webcrypto-shim
24K	node_modules/str2buf/node
24K	node_modules/str2buf/dist
60K	node_modules/str2buf
8,0K	node_modules/react-native-securerandom/windows/RNRandomBytes/Properties
28K	node_modules/react-native-securerandom/windows/RNRandomBytes
40K	node_modules/react-native-securerandom/windows
4,0K	node_modules/react-native-securerandom/ios/RNSecureRandom.xcworkspace
12K	node_modules/react-native-securerandom/ios/RNSecureRandom.xcodeproj
28K	node_modules/react-native-securerandom/ios
8,0K	node_modules/react-native-securerandom/android/src/main/java/net/rhogan/rnrandombytes
8,0K	node_modules/react-native-securerandom/android/src/main/java/net/rhogan
8,0K	node_modules/react-native-securerandom/android/src/main/java/net
8,0K	node_modules/react-native-securerandom/android/src/main/java
12K	node_modules/react-native-securerandom/android/src/main
12K	node_modules/react-native-securerandom/android/src
32K	node_modules/react-native-securerandom/android/build/outputs/aar
32K	node_modules/react-native-securerandom/android/build/outputs
68K	node_modules/react-native-securerandom/android/build/intermediates/symbols/androidTest/debug
68K	node_modules/react-native-securerandom/android/build/intermediates/symbols/androidTest
68K	node_modules/react-native-securerandom/android/build/intermediates/symbols
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/xml
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-zu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-zh-rTW
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-zh-rHK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-zh-rCN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-xlarge-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-xlarge-land-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-w720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-w600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-w500dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-w480dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-w360dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-vi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-v23
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-v22
20K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-v21
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-v18
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-v17
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-v14
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-v12
12K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-v11
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-uz-rUZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ur-rPK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-uk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-tr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-tl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-th
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-te-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ta-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-sw600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-sw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-sv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-sr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-sq-rAL
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-sl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-sk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-si-rLK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ru
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ro
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-pt-rPT
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-pt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-port
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-pl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-pa-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-nl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ne-rNP
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-nb
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-my-rMM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ms-rMY
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-mr-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-mn-rMN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ml-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-mk-rMK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-lv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-lt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-lo-rLA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-large-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-land
36K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/color
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ko
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-kn-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-km-rKH
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-kk-rKZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ka-rGE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ja
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-iw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-it
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-is-rIS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-in
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-hy-rAM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-hu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-hr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-hi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-hdpi-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-h720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-gu-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-gl-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-fr-rCA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-fr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-fi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-fa
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-eu-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-et-rEE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-es-rUS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-es
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-en-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-en-rGB
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-en-rAU
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-el
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-de
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-da
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-cs
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ca
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-bn-rBD
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-bg
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-az-rAZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ar
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-am
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-af
120K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values
180K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/layout
76K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-xhdpi-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-v23
8,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-v21
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-mdpi-v4
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable-hdpi-v4
88K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/drawable
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/color-v23
8,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/color-v11
64K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/anim
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release/values-ky-rKG
1,7M	node_modules/react-native-securerandom/android/build/intermediates/res/merged/release
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/xml
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-zu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-zh-rTW
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-zh-rHK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-zh-rCN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-xlarge-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-xlarge-land-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-w720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-w600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-w500dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-w480dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-w360dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-vi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-v23
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-v22
20K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-v21
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-v18
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-v17
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-v14
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-v12
12K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-v11
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-uz-rUZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ur-rPK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-uk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-tr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-tl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-th
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-te-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ta-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-sw600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-sw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-sv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-sr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-sq-rAL
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-sl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-sk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-si-rLK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ru
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ro
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-pt-rPT
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-pt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-port
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-pl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-pa-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-nl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ne-rNP
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-nb
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-my-rMM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ms-rMY
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-mr-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-mn-rMN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ml-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-mk-rMK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-lv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-lt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-lo-rLA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-large-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-land
36K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/color
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ko
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-kn-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-km-rKH
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-kk-rKZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ka-rGE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ja
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-iw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-it
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-is-rIS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-in
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-hy-rAM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-hu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-hr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-hi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-hdpi-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-h720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-gu-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-gl-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-fr-rCA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-fr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-fi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-fa
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-eu-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-et-rEE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-es-rUS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-es
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-en-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-en-rGB
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-en-rAU
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-el
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-de
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-da
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-cs
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ca
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-bn-rBD
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-bg
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-az-rAZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ar
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-am
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-af
120K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values
180K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/layout
76K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-v23
8,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-v21
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-mdpi-v4
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable-hdpi-v4
88K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/drawable
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/color-v23
8,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/color-v11
64K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/anim
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug/values-ky-rKG
1,7M	node_modules/react-native-securerandom/android/build/intermediates/res/merged/debug
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/xml
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-zu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-zh-rTW
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-zh-rHK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-zh-rCN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-land-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-w720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-w600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-w500dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-w480dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-w360dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-vi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-v23
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-v22
20K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-v21
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-v18
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-v17
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-v14
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-v12
12K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-v11
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-uz-rUZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ur-rPK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-uk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-tr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-tl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-th
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-te-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ta-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-sw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-sv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-sr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-sq-rAL
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-sl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-sk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-si-rLK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ru
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ro
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-pt-rPT
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-pt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-port
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-pl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-pa-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-nl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ne-rNP
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-nb
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-my-rMM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ms-rMY
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-mr-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-mn-rMN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ml-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-mk-rMK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-lv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-lt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-lo-rLA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-large-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-land
36K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/color
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ko
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-kn-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-km-rKH
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-kk-rKZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ka-rGE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ja
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-iw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-it
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-is-rIS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-in
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-hy-rAM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-hu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-hr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-hi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-gu-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-gl-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-fr-rCA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-fr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-fi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-fa
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-eu-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-et-rEE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-es-rUS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-es
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-en-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-en-rGB
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-en-rAU
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-el
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-de
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-da
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-cs
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ca
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-bn-rBD
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-bg
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-az-rAZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ar
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-am
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-af
120K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values
180K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/layout
76K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-v23
8,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-v21
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi
16K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi
152K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi
88K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/drawable
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/color-v23
8,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/color-v11
64K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/anim
4,0K	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug/values-ky-rKG
1,7M	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest/debug
1,7M	node_modules/react-native-securerandom/android/build/intermediates/res/merged/androidTest
5,0M	node_modules/react-native-securerandom/android/build/intermediates/res/merged
5,4M	node_modules/react-native-securerandom/android/build/intermediates/res
4,0K	node_modules/react-native-securerandom/android/build/intermediates/manifests/aapt/release
4,0K	node_modules/react-native-securerandom/android/build/intermediates/manifests/aapt/debug
8,0K	node_modules/react-native-securerandom/android/build/intermediates/manifests/aapt
8,0K	node_modules/react-native-securerandom/android/build/intermediates/manifests
4,0K	node_modules/react-native-securerandom/android/build/intermediates/manifest/androidTest/debug
4,0K	node_modules/react-native-securerandom/android/build/intermediates/manifest/androidTest
4,0K	node_modules/react-native-securerandom/android/build/intermediates/manifest
148K	node_modules/react-native-securerandom/android/build/intermediates/blame/res/release/single
1,8M	node_modules/react-native-securerandom/android/build/intermediates/blame/res/release/multi
1,9M	node_modules/react-native-securerandom/android/build/intermediates/blame/res/release
148K	node_modules/react-native-securerandom/android/build/intermediates/blame/res/debug/single
1,8M	node_modules/react-native-securerandom/android/build/intermediates/blame/res/debug/multi
1,9M	node_modules/react-native-securerandom/android/build/intermediates/blame/res/debug
148K	node_modules/react-native-securerandom/android/build/intermediates/blame/res/androidTest/debug/single
1,8M	node_modules/react-native-securerandom/android/build/intermediates/blame/res/androidTest/debug/multi
1,9M	node_modules/react-native-securerandom/android/build/intermediates/blame/res/androidTest/debug
1,9M	node_modules/react-native-securerandom/android/build/intermediates/blame/res/androidTest
5,7M	node_modules/react-native-securerandom/android/build/intermediates/blame/res
5,7M	node_modules/react-native-securerandom/android/build/intermediates/blame
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental-safeguard/release
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental-safeguard/debug
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental-safeguard/androidTest/debug
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental-safeguard/androidTest
12K	node_modules/react-native-securerandom/android/build/intermediates/incremental-safeguard
8,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/packageReleaseResources
8,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/packageDebugResources
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseShaders
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-land-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-w720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-w600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-w500dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-w480dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-w360dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22
20K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v14
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v12
12K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v11
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz-rUZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur-rPK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sq-rAL
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-si-rLK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ru
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ro
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rPT
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-port
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pa-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ne-rNP
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nb
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-my-rMM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ms-rMY
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mr-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ml-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mk-rMK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lo-rLA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky-rKG
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km-rKH
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk-rKZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka-rGE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is-rIS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy-rAM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et-rEE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn-rBD
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az-rAZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am
120K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mn-rMN
536K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources/merged.dir
1,0M	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseResources
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/compileDebugAndroidTestAidl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseAssets
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugShaders
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22
20K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12
12K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am
120K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN
536K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources/merged.dir
1020K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugResources
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugJniLibFolders
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAssets
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22
20K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12
12K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v11
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz-rUZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur-rPK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sq-rAL
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si-rLK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pa-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne-rNP
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my-rMM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms-rMY
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk-rMK
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo-rLA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az-rAZ
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am
120K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn-rMN
536K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir
1,0M	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeDebugAndroidTestResources
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/compileReleaseAidl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/compileDebugAidl
4,0K	node_modules/react-native-securerandom/android/build/intermediates/incremental/mergeReleaseJniLibFolders
3,1M	node_modules/react-native-securerandom/android/build/intermediates/incremental
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/org/webkit/android_jsc
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/org/webkit
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/org
136K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/net/rhogan/rnrandombytes
136K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/net/rhogan
136K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/net
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/soloader
124K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/react
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/imagepipelinebase
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/imagepipeline/backends/okhttp3
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/imagepipeline/backends
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/imagepipeline
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/fbui/textlayoutbuilder
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/fbui
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/fbcore
16K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/drawee/backends/pipeline
16K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/drawee/backends
32K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook/drawee
184K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com/facebook
184K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/com
116K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/android/support/v7/appcompat
116K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/android/support/v7
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/android/support/v4
120K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/android/support
120K	node_modules/react-native-securerandom/android/build/intermediates/classes/release/android
444K	node_modules/react-native-securerandom/android/build/intermediates/classes/release
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/org/webkit/android_jsc
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/org/webkit
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/org
136K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/net/rhogan/rnrandombytes
136K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/net/rhogan
136K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/net
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/soloader
124K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/react
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/imagepipelinebase
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/imagepipeline/backends/okhttp3
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/imagepipeline/backends
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/imagepipeline
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/fbui/textlayoutbuilder
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/fbui
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/fbcore
16K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/drawee/backends/pipeline
16K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/drawee/backends
32K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook/drawee
184K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com/facebook
184K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/com
116K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/android/support/v7/appcompat
116K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/android/support/v7
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/android/support/v4
120K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/android/support
120K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug/android
444K	node_modules/react-native-securerandom/android/build/intermediates/classes/debug
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/org/webkit/android_jsc
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/org/webkit
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/org
116K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/net/rhogan/rnrandombytes/test
228K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/net/rhogan/rnrandombytes
228K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/net/rhogan
228K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/net
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/soloader
112K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/react
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/imagepipelinebase
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/imagepipeline/backends/okhttp3
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/imagepipeline/backends
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/imagepipeline
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/fbui/textlayoutbuilder
8,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/fbui
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/fbcore
16K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/drawee/backends/pipeline
16K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/drawee/backends
32K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook/drawee
172K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com/facebook
172K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/com
100K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/android/support/v7/appcompat
100K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/android/support/v7
4,0K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/android/support/v4
104K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/android/support
104K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug/android
508K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest/debug
508K	node_modules/react-native-securerandom/android/build/intermediates/classes/androidTest
1,4M	node_modules/react-native-securerandom/android/build/intermediates/classes
76K	node_modules/react-native-securerandom/android/build/intermediates/bundles/default
76K	node_modules/react-native-securerandom/android/build/intermediates/bundles/debug
152K	node_modules/react-native-securerandom/android/build/intermediates/bundles
16M	node_modules/react-native-securerandom/android/build/intermediates
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/org/webkit/android_jsc
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/org/webkit
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/org
400K	node_modules/react-native-securerandom/android/build/generated/source/r/release/net/rhogan/rnrandombytes
400K	node_modules/react-native-securerandom/android/build/generated/source/r/release/net/rhogan
400K	node_modules/react-native-securerandom/android/build/generated/source/r/release/net
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/soloader
92K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/react
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/imagepipelinebase
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/imagepipeline/backends/okhttp3
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/imagepipeline/backends
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/imagepipeline
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/fbui/textlayoutbuilder
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/fbui
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/fbcore
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/drawee/backends/pipeline
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/drawee/backends
16K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook/drawee
132K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com/facebook
132K	node_modules/react-native-securerandom/android/build/generated/source/r/release/com
84K	node_modules/react-native-securerandom/android/build/generated/source/r/release/android/support/v7/appcompat
84K	node_modules/react-native-securerandom/android/build/generated/source/r/release/android/support/v7
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/release/android/support/v4
88K	node_modules/react-native-securerandom/android/build/generated/source/r/release/android/support
88K	node_modules/react-native-securerandom/android/build/generated/source/r/release/android
624K	node_modules/react-native-securerandom/android/build/generated/source/r/release
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/org/webkit/android_jsc
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/org/webkit
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/org
400K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/net/rhogan/rnrandombytes
400K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/net/rhogan
400K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/net
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/soloader
92K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/react
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/imagepipelinebase
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/imagepipeline/backends/okhttp3
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/imagepipeline/backends
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/imagepipeline
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/fbui/textlayoutbuilder
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/fbui
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/fbcore
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/drawee/backends/pipeline
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/drawee/backends
16K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook/drawee
132K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com/facebook
132K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/com
84K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/android/support/v7/appcompat
84K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/android/support/v7
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/android/support/v4
88K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/android/support
88K	node_modules/react-native-securerandom/android/build/generated/source/r/debug/android
624K	node_modules/react-native-securerandom/android/build/generated/source/r/debug
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/org/webkit/android_jsc
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/org/webkit
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/org
412K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/net/rhogan/rnrandombytes/test
512K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/net/rhogan/rnrandombytes
512K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/net/rhogan
512K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/net
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/soloader
100K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/react
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/imagepipelinebase
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/imagepipeline/backends/okhttp3
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/imagepipeline/backends
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/imagepipeline
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/fbui/textlayoutbuilder
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/fbui
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/fbcore
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/backends/pipeline
8,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/backends
16K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook/drawee
140K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com/facebook
140K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/com
92K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/android/support/v7/appcompat
92K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/android/support/v7
4,0K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/android/support/v4
96K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/android/support
96K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug/android
752K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest/debug
752K	node_modules/react-native-securerandom/android/build/generated/source/r/androidTest
2,0M	node_modules/react-native-securerandom/android/build/generated/source/r
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/release/net/rhogan/rnrandombytes
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/release/net/rhogan
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/release/net
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/release
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/debug/net/rhogan/rnrandombytes
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/debug/net/rhogan
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/debug/net
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/debug
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/androidTest/debug/net/rhogan/rnrandombytes/test
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/androidTest/debug/net/rhogan/rnrandombytes
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/androidTest/debug/net/rhogan
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/androidTest/debug/net
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/androidTest/debug
4,0K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig/androidTest
12K	node_modules/react-native-securerandom/android/build/generated/source/buildConfig
2,0M	node_modules/react-native-securerandom/android/build/generated/source
2,0M	node_modules/react-native-securerandom/android/build/generated
18M	node_modules/react-native-securerandom/android/build
18M	node_modules/react-native-securerandom/android
18M	node_modules/react-native-securerandom
140K	node_modules/react/umd
176K	node_modules/react/cjs
344K	node_modules/react
712K	node_modules/msrcrypto/dist
1,2M	node_modules/msrcrypto
24K	node_modules/b64u-lite/dist
24K	node_modules/b64u-lite/bundle
60K	node_modules/b64u-lite
36K	node_modules/react-native/third-party-podspecs
56K	node_modules/react-native/flow
4,0K	node_modules/react-native/local-cli
24K	node_modules/react-native/flow-typed/npm
24K	node_modules/react-native/flow-typed
40K	node_modules/react-native/jest
56K	node_modules/react-native/scripts
16M	node_modules/react-native/android/com/facebook/react/react-native/0.64.2
16M	node_modules/react-native/android/com/facebook/react/react-native
16M	node_modules/react-native/android/com/facebook/react
16M	node_modules/react-native/android/com/facebook
16M	node_modules/react-native/android/com
16M	node_modules/react-native/android
4,0K	node_modules/react-native/React/AccessibilityResources/en.lproj
4,0K	node_modules/react-native/React/AccessibilityResources
24K	node_modules/react-native/React/Tests/Text
4,0K	node_modules/react-native/React/Tests/Mounting
28K	node_modules/react-native/React/Tests
8,0K	node_modules/react-native/React/UIUtils
60K	node_modules/react-native/React/Profiler
24K	node_modules/react-native/React/Inspector
8,0K	node_modules/react-native/React/CxxUtils
144K	node_modules/react-native/React/Modules
48K	node_modules/react-native/React/DevSupport
32K	node_modules/react-native/React/Base/Surface/SurfaceHostingView
100K	node_modules/react-native/React/Base/Surface
660K	node_modules/react-native/React/Base
96K	node_modules/react-native/React/Views/ScrollView
36K	node_modules/react-native/React/Views/SafeAreaView
24K	node_modules/react-native/React/Views/RefreshControl
596K	node_modules/react-native/React/Views
32K	node_modules/react-native/React/Fabric/Surface
28K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/View
8,0K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/UnimplementedView
8,0K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/UnimplementedComponent
40K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/TextInput
8,0K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/Switch
16K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/Slider
8,0K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/SafeAreaView
8,0K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/Root
12K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/Picker
28K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/Text
20K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/LegacyViewManagerInterop
20K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/InputAccessory
12K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/Image
24K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/Modal
56K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/ScrollView
8,0K	node_modules/react-native/React/Fabric/Mounting/ComponentViews/ActivityIndicator
312K	node_modules/react-native/React/Fabric/Mounting/ComponentViews
396K	node_modules/react-native/React/Fabric/Mounting
16K	node_modules/react-native/React/Fabric/Utils
552K	node_modules/react-native/React/Fabric
104K	node_modules/react-native/React/CxxBridge
216K	node_modules/react-native/React/FBReactNativeSpec/FBReactNativeSpec
220K	node_modules/react-native/React/FBReactNativeSpec
40K	node_modules/react-native/React/CxxModule
392K	node_modules/react-native/React/CoreModules
2,9M	node_modules/react-native/React
4,0K	node_modules/react-native/Libraries/YellowBox
4,0K	node_modules/react-native/Libraries/Reliability
4,0K	node_modules/react-native/Libraries/__flowtests__
12K	node_modules/react-native/Libraries/Share
4,0K	node_modules/react-native/Libraries/TurboModule/samples
12K	node_modules/react-native/Libraries/TurboModule
16K	node_modules/react-native/Libraries/PermissionsAndroid
24K	node_modules/react-native/Libraries/Performance
4,0K	node_modules/react-native/Libraries/EventEmitter/__mocks__
20K	node_modules/react-native/Libraries/EventEmitter
32K	node_modules/react-native/Libraries/NativeModules/specs
32K	node_modules/react-native/Libraries/NativeModules
16K	node_modules/react-native/Libraries/Modal
12K	node_modules/react-native/Libraries/Linking
8,0K	node_modules/react-native/Libraries/LayoutAnimation
16K	node_modules/react-native/Libraries/JSInspector
40K	node_modules/react-native/Libraries/Pressability
8,0K	node_modules/react-native/Libraries/HeapCapture
8,0K	node_modules/react-native/Libraries/Lists/__flowtests__
164K	node_modules/react-native/Libraries/Lists
4,0K	node_modules/react-native/Libraries/StyleSheet/__flowtests__
104K	node_modules/react-native/Libraries/StyleSheet
104K	node_modules/react-native/Libraries/DeprecatedPropTypes
48K	node_modules/react-native/Libraries/NewAppScreen/components
52K	node_modules/react-native/Libraries/NewAppScreen
8,0K	node_modules/react-native/Libraries/Types
4,0K	node_modules/react-native/Libraries/Core/SegmentFetcher
20K	node_modules/react-native/Libraries/Core/Timers
24K	node_modules/react-native/Libraries/Core/Devtools
4,0K	node_modules/react-native/Libraries/Core/__mocks__
148K	node_modules/react-native/Libraries/Core
24K	node_modules/react-native/Libraries/BugReporting
72K	node_modules/react-native/Libraries/Inspector
76K	node_modules/react-native/Libraries/Interaction
8,0K	node_modules/react-native/Libraries/BatchedBridge/__mocks__
36K	node_modules/react-native/Libraries/BatchedBridge
20K	node_modules/react-native/Libraries/Storage
12K	node_modules/react-native/Libraries/AppState
20K	node_modules/react-native/Libraries/Utilities/differ
12K	node_modules/react-native/Libraries/Utilities/__mocks__
288K	node_modules/react-native/Libraries/Utilities
88K	node_modules/react-native/Libraries/ReactNative
32K	node_modules/react-native/Libraries/LogBox/Data
20K	node_modules/react-native/Libraries/LogBox/UI/LogBoxImages
100K	node_modules/react-native/Libraries/LogBox/UI
148K	node_modules/react-native/Libraries/LogBox
28K	node_modules/react-native/Libraries/Animated/animations
24K	node_modules/react-native/Libraries/Animated/components
84K	node_modules/react-native/Libraries/Animated/nodes
228K	node_modules/react-native/Libraries/Animated
20K	node_modules/react-native/Libraries/Alert
16K	node_modules/react-native/Libraries/ActionSheetIOS
8,0K	node_modules/react-native/Libraries/Components/UnimplementedViews
12K	node_modules/react-native/Libraries/Components/Slider
52K	node_modules/react-native/Libraries/Components/View
12K	node_modules/react-native/Libraries/Components/SegmentedControlIOS
8,0K	node_modules/react-native/Libraries/Components/SafeAreaView
12K	node_modules/react-native/Libraries/Components/ProgressViewIOS
12K	node_modules/react-native/Libraries/Components/ProgressBarAndroid
12K	node_modules/react-native/Libraries/Components/Pressable
12K	node_modules/react-native/Libraries/Components/ToastAndroid
28K	node_modules/react-native/Libraries/Components/StatusBar
8,0K	node_modules/react-native/Libraries/Components/Sound
12K	node_modules/react-native/Libraries/Components/MaskedView
20K	node_modules/react-native/Libraries/Components/Keyboard
16K	node_modules/react-native/Libraries/Components/DatePicker
16K	node_modules/react-native/Libraries/Components/DatePickerAndroid
8,0K	node_modules/react-native/Libraries/Components/Clipboard
4,0K	node_modules/react-native/Libraries/Components/Touchable/__mocks__
104K	node_modules/react-native/Libraries/Components/Touchable
88K	node_modules/react-native/Libraries/Components/TextInput
16K	node_modules/react-native/Libraries/Components/Switch
4,0K	node_modules/react-native/Libraries/Components/RefreshControl/__mocks__
20K	node_modules/react-native/Libraries/Components/RefreshControl
96K	node_modules/react-native/Libraries/Components/ScrollView
24K	node_modules/react-native/Libraries/Components/DrawerAndroid
52K	node_modules/react-native/Libraries/Components/Picker
12K	node_modules/react-native/Libraries/Components/ActivityIndicator
24K	node_modules/react-native/Libraries/Components/AccessibilityInfo
736K	node_modules/react-native/Libraries/Components
4,0K	node_modules/react-native/Libraries/vendor/core
24K	node_modules/react-native/Libraries/vendor/emitter
28K	node_modules/react-native/Libraries/vendor
32K	node_modules/react-native/Libraries/Wrapper/Example
72K	node_modules/react-native/Libraries/Wrapper
28K	node_modules/react-native/Libraries/Vibration
32K	node_modules/react-native/Libraries/SurfaceHostingComponent
16K	node_modules/react-native/Libraries/SurfaceBackedComponent
32K	node_modules/react-native/Libraries/Settings
4,0K	node_modules/react-native/Libraries/WebSocket/__mocks__
92K	node_modules/react-native/Libraries/WebSocket
60K	node_modules/react-native/Libraries/PushNotificationIOS
24K	node_modules/react-native/Libraries/LinkingIOS
140K	node_modules/react-native/Libraries/Network
20K	node_modules/react-native/Libraries/TypeSafety
8,0K	node_modules/react-native/Libraries/Blob/__mocks__
96K	node_modules/react-native/Libraries/Blob
364K	node_modules/react-native/Libraries/Image
44K	node_modules/react-native/Libraries/NativeAnimation/Drivers
112K	node_modules/react-native/Libraries/NativeAnimation/Nodes
232K	node_modules/react-native/Libraries/NativeAnimation
16K	node_modules/react-native/Libraries/Text/VirtualText
16K	node_modules/react-native/Libraries/Text/RawText
20K	node_modules/react-native/Libraries/Text/BaseText
28K	node_modules/react-native/Libraries/Text/TextInput/Singleline
32K	node_modules/react-native/Libraries/Text/TextInput/Multiline
184K	node_modules/react-native/Libraries/Text/TextInput
52K	node_modules/react-native/Libraries/Text/Text
352K	node_modules/react-native/Libraries/Text
4,8M	node_modules/react-native/Libraries/Renderer/implementations
28K	node_modules/react-native/Libraries/Renderer/shims
4,8M	node_modules/react-native/Libraries/Renderer
12K	node_modules/react-native/Libraries/ReactPrivate
4,0K	node_modules/react-native/Libraries/RCTRequired/RCTRequired
12K	node_modules/react-native/Libraries/RCTRequired
8,0K	node_modules/react-native/Libraries/FBLazyVector/FBLazyVector
16K	node_modules/react-native/Libraries/FBLazyVector
9,0M	node_modules/react-native/Libraries
4,0K	node_modules/react-native/ReactAndroid/libs
8,0K	node_modules/react-native/ReactAndroid/src/test/resources
8,0K	node_modules/react-native/ReactAndroid/src/test/java/org/mockito/configuration
8,0K	node_modules/react-native/ReactAndroid/src/test/java/org/mockito
8,0K	node_modules/react-native/ReactAndroid/src/test/java/org
28K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/views/textinput
4,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/views/slider
12K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/views/image
24K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/views/text
4,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/views/view
76K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/views
8,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/util
8,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/uimanager/layoutanimation
128K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/uimanager
12K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/packagerconnection
12K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules/timing
8,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules/share
4,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules/camera
52K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules/network
8,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules/dialog
4,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules/clipboard
8,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules/blob
12K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules/storage
112K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/modules
24K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/devsupport
32K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/bridge
64K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react/animated
476K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/react
8,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/common/logging
8,0K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook/common
484K	node_modules/react-native/ReactAndroid/src/test/java/com/facebook
484K	node_modules/react-native/ReactAndroid/src/test/java/com
492K	node_modules/react-native/ReactAndroid/src/test/java
500K	node_modules/react-native/ReactAndroid/src/test
128K	node_modules/react-native/ReactAndroid/src/androidTest/js
4,0K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook/react/bridge
20K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook/react/tests/core
264K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook/react/tests
12K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook/react/testing/rule
12K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook/react/testing/network
20K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook/react/testing/idledetection
164K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook/react/testing
432K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook/react
432K	node_modules/react-native/ReactAndroid/src/androidTest/java/com/facebook
432K	node_modules/react-native/ReactAndroid/src/androidTest/java/com
432K	node_modules/react-native/ReactAndroid/src/androidTest/java
8,0K	node_modules/react-native/ReactAndroid/src/androidTest/buck-runner
4,0K	node_modules/react-native/ReactAndroid/src/androidTest/assets
576K	node_modules/react-native/ReactAndroid/src/androidTest
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/testing-support-lib
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/sqlite
8,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/robolectric/4.4
8,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/robolectric
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/okio
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/okhttp
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/mockito2
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/mockito
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/junit
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/jsr-330
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/jsr-305
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/javapoet
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/infer-annotations
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/fest
20K	node_modules/react-native/ReactAndroid/src/main/third-party/java/buck-android-support
4,0K	node_modules/react-native/ReactAndroid/src/main/third-party/java/asm
80K	node_modules/react-native/ReactAndroid/src/main/third-party/java
8,0K	node_modules/react-native/ReactAndroid/src/main/third-party/android/support/v7/appcompat
8,0K	node_modules/react-native/ReactAndroid/src/main/third-party/android/support/v7
16K	node_modules/react-native/ReactAndroid/src/main/third-party/android/support/v4
24K	node_modules/react-native/ReactAndroid/src/main/third-party/android/support
16K	node_modules/react-native/ReactAndroid/src/main/third-party/android/androidx
40K	node_modules/react-native/ReactAndroid/src/main/third-party/android
120K	node_modules/react-native/ReactAndroid/src/main/third-party
4,0K	node_modules/react-native/ReactAndroid/src/main/res/systeminfo/values
4,0K	node_modules/react-native/ReactAndroid/src/main/res/systeminfo
4,0K	node_modules/react-native/ReactAndroid/src/main/res/shell/values
4,0K	node_modules/react-native/ReactAndroid/src/main/res/shell
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-zu
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-zh-rTW
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-zh-rHK
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-zh-rCN
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-wo
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-vi
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ur
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-uk
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-tr
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-tl
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-th
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-te
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ta
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-sw
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-sv
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-sr
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-sq
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-sn
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-sl
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-sk
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-si
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ru
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ro
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-qz
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-pt
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-pt-rPT
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-pl
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-pa
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-nl
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ne
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-nb
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-my
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ms
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-mr
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-mn
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ml
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-mk
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-lv
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-lt
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-lo
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ko
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-kn
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-km
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ka
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ja
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-iw
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-it
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-is
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-in
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-hu
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-hr
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-hi
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-gu
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-fr
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-fr-rCA
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-fi
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-fb
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-fb-rLS
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-fa
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-et
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-es
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-es-rES
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-en-rGB
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-el
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-de
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-da
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-cs
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-cb
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ca
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-bs
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-bn
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-bg
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-az
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-as
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-ar
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values-af
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/xml
4,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/drawable
20K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/layout
12K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/values
8,0K	node_modules/react-native/ReactAndroid/src/main/res/devsupport/anim
352K	node_modules/react-native/ReactAndroid/src/main/res/devsupport
8,0K	node_modules/react-native/ReactAndroid/src/main/res/views/uimanager/values
8,0K	node_modules/react-native/ReactAndroid/src/main/res/views/uimanager
4,0K	node_modules/react-native/ReactAndroid/src/main/res/views/modal/values
16K	node_modules/react-native/ReactAndroid/src/main/res/views/modal/anim
20K	node_modules/react-native/ReactAndroid/src/main/res/views/modal
28K	node_modules/react-native/ReactAndroid/src/main/res/views
392K	node_modules/react-native/ReactAndroid/src/main/res
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/soloader/java/com/facebook/soloader
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/soloader/java/com/facebook
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/soloader/java/com
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/soloader/java
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/soloader
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fresco/fresco-react-native
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fresco
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbjni
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbcore/src/main/java/com/facebook/common/logging
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbcore/src/main/java/com/facebook/common
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbcore/src/main/java/com/facebook
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbcore/src/main/java/com
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbcore/src/main/java
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbcore/src/main
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbcore/src
4,0K	node_modules/react-native/ReactAndroid/src/main/libraries/fbcore
16K	node_modules/react-native/ReactAndroid/src/main/libraries
4,0K	node_modules/react-native/ReactAndroid/src/main/jni/third-party/jsc
4,0K	node_modules/react-native/ReactAndroid/src/main/jni/third-party/folly
4,0K	node_modules/react-native/ReactAndroid/src/main/jni/third-party/double-conversion
4,0K	node_modules/react-native/ReactAndroid/src/main/jni/third-party/boost
12K	node_modules/react-native/ReactAndroid/src/main/jni/third-party/glog
4,0K	node_modules/react-native/ReactAndroid/src/main/jni/third-party/glibc
32K	node_modules/react-native/ReactAndroid/src/main/jni/third-party
4,0K	node_modules/react-native/ReactAndroid/src/main/jni/prebuilt/lib
8,0K	node_modules/react-native/ReactAndroid/src/main/jni/prebuilt
12K	node_modules/react-native/ReactAndroid/src/main/jni/react/perftests
236K	node_modules/react-native/ReactAndroid/src/main/jni/react/jni
248K	node_modules/react-native/ReactAndroid/src/main/jni/react
4,0K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/hermes
48K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/jni-hack/real
60K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/jni-hack
4,0K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/fbgloginit/fb
16K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/fbgloginit
68K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/fb/include/fb
68K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/fb/include
84K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/fb
8,0K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/fbjni
96K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/yogajni/jni
108K	node_modules/react-native/ReactAndroid/src/main/jni/first-party/yogajni
284K	node_modules/react-native/ReactAndroid/src/main/jni/first-party
576K	node_modules/react-native/ReactAndroid/src/main/jni
168K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/yoga
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/systrace
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/proguard/annotations
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/proguard
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/perftest
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/debug/tags
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/debug/holder
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/debug/debugoverlay/model
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/debug/debugoverlay
32K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/debug
128K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/view
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/unimplementedview
164K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/textinput
24K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/frescosupport
284K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/switchview
24K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/swiperefresh
28K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/slider
156K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/scroll
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/progressbar
4,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/picker/events
36K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/picker
48K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/modal
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/imagehelper
76K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/image
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/drawer/events
36K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/drawer
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/common
1,1M	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views
60K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/viewmanagers/jni/react/renderer/components/rncore
60K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/viewmanagers/jni/react/renderer/components
60K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/viewmanagers/jni/react/renderer
60K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/viewmanagers/jni/react
64K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/viewmanagers/jni
220K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/viewmanagers
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/util
4,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/debug
80K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/events
68K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/layoutanimation
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/util
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/common
24K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/annotations
808K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/touch
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/surface
24K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/shell
28K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/processing
48K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/packagerconnection
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/module/processing
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/module/model
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/module/annotations
40K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/module
36K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/jstasks
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/jscexecutor
28K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/devsupport/interfaces
272K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/devsupport
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/config
4,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/common/annotations
4,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/common/futures
4,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/common/build
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/common/network
80K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/common
44K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/bridge/queue
588K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/bridge
160K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/animated
28K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/turbomodule/core/jni/ReactCommon
36K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/turbomodule/core/jni
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/turbomodule/core/interfaces
92K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/turbomodule/core
96K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/turbomodule
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/reactperflogger/jni/reactperflogger
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/reactperflogger/jni
28K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/reactperflogger
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/websocket
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/vibration
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/toast
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo
40K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/storage
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/statusbar
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/sound
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/share
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/permissions
104K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/network
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/intent
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/image
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/i18nmanager
28K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/fresco
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/fabric
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/dialog
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/deviceinfo
4,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/debug/interfaces
36K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/debug
32K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/datepicker
76K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/core
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/common
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/clipboard
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/camera
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/bundleloader
20K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/blob/jni
48K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/blob
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/appstate
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/appregistry
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/appearance
12K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/accessibilityinfo
616K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules
16K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric/events
72K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems
108K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting
144K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric/jni
364K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric
4,7M	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react
8,0K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/hermes/unicode
28K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/hermes/reactexecutor
32K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/hermes/instrumentation
72K	node_modules/react-native/ReactAndroid/src/main/java/com/facebook/hermes
5,0M	node_modules/react-native/ReactAndroid/src/main/java/com/facebook
5,0M	node_modules/react-native/ReactAndroid/src/main/java/com
5,0M	node_modules/react-native/ReactAndroid/src/main/java
6,1M	node_modules/react-native/ReactAndroid/src/main
7,2M	node_modules/react-native/ReactAndroid/src
7,2M	node_modules/react-native/ReactAndroid
8,0K	node_modules/react-native/ReactCommon/libraries/fbcore/src/test/java/com/facebook/powermock
8,0K	node_modules/react-native/ReactCommon/libraries/fbcore/src/test/java/com/facebook
8,0K	node_modules/react-native/ReactCommon/libraries/fbcore/src/test/java/com
8,0K	node_modules/react-native/ReactCommon/libraries/fbcore/src/test/java
8,0K	node_modules/react-native/ReactCommon/libraries/fbcore/src/test
8,0K	node_modules/react-native/ReactCommon/libraries/fbcore/src
8,0K	node_modules/react-native/ReactCommon/libraries/fbcore
8,0K	node_modules/react-native/ReactCommon/libraries
12K	node_modules/react-native/ReactCommon/yoga/yoga/internal
8,0K	node_modules/react-native/ReactCommon/yoga/yoga/event
328K	node_modules/react-native/ReactCommon/yoga/yoga
344K	node_modules/react-native/ReactCommon/yoga
4,0K	node_modules/react-native/ReactCommon/runtimeexecutor/ReactCommon
20K	node_modules/react-native/ReactCommon/runtimeexecutor
24K	node_modules/react-native/ReactCommon/reactperflogger/reactperflogger
40K	node_modules/react-native/ReactCommon/reactperflogger
52K	node_modules/react-native/ReactCommon/react/utils
4,0K	node_modules/react-native/ReactCommon/react/renderer/uimanager/tests
76K	node_modules/react-native/ReactCommon/react/renderer/uimanager
4,0K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager/tests
76K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager/platform/ios
8,0K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager/platform/cxx
16K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager/platform/android/react/renderer/textlayoutmanager
16K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager/platform/android/react/renderer
16K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager/platform/android/react
16K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager/platform/android
100K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager/platform
128K	node_modules/react-native/ReactCommon/react/renderer/textlayoutmanager
8,0K	node_modules/react-native/ReactCommon/react/renderer/templateprocessor/tests
28K	node_modules/react-native/ReactCommon/react/renderer/templateprocessor
60K	node_modules/react-native/ReactCommon/react/renderer/scheduler
68K	node_modules/react-native/ReactCommon/react/renderer/mounting/tests
304K	node_modules/react-native/ReactCommon/react/renderer/mounting
4,0K	node_modules/react-native/ReactCommon/react/renderer/mapbuffer/tests
20K	node_modules/react-native/ReactCommon/react/renderer/mapbuffer
4,0K	node_modules/react-native/ReactCommon/react/renderer/imagemanager/tests
36K	node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios
8,0K	node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/cxx/react/renderer/imagemanager
8,0K	node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/cxx/react/renderer
8,0K	node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/cxx/react
8,0K	node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/cxx
44K	node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform
96K	node_modules/react-native/ReactCommon/react/renderer/imagemanager
8,0K	node_modules/react-native/ReactCommon/react/renderer/graphics/tests
12K	node_modules/react-native/ReactCommon/react/renderer/graphics/platform/ios
12K	node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx/react/renderer/graphics
12K	node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx/react/renderer
12K	node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx/react
12K	node_modules/react-native/ReactCommon/react/renderer/graphics/platform/cxx
24K	node_modules/react-native/ReactCommon/react/renderer/graphics/platform
108K	node_modules/react-native/ReactCommon/react/renderer/graphics
4,0K	node_modules/react-native/ReactCommon/react/renderer/element/tests
40K	node_modules/react-native/ReactCommon/react/renderer/element
4,0K	node_modules/react-native/ReactCommon/react/renderer/debug/tests
44K	node_modules/react-native/ReactCommon/react/renderer/debug
4,0K	node_modules/react-native/ReactCommon/react/renderer/core/tests/benchmarks
84K	node_modules/react-native/ReactCommon/react/renderer/core/tests
408K	node_modules/react-native/ReactCommon/react/renderer/core
20K	node_modules/react-native/ReactCommon/react/renderer/components/view/tests
192K	node_modules/react-native/ReactCommon/react/renderer/components/view
32K	node_modules/react-native/ReactCommon/react/renderer/components/unimplementedview
68K	node_modules/react-native/ReactCommon/react/renderer/components/textinput/androidtextinput/react/renderer/components/androidtextinput
68K	node_modules/react-native/ReactCommon/react/renderer/components/textinput/androidtextinput/react/renderer/components
68K	node_modules/react-native/ReactCommon/react/renderer/components/textinput/androidtextinput/react/renderer
68K	node_modules/react-native/ReactCommon/react/renderer/components/textinput/androidtextinput/react
68K	node_modules/react-native/ReactCommon/react/renderer/components/textinput/androidtextinput
64K	node_modules/react-native/ReactCommon/react/renderer/components/textinput/iostextinput
140K	node_modules/react-native/ReactCommon/react/renderer/components/textinput
8,0K	node_modules/react-native/ReactCommon/react/renderer/components/text/tests
124K	node_modules/react-native/ReactCommon/react/renderer/components/text
20K	node_modules/react-native/ReactCommon/react/renderer/components/switch/androidswitch/react/renderer/components/androidswitch
20K	node_modules/react-native/ReactCommon/react/renderer/components/switch/androidswitch/react/renderer/components
20K	node_modules/react-native/ReactCommon/react/renderer/components/switch/androidswitch/react/renderer
20K	node_modules/react-native/ReactCommon/react/renderer/components/switch/androidswitch/react
20K	node_modules/react-native/ReactCommon/react/renderer/components/switch/androidswitch
28K	node_modules/react-native/ReactCommon/react/renderer/components/switch
4,0K	node_modules/react-native/ReactCommon/react/renderer/components/slider/tests
8,0K	node_modules/react-native/ReactCommon/react/renderer/components/slider/platform/ios
8,0K	node_modules/react-native/ReactCommon/react/renderer/components/slider/platform/android/react/renderer/components/slider
8,0K	node_modules/react-native/ReactCommon/react/renderer/components/slider/platform/android/react/renderer/components
8,0K	node_modules/react-native/ReactCommon/react/renderer/components/slider/platform/android/react/renderer
8,0K	node_modules/react-native/ReactCommon/react/renderer/components/slider/platform/android/react
8,0K	node_modules/react-native/ReactCommon/react/renderer/components/slider/platform/android
16K	node_modules/react-native/ReactCommon/react/renderer/components/slider/platform
48K	node_modules/react-native/ReactCommon/react/renderer/components/slider
4,0K	node_modules/react-native/ReactCommon/react/renderer/components/scrollview/tests
68K	node_modules/react-native/ReactCommon/react/renderer/components/scrollview
24K	node_modules/react-native/ReactCommon/react/renderer/components/safeareaview
4,0K	node_modules/react-native/ReactCommon/react/renderer/components/root/tests
32K	node_modules/react-native/ReactCommon/react/renderer/components/root
24K	node_modules/react-native/ReactCommon/react/renderer/components/progressbar/android/react/renderer/components/progressbar
24K	node_modules/react-native/ReactCommon/react/renderer/components/progressbar/android/react/renderer/components
24K	node_modules/react-native/ReactCommon/react/renderer/components/progressbar/android/react/renderer
24K	node_modules/react-native/ReactCommon/react/renderer/components/progressbar/android/react
24K	node_modules/react-native/ReactCommon/react/renderer/components/progressbar/android
32K	node_modules/react-native/ReactCommon/react/renderer/components/progressbar
56K	node_modules/react-native/ReactCommon/react/renderer/components/picker/androidpicker/react/renderer/components/androidpicker
56K	node_modules/react-native/ReactCommon/react/renderer/components/picker/androidpicker/react/renderer/components
56K	node_modules/react-native/ReactCommon/react/renderer/components/picker/androidpicker/react/renderer
56K	node_modules/react-native/ReactCommon/react/renderer/components/picker/androidpicker/react
56K	node_modules/react-native/ReactCommon/react/renderer/components/picker/androidpicker
44K	node_modules/react-native/ReactCommon/react/renderer/components/picker/iospicker
108K	node_modules/react-native/ReactCommon/react/renderer/components/picker
28K	node_modules/react-native/ReactCommon/react/renderer/components/modal
52K	node_modules/react-native/ReactCommon/react/renderer/components/legacyviewmanagerinterop
20K	node_modules/react-native/ReactCommon/react/renderer/components/inputaccessory
4,0K	node_modules/react-native/ReactCommon/react/renderer/components/image/tests
52K	node_modules/react-native/ReactCommon/react/renderer/components/image
980K	node_modules/react-native/ReactCommon/react/renderer/components
36K	node_modules/react-native/ReactCommon/react/renderer/componentregistry
12K	node_modules/react-native/ReactCommon/react/renderer/attributedstring/tests
92K	node_modules/react-native/ReactCommon/react/renderer/attributedstring
104K	node_modules/react-native/ReactCommon/react/renderer/animations
2,5M	node_modules/react-native/ReactCommon/react/renderer
12K	node_modules/react-native/ReactCommon/react/nativemodule/samples/platform/android/ReactCommon
28K	node_modules/react-native/ReactCommon/react/nativemodule/samples/platform/android
40K	node_modules/react-native/ReactCommon/react/nativemodule/samples/platform/ios
68K	node_modules/react-native/ReactCommon/react/nativemodule/samples/platform
20K	node_modules/react-native/ReactCommon/react/nativemodule/samples/ReactCommon
92K	node_modules/react-native/ReactCommon/react/nativemodule/samples
60K	node_modules/react-native/ReactCommon/react/nativemodule/core/ReactCommon
68K	node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios
36K	node_modules/react-native/ReactCommon/react/nativemodule/core/platform/android/ReactCommon
36K	node_modules/react-native/ReactCommon/react/nativemodule/core/platform/android
104K	node_modules/react-native/ReactCommon/react/nativemodule/core/platform
172K	node_modules/react-native/ReactCommon/react/nativemodule/core
268K	node_modules/react-native/ReactCommon/react/nativemodule
20K	node_modules/react-native/ReactCommon/react/config
2,9M	node_modules/react-native/ReactCommon/react
20K	node_modules/react-native/ReactCommon/microprofiler
24K	node_modules/react-native/ReactCommon/jsinspector
36K	node_modules/react-native/ReactCommon/jsiexecutor/jsireact
52K	node_modules/react-native/ReactCommon/jsiexecutor
52K	node_modules/react-native/ReactCommon/jsi/jsi/test
192K	node_modules/react-native/ReactCommon/jsi/jsi
260K	node_modules/react-native/ReactCommon/jsi
4,0K	node_modules/react-native/ReactCommon/jsengineinstance
28K	node_modules/react-native/ReactCommon/cxxreact/tests
244K	node_modules/react-native/ReactCommon/cxxreact
4,0K	node_modules/react-native/ReactCommon/callinvoker/ReactCommon
20K	node_modules/react-native/ReactCommon/callinvoker
36K	node_modules/react-native/ReactCommon/better
24K	node_modules/react-native/ReactCommon/hermes/executor
28K	node_modules/react-native/ReactCommon/hermes/inspector/docs
12K	node_modules/react-native/ReactCommon/hermes/inspector/tests
8,0K	node_modules/react-native/ReactCommon/hermes/inspector/detail/tests
32K	node_modules/react-native/ReactCommon/hermes/inspector/detail
8,0K	node_modules/react-native/ReactCommon/hermes/inspector/chrome/cli
124K	node_modules/react-native/ReactCommon/hermes/inspector/chrome/tests
288K	node_modules/react-native/ReactCommon/hermes/inspector/chrome
8,0K	node_modules/react-native/ReactCommon/hermes/inspector/tools/sandcastle
36K	node_modules/react-native/ReactCommon/hermes/inspector/tools/msggen/__tests__
68K	node_modules/react-native/ReactCommon/hermes/inspector/tools/msggen/src
340K	node_modules/react-native/ReactCommon/hermes/inspector/tools/msggen
360K	node_modules/react-native/ReactCommon/hermes/inspector/tools
836K	node_modules/react-native/ReactCommon/hermes/inspector
864K	node_modules/react-native/ReactCommon/hermes
4,8M	node_modules/react-native/ReactCommon
4,0K	node_modules/react-native/template/__tests__
4,0K	node_modules/react-native/template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes
4,0K	node_modules/react-native/template/ios/HelloWorld.xcodeproj/xcshareddata
24K	node_modules/react-native/template/ios/HelloWorld.xcodeproj
8,0K	node_modules/react-native/template/ios/HelloWorldTests
4,0K	node_modules/react-native/template/ios/HelloWorld/Images.xcassets/AppIcon.appiconset
8,0K	node_modules/react-native/template/ios/HelloWorld/Images.xcassets
32K	node_modules/react-native/template/ios/HelloWorld
68K	node_modules/react-native/template/ios
64K	node_modules/react-native/template/android/gradle/wrapper
64K	node_modules/react-native/template/android/gradle
4,0K	node_modules/react-native/template/android/app/src/debug/java/com/helloworld
4,0K	node_modules/react-native/template/android/app/src/debug/java/com
4,0K	node_modules/react-native/template/android/app/src/debug/java
8,0K	node_modules/react-native/template/android/app/src/debug
8,0K	node_modules/react-native/template/android/app/src/main/res/values
28K	node_modules/react-native/template/android/app/src/main/res/mipmap-xxxhdpi
20K	node_modules/react-native/template/android/app/src/main/res/mipmap-xxhdpi
16K	node_modules/react-native/template/android/app/src/main/res/mipmap-xhdpi
8,0K	node_modules/react-native/template/android/app/src/main/res/mipmap-mdpi
12K	node_modules/react-native/template/android/app/src/main/res/mipmap-hdpi
92K	node_modules/react-native/template/android/app/src/main/res
8,0K	node_modules/react-native/template/android/app/src/main/java/com/helloworld
8,0K	node_modules/react-native/template/android/app/src/main/java/com
8,0K	node_modules/react-native/template/android/app/src/main/java
104K	node_modules/react-native/template/android/app/src/main
112K	node_modules/react-native/template/android/app/src
140K	node_modules/react-native/template/android/app
228K	node_modules/react-native/template/android
356K	node_modules/react-native/template
41M	node_modules/react-native
12K	node_modules/expo-random/src
36K	node_modules/expo-random/build
8,0K	node_modules/expo-random/ios/EXRandom
12K	node_modules/expo-random/ios
8,0K	node_modules/expo-random/android/src/main/java/expo/modules/random
8,0K	node_modules/expo-random/android/src/main/java/expo/modules
8,0K	node_modules/expo-random/android/src/main/java/expo
8,0K	node_modules/expo-random/android/src/main/java
12K	node_modules/expo-random/android/src/main
12K	node_modules/expo-random/android/src
16K	node_modules/expo-random/android
100K	node_modules/expo-random
24K	node_modules/b64-lite/node
40K	node_modules/b64-lite/dist
76K	node_modules/b64-lite
220K	node_modules/asmcrypto.js/test
72K	node_modules/asmcrypto.js/src/rsa
28K	node_modules/asmcrypto.js/src/random
28K	node_modules/asmcrypto.js/src/pbkdf2
32K	node_modules/asmcrypto.js/src/hmac
176K	node_modules/asmcrypto.js/src/hash/sha512
44K	node_modules/asmcrypto.js/src/hash/sha256
40K	node_modules/asmcrypto.js/src/hash/sha1
264K	node_modules/asmcrypto.js/src/hash
124K	node_modules/asmcrypto.js/src/bignum
8,0K	node_modules/asmcrypto.js/src/aes/ofb
16K	node_modules/asmcrypto.js/src/aes/gcm
8,0K	node_modules/asmcrypto.js/src/aes/ecb
8,0K	node_modules/asmcrypto.js/src/aes/ctr
8,0K	node_modules/asmcrypto.js/src/aes/cmac
8,0K	node_modules/asmcrypto.js/src/aes/cfb
16K	node_modules/asmcrypto.js/src/aes/ccm
8,0K	node_modules/asmcrypto.js/src/aes/cbc
124K	node_modules/asmcrypto.js/src/aes
700K	node_modules/asmcrypto.js/src
6,1M	node_modules/asmcrypto.js
4,0K	node_modules/@cnakazawa/watch/scripts
40K	node_modules/@cnakazawa/watch
40K	node_modules/@cnakazawa
4,0K	node_modules/@babel/runtime/regenerator
368K	node_modules/@babel/runtime/helpers/esm
732K	node_modules/@babel/runtime/helpers
776K	node_modules/@babel/runtime
12K	node_modules/@babel/preset-typescript/lib
24K	node_modules/@babel/preset-typescript
8,0K	node_modules/@babel/preset-flow/lib
20K	node_modules/@babel/preset-flow
4,0K	node_modules/@babel/helper-wrap-function/lib
16K	node_modules/@babel/helper-wrap-function
4,0K	node_modules/@babel/helper-remap-async-to-generator/lib
16K	node_modules/@babel/helper-remap-async-to-generator
4,0K	node_modules/@babel/preset-modules/src/plugins/transform-tagged-template-caching
4,0K	node_modules/@babel/preset-modules/src/plugins/transform-safari-for-shadowing
4,0K	node_modules/@babel/preset-modules/src/plugins/transform-safari-block-shadowing
4,0K	node_modules/@babel/preset-modules/src/plugins/transform-jsx-spread
4,0K	node_modules/@babel/preset-modules/src/plugins/transform-edge-function-name
4,0K	node_modules/@babel/preset-modules/src/plugins/transform-edge-default-parameters
4,0K	node_modules/@babel/preset-modules/src/plugins/transform-async-arrows-in-class
28K	node_modules/@babel/preset-modules/src/plugins
32K	node_modules/@babel/preset-modules/src
4,0K	node_modules/@babel/preset-modules/lib/plugins/transform-tagged-template-caching
4,0K	node_modules/@babel/preset-modules/lib/plugins/transform-safari-for-shadowing
4,0K	node_modules/@babel/preset-modules/lib/plugins/transform-safari-block-shadowing
4,0K	node_modules/@babel/preset-modules/lib/plugins/transform-jsx-spread
4,0K	node_modules/@babel/preset-modules/lib/plugins/transform-edge-function-name
4,0K	node_modules/@babel/preset-modules/lib/plugins/transform-edge-default-parameters
4,0K	node_modules/@babel/preset-modules/lib/plugins/transform-async-arrows-in-class
28K	node_modules/@babel/preset-modules/lib/plugins
32K	node_modules/@babel/preset-modules/lib
80K	node_modules/@babel/preset-modules
4,0K	node_modules/@babel/plugin-transform-unicode-escapes/lib
16K	node_modules/@babel/plugin-transform-unicode-escapes
4,0K	node_modules/@babel/plugin-transform-typeof-symbol/lib
16K	node_modules/@babel/plugin-transform-typeof-symbol
4,0K	node_modules/@babel/plugin-transform-reserved-words/lib
16K	node_modules/@babel/plugin-transform-reserved-words
4,0K	node_modules/@babel/plugin-transform-new-target/lib
16K	node_modules/@babel/plugin-transform-new-target
4,0K	node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib
16K	node_modules/@babel/plugin-transform-named-capturing-groups-regex
8,0K	node_modules/@babel/plugin-transform-modules-umd/lib
20K	node_modules/@babel/plugin-transform-modules-umd
20K	node_modules/@babel/plugin-transform-modules-systemjs/lib
32K	node_modules/@babel/plugin-transform-modules-systemjs
8,0K	node_modules/@babel/plugin-transform-modules-amd/lib
20K	node_modules/@babel/plugin-transform-modules-amd
4,0K	node_modules/@babel/plugin-transform-duplicate-keys/lib
16K	node_modules/@babel/plugin-transform-duplicate-keys
4,0K	node_modules/@babel/plugin-transform-dotall-regex/lib
16K	node_modules/@babel/plugin-transform-dotall-regex
4,0K	node_modules/@babel/plugin-transform-async-to-generator/lib
16K	node_modules/@babel/plugin-transform-async-to-generator
4,0K	node_modules/@babel/plugin-syntax-top-level-await/lib
16K	node_modules/@babel/plugin-syntax-top-level-await
4,0K	node_modules/@babel/plugin-syntax-private-property-in-object/lib
16K	node_modules/@babel/plugin-syntax-private-property-in-object
4,0K	node_modules/@babel/plugin-syntax-class-static-block/lib
16K	node_modules/@babel/plugin-syntax-class-static-block
4,0K	node_modules/@babel/plugin-syntax-numeric-separator/lib
16K	node_modules/@babel/plugin-syntax-numeric-separator
4,0K	node_modules/@babel/plugin-syntax-logical-assignment-operators/lib
16K	node_modules/@babel/plugin-syntax-logical-assignment-operators
4,0K	node_modules/@babel/plugin-syntax-json-strings/lib
16K	node_modules/@babel/plugin-syntax-json-strings
4,0K	node_modules/@babel/plugin-syntax-export-namespace-from/lib
16K	node_modules/@babel/plugin-syntax-export-namespace-from
4,0K	node_modules/@babel/plugin-syntax-async-generators/lib
16K	node_modules/@babel/plugin-syntax-async-generators
8,0K	node_modules/@babel/plugin-proposal-private-property-in-object/lib
20K	node_modules/@babel/plugin-proposal-private-property-in-object
4,0K	node_modules/@babel/plugin-proposal-unicode-property-regex/lib
16K	node_modules/@babel/plugin-proposal-unicode-property-regex
4,0K	node_modules/@babel/plugin-proposal-private-methods/lib
16K	node_modules/@babel/plugin-proposal-private-methods
4,0K	node_modules/@babel/plugin-proposal-numeric-separator/lib
16K	node_modules/@babel/plugin-proposal-numeric-separator
4,0K	node_modules/@babel/plugin-proposal-logical-assignment-operators/lib
16K	node_modules/@babel/plugin-proposal-logical-assignment-operators
4,0K	node_modules/@babel/plugin-proposal-json-strings/lib
16K	node_modules/@babel/plugin-proposal-json-strings
4,0K	node_modules/@babel/plugin-proposal-dynamic-import/lib
16K	node_modules/@babel/plugin-proposal-dynamic-import
4,0K	node_modules/@babel/plugin-proposal-export-namespace-from/lib
16K	node_modules/@babel/plugin-proposal-export-namespace-from
8,0K	node_modules/@babel/plugin-proposal-async-generator-functions/lib
20K	node_modules/@babel/plugin-proposal-async-generator-functions
4,0K	node_modules/@babel/plugin-proposal-class-static-block/lib
16K	node_modules/@babel/plugin-proposal-class-static-block
12K	node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/lib
24K	node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining
12K	node_modules/@babel/preset-env/lib/polyfills
72K	node_modules/@babel/preset-env/lib
40K	node_modules/@babel/preset-env/data
128K	node_modules/@babel/preset-env
4,0K	node_modules/@babel/plugin-transform-object-super/lib
16K	node_modules/@babel/plugin-transform-object-super
4,0K	node_modules/@babel/plugin-transform-property-literals/lib
16K	node_modules/@babel/plugin-transform-property-literals
4,0K	node_modules/@babel/plugin-transform-member-expression-literals/lib
16K	node_modules/@babel/plugin-transform-member-expression-literals
4,0K	node_modules/@babel/plugin-transform-block-scoped-functions/lib
16K	node_modules/@babel/plugin-transform-block-scoped-functions
4,0K	node_modules/@babel/plugin-syntax-class-properties/lib
16K	node_modules/@babel/plugin-syntax-class-properties
4,0K	node_modules/@babel/helper-define-polyfill-provider/src/node
4,0K	node_modules/@babel/helper-define-polyfill-provider/src/browser
8,0K	node_modules/@babel/helper-define-polyfill-provider/src
12K	node_modules/@babel/helper-define-polyfill-provider/lib/visitors
4,0K	node_modules/@babel/helper-define-polyfill-provider/lib/node
4,0K	node_modules/@babel/helper-define-polyfill-provider/lib/browser
64K	node_modules/@babel/helper-define-polyfill-provider/lib
164K	node_modules/@babel/helper-define-polyfill-provider/esm
16K	node_modules/@babel/helper-define-polyfill-provider/node_modules/ms
28K	node_modules/@babel/helper-define-polyfill-provider/node_modules/debug/src
60K	node_modules/@babel/helper-define-polyfill-provider/node_modules/debug
76K	node_modules/@babel/helper-define-polyfill-provider/node_modules
324K	node_modules/@babel/helper-define-polyfill-provider
12K	node_modules/@babel/helper-create-regexp-features-plugin/lib
24K	node_modules/@babel/helper-create-regexp-features-plugin
4,0K	node_modules/@babel/plugin-syntax-typescript/lib
16K	node_modules/@babel/plugin-syntax-typescript
4,0K	node_modules/@babel/plugin-syntax-jsx/lib
16K	node_modules/@babel/plugin-syntax-jsx
4,0K	node_modules/@babel/helper-explode-assignable-expression/lib
16K	node_modules/@babel/helper-explode-assignable-expression
4,0K	node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib
16K	node_modules/@babel/helper-builder-binary-assignment-operator-visitor
4,0K	node_modules/@babel/plugin-syntax-optional-catch-binding/lib
16K	node_modules/@babel/plugin-syntax-optional-catch-binding
4,0K	node_modules/@babel/plugin-syntax-object-rest-spread/lib
16K	node_modules/@babel/plugin-syntax-object-rest-spread
4,0K	node_modules/@babel/plugin-transform-unicode-regex/lib
16K	node_modules/@babel/plugin-transform-unicode-regex
36K	node_modules/@babel/plugin-transform-typescript/lib
48K	node_modules/@babel/plugin-transform-typescript
4,0K	node_modules/@babel/plugin-transform-template-literals/lib
16K	node_modules/@babel/plugin-transform-template-literals
4,0K	node_modules/@babel/plugin-transform-sticky-regex/lib
16K	node_modules/@babel/plugin-transform-sticky-regex
8,0K	node_modules/@babel/plugin-transform-spread/lib
20K	node_modules/@babel/plugin-transform-spread
4,0K	node_modules/@babel/plugin-transform-shorthand-properties/lib
16K	node_modules/@babel/plugin-transform-shorthand-properties
8,0K	node_modules/@babel/plugin-transform-runtime/src/get-runtime-path
8,0K	node_modules/@babel/plugin-transform-runtime/src
8,0K	node_modules/@babel/plugin-transform-runtime/lib/get-runtime-path
20K	node_modules/@babel/plugin-transform-runtime/lib
40K	node_modules/@babel/plugin-transform-runtime
4,0K	node_modules/@babel/plugin-transform-regenerator/lib
16K	node_modules/@babel/plugin-transform-regenerator
4,0K	node_modules/@babel/plugin-transform-react-jsx-source/lib
16K	node_modules/@babel/plugin-transform-react-jsx-source
4,0K	node_modules/@babel/plugin-transform-react-jsx-self/lib
16K	node_modules/@babel/plugin-transform-react-jsx-self
4,0K	node_modules/@babel/plugin-transform-react-display-name/lib
16K	node_modules/@babel/plugin-transform-react-display-name
32K	node_modules/@babel/plugin-transform-react-jsx/lib
44K	node_modules/@babel/plugin-transform-react-jsx
20K	node_modules/@babel/plugin-transform-parameters/lib
32K	node_modules/@babel/plugin-transform-parameters
4,0K	node_modules/@babel/plugin-transform-object-assign/lib
16K	node_modules/@babel/plugin-transform-object-assign
4,0K	node_modules/@babel/plugin-transform-literals/lib
16K	node_modules/@babel/plugin-transform-literals
4,0K	node_modules/@babel/plugin-transform-function-name/lib
16K	node_modules/@babel/plugin-transform-function-name
16K	node_modules/@babel/plugin-transform-for-of/lib
28K	node_modules/@babel/plugin-transform-for-of
20K	node_modules/@babel/plugin-transform-destructuring/lib
32K	node_modules/@babel/plugin-transform-destructuring
4,0K	node_modules/@babel/plugin-transform-exponentiation-operator/lib
16K	node_modules/@babel/plugin-transform-exponentiation-operator
8,0K	node_modules/@babel/plugin-transform-computed-properties/lib
20K	node_modules/@babel/plugin-transform-computed-properties
28K	node_modules/@babel/plugin-transform-block-scoping/lib
40K	node_modules/@babel/plugin-transform-block-scoping
28K	node_modules/@babel/plugin-transform-classes/lib
40K	node_modules/@babel/plugin-transform-classes
4,0K	node_modules/@babel/plugin-transform-arrow-functions/lib
16K	node_modules/@babel/plugin-transform-arrow-functions
4,0K	node_modules/@babel/plugin-syntax-export-default-from/lib
16K	node_modules/@babel/plugin-syntax-export-default-from
4,0K	node_modules/@babel/plugin-syntax-dynamic-import/lib
16K	node_modules/@babel/plugin-syntax-dynamic-import
4,0K	node_modules/@babel/plugin-proposal-optional-catch-binding/lib
16K	node_modules/@babel/plugin-proposal-optional-catch-binding
20K	node_modules/@babel/plugin-proposal-object-rest-spread/lib
32K	node_modules/@babel/plugin-proposal-object-rest-spread
4,0K	node_modules/@babel/plugin-proposal-export-default-from/lib
16K	node_modules/@babel/plugin-proposal-export-default-from
4,0K	node_modules/@babel/plugin-syntax-flow/lib
16K	node_modules/@babel/plugin-syntax-flow
4,0K	node_modules/@babel/plugin-syntax-optional-chaining/lib
16K	node_modules/@babel/plugin-syntax-optional-chaining
4,0K	node_modules/@babel/plugin-syntax-nullish-coalescing-operator/lib
16K	node_modules/@babel/plugin-syntax-nullish-coalescing-operator
4,0K	node_modules/@babel/helper-skip-transparent-expression-wrappers/lib
16K	node_modules/@babel/helper-skip-transparent-expression-wrappers
4,0K	node_modules/@babel/helper-annotate-as-pure/lib
16K	node_modules/@babel/helper-annotate-as-pure
4,0K	node_modules/@babel/helper-plugin-utils/lib
16K	node_modules/@babel/helper-plugin-utils
60K	node_modules/@babel/helper-create-class-features-plugin/lib
72K	node_modules/@babel/helper-create-class-features-plugin
32K	node_modules/@babel/plugin-proposal-optional-chaining/lib
44K	node_modules/@babel/plugin-proposal-optional-chaining
20K	node_modules/@babel/register/lib
32K	node_modules/@babel/register
8,0K	node_modules/@babel/plugin-transform-modules-commonjs/lib
20K	node_modules/@babel/plugin-transform-modules-commonjs
8,0K	node_modules/@babel/plugin-transform-flow-strip-types/lib
20K	node_modules/@babel/plugin-transform-flow-strip-types
4,0K	node_modules/@babel/plugin-proposal-nullish-coalescing-operator/lib
16K	node_modules/@babel/plugin-proposal-nullish-coalescing-operator
4,0K	node_modules/@babel/plugin-proposal-class-properties/lib
16K	node_modules/@babel/plugin-proposal-class-properties
4,0K	node_modules/@babel/helper-get-function-arity/lib
16K	node_modules/@babel/helper-get-function-arity
4,0K	node_modules/@babel/helper-hoist-variables/lib
16K	node_modules/@babel/helper-hoist-variables
4,0K	node_modules/@babel/helper-function-name/lib
16K	node_modules/@babel/helper-function-name
4,0K	node_modules/@babel/helper-optimise-call-expression/lib
16K	node_modules/@babel/helper-optimise-call-expression
52K	node_modules/@babel/helper-member-expression-to-functions/lib
64K	node_modules/@babel/helper-member-expression-to-functions
4,0K	node_modules/@babel/helper-validator-identifier/scripts
20K	node_modules/@babel/helper-validator-identifier/lib
36K	node_modules/@babel/helper-validator-identifier
4,0K	node_modules/@babel/helper-split-export-declaration/lib
16K	node_modules/@babel/helper-split-export-declaration
8,0K	node_modules/@babel/helper-replace-supers/lib
20K	node_modules/@babel/helper-replace-supers
4,0K	node_modules/@babel/helper-simple-access/lib
16K	node_modules/@babel/helper-simple-access
24K	node_modules/@babel/helper-module-imports/lib
36K	node_modules/@babel/helper-module-imports
12K	node_modules/@babel/helper-validator-option/lib
24K	node_modules/@babel/helper-validator-option
64K	node_modules/@babel/compat-data/data
96K	node_modules/@babel/compat-data
32K	node_modules/@babel/helper-compilation-targets/lib
44K	node_modules/@babel/helper-compilation-targets
8,0K	node_modules/@babel/helpers/scripts
16K	node_modules/@babel/helpers/lib/helpers
96K	node_modules/@babel/helpers/lib
116K	node_modules/@babel/helpers
48K	node_modules/@babel/helper-module-transforms/lib
60K	node_modules/@babel/helper-module-transforms
4,0K	node_modules/@babel/highlight/lib
16K	node_modules/@babel/highlight/node_modules/has-flag
44K	node_modules/@babel/highlight/node_modules/color-convert
32K	node_modules/@babel/highlight/node_modules/color-name
16K	node_modules/@babel/highlight/node_modules/ansi-styles
20K	node_modules/@babel/highlight/node_modules/supports-color
4,0K	node_modules/@babel/highlight/node_modules/chalk/types
40K	node_modules/@babel/highlight/node_modules/chalk
168K	node_modules/@babel/highlight/node_modules
184K	node_modules/@babel/highlight
16K	node_modules/@babel/types/scripts/utils
68K	node_modules/@babel/types/scripts/generators
88K	node_modules/@babel/types/scripts
8,0K	node_modules/@babel/types/lib/validators/react
116K	node_modules/@babel/types/lib/validators/generated
196K	node_modules/@babel/types/lib/validators
4,0K	node_modules/@babel/types/lib/utils/react
12K	node_modules/@babel/types/lib/utils
8,0K	node_modules/@babel/types/lib/traverse
8,0K	node_modules/@babel/types/lib/retrievers
4,0K	node_modules/@babel/types/lib/modifications/typescript
4,0K	node_modules/@babel/types/lib/modifications/flow
28K	node_modules/@babel/types/lib/modifications
124K	node_modules/@babel/types/lib/definitions
44K	node_modules/@babel/types/lib/converters
8,0K	node_modules/@babel/types/lib/constants/generated
12K	node_modules/@babel/types/lib/constants
28K	node_modules/@babel/types/lib/comments
20K	node_modules/@babel/types/lib/clone
4,0K	node_modules/@babel/types/lib/builders/typescript
4,0K	node_modules/@babel/types/lib/builders/react
80K	node_modules/@babel/types/lib/builders/generated
8,0K	node_modules/@babel/types/lib/builders/flow
100K	node_modules/@babel/types/lib/builders
0	node_modules/@babel/types/lib/ast-types/generated
0	node_modules/@babel/types/lib/ast-types
44K	node_modules/@babel/types/lib/asserts/generated
48K	node_modules/@babel/types/lib/asserts
1,2M	node_modules/@babel/types/lib
1,3M	node_modules/@babel/types
8,0K	node_modules/@babel/parser/typings
1,6M	node_modules/@babel/parser/lib
4,0K	node_modules/@babel/parser/bin
1,6M	node_modules/@babel/parser
12K	node_modules/@babel/traverse/scripts/generators
16K	node_modules/@babel/traverse/scripts
4,0K	node_modules/@babel/traverse/lib/scope/lib
32K	node_modules/@babel/traverse/lib/scope
20K	node_modules/@babel/traverse/lib/path/lib
20K	node_modules/@babel/traverse/lib/path/inference
12K	node_modules/@babel/traverse/lib/path/generated
148K	node_modules/@babel/traverse/lib/path
208K	node_modules/@babel/traverse/lib
28K	node_modules/@babel/traverse/node_modules/debug/src
60K	node_modules/@babel/traverse/node_modules/debug
16K	node_modules/@babel/traverse/node_modules/ms
76K	node_modules/@babel/traverse/node_modules
312K	node_modules/@babel/traverse
36K	node_modules/@babel/template/lib
48K	node_modules/@babel/template
24K	node_modules/@babel/generator/lib/node
92K	node_modules/@babel/generator/lib/generators
148K	node_modules/@babel/generator/lib
116K	node_modules/@babel/generator/node_modules/source-map/lib
628K	node_modules/@babel/generator/node_modules/source-map/dist
788K	node_modules/@babel/generator/node_modules/source-map
788K	node_modules/@babel/generator/node_modules
948K	node_modules/@babel/generator
8,0K	node_modules/@babel/core/src/transformation/util
8,0K	node_modules/@babel/core/src/transformation
8,0K	node_modules/@babel/core/src/config/files
16K	node_modules/@babel/core/src/config
32K	node_modules/@babel/core/src
8,0K	node_modules/@babel/core/lib/transformation/util
20K	node_modules/@babel/core/lib/transformation/file
48K	node_modules/@babel/core/lib/transformation
8,0K	node_modules/@babel/core/lib/tools
8,0K	node_modules/@babel/core/lib/parser/util
12K	node_modules/@babel/core/lib/parser
8,0K	node_modules/@babel/core/lib/gensync-utils
28K	node_modules/@babel/core/lib/config/validation
8,0K	node_modules/@babel/core/lib/config/helpers
44K	node_modules/@babel/core/lib/config/files
168K	node_modules/@babel/core/lib/config
272K	node_modules/@babel/core/lib
16K	node_modules/@babel/core/node_modules/ms
116K	node_modules/@babel/core/node_modules/source-map/lib
628K	node_modules/@babel/core/node_modules/source-map/dist
788K	node_modules/@babel/core/node_modules/source-map
28K	node_modules/@babel/core/node_modules/debug/src
60K	node_modules/@babel/core/node_modules/debug
864K	node_modules/@babel/core/node_modules
1,2M	node_modules/@babel/core
8,0K	node_modules/@babel/code-frame/lib
20K	node_modules/@babel/code-frame
9,1M	node_modules/@babel
8,0K	node_modules/@sideway/pinpoint/lib
20K	node_modules/@sideway/pinpoint
72K	node_modules/@sideway/address/lib
84K	node_modules/@sideway/address
20K	node_modules/@sideway/formula/lib
32K	node_modules/@sideway/formula
136K	node_modules/@sideway
128K	node_modules/@hapi/hoek/lib
140K	node_modules/@hapi/hoek
12K	node_modules/@hapi/topo/lib
24K	node_modules/@hapi/topo
164K	node_modules/@hapi
32K	node_modules/@react-native-community/cli-types/build
40K	node_modules/@react-native-community/cli-types
56K	node_modules/@react-native-community/cli-tools/build
16K	node_modules/@react-native-community/cli-tools/node_modules/chalk/source
48K	node_modules/@react-native-community/cli-tools/node_modules/chalk
48K	node_modules/@react-native-community/cli-tools/node_modules
112K	node_modules/@react-native-community/cli-tools
80K	node_modules/@react-native-community/cli-server-api/build/websocket
236K	node_modules/@react-native-community/cli-server-api/build
140K	node_modules/@react-native-community/cli-server-api/node_modules/ws/lib
156K	node_modules/@react-native-community/cli-server-api/node_modules/ws
156K	node_modules/@react-native-community/cli-server-api/node_modules
396K	node_modules/@react-native-community/cli-server-api
60K	node_modules/@react-native-community/cli-hermes/build/profileHermes
76K	node_modules/@react-native-community/cli-hermes/build
16K	node_modules/@react-native-community/cli-hermes/node_modules/chalk/source
48K	node_modules/@react-native-community/cli-hermes/node_modules/chalk
48K	node_modules/@react-native-community/cli-hermes/node_modules
128K	node_modules/@react-native-community/cli-hermes
8,0K	node_modules/@react-native-community/cli-platform-ios/build/config/__fixtures__
92K	node_modules/@react-native-community/cli-platform-ios/build/config
16K	node_modules/@react-native-community/cli-platform-ios/build/commands/logIOS
124K	node_modules/@react-native-community/cli-platform-ios/build/commands/runIOS
156K	node_modules/@react-native-community/cli-platform-ios/build/commands
176K	node_modules/@react-native-community/cli-platform-ios/build/link-pods
48K	node_modules/@react-native-community/cli-platform-ios/build/link/common
584K	node_modules/@react-native-community/cli-platform-ios/build/link
1,1M	node_modules/@react-native-community/cli-platform-ios/build
16K	node_modules/@react-native-community/cli-platform-ios/node_modules/chalk/source
48K	node_modules/@react-native-community/cli-platform-ios/node_modules/chalk
48K	node_modules/@react-native-community/cli-platform-ios/node_modules
1,1M	node_modules/@react-native-community/cli-platform-ios
16K	node_modules/@react-native-community/cli-platform-android/build/utils
16K	node_modules/@react-native-community/cli-platform-android/build/config/__fixtures__
104K	node_modules/@react-native-community/cli-platform-android/build/config
144K	node_modules/@react-native-community/cli-platform-android/build/link/patches
256K	node_modules/@react-native-community/cli-platform-android/build/link
16K	node_modules/@react-native-community/cli-platform-android/build/commands/logAndroid
8,0K	node_modules/@react-native-community/cli-platform-android/build/commands/runAndroid/__mocks__
156K	node_modules/@react-native-community/cli-platform-android/build/commands/runAndroid
188K	node_modules/@react-native-community/cli-platform-android/build/commands
580K	node_modules/@react-native-community/cli-platform-android/build
16K	node_modules/@react-native-community/cli-platform-android/node_modules/universalify
16K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/util
12K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/remove
4,0K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/path-exists
4,0K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/output
8,0K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/move
8,0K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/move-sync
16K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/mkdirs
16K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/json
4,0K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/fs
24K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/ensure
4,0K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/empty
12K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/copy
12K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib/copy-sync
144K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra/lib
228K	node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra
28K	node_modules/@react-native-community/cli-platform-android/node_modules/jsonfile
16K	node_modules/@react-native-community/cli-platform-android/node_modules/chalk/source
48K	node_modules/@react-native-community/cli-platform-android/node_modules/chalk
320K	node_modules/@react-native-community/cli-platform-android/node_modules
920K	node_modules/@react-native-community/cli-platform-android
68K	node_modules/@react-native-community/cli/build/tools/releaseChecker
16K	node_modules/@react-native-community/cli/build/tools/config/__mocks__
188K	node_modules/@react-native-community/cli/build/tools/config
76K	node_modules/@react-native-community/cli/build/tools/generator
104K	node_modules/@react-native-community/cli/build/tools/windows
788K	node_modules/@react-native-community/cli/build/tools
48K	node_modules/@react-native-community/cli/build/commands/upgrade
60K	node_modules/@react-native-community/cli/build/commands/start
32K	node_modules/@react-native-community/cli/build/commands/install
16K	node_modules/@react-native-community/cli/build/commands/info
160K	node_modules/@react-native-community/cli/build/commands/link
16K	node_modules/@react-native-community/cli/build/commands/config
64K	node_modules/@react-native-community/cli/build/commands/init/errors
224K	node_modules/@react-native-community/cli/build/commands/init
156K	node_modules/@react-native-community/cli/build/commands/bundle
240K	node_modules/@react-native-community/cli/build/commands/doctor/healthchecks
368K	node_modules/@react-native-community/cli/build/commands/doctor
1,1M	node_modules/@react-native-community/cli/build/commands
1,9M	node_modules/@react-native-community/cli/build
20K	node_modules/@react-native-community/cli/node_modules/p-limit
28K	node_modules/@react-native-community/cli/node_modules/jsonfile
20K	node_modules/@react-native-community/cli/node_modules/p-locate
16K	node_modules/@react-native-community/cli/node_modules/universalify
20K	node_modules/@react-native-community/cli/node_modules/locate-path
16K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/util
12K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/remove
4,0K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/path-exists
4,0K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/output
8,0K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/move
8,0K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/move-sync
16K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/mkdirs
16K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/json
4,0K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/fs
24K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/ensure
4,0K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/empty
12K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/copy
12K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib/copy-sync
144K	node_modules/@react-native-community/cli/node_modules/fs-extra/lib
228K	node_modules/@react-native-community/cli/node_modules/fs-extra
12K	node_modules/@react-native-community/cli/node_modules/commander/typings
76K	node_modules/@react-native-community/cli/node_modules/commander
20K	node_modules/@react-native-community/cli/node_modules/find-up
16K	node_modules/@react-native-community/cli/node_modules/chalk/source
48K	node_modules/@react-native-community/cli/node_modules/chalk
476K	node_modules/@react-native-community/cli/node_modules
2,4M	node_modules/@react-native-community/cli
4,0K	node_modules/@react-native-community/cli-debugger-ui/build/middleware
104K	node_modules/@react-native-community/cli-debugger-ui/build/ui/assets
252K	node_modules/@react-native-community/cli-debugger-ui/build/ui
256K	node_modules/@react-native-community/cli-debugger-ui/build
264K	node_modules/@react-native-community/cli-debugger-ui
5,3M	node_modules/@react-native-community
36K	node_modules/@react-native/polyfills
16K	node_modules/@react-native/normalize-color
12K	node_modules/@react-native/assets
64K	node_modules/@react-native
64K	node_modules/@jest/types/build
72K	node_modules/@jest/types
8,0K	node_modules/@jest/create-cache-key-function/build
16K	node_modules/@jest/create-cache-key-function
88K	node_modules/@jest
8,0K	node_modules/@nodelib/fs.scandir/out/types
16K	node_modules/@nodelib/fs.scandir/out/utils
8,0K	node_modules/@nodelib/fs.scandir/out/adapters
24K	node_modules/@nodelib/fs.scandir/out/providers
80K	node_modules/@nodelib/fs.scandir/out
96K	node_modules/@nodelib/fs.scandir
8,0K	node_modules/@nodelib/fs.walk/out/types
32K	node_modules/@nodelib/fs.walk/out/readers
32K	node_modules/@nodelib/fs.walk/out/providers
88K	node_modules/@nodelib/fs.walk/out
104K	node_modules/@nodelib/fs.walk
8,0K	node_modules/@nodelib/fs.stat/out/types
8,0K	node_modules/@nodelib/fs.stat/out/adapters
16K	node_modules/@nodelib/fs.stat/out/providers
48K	node_modules/@nodelib/fs.stat/out
60K	node_modules/@nodelib/fs.stat
260K	node_modules/@nodelib
16K	node_modules/@types/graceful-fs
20K	node_modules/@types/yargs-parser
20K	node_modules/@types/istanbul-lib-report
64K	node_modules/@types/yargs
16K	node_modules/@types/node/ts3.6
4,0K	node_modules/@types/node/timers
4,0K	node_modules/@types/node/stream
44K	node_modules/@types/node/fs
16K	node_modules/@types/node/dns
4,0K	node_modules/@types/node/assert
1,7M	node_modules/@types/node
16K	node_modules/@types/istanbul-reports
16K	node_modules/@types/istanbul-lib-coverage
36K	node_modules/@types/asn1js
1,9M	node_modules/@types
4,0K	node_modules/@unimodules/react-native-adapter/src/ts-declarations
8,0K	node_modules/@unimodules/react-native-adapter/src/errors
8,0K	node_modules/@unimodules/react-native-adapter/src/environment
64K	node_modules/@unimodules/react-native-adapter/src
24K	node_modules/@unimodules/react-native-adapter/build/errors
24K	node_modules/@unimodules/react-native-adapter/build/environment
188K	node_modules/@unimodules/react-native-adapter/build
16K	node_modules/@unimodules/react-native-adapter/android/src/main/java/org/unimodules/adapters/react/permissions
8,0K	node_modules/@unimodules/react-native-adapter/android/src/main/java/org/unimodules/adapters/react/apploader
12K	node_modules/@unimodules/react-native-adapter/android/src/main/java/org/unimodules/adapters/react/views
24K	node_modules/@unimodules/react-native-adapter/android/src/main/java/org/unimodules/adapters/react/services
100K	node_modules/@unimodules/react-native-adapter/android/src/main/java/org/unimodules/adapters/react
100K	node_modules/@unimodules/react-native-adapter/android/src/main/java/org/unimodules/adapters
100K	node_modules/@unimodules/react-native-adapter/android/src/main/java/org/unimodules
100K	node_modules/@unimodules/react-native-adapter/android/src/main/java/org
100K	node_modules/@unimodules/react-native-adapter/android/src/main/java
104K	node_modules/@unimodules/react-native-adapter/android/src/main
104K	node_modules/@unimodules/react-native-adapter/android/src
108K	node_modules/@unimodules/react-native-adapter/android
12K	node_modules/@unimodules/react-native-adapter/scripts
8,0K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMViewManagerAdapter
12K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMNativeModulesProxy
24K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMModuleRegistryAdapter
20K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/Permissions
64K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services
112K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter
4,0K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter.xcframework/ios-arm64/UMReactNativeAdapter.framework/Modules
584K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter.xcframework/ios-arm64/UMReactNativeAdapter.framework
584K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter.xcframework/ios-arm64
4,0K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter.xcframework/ios-arm64_x86_64-simulator/UMReactNativeAdapter.framework/Modules
372K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter.xcframework/ios-arm64_x86_64-simulator/UMReactNativeAdapter.framework
372K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter.xcframework/ios-arm64_x86_64-simulator
960K	node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter.xcframework
1,1M	node_modules/@unimodules/react-native-adapter/ios
1,5M	node_modules/@unimodules/react-native-adapter
12K	node_modules/@unimodules/core/src
36K	node_modules/@unimodules/core/build
8,0K	node_modules/@unimodules/core/android/src/main/java/org/unimodules/core/arguments
4,0K	node_modules/@unimodules/core/android/src/main/java/org/unimodules/core/utilities
20K	node_modules/@unimodules/core/android/src/main/java/org/unimodules/core/errors
12K	node_modules/@unimodules/core/android/src/main/java/org/unimodules/core/interfaces/services
76K	node_modules/@unimodules/core/android/src/main/java/org/unimodules/core/interfaces
156K	node_modules/@unimodules/core/android/src/main/java/org/unimodules/core
156K	node_modules/@unimodules/core/android/src/main/java/org/unimodules
156K	node_modules/@unimodules/core/android/src/main/java/org
156K	node_modules/@unimodules/core/android/src/main/java
160K	node_modules/@unimodules/core/android/src/main
160K	node_modules/@unimodules/core/android/src
168K	node_modules/@unimodules/core/android
12K	node_modules/@unimodules/core/ios/UMCore/UMModuleRegistryProvider
16K	node_modules/@unimodules/core/ios/UMCore/UMModuleRegistry
8,0K	node_modules/@unimodules/core/ios/UMCore/Services
44K	node_modules/@unimodules/core/ios/UMCore/Protocols
152K	node_modules/@unimodules/core/ios/UMCore
484K	node_modules/@unimodules/core/ios/UMCore.xcframework/ios-arm64/UMCore.framework
484K	node_modules/@unimodules/core/ios/UMCore.xcframework/ios-arm64
312K	node_modules/@unimodules/core/ios/UMCore.xcframework/ios-arm64_x86_64-simulator/UMCore.framework
312K	node_modules/@unimodules/core/ios/UMCore.xcframework/ios-arm64_x86_64-simulator
800K	node_modules/@unimodules/core/ios/UMCore.xcframework
956K	node_modules/@unimodules/core/ios
1,2M	node_modules/@unimodules/core
2,7M	node_modules/@unimodules
28K	node_modules/@peculiar/json-schema/build/types/errors
24K	node_modules/@peculiar/json-schema/build/types/validations
92K	node_modules/@peculiar/json-schema/build/types
132K	node_modules/@peculiar/json-schema/build
148K	node_modules/@peculiar/json-schema
8,0K	node_modules/@peculiar/asn1-schema/build/types/errors
12K	node_modules/@peculiar/asn1-schema/build/types/types
88K	node_modules/@peculiar/asn1-schema/build/types
8,0K	node_modules/@peculiar/asn1-schema/build/es2015/errors
12K	node_modules/@peculiar/asn1-schema/build/es2015/types
104K	node_modules/@peculiar/asn1-schema/build/es2015
8,0K	node_modules/@peculiar/asn1-schema/build/cjs/errors
12K	node_modules/@peculiar/asn1-schema/build/cjs/types
104K	node_modules/@peculiar/asn1-schema/build/cjs
296K	node_modules/@peculiar/asn1-schema/build
308K	node_modules/@peculiar/asn1-schema
180K	node_modules/@peculiar/webcrypto/build
200K	node_modules/@peculiar/webcrypto
656K	node_modules/@peculiar
420K	node_modules/isomorphic-webcrypto/src
448K	node_modules/isomorphic-webcrypto
206M	node_modules/

Migrate to Expo-Modules

Using React : 17.0.1
react-native: 0.64.2
pubNub: 4.32.1
pubNub-react: 2.1.0
Expo SDK: 43

Recently Expo deprecated react-native-unimodules in favor of Expo-Modules. I was working on converting our project but learned that pubNub uses "isomorphic-webCrypto" which has:

"@unimodules/core": "*", 
 "@unimodules/react-native-adapter": "*" 

listed as dependencies.
This installs those two packages making a conversion to Expo-modules impossible due to a "dual symbol" in 12 expo packages due to a conflict between "libExpoModulesCore" and "UMReactNativeAdapter".
I was wondering if you know if there will be a conversion to Expo-Modules anytime soon
Thank you !

❌  duplicate symbol '_EXCanAskAgain' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_EXExpiresKey' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_EXGrantedKey' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_EXPermissionExpiresNever' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_EXStatusKey' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_OBJC_CLASS_$_EXPermissionsService' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_OBJC_IVAR_$_EXPermissionsService._moduleRegistry' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_OBJC_IVAR_$_EXPermissionsService._requesters' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_OBJC_IVAR_$_EXPermissionsService._requestersByClass' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_OBJC_METACLASS_$_EXPermissionsService' in
┌─ libExpoModulesCore.a(EXPermissionsService.o)
└─ UMReactNativeAdapter(EXPermissionsService.o)

❌  duplicate symbol '_OBJC_CLASS_$_EXReactNativeUserNotificationCenterProxy' in
┌─ libExpoModulesCore.a(EXReactNativeUserNotificationCenterProxy.o)
└─ UMReactNativeAdapter(EXReactNativeUserNotificationCenterProxy.o)

❌  duplicate symbol '_OBJC_METACLASS_$_EXReactNativeUserNotificationCenterProxy' in
┌─ libExpoModulesCore.a(EXReactNativeUserNotificationCenterProxy.o)
└─ UMReactNativeAdapter(EXReactNativeUserNotificationCenterProxy.o)


❌  ld: 12 duplicate symbols for architecture x86_64



❌  clang: error: linker command failed with exit code 1 (use -v to see invocation)

[getRandomValues] The value of "size" is out of range

Hello! Thanks for the great library!

> var webCrypto = require('isomorphic-webcrypto');
undefined
> webCrypto.getRandomValues(new Uint8Array(100)).length
100
> webCrypto.getRandomValues(new Uint8Array(65536)).length
Thrown:
RangeError [ERR_OUT_OF_RANGE]: The value of "size" is out of range. It must be >= 0 && <= 2147483647. Received 4294967296
    at assertSize (internal/crypto/random.js:36:11)
    at Object.randomBytes (internal/crypto/random.js:48:10)
    at Crypto.getRandomValues (/home/alx/ws/testWebCrypto/node_modules/@trust/webcrypto/src/Crypto.js:54:31)
    at repl:1:11
    at Script.runInThisContext (vm.js:123:20)
    at REPLServer.defaultEval (repl.js:384:29)
    at bound (domain.js:415:14)
    at REPLServer.runBound [as eval] (domain.js:428:12)
    at REPLServer.onLine (repl.js:700:10)
    at REPLServer.emit (events.js:205:15)

Is this correct behavior, considering https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues (find 65536)?

Non-functional RSA-OEAP Support

In my React Native project, I decrypt data sent from another React frontend. The 2 most heavily used algorithms are RSA-OEAP and AES-GCM. Unfortunately, I found that the RSA-OEAP support was pretty broken, and using this

crypto.subtle.encrypt(
    {
        name: "RSA-OAEP",
        //label: Uint8Array([...]) //optional
    },
    publicKey, //from generateKey or importKey above
    data //ArrayBuffer of data you want to encrypt
)
.then(function(encrypted){
    //returns an ArrayBuffer containing the encrypted data
    console.log(new Uint8Array(encrypted));
})
.catch(function(err){
    console.error(err);
});

snippet from the WebCrypto examples repo in the readme caused an error:

Possible Unhandled Promise Rejection (id: 0):
TypeError: undefined is not an object (evaluating 'algorithm.hash.name.toUpperCase')

After adding the hash name (SHA-512), it didn't return any error but returned an empty ArrayBuffer []

I hope that this issue can be fixed soon (maybe by merging the latest mscrypto library?) so that i can use this library in my project.

Unable to run in NodeJS environment

Great project, I noticed in the specs that Node 4+ should be supported. My code appears as follows:

import * as webcrypto from "isomorphic-webcrypto";

export class Core implements CoreDef {
  public static test(): string {
    return webcrypto.getRandomValues(new Uint8Array(16)).toString();
  }
}

When ran however, the following error appears:

System.err: ReferenceError: window is not defined
System.err: File: "msrcrypto/dist/msrcrypto.js, line: 8287, column: 0

So it appears one of the dependencies your project uses still relies on the window object which would not be available in Node. Do you have some examples of this working with Node?

Thanks

  • P

importKey does not support the PBKDF2 algorithm

I am attempting to do PBKDF2 key generation via a passphrase and cannot generate the key material for input to the deriveKey call with the following error:

Error: unsupported algorithm

Environment info:

  • React Native 0.63.4
  • Ejected Expo app (ran npx pod-install before this)
  • MacOS, simulating on iOS 14.5 on iPhone 11 with XCode 12.5

Code to repro:

import crypto from 'isomorphic-webcrypto';

const encoder = new TextEncoder();

async function repro() {
  await crypto.ensureSecure();

  const keyMaterial = await crypto.subtle.importKey(
    'raw',
    encoder.encode(passphrase),
    {
      name: 'PBKDF2',
    },
    false,
    ['deriveBits', 'deriveKey'],
  );
}

repro();

crypto.subtle is undefined on React Native

crypto.subtle is undefined here (and everywhere else even later on) on both iOS and Android.

I'm running [email protected] and it was created with react-native init. Tried looking around to find some culprit but haven't managed to find anything.

Found the culprit, seems that it doesn't work while remotely debugging. Might have something to do with the code being executed in Chrome.

It seems that msrcrypto runs in a web worker while in remote debugging which causes this to be set to true, which in turn causes this (msrcryptoSubtle) not to be instantiated, ergo undefined everywhere while remotely debugging.

RSA generatekey, unsupported algorithm

This is literally the only package I have found that supports webcrypto with react native...

But I really need to be able to generate the following RSA key (for compatibility with the rest of our system)...

await crypto.subtle.generateKey(
    {
      name: "RSA-PSS",
      hash: "SHA-256",
      modulusLength: 4096,
      publicExponent: new Uint8Array([1, 0, 1]),
    },
    true,
    ["sign", "verify"],
  );

Any plans to support this? I would be really appreciative.

TypeError: global.document.addEventListener is not a function. React Native version 0.63.2

TypeError: global.document.addEventListener is not a function. (In 'global.document.addEventListener('click', domEventHandler('click', triggerHandlers.bind(null, 'dom')), false)', 'global.document.addEventListener' is undefined)
I have to use the crypto.subtle into react native and I have installed only isomorphic-webcrypto only using command npm install isomorphic-webcrypto . Please share the link of the documentation if there is any.

Thanks in Advance!!!!

Please let me know if I need to install any other dependency also for react native

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.