orak-util-ts 0.0.8 → 0.0.9
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/dist/index.d.mts +77 -24
- package/dist/index.d.ts +62 -9
- package/dist/index.js +109 -9
- package/dist/index.mjs +107 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,35 +1,88 @@
|
|
|
1
1
|
declare class FiMeta {
|
|
2
|
-
txKey
|
|
3
|
-
txValue
|
|
4
|
-
lnKey
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
declare class Fikeybean {
|
|
8
|
-
mapData: Map<any, any>;
|
|
9
|
-
constructor();
|
|
2
|
+
txKey?: string;
|
|
3
|
+
txValue?: string;
|
|
4
|
+
lnKey?: number;
|
|
10
5
|
}
|
|
11
6
|
|
|
12
7
|
declare class OreLog {
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
orlTxMessage?: string;
|
|
9
|
+
orlTxLogType?: string;
|
|
15
10
|
}
|
|
16
11
|
|
|
17
12
|
declare class Fdr {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
13
|
+
boResult?: boolean;
|
|
14
|
+
message?: string;
|
|
15
|
+
value?: object;
|
|
16
|
+
lnResponseCode?: number;
|
|
17
|
+
txId?: string;
|
|
18
|
+
txName?: string;
|
|
19
|
+
logList?: Array<OreLog>;
|
|
20
|
+
rowsAffected?: number;
|
|
21
|
+
lnTotalCount?: number;
|
|
22
|
+
boFalseExist?: boolean;
|
|
23
|
+
listException?: Array<object>;
|
|
24
|
+
lnStatus?: number;
|
|
25
|
+
getLogListNtn(): Array<OreLog>;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
declare class FiCol {
|
|
29
|
+
ofcTxFieldName?: string;
|
|
30
|
+
ofcTxHeader?: string;
|
|
31
|
+
txLabel?: string;
|
|
32
|
+
ofcTxDbFieldName?: string;
|
|
33
|
+
txGuid?: string;
|
|
34
|
+
ofiTxIdType?: string;
|
|
35
|
+
ofcBoUniqGro1?: boolean;
|
|
36
|
+
ofcBoNullable?: boolean;
|
|
37
|
+
ofcBoUnique?: boolean;
|
|
38
|
+
ofcBoUtfSupport?: boolean;
|
|
39
|
+
ofcTxDefValue?: string;
|
|
40
|
+
ofcTxCollation?: string;
|
|
41
|
+
ofcTxTypeName?: string;
|
|
42
|
+
ofcLnLength?: number;
|
|
43
|
+
ofcLnPrecision?: number;
|
|
44
|
+
ofcLnScale?: number;
|
|
45
|
+
ofcBoFilterLike?: boolean;
|
|
46
|
+
ofcTxFieldType?: string;
|
|
47
|
+
ofcTxEntityName?: string;
|
|
48
|
+
oftBoTransient?: boolean;
|
|
49
|
+
ficTxSqlFieldDefinition?: string;
|
|
50
|
+
printSize?: number;
|
|
51
|
+
colType?: string;
|
|
52
|
+
boEditable?: boolean;
|
|
53
|
+
boHidden?: boolean;
|
|
54
|
+
boOptional?: boolean;
|
|
55
|
+
boExist?: boolean;
|
|
56
|
+
boRequired?: boolean;
|
|
57
|
+
boEnabled?: boolean;
|
|
58
|
+
entity?: object;
|
|
59
|
+
filterValue?: object;
|
|
60
|
+
boFilterable?: boolean;
|
|
61
|
+
filterNodeClass?: string;
|
|
62
|
+
funcFormatter?: Function;
|
|
63
|
+
colEditorClass?: string;
|
|
64
|
+
colValue?: object;
|
|
65
|
+
colEditorNodeText?: string;
|
|
66
|
+
boNullable?: boolean;
|
|
67
|
+
boNonUpdatable?: boolean;
|
|
68
|
+
boNonEditableForForm?: boolean;
|
|
69
|
+
txParamName?: string;
|
|
70
|
+
boKeyIdField?: boolean;
|
|
71
|
+
boKeyIdentityField?: boolean;
|
|
72
|
+
boUpdateFieldForQuery?: boolean;
|
|
73
|
+
boInsertFieldForQuery?: boolean;
|
|
74
|
+
boParamStatus?: boolean;
|
|
75
|
+
boFilterLike?: boolean;
|
|
76
|
+
lnCode?: number;
|
|
77
|
+
boEditorOnlyNumber?: boolean;
|
|
78
|
+
boWhereField?: boolean;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
declare class FiKeybean {
|
|
82
|
+
mapData: Map<any, any>;
|
|
83
|
+
constructor();
|
|
31
84
|
}
|
|
32
85
|
|
|
33
86
|
declare function greet(name: string): string;
|
|
34
87
|
|
|
35
|
-
export { Fdr,
|
|
88
|
+
export { Fdr, FiCol, FiKeybean, FiMeta, OreLog, greet };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
declare class FiMeta {
|
|
2
|
-
txKey
|
|
3
|
-
txValue
|
|
4
|
-
lnKey
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
declare class Fikeybean {
|
|
8
|
-
mapData: Map<any, any>;
|
|
9
|
-
constructor();
|
|
2
|
+
txKey?: string;
|
|
3
|
+
txValue?: string;
|
|
4
|
+
lnKey?: number;
|
|
10
5
|
}
|
|
11
6
|
|
|
12
7
|
declare class OreLog {
|
|
@@ -30,6 +25,64 @@ declare class Fdr {
|
|
|
30
25
|
getLogListNtn(): Array<OreLog>;
|
|
31
26
|
}
|
|
32
27
|
|
|
28
|
+
declare class FiCol {
|
|
29
|
+
ofcTxFieldName?: string;
|
|
30
|
+
ofcTxHeader?: string;
|
|
31
|
+
txLabel?: string;
|
|
32
|
+
ofcTxDbFieldName?: string;
|
|
33
|
+
txGuid?: string;
|
|
34
|
+
ofiTxIdType?: string;
|
|
35
|
+
ofcBoUniqGro1?: boolean;
|
|
36
|
+
ofcBoNullable?: boolean;
|
|
37
|
+
ofcBoUnique?: boolean;
|
|
38
|
+
ofcBoUtfSupport?: boolean;
|
|
39
|
+
ofcTxDefValue?: string;
|
|
40
|
+
ofcTxCollation?: string;
|
|
41
|
+
ofcTxTypeName?: string;
|
|
42
|
+
ofcLnLength?: number;
|
|
43
|
+
ofcLnPrecision?: number;
|
|
44
|
+
ofcLnScale?: number;
|
|
45
|
+
ofcBoFilterLike?: boolean;
|
|
46
|
+
ofcTxFieldType?: string;
|
|
47
|
+
ofcTxEntityName?: string;
|
|
48
|
+
oftBoTransient?: boolean;
|
|
49
|
+
ficTxSqlFieldDefinition?: string;
|
|
50
|
+
printSize?: number;
|
|
51
|
+
colType?: string;
|
|
52
|
+
boEditable?: boolean;
|
|
53
|
+
boHidden?: boolean;
|
|
54
|
+
boOptional?: boolean;
|
|
55
|
+
boExist?: boolean;
|
|
56
|
+
boRequired?: boolean;
|
|
57
|
+
boEnabled?: boolean;
|
|
58
|
+
entity?: object;
|
|
59
|
+
filterValue?: object;
|
|
60
|
+
boFilterable?: boolean;
|
|
61
|
+
filterNodeClass?: string;
|
|
62
|
+
funcFormatter?: Function;
|
|
63
|
+
colEditorClass?: string;
|
|
64
|
+
colValue?: object;
|
|
65
|
+
colEditorNodeText?: string;
|
|
66
|
+
boNullable?: boolean;
|
|
67
|
+
boNonUpdatable?: boolean;
|
|
68
|
+
boNonEditableForForm?: boolean;
|
|
69
|
+
txParamName?: string;
|
|
70
|
+
boKeyIdField?: boolean;
|
|
71
|
+
boKeyIdentityField?: boolean;
|
|
72
|
+
boUpdateFieldForQuery?: boolean;
|
|
73
|
+
boInsertFieldForQuery?: boolean;
|
|
74
|
+
boParamStatus?: boolean;
|
|
75
|
+
boFilterLike?: boolean;
|
|
76
|
+
lnCode?: number;
|
|
77
|
+
boEditorOnlyNumber?: boolean;
|
|
78
|
+
boWhereField?: boolean;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
declare class FiKeybean {
|
|
82
|
+
mapData: Map<any, any>;
|
|
83
|
+
constructor();
|
|
84
|
+
}
|
|
85
|
+
|
|
33
86
|
declare function greet(name: string): string;
|
|
34
87
|
|
|
35
|
-
export { Fdr,
|
|
88
|
+
export { Fdr, FiCol, FiKeybean, FiMeta, OreLog, greet };
|
package/dist/index.js
CHANGED
|
@@ -21,8 +21,9 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
21
21
|
var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
|
23
23
|
Fdr: () => Fdr,
|
|
24
|
+
FiCol: () => FiCol,
|
|
25
|
+
FiKeybean: () => FiKeybean,
|
|
24
26
|
FiMeta: () => FiMeta,
|
|
25
|
-
Fikeybean: () => Fikeybean,
|
|
26
27
|
OreLog: () => OreLog,
|
|
27
28
|
greet: () => greet
|
|
28
29
|
});
|
|
@@ -35,13 +36,6 @@ var FiMeta = class {
|
|
|
35
36
|
lnKey;
|
|
36
37
|
};
|
|
37
38
|
|
|
38
|
-
// src/Fikeybean.ts
|
|
39
|
-
var Fikeybean = class {
|
|
40
|
-
mapData = /* @__PURE__ */ new Map();
|
|
41
|
-
constructor() {
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
|
|
45
39
|
// src/Fdr.ts
|
|
46
40
|
var Fdr = class {
|
|
47
41
|
boResult;
|
|
@@ -83,6 +77,111 @@ var OreLog = class {
|
|
|
83
77
|
orlTxLogType;
|
|
84
78
|
};
|
|
85
79
|
|
|
80
|
+
// src/FiCol.ts
|
|
81
|
+
var FiCol = class {
|
|
82
|
+
ofcTxFieldName;
|
|
83
|
+
ofcTxHeader;
|
|
84
|
+
txLabel;
|
|
85
|
+
ofcTxDbFieldName;
|
|
86
|
+
txGuid;
|
|
87
|
+
ofiTxIdType;
|
|
88
|
+
ofcBoUniqGro1;
|
|
89
|
+
ofcBoNullable;
|
|
90
|
+
ofcBoUnique;
|
|
91
|
+
ofcBoUtfSupport;
|
|
92
|
+
ofcTxDefValue;
|
|
93
|
+
ofcTxCollation;
|
|
94
|
+
ofcTxTypeName;
|
|
95
|
+
ofcLnLength;
|
|
96
|
+
ofcLnPrecision;
|
|
97
|
+
ofcLnScale;
|
|
98
|
+
ofcBoFilterLike;
|
|
99
|
+
ofcTxFieldType;
|
|
100
|
+
ofcTxEntityName;
|
|
101
|
+
oftBoTransient;
|
|
102
|
+
ficTxSqlFieldDefinition;
|
|
103
|
+
//prefSize?:ObjectProperty;
|
|
104
|
+
printSize;
|
|
105
|
+
colType;
|
|
106
|
+
//colGenType?:OzColType;
|
|
107
|
+
boEditable;
|
|
108
|
+
boHidden;
|
|
109
|
+
boOptional;
|
|
110
|
+
boExist;
|
|
111
|
+
boRequired;
|
|
112
|
+
boEnabled;
|
|
113
|
+
entity;
|
|
114
|
+
//colFilterNode?:Node;
|
|
115
|
+
//colFilterKeyEvent?:EventHandler;
|
|
116
|
+
//paneHeader?:FxMigPane;
|
|
117
|
+
filterValue;
|
|
118
|
+
boFilterable;
|
|
119
|
+
filterNodeClass;
|
|
120
|
+
funcFormatter;
|
|
121
|
+
//formatter?:Format;
|
|
122
|
+
colEditorClass;
|
|
123
|
+
// colEditorNode?:Node;
|
|
124
|
+
colValue;
|
|
125
|
+
colEditorNodeText;
|
|
126
|
+
// colEditorKeyEvent?:EventHandler;
|
|
127
|
+
// fnEditorSetOnActionWithEntity?:Consumer;
|
|
128
|
+
// fnEditorSetOnAction?:BiConsumer;
|
|
129
|
+
// fnEditorSetOnActionWitCol?:TriConsumer;
|
|
130
|
+
// fnEditorSetOnActionWitValue?:TriConsumer;
|
|
131
|
+
// fnEditorNodeValueFormmatter?:Function;
|
|
132
|
+
// fnEditorNodeRendererBeforeSettingValue?:BiConsumer;
|
|
133
|
+
// fnEditorNodeRendererAfterInitialValue1?:BiConsumer;
|
|
134
|
+
// fnEditorNodeRendererAfterInitialValue2?:BiConsumer;
|
|
135
|
+
// fnEditorNodeRendererAfterFormLoad?:BiConsumer;
|
|
136
|
+
// fnEditorNodeAfterChangeForForm?:BiConsumer;
|
|
137
|
+
// fnEditorNodeRendererWithCol?:TriConsumer;
|
|
138
|
+
// fnEditorNodeRendererWitValue?:TriConsumer;
|
|
139
|
+
// fnEditorNodeLfcAfterAllFormLoad?:Consumer;
|
|
140
|
+
// predEditorDisable?:Predicate;
|
|
141
|
+
// colIndex?:number;
|
|
142
|
+
// listChildCol?:Array<object>;
|
|
143
|
+
// childClazz?:Class;
|
|
144
|
+
// entClass?:Class;
|
|
145
|
+
// colComment?:string;
|
|
146
|
+
// mapStyle?:Map;
|
|
147
|
+
// fnColButton?:BiConsumer;
|
|
148
|
+
boNullable;
|
|
149
|
+
boNonUpdatable;
|
|
150
|
+
boNonEditableForForm;
|
|
151
|
+
txParamName;
|
|
152
|
+
boKeyIdField;
|
|
153
|
+
boKeyIdentityField;
|
|
154
|
+
boUpdateFieldForQuery;
|
|
155
|
+
boInsertFieldForQuery;
|
|
156
|
+
boParamStatus;
|
|
157
|
+
// tableColumnFx?:ObjectProperty;
|
|
158
|
+
// fxTreeTableCol?:ObjectProperty;
|
|
159
|
+
// fxTableCol2?:FxTableCol2;
|
|
160
|
+
// fnColCellManualChanged?:Consumer;
|
|
161
|
+
// summaryLabelNode?:FxLabel;
|
|
162
|
+
// summaryCheckBox?:FxCheckBox;
|
|
163
|
+
// summaryNode?:Node;
|
|
164
|
+
// summaryType?:OzColSummaryType;
|
|
165
|
+
// summaryCalculateFn?:Function;
|
|
166
|
+
// boDontExportExcel?:boolean;
|
|
167
|
+
// boDontExportExcelTemplate?:boolean;
|
|
168
|
+
// ifxNodeEditor?:IfxNode;
|
|
169
|
+
boFilterLike;
|
|
170
|
+
// fnEditorNodeRendererAfterFormLoad2?:TriConsumer;
|
|
171
|
+
// fnNodeFocusTrigger?:Consumer;
|
|
172
|
+
lnCode;
|
|
173
|
+
// fnValidate?:Function;
|
|
174
|
+
boEditorOnlyNumber;
|
|
175
|
+
boWhereField;
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
// src/FiKeybean.ts
|
|
179
|
+
var FiKeybean = class {
|
|
180
|
+
mapData = /* @__PURE__ */ new Map();
|
|
181
|
+
constructor() {
|
|
182
|
+
}
|
|
183
|
+
};
|
|
184
|
+
|
|
86
185
|
// src/index.ts
|
|
87
186
|
function greet(name) {
|
|
88
187
|
return `Hello, ${name}!`;
|
|
@@ -90,8 +189,9 @@ function greet(name) {
|
|
|
90
189
|
// Annotate the CommonJS export names for ESM import in node:
|
|
91
190
|
0 && (module.exports = {
|
|
92
191
|
Fdr,
|
|
192
|
+
FiCol,
|
|
193
|
+
FiKeybean,
|
|
93
194
|
FiMeta,
|
|
94
|
-
Fikeybean,
|
|
95
195
|
OreLog,
|
|
96
196
|
greet
|
|
97
197
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -5,13 +5,6 @@ var FiMeta = class {
|
|
|
5
5
|
lnKey;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
-
// src/Fikeybean.ts
|
|
9
|
-
var Fikeybean = class {
|
|
10
|
-
mapData = /* @__PURE__ */ new Map();
|
|
11
|
-
constructor() {
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
|
|
15
8
|
// src/Fdr.ts
|
|
16
9
|
var Fdr = class {
|
|
17
10
|
boResult;
|
|
@@ -53,14 +46,120 @@ var OreLog = class {
|
|
|
53
46
|
orlTxLogType;
|
|
54
47
|
};
|
|
55
48
|
|
|
49
|
+
// src/FiCol.ts
|
|
50
|
+
var FiCol = class {
|
|
51
|
+
ofcTxFieldName;
|
|
52
|
+
ofcTxHeader;
|
|
53
|
+
txLabel;
|
|
54
|
+
ofcTxDbFieldName;
|
|
55
|
+
txGuid;
|
|
56
|
+
ofiTxIdType;
|
|
57
|
+
ofcBoUniqGro1;
|
|
58
|
+
ofcBoNullable;
|
|
59
|
+
ofcBoUnique;
|
|
60
|
+
ofcBoUtfSupport;
|
|
61
|
+
ofcTxDefValue;
|
|
62
|
+
ofcTxCollation;
|
|
63
|
+
ofcTxTypeName;
|
|
64
|
+
ofcLnLength;
|
|
65
|
+
ofcLnPrecision;
|
|
66
|
+
ofcLnScale;
|
|
67
|
+
ofcBoFilterLike;
|
|
68
|
+
ofcTxFieldType;
|
|
69
|
+
ofcTxEntityName;
|
|
70
|
+
oftBoTransient;
|
|
71
|
+
ficTxSqlFieldDefinition;
|
|
72
|
+
//prefSize?:ObjectProperty;
|
|
73
|
+
printSize;
|
|
74
|
+
colType;
|
|
75
|
+
//colGenType?:OzColType;
|
|
76
|
+
boEditable;
|
|
77
|
+
boHidden;
|
|
78
|
+
boOptional;
|
|
79
|
+
boExist;
|
|
80
|
+
boRequired;
|
|
81
|
+
boEnabled;
|
|
82
|
+
entity;
|
|
83
|
+
//colFilterNode?:Node;
|
|
84
|
+
//colFilterKeyEvent?:EventHandler;
|
|
85
|
+
//paneHeader?:FxMigPane;
|
|
86
|
+
filterValue;
|
|
87
|
+
boFilterable;
|
|
88
|
+
filterNodeClass;
|
|
89
|
+
funcFormatter;
|
|
90
|
+
//formatter?:Format;
|
|
91
|
+
colEditorClass;
|
|
92
|
+
// colEditorNode?:Node;
|
|
93
|
+
colValue;
|
|
94
|
+
colEditorNodeText;
|
|
95
|
+
// colEditorKeyEvent?:EventHandler;
|
|
96
|
+
// fnEditorSetOnActionWithEntity?:Consumer;
|
|
97
|
+
// fnEditorSetOnAction?:BiConsumer;
|
|
98
|
+
// fnEditorSetOnActionWitCol?:TriConsumer;
|
|
99
|
+
// fnEditorSetOnActionWitValue?:TriConsumer;
|
|
100
|
+
// fnEditorNodeValueFormmatter?:Function;
|
|
101
|
+
// fnEditorNodeRendererBeforeSettingValue?:BiConsumer;
|
|
102
|
+
// fnEditorNodeRendererAfterInitialValue1?:BiConsumer;
|
|
103
|
+
// fnEditorNodeRendererAfterInitialValue2?:BiConsumer;
|
|
104
|
+
// fnEditorNodeRendererAfterFormLoad?:BiConsumer;
|
|
105
|
+
// fnEditorNodeAfterChangeForForm?:BiConsumer;
|
|
106
|
+
// fnEditorNodeRendererWithCol?:TriConsumer;
|
|
107
|
+
// fnEditorNodeRendererWitValue?:TriConsumer;
|
|
108
|
+
// fnEditorNodeLfcAfterAllFormLoad?:Consumer;
|
|
109
|
+
// predEditorDisable?:Predicate;
|
|
110
|
+
// colIndex?:number;
|
|
111
|
+
// listChildCol?:Array<object>;
|
|
112
|
+
// childClazz?:Class;
|
|
113
|
+
// entClass?:Class;
|
|
114
|
+
// colComment?:string;
|
|
115
|
+
// mapStyle?:Map;
|
|
116
|
+
// fnColButton?:BiConsumer;
|
|
117
|
+
boNullable;
|
|
118
|
+
boNonUpdatable;
|
|
119
|
+
boNonEditableForForm;
|
|
120
|
+
txParamName;
|
|
121
|
+
boKeyIdField;
|
|
122
|
+
boKeyIdentityField;
|
|
123
|
+
boUpdateFieldForQuery;
|
|
124
|
+
boInsertFieldForQuery;
|
|
125
|
+
boParamStatus;
|
|
126
|
+
// tableColumnFx?:ObjectProperty;
|
|
127
|
+
// fxTreeTableCol?:ObjectProperty;
|
|
128
|
+
// fxTableCol2?:FxTableCol2;
|
|
129
|
+
// fnColCellManualChanged?:Consumer;
|
|
130
|
+
// summaryLabelNode?:FxLabel;
|
|
131
|
+
// summaryCheckBox?:FxCheckBox;
|
|
132
|
+
// summaryNode?:Node;
|
|
133
|
+
// summaryType?:OzColSummaryType;
|
|
134
|
+
// summaryCalculateFn?:Function;
|
|
135
|
+
// boDontExportExcel?:boolean;
|
|
136
|
+
// boDontExportExcelTemplate?:boolean;
|
|
137
|
+
// ifxNodeEditor?:IfxNode;
|
|
138
|
+
boFilterLike;
|
|
139
|
+
// fnEditorNodeRendererAfterFormLoad2?:TriConsumer;
|
|
140
|
+
// fnNodeFocusTrigger?:Consumer;
|
|
141
|
+
lnCode;
|
|
142
|
+
// fnValidate?:Function;
|
|
143
|
+
boEditorOnlyNumber;
|
|
144
|
+
boWhereField;
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
// src/FiKeybean.ts
|
|
148
|
+
var FiKeybean = class {
|
|
149
|
+
mapData = /* @__PURE__ */ new Map();
|
|
150
|
+
constructor() {
|
|
151
|
+
}
|
|
152
|
+
};
|
|
153
|
+
|
|
56
154
|
// src/index.ts
|
|
57
155
|
function greet(name) {
|
|
58
156
|
return `Hello, ${name}!`;
|
|
59
157
|
}
|
|
60
158
|
export {
|
|
61
159
|
Fdr,
|
|
160
|
+
FiCol,
|
|
161
|
+
FiKeybean,
|
|
62
162
|
FiMeta,
|
|
63
|
-
Fikeybean,
|
|
64
163
|
OreLog,
|
|
65
164
|
greet
|
|
66
165
|
};
|