codeplay-common 1.1.73 → 1.1.76
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/files/buildCodeplay/add-splash-screen-1.0.js +77 -77
- package/files/buildCodeplay/modify-plugin-xml.js +36 -36
- package/files/buildCodeplay/setSplashAnimation-1.1.js +167 -167
- package/files/buildCodeplay/splashxml/codeplay_splashScreen.xml +11 -11
- package/files/finalrelease14 +493 -493
- package/files/ionic.config.json +6 -6
- package/package.json +13 -14
- package/scripts/sync-files.js +78 -78
- package/scripts/uninstall.js +115 -115
- package/files/.env.storeid1 +0 -1
- package/files/.env.storeid2 +0 -1
- package/files/.env.storeid7 +0 -1
package/files/ionic.config.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "merbin-test-app",
|
|
3
|
-
"integrations": {
|
|
4
|
-
"capacitor": {}
|
|
5
|
-
},
|
|
6
|
-
"type": "custom"
|
|
1
|
+
{
|
|
2
|
+
"name": "merbin-test-app",
|
|
3
|
+
"integrations": {
|
|
4
|
+
"capacitor": {}
|
|
5
|
+
},
|
|
6
|
+
"type": "custom"
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "codeplay-common",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Common build scripts and files",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"license": "MIT"
|
|
1
|
+
{
|
|
2
|
+
"name": "codeplay-common",
|
|
3
|
+
"version": "1.1.76",
|
|
4
|
+
"description": "Common build scripts and files",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"preinstall ": "node scripts/uninstall.js && node scripts/sync-files.js"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/merbin2012/codeplay-common.git"
|
|
11
|
+
},
|
|
12
|
+
"author": "Codeplay Technologies",
|
|
13
|
+
"license": "MIT"
|
|
15
14
|
}
|
package/scripts/sync-files.js
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
const fs = require("fs");
|
|
2
|
-
const path = require("path");
|
|
3
|
-
|
|
4
|
-
const projectRoot = path.resolve(__dirname, "../../../"); // Your project's root
|
|
5
|
-
const commonBuildPath = path.join(__dirname, "../files"); // Path to common files
|
|
6
|
-
const buildCodeplayPath = path.join(commonBuildPath, "buildCodeplay"); // Correct path
|
|
7
|
-
const packageJsonPath = path.join(projectRoot, "package.json");
|
|
8
|
-
|
|
9
|
-
// Ensure package.json exists
|
|
10
|
-
if (!fs.existsSync(packageJsonPath)) {
|
|
11
|
-
process.stderr.write("❌ package.json not found!\n");
|
|
12
|
-
process.exit(1);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
function copyFolderSync(source, destination) {
|
|
16
|
-
try {
|
|
17
|
-
fs.cpSync(source, destination, { recursive: true });
|
|
18
|
-
process.stdout.write(`✅ Copied folder: ${source} -> ${destination}\n`);
|
|
19
|
-
} catch (error) {
|
|
20
|
-
process.stderr.write(`⚠️ Failed to copy folder: ${source} - ${error.message}\n`);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// Copy all files from `common-build-files/files/` to the project root
|
|
25
|
-
fs.readdirSync(commonBuildPath).forEach(file => {
|
|
26
|
-
const sourcePath = path.join(commonBuildPath, file);
|
|
27
|
-
const destPath = path.join(projectRoot, file);
|
|
28
|
-
|
|
29
|
-
if (fs.statSync(sourcePath).isDirectory()) {
|
|
30
|
-
copyFolderSync(sourcePath, destPath);
|
|
31
|
-
} else {
|
|
32
|
-
try {
|
|
33
|
-
fs.copyFileSync(sourcePath, destPath);
|
|
34
|
-
process.stdout.write(`✅ Copied file: ${file}\n`);
|
|
35
|
-
} catch (error) {
|
|
36
|
-
process.stderr.write(`⚠️ Failed to copy file: ${file} - ${error.message}\n`);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
// Function to get the latest versioned file from files/buildCodeplay
|
|
42
|
-
function getLatestFile(prefix) {
|
|
43
|
-
if (!fs.existsSync(buildCodeplayPath)) return null; // Ensure directory exists
|
|
44
|
-
|
|
45
|
-
const files = fs.readdirSync(buildCodeplayPath).filter(file => file.startsWith(prefix));
|
|
46
|
-
if (files.length === 0) return null;
|
|
47
|
-
files.sort((a, b) => b.localeCompare(a, undefined, { numeric: true }));
|
|
48
|
-
return files[0];
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
// Detect latest script versions
|
|
52
|
-
const latestSplashScreen = getLatestFile("add-splash-screen-");
|
|
53
|
-
const latestSplashAnimation = getLatestFile("setSplashAnimation-");
|
|
54
|
-
const latestCodeplayBuild = getLatestFile("codeplayBeforeBuild-");
|
|
55
|
-
|
|
56
|
-
// Update package.json
|
|
57
|
-
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
|
|
58
|
-
|
|
59
|
-
// Ensure scripts object exists
|
|
60
|
-
packageJson.scripts = packageJson.scripts || {};
|
|
61
|
-
|
|
62
|
-
// Update or add necessary scripts
|
|
63
|
-
if (latestCodeplayBuild) {
|
|
64
|
-
packageJson.scripts["build"] = `node buildCodeplay/${latestCodeplayBuild} && cross-env NODE_ENV=production vite build`;
|
|
65
|
-
}
|
|
66
|
-
if (latestSplashScreen && latestSplashAnimation) {
|
|
67
|
-
packageJson.scripts["capacitor:sync:after"] = `node buildCodeplay/${latestSplashScreen} && node buildCodeplay/${latestSplashAnimation}`;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
packageJson.scripts["ionic:build"] = "npm run build";
|
|
71
|
-
packageJson.scripts["ionic:serve"] = "npm run start";
|
|
72
|
-
packageJson.scripts["build:storeid1"] = "vite build --mode storeid1";
|
|
73
|
-
packageJson.scripts["build:storeid2"] = "vite build --mode storeid2";
|
|
74
|
-
packageJson.scripts["build:storeid7"] = "vite build --mode storeid7";
|
|
75
|
-
|
|
76
|
-
// Save changes
|
|
77
|
-
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2), "utf8");
|
|
78
|
-
process.stdout.write("✅ package.json updated!\n");
|
|
1
|
+
const fs = require("fs");
|
|
2
|
+
const path = require("path");
|
|
3
|
+
|
|
4
|
+
const projectRoot = path.resolve(__dirname, "../../../"); // Your project's root
|
|
5
|
+
const commonBuildPath = path.join(__dirname, "../files"); // Path to common files
|
|
6
|
+
const buildCodeplayPath = path.join(commonBuildPath, "buildCodeplay"); // Correct path
|
|
7
|
+
const packageJsonPath = path.join(projectRoot, "package.json");
|
|
8
|
+
|
|
9
|
+
// Ensure package.json exists
|
|
10
|
+
if (!fs.existsSync(packageJsonPath)) {
|
|
11
|
+
process.stderr.write("❌ package.json not found!\n");
|
|
12
|
+
process.exit(1);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
function copyFolderSync(source, destination) {
|
|
16
|
+
try {
|
|
17
|
+
fs.cpSync(source, destination, { recursive: true });
|
|
18
|
+
process.stdout.write(`✅ Copied folder: ${source} -> ${destination}\n`);
|
|
19
|
+
} catch (error) {
|
|
20
|
+
process.stderr.write(`⚠️ Failed to copy folder: ${source} - ${error.message}\n`);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// Copy all files from `common-build-files/files/` to the project root
|
|
25
|
+
fs.readdirSync(commonBuildPath).forEach(file => {
|
|
26
|
+
const sourcePath = path.join(commonBuildPath, file);
|
|
27
|
+
const destPath = path.join(projectRoot, file);
|
|
28
|
+
|
|
29
|
+
if (fs.statSync(sourcePath).isDirectory()) {
|
|
30
|
+
copyFolderSync(sourcePath, destPath);
|
|
31
|
+
} else {
|
|
32
|
+
try {
|
|
33
|
+
fs.copyFileSync(sourcePath, destPath);
|
|
34
|
+
process.stdout.write(`✅ Copied file: ${file}\n`);
|
|
35
|
+
} catch (error) {
|
|
36
|
+
process.stderr.write(`⚠️ Failed to copy file: ${file} - ${error.message}\n`);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
// Function to get the latest versioned file from files/buildCodeplay
|
|
42
|
+
function getLatestFile(prefix) {
|
|
43
|
+
if (!fs.existsSync(buildCodeplayPath)) return null; // Ensure directory exists
|
|
44
|
+
|
|
45
|
+
const files = fs.readdirSync(buildCodeplayPath).filter(file => file.startsWith(prefix));
|
|
46
|
+
if (files.length === 0) return null;
|
|
47
|
+
files.sort((a, b) => b.localeCompare(a, undefined, { numeric: true }));
|
|
48
|
+
return files[0];
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Detect latest script versions
|
|
52
|
+
const latestSplashScreen = getLatestFile("add-splash-screen-");
|
|
53
|
+
const latestSplashAnimation = getLatestFile("setSplashAnimation-");
|
|
54
|
+
const latestCodeplayBuild = getLatestFile("codeplayBeforeBuild-");
|
|
55
|
+
|
|
56
|
+
// Update package.json
|
|
57
|
+
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
|
|
58
|
+
|
|
59
|
+
// Ensure scripts object exists
|
|
60
|
+
packageJson.scripts = packageJson.scripts || {};
|
|
61
|
+
|
|
62
|
+
// Update or add necessary scripts
|
|
63
|
+
if (latestCodeplayBuild) {
|
|
64
|
+
packageJson.scripts["build"] = `node buildCodeplay/${latestCodeplayBuild} && cross-env NODE_ENV=production vite build`;
|
|
65
|
+
}
|
|
66
|
+
if (latestSplashScreen && latestSplashAnimation) {
|
|
67
|
+
packageJson.scripts["capacitor:sync:after"] = `node buildCodeplay/${latestSplashScreen} && node buildCodeplay/${latestSplashAnimation}`;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
packageJson.scripts["ionic:build"] = "npm run build";
|
|
71
|
+
packageJson.scripts["ionic:serve"] = "npm run start";
|
|
72
|
+
packageJson.scripts["build:storeid1"] = "vite build --mode storeid1";
|
|
73
|
+
packageJson.scripts["build:storeid2"] = "vite build --mode storeid2";
|
|
74
|
+
packageJson.scripts["build:storeid7"] = "vite build --mode storeid7";
|
|
75
|
+
|
|
76
|
+
// Save changes
|
|
77
|
+
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2), "utf8");
|
|
78
|
+
process.stdout.write("✅ package.json updated!\n");
|
package/scripts/uninstall.js
CHANGED
|
@@ -1,115 +1,115 @@
|
|
|
1
|
-
// Define file prefixes to delete
|
|
2
|
-
const filePrefixes = [
|
|
3
|
-
"add-splash-screen",
|
|
4
|
-
"setSplashAnimation",
|
|
5
|
-
"codeplayBeforeBuild",
|
|
6
|
-
"finalrelease"
|
|
7
|
-
];
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
const fs = require("fs");
|
|
16
|
-
const path = require("path");
|
|
17
|
-
|
|
18
|
-
const projectRoot = path.resolve(__dirname, "../../../"); // Project root
|
|
19
|
-
const commonBuildPath = path.join(__dirname, "../files"); // Path where files were copied from
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const splashXmlPath = path.join(projectRoot, "buildCodeplay"); // Path to splashxml folder
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
process.stdout.write("🚀 Uninstalling: Removing old and copied files...");
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
const removeDirectory = (dirPath) => {
|
|
33
|
-
if (fs.existsSync(dirPath)) {
|
|
34
|
-
fs.readdirSync(dirPath).forEach(file => {
|
|
35
|
-
const currentPath = path.join(dirPath, file);
|
|
36
|
-
if (fs.lstatSync(currentPath).isDirectory()) {
|
|
37
|
-
removeDirectory(currentPath);
|
|
38
|
-
} else {
|
|
39
|
-
fs.unlinkSync(currentPath);
|
|
40
|
-
}
|
|
41
|
-
});
|
|
42
|
-
fs.rmdirSync(dirPath);
|
|
43
|
-
process.stdout.write(`🗑️ Removed folder: ${dirPath}\n`);
|
|
44
|
-
}
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
removeDirectory(splashXmlPath);
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
// Helper function to extract version from filename
|
|
53
|
-
const extractVersion = (filename) => {
|
|
54
|
-
const match = filename.match(/-(\d+\.\d+)\.js$/);
|
|
55
|
-
return match ? parseFloat(match[1]) : null;
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
// Helper function to get base name without version
|
|
59
|
-
const getBaseName = (filename) => filename.replace(/-\d+\.\d+\.js$/, "");
|
|
60
|
-
|
|
61
|
-
// Step 1: Find all versioned files in the project directory
|
|
62
|
-
const filesInProject = fs.readdirSync(projectRoot)
|
|
63
|
-
.filter(file => file.match(/(add-splash-screen-|setSplashAnimation-|codeplayBeforeBuild-)-\d+\.\d+\.js/));
|
|
64
|
-
|
|
65
|
-
const latestVersions = {};
|
|
66
|
-
|
|
67
|
-
// Step 2: Determine the latest version for each file type
|
|
68
|
-
filesInProject.forEach(file => {
|
|
69
|
-
const baseName = getBaseName(file);
|
|
70
|
-
const version = extractVersion(file);
|
|
71
|
-
|
|
72
|
-
if (version !== null) {
|
|
73
|
-
if (!latestVersions[baseName] || version > latestVersions[baseName].version) {
|
|
74
|
-
latestVersions[baseName] = { file, version };
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
// Step 1: Find all matching files in the project directory
|
|
83
|
-
const filesInProject1 = fs.readdirSync(projectRoot)
|
|
84
|
-
.filter(file => filePrefixes.some(prefix => file.startsWith(prefix)));
|
|
85
|
-
|
|
86
|
-
filesInProject1.forEach(file => {
|
|
87
|
-
const filePath = path.join(projectRoot, file);
|
|
88
|
-
try {
|
|
89
|
-
fs.unlinkSync(filePath);
|
|
90
|
-
process.stdout.write(`🗑️ Removed file: ${filePath}`);
|
|
91
|
-
} catch (error) {
|
|
92
|
-
process.stderr.write(`⚠️ Failed to remove ${filePath}: ${error.message}`);
|
|
93
|
-
}
|
|
94
|
-
});
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
// Remove files listed in commonBuildPath
|
|
101
|
-
if (fs.existsSync(commonBuildPath)) {
|
|
102
|
-
fs.readdirSync(commonBuildPath).forEach(file => {
|
|
103
|
-
const destPath = path.join(projectRoot, file);
|
|
104
|
-
if (fs.existsSync(destPath)) {
|
|
105
|
-
try {
|
|
106
|
-
fs.unlinkSync(destPath);
|
|
107
|
-
process.stdout.write(`🗑️ Removed file: ${destPath}`);
|
|
108
|
-
} catch (error) {
|
|
109
|
-
process.stderr.write(`⚠️ Failed to remove ${destPath}: ${error.message}`);
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
});
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
process.stdout.write("✅ Uninstall cleanup complete!");
|
|
1
|
+
// Define file prefixes to delete
|
|
2
|
+
const filePrefixes = [
|
|
3
|
+
"add-splash-screen",
|
|
4
|
+
"setSplashAnimation",
|
|
5
|
+
"codeplayBeforeBuild",
|
|
6
|
+
"finalrelease"
|
|
7
|
+
];
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
const fs = require("fs");
|
|
16
|
+
const path = require("path");
|
|
17
|
+
|
|
18
|
+
const projectRoot = path.resolve(__dirname, "../../../"); // Project root
|
|
19
|
+
const commonBuildPath = path.join(__dirname, "../files"); // Path where files were copied from
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
const splashXmlPath = path.join(projectRoot, "buildCodeplay"); // Path to splashxml folder
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
process.stdout.write("🚀 Uninstalling: Removing old and copied files...");
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
const removeDirectory = (dirPath) => {
|
|
33
|
+
if (fs.existsSync(dirPath)) {
|
|
34
|
+
fs.readdirSync(dirPath).forEach(file => {
|
|
35
|
+
const currentPath = path.join(dirPath, file);
|
|
36
|
+
if (fs.lstatSync(currentPath).isDirectory()) {
|
|
37
|
+
removeDirectory(currentPath);
|
|
38
|
+
} else {
|
|
39
|
+
fs.unlinkSync(currentPath);
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
fs.rmdirSync(dirPath);
|
|
43
|
+
process.stdout.write(`🗑️ Removed folder: ${dirPath}\n`);
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
removeDirectory(splashXmlPath);
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
// Helper function to extract version from filename
|
|
53
|
+
const extractVersion = (filename) => {
|
|
54
|
+
const match = filename.match(/-(\d+\.\d+)\.js$/);
|
|
55
|
+
return match ? parseFloat(match[1]) : null;
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
// Helper function to get base name without version
|
|
59
|
+
const getBaseName = (filename) => filename.replace(/-\d+\.\d+\.js$/, "");
|
|
60
|
+
|
|
61
|
+
// Step 1: Find all versioned files in the project directory
|
|
62
|
+
const filesInProject = fs.readdirSync(projectRoot)
|
|
63
|
+
.filter(file => file.match(/(add-splash-screen-|setSplashAnimation-|codeplayBeforeBuild-)-\d+\.\d+\.js/));
|
|
64
|
+
|
|
65
|
+
const latestVersions = {};
|
|
66
|
+
|
|
67
|
+
// Step 2: Determine the latest version for each file type
|
|
68
|
+
filesInProject.forEach(file => {
|
|
69
|
+
const baseName = getBaseName(file);
|
|
70
|
+
const version = extractVersion(file);
|
|
71
|
+
|
|
72
|
+
if (version !== null) {
|
|
73
|
+
if (!latestVersions[baseName] || version > latestVersions[baseName].version) {
|
|
74
|
+
latestVersions[baseName] = { file, version };
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
// Step 1: Find all matching files in the project directory
|
|
83
|
+
const filesInProject1 = fs.readdirSync(projectRoot)
|
|
84
|
+
.filter(file => filePrefixes.some(prefix => file.startsWith(prefix)));
|
|
85
|
+
|
|
86
|
+
filesInProject1.forEach(file => {
|
|
87
|
+
const filePath = path.join(projectRoot, file);
|
|
88
|
+
try {
|
|
89
|
+
fs.unlinkSync(filePath);
|
|
90
|
+
process.stdout.write(`🗑️ Removed file: ${filePath}`);
|
|
91
|
+
} catch (error) {
|
|
92
|
+
process.stderr.write(`⚠️ Failed to remove ${filePath}: ${error.message}`);
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
// Remove files listed in commonBuildPath
|
|
101
|
+
if (fs.existsSync(commonBuildPath)) {
|
|
102
|
+
fs.readdirSync(commonBuildPath).forEach(file => {
|
|
103
|
+
const destPath = path.join(projectRoot, file);
|
|
104
|
+
if (fs.existsSync(destPath)) {
|
|
105
|
+
try {
|
|
106
|
+
fs.unlinkSync(destPath);
|
|
107
|
+
process.stdout.write(`🗑️ Removed file: ${destPath}`);
|
|
108
|
+
} catch (error) {
|
|
109
|
+
process.stderr.write(`⚠️ Failed to remove ${destPath}: ${error.message}`);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
process.stdout.write("✅ Uninstall cleanup complete!");
|
package/files/.env.storeid1
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
VITE_STORE_ID=1
|
package/files/.env.storeid2
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
VITE_STORE_ID=2
|
package/files/.env.storeid7
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
VITE_STORE_ID=7
|