@reclaimprotocol/inapp-rn-sdk 0.9.3-alpha.2 → 0.9.3-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/expo-plugin/build/android/index.d.ts +2 -2
- package/expo-plugin/build/android/index.js +5 -5
- package/expo-plugin/build/android/withReclaimAndroidManifest.d.ts +2 -0
- package/expo-plugin/build/android/withReclaimAndroidManifest.js +36 -0
- package/expo-plugin/build/android/withReclaimProjectBuildGradle.d.ts +2 -0
- package/expo-plugin/build/android/withReclaimProjectBuildGradle.js +18 -0
- package/expo-plugin/build/index.d.ts +2 -2
- package/expo-plugin/build/index.js +7 -6
- package/expo-plugin/src/android/index.ts +2 -2
- package/expo-plugin/src/android/{install_reclaim_android_manifest.ts → withReclaimAndroidManifest.ts} +1 -1
- package/expo-plugin/src/android/{install_reclaim_project_build_gradle.ts → withReclaimProjectBuildGradle.ts} +1 -1
- package/expo-plugin/src/index.ts +8 -6
- package/expo-plugin/tsconfig.json +3 -1
- package/lib/typescript/commonjs/expo-plugin/src/android/index.d.ts +2 -2
- package/lib/typescript/commonjs/expo-plugin/src/android/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/expo-plugin/src/android/withReclaimAndroidManifest.d.ts +3 -0
- package/lib/typescript/commonjs/expo-plugin/src/android/withReclaimAndroidManifest.d.ts.map +1 -0
- package/lib/typescript/commonjs/expo-plugin/src/android/withReclaimProjectBuildGradle.d.ts +3 -0
- package/lib/typescript/commonjs/expo-plugin/src/android/withReclaimProjectBuildGradle.d.ts.map +1 -0
- package/lib/typescript/commonjs/expo-plugin/src/index.d.ts +2 -2
- package/lib/typescript/commonjs/expo-plugin/src/index.d.ts.map +1 -1
- package/lib/typescript/module/expo-plugin/src/android/index.d.ts +2 -2
- package/lib/typescript/module/expo-plugin/src/android/index.d.ts.map +1 -1
- package/lib/typescript/module/expo-plugin/src/android/withReclaimAndroidManifest.d.ts +3 -0
- package/lib/typescript/module/expo-plugin/src/android/withReclaimAndroidManifest.d.ts.map +1 -0
- package/lib/typescript/module/expo-plugin/src/android/withReclaimProjectBuildGradle.d.ts +3 -0
- package/lib/typescript/module/expo-plugin/src/android/withReclaimProjectBuildGradle.d.ts.map +1 -0
- package/lib/typescript/module/expo-plugin/src/index.d.ts +2 -2
- package/lib/typescript/module/expo-plugin/src/index.d.ts.map +1 -1
- package/package.json +2 -1
- package/lib/typescript/commonjs/expo-plugin/src/android/install_reclaim_android_manifest.d.ts +0 -3
- package/lib/typescript/commonjs/expo-plugin/src/android/install_reclaim_android_manifest.d.ts.map +0 -1
- package/lib/typescript/commonjs/expo-plugin/src/android/install_reclaim_project_build_gradle.d.ts +0 -3
- package/lib/typescript/commonjs/expo-plugin/src/android/install_reclaim_project_build_gradle.d.ts.map +0 -1
- package/lib/typescript/commonjs/user-workspace/src/App.d.ts +0 -2
- package/lib/typescript/commonjs/user-workspace/src/App.d.ts.map +0 -1
- package/lib/typescript/commonjs/user-workspace/src/App.overrides.d.ts +0 -2
- package/lib/typescript/commonjs/user-workspace/src/App.overrides.d.ts.map +0 -1
- package/lib/typescript/module/expo-plugin/src/android/install_reclaim_android_manifest.d.ts +0 -3
- package/lib/typescript/module/expo-plugin/src/android/install_reclaim_android_manifest.d.ts.map +0 -1
- package/lib/typescript/module/expo-plugin/src/android/install_reclaim_project_build_gradle.d.ts +0 -3
- package/lib/typescript/module/expo-plugin/src/android/install_reclaim_project_build_gradle.d.ts.map +0 -1
- package/lib/typescript/module/user-workspace/src/App.d.ts +0 -2
- package/lib/typescript/module/user-workspace/src/App.d.ts.map +0 -1
- package/lib/typescript/module/user-workspace/src/App.overrides.d.ts +0 -2
- package/lib/typescript/module/user-workspace/src/App.overrides.d.ts.map +0 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { withReclaimAndroidManifest } from './withReclaimAndroidManifest';
|
|
2
|
+
export { withReclaimProjectBuildGradle } from './withReclaimProjectBuildGradle';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
var
|
|
5
|
-
Object.defineProperty(exports, "
|
|
6
|
-
var
|
|
7
|
-
Object.defineProperty(exports, "
|
|
3
|
+
exports.withReclaimProjectBuildGradle = exports.withReclaimAndroidManifest = void 0;
|
|
4
|
+
var withReclaimAndroidManifest_1 = require("./withReclaimAndroidManifest");
|
|
5
|
+
Object.defineProperty(exports, "withReclaimAndroidManifest", { enumerable: true, get: function () { return withReclaimAndroidManifest_1.withReclaimAndroidManifest; } });
|
|
6
|
+
var withReclaimProjectBuildGradle_1 = require("./withReclaimProjectBuildGradle");
|
|
7
|
+
Object.defineProperty(exports, "withReclaimProjectBuildGradle", { enumerable: true, get: function () { return withReclaimProjectBuildGradle_1.withReclaimProjectBuildGradle; } });
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.withReclaimAndroidManifest = void 0;
|
|
4
|
+
const config_plugins_1 = require("@expo/config-plugins");
|
|
5
|
+
const withReclaimAndroidManifest = (config) => {
|
|
6
|
+
return (0, config_plugins_1.withAndroidManifest)(config, (config) => {
|
|
7
|
+
let androidManifest = config.modResults.manifest;
|
|
8
|
+
const cannotInstallMessage = 'cannot install reclaim inapp android sdk';
|
|
9
|
+
if (!androidManifest) {
|
|
10
|
+
throw new Error(`No AndroidManifest found, ${cannotInstallMessage}`);
|
|
11
|
+
}
|
|
12
|
+
let application = androidManifest.application[0];
|
|
13
|
+
// Add the tools to apply permission remove
|
|
14
|
+
// Let the consumer app apply the permission on their app. All permissions are optional for this Reclaim InApp SDK.
|
|
15
|
+
// androidManifest.$ = {
|
|
16
|
+
// ...androidManifest.$,
|
|
17
|
+
// 'xmlns:tools': 'http://schemas.android.com/tools',
|
|
18
|
+
// };
|
|
19
|
+
if (!application) {
|
|
20
|
+
throw new Error(`No base application found, ${cannotInstallMessage}`);
|
|
21
|
+
}
|
|
22
|
+
application.activity = application.activity.filter((act) => act.$['android:name'] !=
|
|
23
|
+
'org.reclaimprotocol.inapp_sdk.ReclaimActivity');
|
|
24
|
+
application.activity.push({
|
|
25
|
+
$: {
|
|
26
|
+
'android:name': 'org.reclaimprotocol.inapp_sdk.ReclaimActivity',
|
|
27
|
+
'android:theme': '@style/Theme.ReclaimInAppSdk.LaunchTheme',
|
|
28
|
+
'android:configChanges': 'orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode',
|
|
29
|
+
'android:hardwareAccelerated': 'true',
|
|
30
|
+
'android:windowSoftInputMode': 'adjustResize',
|
|
31
|
+
},
|
|
32
|
+
});
|
|
33
|
+
return config;
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
exports.withReclaimAndroidManifest = withReclaimAndroidManifest;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.withReclaimProjectBuildGradle = void 0;
|
|
4
|
+
const config_plugins_1 = require("@expo/config-plugins");
|
|
5
|
+
const withReclaimProjectBuildGradle = (config) => {
|
|
6
|
+
return (0, config_plugins_1.withProjectBuildGradle)(config, async (config) => {
|
|
7
|
+
const flutterStorageUrl = process.env.EXPO_PUBLIC_FLUTTER_STORAGE_BASE_URL || "https://storage.googleapis.com";
|
|
8
|
+
const reclaimStorageUrl = process.env.EXPO_PUBLIC_RECLAIM_STORAGE_BASE_URL || "https://reclaim-inapp-sdk.s3.ap-south-1.amazonaws.com/android/repo";
|
|
9
|
+
if (!config.modResults.contents.match('reclaim-inapp-sdk')) {
|
|
10
|
+
config.modResults.contents = config.modResults.contents.replace(/mavenCentral\(\)/g, `
|
|
11
|
+
mavenCentral()
|
|
12
|
+
maven { url "${reclaimStorageUrl}" }
|
|
13
|
+
maven { url "${flutterStorageUrl}/download.flutter.io" }`);
|
|
14
|
+
}
|
|
15
|
+
return config;
|
|
16
|
+
});
|
|
17
|
+
};
|
|
18
|
+
exports.withReclaimProjectBuildGradle = withReclaimProjectBuildGradle;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { type ConfigPlugin } from '@expo/config-plugins';
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const _default: ConfigPlugin<void>;
|
|
3
|
+
export default _default;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
const config_plugins_1 = require("@expo/config-plugins");
|
|
4
|
+
const android_1 = require("./android");
|
|
5
|
+
const pkg = require('@reclaimprotocol/inapp-rn-sdk/package.json');
|
|
6
|
+
const withReclaimInAppSdk = (config) => {
|
|
6
7
|
return (0, config_plugins_1.withPlugins)(config, [
|
|
7
|
-
android_1.
|
|
8
|
-
android_1.
|
|
8
|
+
android_1.withReclaimAndroidManifest,
|
|
9
|
+
android_1.withReclaimProjectBuildGradle,
|
|
9
10
|
]);
|
|
10
11
|
};
|
|
11
|
-
exports.default = withReclaimInAppSdk;
|
|
12
|
+
exports.default = (0, config_plugins_1.createRunOncePlugin)(withReclaimInAppSdk, pkg.name, pkg.version);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { withReclaimAndroidManifest } from './withReclaimAndroidManifest';
|
|
2
|
+
export { withReclaimProjectBuildGradle } from './withReclaimProjectBuildGradle';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type ConfigPlugin, withAndroidManifest } from '@expo/config-plugins';
|
|
2
2
|
|
|
3
|
-
export const
|
|
3
|
+
export const withReclaimAndroidManifest: ConfigPlugin = (config) => {
|
|
4
4
|
return withAndroidManifest(config, (config) => {
|
|
5
5
|
let androidManifest = config.modResults.manifest;
|
|
6
6
|
const cannotInstallMessage = 'cannot install reclaim inapp android sdk';
|
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
withProjectBuildGradle,
|
|
4
4
|
} from '@expo/config-plugins';
|
|
5
5
|
|
|
6
|
-
export const
|
|
6
|
+
export const withReclaimProjectBuildGradle: ConfigPlugin = (config) => {
|
|
7
7
|
return withProjectBuildGradle(config, async (config) => {
|
|
8
8
|
const flutterStorageUrl = process.env.EXPO_PUBLIC_FLUTTER_STORAGE_BASE_URL || "https://storage.googleapis.com"
|
|
9
9
|
const reclaimStorageUrl = process.env.EXPO_PUBLIC_RECLAIM_STORAGE_BASE_URL || "https://reclaim-inapp-sdk.s3.ap-south-1.amazonaws.com/android/repo"
|
package/expo-plugin/src/index.ts
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
import { type ConfigPlugin, withPlugins } from '@expo/config-plugins';
|
|
1
|
+
import { type ConfigPlugin, createRunOncePlugin, withPlugins } from '@expo/config-plugins';
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
withReclaimAndroidManifest,
|
|
4
|
+
withReclaimProjectBuildGradle,
|
|
5
5
|
} from './android';
|
|
6
6
|
|
|
7
|
+
const pkg = require('@reclaimprotocol/inapp-rn-sdk/package.json');
|
|
8
|
+
|
|
7
9
|
const withReclaimInAppSdk: ConfigPlugin = (config) => {
|
|
8
10
|
return withPlugins(config, [
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
withReclaimAndroidManifest,
|
|
12
|
+
withReclaimProjectBuildGradle,
|
|
11
13
|
]);
|
|
12
14
|
};
|
|
13
15
|
|
|
14
|
-
export default withReclaimInAppSdk;
|
|
16
|
+
export default createRunOncePlugin(withReclaimInAppSdk, pkg.name, pkg.version);
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { withReclaimAndroidManifest } from './withReclaimAndroidManifest';
|
|
2
|
+
export { withReclaimProjectBuildGradle } from './withReclaimProjectBuildGradle';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"withReclaimAndroidManifest.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/withReclaimAndroidManifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAuB,MAAM,sBAAsB,CAAC;AAE9E,eAAO,MAAM,0BAA0B,EAAE,YAyCxC,CAAC"}
|
package/lib/typescript/commonjs/expo-plugin/src/android/withReclaimProjectBuildGradle.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"withReclaimProjectBuildGradle.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/withReclaimProjectBuildGradle.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,YAAY,EAEpB,MAAM,sBAAsB,CAAC;AAE9B,eAAO,MAAM,6BAA6B,EAAE,YAgB3C,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../expo-plugin/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../expo-plugin/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAoC,MAAM,sBAAsB,CAAC;;AAe3F,wBAA+E"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { withReclaimAndroidManifest } from './withReclaimAndroidManifest';
|
|
2
|
+
export { withReclaimProjectBuildGradle } from './withReclaimProjectBuildGradle';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"withReclaimAndroidManifest.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/withReclaimAndroidManifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAuB,MAAM,sBAAsB,CAAC;AAE9E,eAAO,MAAM,0BAA0B,EAAE,YAyCxC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"withReclaimProjectBuildGradle.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/withReclaimProjectBuildGradle.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,YAAY,EAEpB,MAAM,sBAAsB,CAAC;AAE9B,eAAO,MAAM,6BAA6B,EAAE,YAgB3C,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../expo-plugin/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../expo-plugin/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAoC,MAAM,sBAAsB,CAAC;;AAe3F,wBAA+E"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reclaimprotocol/inapp-rn-sdk",
|
|
3
|
-
"version": "0.9.3-alpha.
|
|
3
|
+
"version": "0.9.3-alpha.4",
|
|
4
4
|
"description": "Reclaim Protocol's InApp React Native SDK for ZK proof generations for requests with an in-app experience of web verification",
|
|
5
5
|
"source": "./src/index.ts",
|
|
6
6
|
"main": "./lib/commonjs/index.js",
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"registry": "https://registry.npmjs.org/"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
+
"expo-module-scripts": "^4.1.7",
|
|
75
76
|
"@commitlint/config-conventional": "^17.0.2",
|
|
76
77
|
"@evilmartians/lefthook": "^1.5.0",
|
|
77
78
|
"@expo/config-plugins": "^9.0.14",
|
package/lib/typescript/commonjs/expo-plugin/src/android/install_reclaim_android_manifest.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"install_reclaim_android_manifest.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/install_reclaim_android_manifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAuB,MAAM,sBAAsB,CAAC;AAE9E,eAAO,MAAM,6BAA6B,EAAE,YAyC3C,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"install_reclaim_project_build_gradle.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/install_reclaim_project_build_gradle.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,YAAY,EAEpB,MAAM,sBAAsB,CAAC;AAE9B,eAAO,MAAM,gCAAgC,EAAE,YAgB9C,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../../../../user-workspace/src/App.tsx"],"names":[],"mappings":"AAsBA,MAAM,CAAC,OAAO,UAAU,GAAG,4CAuN1B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"App.overrides.d.ts","sourceRoot":"","sources":["../../../../../user-workspace/src/App.overrides.tsx"],"names":[],"mappings":"AAsBA,MAAM,CAAC,OAAO,UAAU,GAAG,4CAyR1B"}
|
package/lib/typescript/module/expo-plugin/src/android/install_reclaim_android_manifest.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"install_reclaim_android_manifest.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/install_reclaim_android_manifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAuB,MAAM,sBAAsB,CAAC;AAE9E,eAAO,MAAM,6BAA6B,EAAE,YAyC3C,CAAC"}
|
package/lib/typescript/module/expo-plugin/src/android/install_reclaim_project_build_gradle.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"install_reclaim_project_build_gradle.d.ts","sourceRoot":"","sources":["../../../../../../expo-plugin/src/android/install_reclaim_project_build_gradle.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,YAAY,EAEpB,MAAM,sBAAsB,CAAC;AAE9B,eAAO,MAAM,gCAAgC,EAAE,YAgB9C,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../../../../user-workspace/src/App.tsx"],"names":[],"mappings":"AAsBA,MAAM,CAAC,OAAO,UAAU,GAAG,4CAuN1B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"App.overrides.d.ts","sourceRoot":"","sources":["../../../../../user-workspace/src/App.overrides.tsx"],"names":[],"mappings":"AAsBA,MAAM,CAAC,OAAO,UAAU,GAAG,4CAyR1B"}
|