333
schangxiang@126.com
2025-09-19 18966e02fb573c7e2bb0c6426ed792b38b910940
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict";
 
const versions = module.exports.versions = {
  '7_1': 0x71000001,
  '7_2': 0x72090002,
  '7_3_A': 0x730A0003,
  '7_3_B': 0x730B0003,
  '7_4': 0x74000004
};
const versionsByValue = module.exports.versionsByValue = {};
 
for (const name in versions) {
  versionsByValue[versions[name]] = name;
}