@knighted/css 1.0.7 → 1.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.
@@ -0,0 +1,229 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.analyzeModule = analyzeModule;
7
+ const node_path_1 = __importDefault(require("node:path"));
8
+ const es_module_lexer_1 = require("es-module-lexer");
9
+ const oxc_parser_1 = require("oxc-parser");
10
+ const JSX_EXTENSIONS = new Set(['.jsx', '.tsx']);
11
+ async function analyzeModule(sourceText, filePath, options) {
12
+ const ext = node_path_1.default.extname(filePath).toLowerCase();
13
+ if (JSX_EXTENSIONS.has(ext)) {
14
+ return parseWithOxc(sourceText, filePath);
15
+ }
16
+ const esParse = options?.esParse ?? es_module_lexer_1.parse;
17
+ try {
18
+ await es_module_lexer_1.init;
19
+ const [imports, exports] = esParse(sourceText, filePath);
20
+ return {
21
+ imports: normalizeEsImports(imports, sourceText),
22
+ defaultSignal: classifyDefault(exports),
23
+ };
24
+ }
25
+ catch {
26
+ // fall through to oxc fallback
27
+ }
28
+ return parseWithOxc(sourceText, filePath);
29
+ }
30
+ function normalizeEsImports(records, sourceText) {
31
+ const imports = [];
32
+ for (const record of records) {
33
+ const raw = record.n ?? sourceText.slice(record.s, record.e);
34
+ const normalized = normalizeSpecifier(raw);
35
+ if (normalized) {
36
+ imports.push(normalized);
37
+ }
38
+ }
39
+ return imports;
40
+ }
41
+ function classifyDefault(exports) {
42
+ if (exports.some(entry => entry.n === 'default')) {
43
+ return 'has-default';
44
+ }
45
+ if (exports.length === 0) {
46
+ return 'unknown';
47
+ }
48
+ return 'no-default';
49
+ }
50
+ function parseWithOxc(sourceText, filePath) {
51
+ const ext = node_path_1.default.extname(filePath).toLowerCase();
52
+ const attempts = [
53
+ ...(ext === '.js'
54
+ ? [{ path: `${filePath}.tsx`, sourceType: 'module' }]
55
+ : []),
56
+ { path: filePath, sourceType: 'module' },
57
+ { path: filePath, sourceType: 'unambiguous' },
58
+ ];
59
+ let program;
60
+ for (const attempt of attempts) {
61
+ try {
62
+ ;
63
+ ({ program } = (0, oxc_parser_1.parseSync)(attempt.path, sourceText, {
64
+ sourceType: attempt.sourceType,
65
+ }));
66
+ break;
67
+ }
68
+ catch {
69
+ program = undefined;
70
+ }
71
+ }
72
+ if (!program) {
73
+ return { imports: [], defaultSignal: 'unknown' };
74
+ }
75
+ const imports = [];
76
+ let defaultSignal = 'unknown';
77
+ const addSpecifier = (raw) => {
78
+ if (!raw) {
79
+ return;
80
+ }
81
+ const normalized = normalizeSpecifier(raw);
82
+ if (normalized) {
83
+ imports.push(normalized);
84
+ }
85
+ };
86
+ const visitor = new oxc_parser_1.Visitor({
87
+ ImportDeclaration(node) {
88
+ addSpecifier(node.source?.value);
89
+ },
90
+ ExportNamedDeclaration(node) {
91
+ if (node.source) {
92
+ addSpecifier(node.source.value);
93
+ }
94
+ if (hasDefaultSpecifier(node)) {
95
+ defaultSignal = 'has-default';
96
+ }
97
+ else if (defaultSignal === 'unknown' && hasAnySpecifier(node)) {
98
+ defaultSignal = 'no-default';
99
+ }
100
+ },
101
+ ExportAllDeclaration(node) {
102
+ addSpecifier(node.source?.value);
103
+ if (node.exported && isExportedAsDefault(node.exported)) {
104
+ defaultSignal = 'has-default';
105
+ }
106
+ },
107
+ ExportDefaultDeclaration() {
108
+ defaultSignal = 'has-default';
109
+ },
110
+ TSExportAssignment(node) {
111
+ if (node.expression) {
112
+ defaultSignal = 'has-default';
113
+ }
114
+ },
115
+ TSImportEqualsDeclaration(node) {
116
+ const specifier = extractImportEqualsSpecifier(node);
117
+ if (specifier) {
118
+ addSpecifier(specifier);
119
+ }
120
+ },
121
+ ImportExpression(node) {
122
+ const specifier = getStringFromExpression(node.source);
123
+ if (specifier) {
124
+ addSpecifier(specifier);
125
+ }
126
+ },
127
+ CallExpression(node) {
128
+ if (!isRequireLikeCallee(node.callee)) {
129
+ return;
130
+ }
131
+ const specifier = getStringFromArgument(node.arguments[0]);
132
+ if (specifier) {
133
+ addSpecifier(specifier);
134
+ }
135
+ },
136
+ });
137
+ visitor.visit(program);
138
+ return { imports, defaultSignal };
139
+ }
140
+ function normalizeSpecifier(raw) {
141
+ if (!raw)
142
+ return '';
143
+ const trimmed = raw.trim();
144
+ if (!trimmed || trimmed.startsWith('\0')) {
145
+ return '';
146
+ }
147
+ const querySearchOffset = trimmed.startsWith('#') ? 1 : 0;
148
+ const remainder = trimmed.slice(querySearchOffset);
149
+ const queryMatchIndex = remainder.search(/[?#]/);
150
+ const queryIndex = queryMatchIndex === -1 ? -1 : querySearchOffset + queryMatchIndex;
151
+ const withoutQuery = queryIndex === -1 ? trimmed : trimmed.slice(0, queryIndex);
152
+ if (!withoutQuery) {
153
+ return '';
154
+ }
155
+ if (/^[a-z][\w+.-]*:/i.test(withoutQuery) && !withoutQuery.startsWith('file:')) {
156
+ return '';
157
+ }
158
+ return withoutQuery;
159
+ }
160
+ function hasDefaultSpecifier(node) {
161
+ return node.specifiers?.some(spec => isExportedAsDefault(spec.exported)) ?? false;
162
+ }
163
+ function hasAnySpecifier(node) {
164
+ return Array.isArray(node.specifiers) && node.specifiers.length > 0;
165
+ }
166
+ function isExportedAsDefault(exported) {
167
+ if (!exported)
168
+ return false;
169
+ if (typeof exported.name === 'string' && exported.name === 'default') {
170
+ return true;
171
+ }
172
+ if (typeof exported.value === 'string' && exported.value === 'default') {
173
+ return true;
174
+ }
175
+ return false;
176
+ }
177
+ function extractImportEqualsSpecifier(node) {
178
+ if (node.moduleReference.type === 'TSExternalModuleReference') {
179
+ return node.moduleReference.expression.value;
180
+ }
181
+ return undefined;
182
+ }
183
+ function getStringFromArgument(argument) {
184
+ if (!argument || argument.type === 'SpreadElement') {
185
+ return undefined;
186
+ }
187
+ return getStringFromExpression(argument);
188
+ }
189
+ function getStringFromExpression(expression) {
190
+ if (!expression) {
191
+ return undefined;
192
+ }
193
+ if (expression.type === 'Literal') {
194
+ const literalValue = expression.value;
195
+ return typeof literalValue === 'string' ? literalValue : undefined;
196
+ }
197
+ if (expression.type === 'TemplateLiteral' && expression.expressions.length === 0) {
198
+ const [first] = expression.quasis;
199
+ return first?.value.cooked ?? first?.value.raw ?? undefined;
200
+ }
201
+ return undefined;
202
+ }
203
+ function isRequireLikeCallee(expression) {
204
+ const target = unwrapExpression(expression);
205
+ if (target.type === 'Identifier') {
206
+ return target.name === 'require';
207
+ }
208
+ if (target.type === 'MemberExpression') {
209
+ const object = target.object;
210
+ if (object.type === 'Identifier') {
211
+ return object.name === 'require';
212
+ }
213
+ }
214
+ return false;
215
+ }
216
+ function unwrapExpression(expression) {
217
+ if (expression.type === 'ChainExpression') {
218
+ const inner = expression.expression;
219
+ if (inner.type === 'CallExpression') {
220
+ return unwrapExpression(inner.callee);
221
+ }
222
+ return unwrapExpression(inner);
223
+ }
224
+ if (expression.type === 'TSNonNullExpression') {
225
+ return unwrapExpression(expression.expression);
226
+ }
227
+ return expression;
228
+ }
229
+ //# sourceMappingURL=lexer.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lexer.cjs","names":[],"sources":["../../src/lexer.ts"],"sourcesContent":[null],"mappings":[[],[],[],[],[],[[0,0,27,0],[1,0,27,0],[2,0,27,0],[3,0,27,0],[4,0,27,0],[5,0,27,0],[6,0,27,0],[7,0,27,0],[8,0,27,0],[9,0,27,0],[10,0,27,0],[11,0,27,0],[12,0,27,0],[13,0,27,0],[14,0,27,0],[15,0,27,0],[16,0,27,0],[17,0,27,0],[18,0,27,0],[19,0,27,0],[20,0,27,0],[21,0,27,0],[22,0,27,0],[23,0,27,0],[24,0,27,0],[25,0,27,0],[26,0,27,0],[27,0,27,0],[28,0,27,0],[29,0,27,0],[30,0,27,0],[31,0,27,0],[32,0,27,0],[33,0,27,0],[34,0,27,0],[35,0,27,0],[36,0,27,0],[37,0,27,0]],[[0,0,0,0],[1,0,0,0],[2,0,0,0],[3,0,0,0],[4,0,0,0],[5,0,0,0],[6,0,0,0],[7,0,0,0],[8,0,0,0],[9,0,0,0],[10,0,0,0],[11,0,0,0],[12,0,0,0],[13,0,0,0],[14,0,0,0],[15,0,0,0],[16,0,0,0],[17,0,0,0],[18,0,0,0],[19,0,0,0],[20,0,0,0],[21,0,0,0],[22,0,0,0],[23,0,0,0],[24,0,0,0],[25,0,0,0],[26,0,0,0],[27,0,0,0],[28,0,0,0],[29,0,0,0],[30,0,0,0],[31,0,0,0],[32,0,0,0],[33,0,0,0],[34,0,0,0],[35,0,0,0],[36,0,0,0],[37,0,0,0],[38,0,0,0],[39,0,0,0],[40,0,0,0],[41,0,0,0],[42,0,0,0],[43,0,0,0],[44,0,0,0],[45,0,0,0],[46,0,0,0],[47,0,0,0],[48,0,0,0],[49,0,0,0],[50,0,0,0],[51,0,0,0],[52,0,0,0],[53,0,0,0],[54,0,0,0],[55,0,0,0],[56,0,0,0],[57,0,0,0]],[[0,0,2,0],[1,0,2,0],[2,0,2,0],[3,0,2,0],[4,0,2,0],[5,0,2,0],[6,0,2,0],[7,0,2,0],[8,0,2,0],[9,0,2,0],[10,0,2,0],[11,0,2,0],[12,0,2,0],[13,0,2,0],[14,0,2,0],[15,0,2,0],[16,0,2,0],[17,0,2,0],[18,0,2,0],[19,0,2,0],[20,0,2,0],[21,0,2,0],[22,0,2,0],[23,0,2,0],[24,0,2,0],[25,0,2,0],[26,0,2,0],[27,0,2,0],[28,0,2,0],[29,0,2,0],[30,0,2,0],[31,0,2,0],[32,0,2,0],[33,0,2,0],[34,0,2,0],[35,0,2,0],[36,0,2,0],[37,0,2,0],[38,0,2,0],[39,0,2,0],[40,0,2,0],[41,0,2,0],[42,0,2,0],[43,0,2,0],[44,0,2,0],[45,0,2,0],[46,0,2,0],[47,0,2,0],[48,0,2,0],[49,0,2,0],[50,0,2,0],[51,0,2,0],[52,0,2,0]],[[0,0,3,0],[1,0,3,0],[2,0,3,0],[3,0,3,0],[4,0,3,0],[5,0,3,0],[6,0,3,0],[7,0,3,0],[8,0,3,0],[9,0,3,0],[10,0,3,0],[11,0,3,0],[12,0,3,0],[13,0,3,0],[14,0,3,0],[15,0,3,0],[16,0,3,0],[17,0,3,0],[18,0,3,0],[19,0,3,0],[20,0,3,0],[21,0,3,0],[22,0,3,0],[23,0,3,0],[24,0,3,0],[25,0,3,0],[26,0,3,0],[27,0,3,0],[28,0,3,0],[29,0,3,0],[30,0,3,0],[31,0,3,0],[32,0,3,0],[33,0,3,0],[34,0,3,0],[35,0,3,0],[36,0,3,0],[37,0,3,0],[38,0,3,0],[39,0,3,0],[40,0,3,0],[41,0,3,0],[42,0,3,0]],[[0,0,25,0],[1,0,25,0],[2,0,25,0],[3,0,25,0],[4,0,25,0],[5,0,25,0],[6,0,25,6],[7,0,25,6],[8,0,25,6],[9,0,25,6],[10,0,25,6],[11,0,25,6],[12,0,25,6],[13,0,25,6],[14,0,25,6],[15,0,25,6],[16,0,25,6],[17,0,25,6],[18,0,25,6],[19,0,25,6],[20,0,25,20],[21,0,25,20],[22,0,25,20],[23,0,25,23],[24,0,25,23],[25,0,25,23],[26,0,25,23],[27,0,25,27],[28,0,25,27],[29,0,25,27],[30,0,25,30],[31,0,25,31],[32,0,25,32],[33,0,25,32],[34,0,25,32],[35,0,25,32],[36,0,25,32],[37,0,25,32],[38,0,25,38],[39,0,25,38],[40,0,25,40],[41,0,25,40],[42,0,25,40],[43,0,25,40],[44,0,25,40],[45,0,25,40],[46,0,25,46],[47,0,25,47],[48,0,25,48]],[[0,0,27,7],[1,0,27,7],[2,0,27,7],[3,0,27,7],[4,0,27,7],[5,0,27,12],[6,0,27,12],[7,0,27,12],[8,0,27,12],[9,0,27,12],[10,0,27,12],[11,0,27,12],[12,0,27,12],[13,0,27,12],[14,0,27,12],[15,0,27,22],[16,0,27,22],[17,0,27,22],[18,0,27,22],[19,0,27,22],[20,0,27,22],[21,0,27,22],[22,0,27,22],[23,0,27,22],[24,0,27,22],[25,0,27,22],[26,0,27,22],[27,0,27,22],[28,0,27,35],[29,0,28,2],[30,0,28,2],[31,0,28,2],[32,0,28,2],[33,0,28,2],[34,0,28,2],[35,0,28,2],[36,0,28,2],[37,0,28,2],[38,0,28,2],[39,0,28,20],[40,0,28,20],[41,0,29,2],[42,0,29,2],[43,0,29,2],[44,0,29,2],[45,0,29,2],[46,0,29,2],[47,0,29,2],[48,0,29,2],[49,0,29,18],[50,0,29,18],[51,0,30,2],[52,0,30,2],[53,0,30,2],[54,0,30,2],[55,0,30,2],[56,0,30,2],[57,0,30,2],[58,0,30,26],[59,0,30,26],[60,0,30,26]],[[4,0,32,2],[5,0,32,2],[6,0,32,2],[7,0,32,2],[8,0,32,2],[9,0,32,2],[10,0,32,8],[11,0,32,8],[12,0,32,8],[13,0,32,11],[14,0,32,11],[15,0,32,11],[16,0,32,14],[17,0,32,14],[18,0,32,14],[19,0,32,14],[20,0,32,14],[21,0,32,14],[22,0,32,14],[23,0,32,14],[24,0,32,14],[25,0,32,14],[26,0,32,14],[27,0,32,14],[28,0,32,14],[29,0,32,14],[30,0,32,14],[31,0,32,14],[32,0,32,14],[33,0,32,14],[34,0,32,14],[35,0,32,18],[36,0,32,19],[37,0,32,19],[38,0,32,19],[39,0,32,19],[40,0,32,19],[41,0,32,19],[42,0,32,19],[43,0,32,26],[44,0,32,27],[45,0,32,27],[46,0,32,27],[47,0,32,27],[48,0,32,27],[49,0,32,27],[50,0,32,27],[51,0,32,27],[52,0,32,35],[53,0,32,36],[54,0,32,37],[55,0,32,37],[56,0,32,37],[57,0,32,37],[58,0,32,37],[59,0,32,37],[60,0,32,37],[61,0,32,37],[62,0,32,37],[63,0,32,37],[64,0,32,37],[65,0,32,48],[66,0,32,48],[67,0,32,50]],[[4,0,34,2],[5,0,34,2],[6,0,34,2],[7,0,34,2],[8,0,34,6],[9,0,34,6],[10,0,34,6],[11,0,34,6],[12,0,34,6],[13,0,34,6],[14,0,34,6],[15,0,34,6],[16,0,34,6],[17,0,34,6],[18,0,34,6],[19,0,34,6],[20,0,34,6],[21,0,34,6],[22,0,34,20],[23,0,34,21],[24,0,34,21],[25,0,34,21],[26,0,34,24],[27,0,34,25],[28,0,34,25],[29,0,34,25],[30,0,34,28],[31,0,34,29],[32,0,34,29],[33,0,34,31]],[[8,0,35,4],[9,0,35,4],[10,0,35,4],[11,0,35,4],[12,0,35,4],[13,0,35,4],[14,0,35,4],[15,0,35,11],[16,0,35,11],[17,0,35,11],[18,0,35,11],[19,0,35,11],[20,0,35,11],[21,0,35,11],[22,0,35,11],[23,0,35,11],[24,0,35,11],[25,0,35,11],[26,0,35,11],[27,0,35,23],[28,0,35,24],[29,0,35,24],[30,0,35,24],[31,0,35,24],[32,0,35,24],[33,0,35,24],[34,0,35,24],[35,0,35,24],[36,0,35,24],[37,0,35,24],[38,0,35,34],[39,0,35,34],[40,0,35,36],[41,0,35,36],[42,0,35,36],[43,0,35,36],[44,0,35,36],[45,0,35,36],[46,0,35,36],[47,0,35,36],[48,0,35,44],[49,0,35,45]],[[4,0,36,2]],[[4,0,38,2],[5,0,38,2],[6,0,38,2],[7,0,38,2],[8,0,38,2],[9,0,38,2],[10,0,38,8],[11,0,38,8],[12,0,38,8],[13,0,38,8],[14,0,38,8],[15,0,38,8],[16,0,38,8],[17,0,38,15],[18,0,38,15],[19,0,38,15],[20,0,38,18],[21,0,38,18],[22,0,38,18],[23,0,38,18],[24,0,38,18],[25,0,38,18],[26,0,38,18],[27,0,38,25],[28,0,38,25],[29,0,38,27],[30,0,38,27],[31,0,38,27],[32,0,38,27],[33,0,38,27],[34,0,38,27],[35,0,38,27],[36,0,38,34],[37,0,38,34],[38,0,38,34],[39,0,38,34],[40,0,38,38],[41,0,38,38],[42,0,38,38],[43,0,38,38],[44,0,38,38],[45,0,38,38],[46,0,38,38],[47,0,38,38],[48,0,38,38],[49,0,38,38],[50,0,38,38],[51,0,38,38],[52,0,38,38],[53,0,38,38],[54,0,38,38],[55,0,38,38],[56,0,38,38],[57,0,38,38],[58,0,38,38],[59,0,38,38],[60,0,38,38],[61,0,38,38],[62,0,38,38],[63,0,38,43]],[[4,0,40,2],[5,0,40,2],[6,0,40,2],[7,0,40,2],[8,0,40,6]],[[8,0,41,4],[9,0,41,4],[10,0,41,4],[11,0,41,4],[12,0,41,4],[13,0,41,4],[14,0,41,10],[15,0,41,10],[16,0,41,10],[17,0,41,10],[18,0,41,10],[19,0,41,10],[20,0,41,10],[21,0,41,10],[22,0,41,10],[23,0,41,10],[24,0,41,10],[25,0,41,10],[26,0,41,10],[27,0,41,10],[28,0,41,10],[29,0,41,10],[30,0,41,10],[31,0,41,10],[32,0,41,10],[33,0,41,10],[34,0,41,10],[35,0,41,10],[36,0,41,14]],[[8,0,42,4],[9,0,42,4],[10,0,42,4],[11,0,42,4],[12,0,42,4],[13,0,42,4],[14,0,42,10],[15,0,42,11],[16,0,42,11],[17,0,42,11],[18,0,42,11],[19,0,42,11],[20,0,42,11],[21,0,42,11],[22,0,42,18],[23,0,42,18],[24,0,42,20],[25,0,42,20],[26,0,42,20],[27,0,42,20],[28,0,42,20],[29,0,42,20],[30,0,42,20],[31,0,42,27],[32,0,42,28],[33,0,42,28],[34,0,42,28],[35,0,42,31],[36,0,42,31],[37,0,42,31],[38,0,42,31],[39,0,42,31],[40,0,42,31],[41,0,42,31],[42,0,42,38],[43,0,42,39],[44,0,42,39],[45,0,42,39],[46,0,42,39],[47,0,42,39],[48,0,42,39],[49,0,42,39],[50,0,42,39],[51,0,42,39],[52,0,42,39],[53,0,42,49],[54,0,42,49],[55,0,42,51],[56,0,42,51],[57,0,42,51],[58,0,42,51],[59,0,42,51],[60,0,42,51],[61,0,42,51],[62,0,42,51],[63,0,42,59],[64,0,42,60]],[[8,0,43,4],[9,0,43,4],[10,0,43,4],[11,0,43,4],[12,0,43,4],[13,0,43,4],[14,0,43,4],[15,0,43,11]],[[12,0,44,6],[13,0,44,6],[14,0,44,6],[15,0,44,6],[16,0,44,6],[17,0,44,6],[18,0,44,6],[19,0,44,13],[20,0,44,13],[21,0,44,15],[22,0,44,15],[23,0,44,15],[24,0,44,15],[25,0,44,15],[26,0,44,15],[27,0,44,15],[28,0,44,15],[29,0,44,15],[30,0,44,15],[31,0,44,15],[32,0,44,15],[33,0,44,15],[34,0,44,15],[35,0,44,15],[36,0,44,15],[37,0,44,15],[38,0,44,15],[39,0,44,33],[40,0,44,34],[41,0,44,34],[42,0,44,34],[43,0,44,34],[44,0,44,34],[45,0,44,34],[46,0,44,34],[47,0,44,41],[48,0,44,41],[49,0,44,43],[50,0,44,43],[51,0,44,43],[52,0,44,43],[53,0,44,43],[54,0,44,43],[55,0,44,43],[56,0,44,43],[57,0,44,43],[58,0,44,43],[59,0,44,53],[60,0,44,54]],[[12,0,45,6],[13,0,45,6],[14,0,45,6],[15,0,45,6],[16,0,45,6],[17,0,45,6],[18,0,45,6],[19,0,45,6],[20,0,45,6],[21,0,45,6],[22,0,45,6],[23,0,45,6],[24,0,45,6],[25,0,45,19],[26,0,45,19],[27,0,45,21],[28,0,45,21],[29,0,45,21],[30,0,45,21],[31,0,45,21],[32,0,45,21],[33,0,45,21],[34,0,45,21],[35,0,45,21],[36,0,45,21],[37,0,45,21],[38,0,45,21],[39,0,45,21],[40,0,45,21],[41,0,45,21],[42,0,45,36],[43,0,45,37],[44,0,45,37],[45,0,45,37],[46,0,45,37],[47,0,45,37],[48,0,45,37],[49,0,45,37],[50,0,45,44],[51,0,45,45]],[[9,0,46,5]],[[4,0,47,2]],[[4,0,47,4],[5,0,47,4],[6,0,47,4],[7,0,47,4],[8,0,47,4],[9,0,47,4],[10,0,47,10]],[[8,0,48,4],[9,0,48,4],[10,0,48,4],[11,0,48,4],[12,0,48,4],[13,0,48,4],[14,0,48,4],[15,0,48,4],[16,0,48,4],[17,0,48,4],[18,0,48,4],[19,0,48,4],[20,0,48,4],[21,0,48,4],[22,0,48,4],[23,0,48,4],[24,0,48,4],[25,0,48,4],[26,0,48,4],[27,0,48,4],[28,0,48,4],[29,0,48,4],[30,0,48,4],[31,0,48,4],[32,0,48,4],[33,0,48,4],[34,0,48,4],[35,0,48,4],[36,0,48,4],[37,0,48,4],[38,0,48,4]],[[4,0,49,2]],[[4,0,51,2],[5,0,51,2],[6,0,51,2],[7,0,51,2],[8,0,51,2],[9,0,51,2],[10,0,51,2],[11,0,51,9],[12,0,51,9],[13,0,51,9],[14,0,51,9],[15,0,51,9],[16,0,51,9],[17,0,51,9],[18,0,51,9],[19,0,51,9],[20,0,51,9],[21,0,51,9],[22,0,51,9],[23,0,51,21],[24,0,51,22],[25,0,51,22],[26,0,51,22],[27,0,51,22],[28,0,51,22],[29,0,51,22],[30,0,51,22],[31,0,51,22],[32,0,51,22],[33,0,51,22],[34,0,51,32],[35,0,51,32],[36,0,51,34],[37,0,51,34],[38,0,51,34],[39,0,51,34],[40,0,51,34],[41,0,51,34],[42,0,51,34],[43,0,51,34],[44,0,51,42],[45,0,51,43]],[[0,0,52,0]],[[0,0,54,0],[1,0,54,0],[2,0,54,0],[3,0,54,0],[4,0,54,0],[5,0,54,0],[6,0,54,0],[7,0,54,0],[8,0,54,0],[9,0,54,9],[10,0,54,9],[11,0,54,9],[12,0,54,9],[13,0,54,9],[14,0,54,9],[15,0,54,9],[16,0,54,9],[17,0,54,9],[18,0,54,9],[19,0,54,9],[20,0,54,9],[21,0,54,9],[22,0,54,9],[23,0,54,9],[24,0,54,9],[25,0,54,9],[26,0,54,9],[27,0,54,27],[28,0,55,2],[29,0,55,2],[30,0,55,2],[31,0,55,2],[32,0,55,2],[33,0,55,2],[34,0,55,2],[35,0,55,37],[36,0,55,37],[37,0,56,2],[38,0,56,2],[39,0,56,2],[40,0,56,2],[41,0,56,2],[42,0,56,2],[43,0,56,2],[44,0,56,2],[45,0,56,2],[46,0,56,2],[47,0,56,20],[48,0,56,20],[49,0,56,20]],[[4,0,58,2],[5,0,58,2],[6,0,58,2],[7,0,58,2],[8,0,58,2],[9,0,58,2],[10,0,58,8],[11,0,58,8],[12,0,58,8],[13,0,58,8],[14,0,58,8],[15,0,58,8],[16,0,58,8],[17,0,58,15],[18,0,58,15],[19,0,58,15],[20,0,58,28],[21,0,58,28],[22,0,58,30]],[[4,0,60,2],[5,0,60,2],[6,0,60,2],[7,0,60,2],[8,0,60,2],[9,0,60,7],[10,0,60,7],[11,0,60,7],[12,0,60,7],[13,0,60,7],[14,0,60,7],[15,0,60,13],[16,0,60,13],[17,0,60,13],[18,0,60,13],[19,0,60,13],[20,0,60,13],[21,0,60,19],[22,0,60,19],[23,0,60,19],[24,0,60,19],[25,0,60,23],[26,0,60,23],[27,0,60,23],[28,0,60,23],[29,0,60,23],[30,0,60,23],[31,0,60,23],[32,0,60,30],[33,0,60,30],[34,0,60,32]],[[8,0,61,4],[9,0,61,4],[10,0,61,4],[11,0,61,4],[12,0,61,4],[13,0,61,4],[14,0,61,10],[15,0,61,10],[16,0,61,10],[17,0,61,13],[18,0,61,13],[19,0,61,13],[20,0,61,16],[21,0,61,16],[22,0,61,16],[23,0,61,16],[24,0,61,16],[25,0,61,16],[26,0,61,22],[27,0,61,23],[28,0,61,24],[29,0,61,24],[30,0,61,24],[31,0,61,24],[32,0,61,28],[33,0,61,28],[34,0,61,28],[35,0,61,28],[36,0,61,28],[37,0,61,28],[38,0,61,28],[39,0,61,28],[40,0,61,28],[41,0,61,28],[42,0,61,38],[43,0,61,39],[44,0,61,39],[45,0,61,39],[46,0,61,39],[47,0,61,39],[48,0,61,44],[49,0,61,45],[50,0,61,45],[51,0,61,45],[52,0,61,45],[53,0,61,45],[54,0,61,45],[55,0,61,51],[56,0,61,52],[57,0,61,53],[58,0,61,53],[59,0,61,55],[60,0,61,55],[61,0,61,55],[62,0,61,55],[63,0,61,55],[64,0,61,55],[65,0,61,61],[66,0,61,62],[67,0,61,63],[68,0,61,64]],[[8,0,62,4],[9,0,62,4],[10,0,62,4],[11,0,62,4],[12,0,62,4],[13,0,62,4],[14,0,62,10],[15,0,62,10],[16,0,62,10],[17,0,62,10],[18,0,62,10],[19,0,62,10],[20,0,62,10],[21,0,62,10],[22,0,62,10],[23,0,62,10],[24,0,62,20],[25,0,62,20],[26,0,62,20],[27,0,62,23],[28,0,62,23],[29,0,62,23],[30,0,62,23],[31,0,62,23],[32,0,62,23],[33,0,62,23],[34,0,62,23],[35,0,62,23],[36,0,62,23],[37,0,62,23],[38,0,62,23],[39,0,62,23],[40,0,62,23],[41,0,62,23],[42,0,62,23],[43,0,62,23],[44,0,62,23],[45,0,62,41],[46,0,62,42],[47,0,62,42],[48,0,62,42],[49,0,62,45],[50,0,62,46]],[[8,0,63,4],[9,0,63,4],[10,0,63,4],[11,0,63,4],[12,0,63,8],[13,0,63,8],[14,0,63,8],[15,0,63,8],[16,0,63,8],[17,0,63,8],[18,0,63,8],[19,0,63,8],[20,0,63,8],[21,0,63,8],[22,0,63,18],[23,0,63,18],[24,0,63,20]],[[12,0,64,6],[13,0,64,6],[14,0,64,6],[15,0,64,6],[16,0,64,6],[17,0,64,6],[18,0,64,6],[19,0,64,13],[20,0,64,14],[21,0,64,14],[22,0,64,14],[23,0,64,14],[24,0,64,18],[25,0,64,19],[26,0,64,19],[27,0,64,19],[28,0,64,19],[29,0,64,19],[30,0,64,19],[31,0,64,19],[32,0,64,19],[33,0,64,19],[34,0,64,19],[35,0,64,29],[36,0,64,30]],[[8,0,65,4]],[[4,0,66,2]],[[4,0,68,2],[5,0,68,2],[6,0,68,2],[7,0,68,2],[8,0,68,2],[9,0,68,2],[10,0,68,2],[11,0,68,9],[12,0,68,9],[13,0,68,9],[14,0,68,9],[15,0,68,9],[16,0,68,9],[17,0,68,9],[18,0,68,16]],[[0,0,69,0]],[[0,0,71,0],[1,0,71,0],[2,0,71,0],[3,0,71,0],[4,0,71,0],[5,0,71,0],[6,0,71,0],[7,0,71,0],[8,0,71,0],[9,0,71,9],[10,0,71,9],[11,0,71,9],[12,0,71,9],[13,0,71,9],[14,0,71,9],[15,0,71,9],[16,0,71,9],[17,0,71,9],[18,0,71,9],[19,0,71,9],[20,0,71,9],[21,0,71,9],[22,0,71,9],[23,0,71,9],[24,0,71,24],[25,0,72,2],[26,0,72,2],[27,0,72,2],[28,0,72,2],[29,0,72,2],[30,0,72,2],[31,0,72,2],[32,0,72,47],[33,0,72,47],[34,0,72,47]],[[4,0,74,2],[5,0,74,2],[6,0,74,2],[7,0,74,2],[8,0,74,6],[9,0,74,6],[10,0,74,6],[11,0,74,6],[12,0,74,6],[13,0,74,6],[14,0,74,6],[15,0,74,13],[16,0,74,14],[17,0,74,14],[18,0,74,14],[19,0,74,14],[20,0,74,18],[21,0,74,19],[22,0,74,19],[23,0,74,19],[24,0,74,19],[25,0,74,19],[26,0,74,24],[27,0,74,25],[28,0,74,25],[29,0,74,27],[30,0,74,28],[31,0,74,28],[32,0,74,28],[33,0,74,28],[34,0,74,28],[35,0,74,33],[36,0,74,34],[37,0,74,35],[38,0,74,35],[39,0,74,35],[40,0,74,35],[41,0,74,35],[42,0,74,40],[43,0,74,40],[44,0,74,40],[45,0,74,40],[46,0,74,40],[47,0,74,40],[48,0,74,40],[49,0,74,40],[50,0,74,40],[51,0,74,49],[52,0,74,50],[53,0,74,50],[54,0,74,52]],[[8,0,75,4],[9,0,75,4],[10,0,75,4],[11,0,75,4],[12,0,75,4],[13,0,75,4],[14,0,75,4],[15,0,75,11],[16,0,75,11],[17,0,75,11],[18,0,75,11],[19,0,75,11],[20,0,75,11],[21,0,75,11],[22,0,75,11],[23,0,75,11],[24,0,75,11],[25,0,75,11],[26,0,75,11],[27,0,75,11],[28,0,75,24]],[[4,0,76,2]],[[4,0,77,2],[5,0,77,2],[6,0,77,2],[7,0,77,2],[8,0,77,6],[9,0,77,6],[10,0,77,6],[11,0,77,6],[12,0,77,6],[13,0,77,6],[14,0,77,6],[15,0,77,13],[16,0,77,14],[17,0,77,14],[18,0,77,14],[19,0,77,14],[20,0,77,14],[21,0,77,14],[22,0,77,20],[23,0,77,20],[24,0,77,20],[25,0,77,20],[26,0,77,20],[27,0,77,25],[28,0,77,26],[29,0,77,26],[30,0,77,28]],[[8,0,78,4],[9,0,78,4],[10,0,78,4],[11,0,78,4],[12,0,78,4],[13,0,78,4],[14,0,78,4],[15,0,78,11],[16,0,78,11],[17,0,78,11],[18,0,78,11],[19,0,78,11],[20,0,78,11],[21,0,78,11],[22,0,78,11],[23,0,78,11],[24,0,78,20]],[[4,0,79,2]],[[4,0,80,2],[5,0,80,2],[6,0,80,2],[7,0,80,2],[8,0,80,2],[9,0,80,2],[10,0,80,2],[11,0,80,9],[12,0,80,9],[13,0,80,9],[14,0,80,9],[15,0,80,9],[16,0,80,9],[17,0,80,9],[18,0,80,9],[19,0,80,9],[20,0,80,9],[21,0,80,9],[22,0,80,9],[23,0,80,21]],[[0,0,81,0]],[[0,0,83,0],[1,0,83,0],[2,0,83,0],[3,0,83,0],[4,0,83,0],[5,0,83,0],[6,0,83,0],[7,0,83,0],[8,0,83,0],[9,0,83,9],[10,0,83,9],[11,0,83,9],[12,0,83,9],[13,0,83,9],[14,0,83,9],[15,0,83,9],[16,0,83,9],[17,0,83,9],[18,0,83,9],[19,0,83,9],[20,0,83,9],[21,0,83,21],[22,0,83,22],[23,0,83,22],[24,0,83,22],[25,0,83,22],[26,0,83,22],[27,0,83,22],[28,0,83,22],[29,0,83,22],[30,0,83,22],[31,0,83,22],[32,0,83,40],[33,0,83,40],[34,0,83,42],[35,0,83,42],[36,0,83,42],[37,0,83,42],[38,0,83,42],[39,0,83,42],[40,0,83,42],[41,0,83,42],[42,0,83,58],[43,0,83,58],[44,0,83,58]],[[4,0,84,2],[5,0,84,2],[6,0,84,2],[7,0,84,2],[8,0,84,2],[9,0,84,2],[10,0,84,8],[11,0,84,8],[12,0,84,8],[13,0,84,11],[14,0,84,11],[15,0,84,11],[16,0,84,14],[17,0,84,14],[18,0,84,14],[19,0,84,14],[20,0,84,14],[21,0,84,14],[22,0,84,14],[23,0,84,14],[24,0,84,14],[25,0,84,14],[26,0,84,14],[27,0,84,14],[28,0,84,14],[29,0,84,14],[30,0,84,14],[31,0,84,14],[32,0,84,14],[33,0,84,14],[34,0,84,14],[35,0,84,18],[36,0,84,19],[37,0,84,19],[38,0,84,19],[39,0,84,19],[40,0,84,19],[41,0,84,19],[42,0,84,19],[43,0,84,26],[44,0,84,27],[45,0,84,27],[46,0,84,27],[47,0,84,27],[48,0,84,27],[49,0,84,27],[50,0,84,27],[51,0,84,27],[52,0,84,35],[53,0,84,36],[54,0,84,37],[55,0,84,37],[56,0,84,37],[57,0,84,37],[58,0,84,37],[59,0,84,37],[60,0,84,37],[61,0,84,37],[62,0,84,37],[63,0,84,37],[64,0,84,37],[65,0,84,48],[66,0,84,48],[67,0,84,50]],[[4,0,85,2],[5,0,85,2],[6,0,85,2],[7,0,85,2],[8,0,85,2],[9,0,85,2],[10,0,85,8],[11,0,85,8],[12,0,85,8],[13,0,85,8],[14,0,85,8],[15,0,85,8],[16,0,85,8],[17,0,85,8],[18,0,85,16],[19,0,85,16],[20,0,85,16],[21,0,85,82]],[[8,0,86,4],[9,0,86,4],[10,0,86,4],[11,0,86,7],[12,0,86,8],[13,0,86,8],[14,0,86,8],[15,0,86,11],[16,0,86,11],[17,0,86,11],[18,0,86,11],[19,0,86,11],[20,0,86,16],[21,0,86,16],[22,0,86,16],[23,0,86,16],[24,0,86,16]],[[12,0,87,6],[13,0,87,7],[14,0,87,8],[15,0,87,9],[16,0,87,9],[17,0,87,11],[18,0,87,11],[19,0,87,11],[20,0,87,11],[21,0,87,15],[22,0,87,15],[23,0,87,17],[24,0,87,17],[25,0,87,17],[26,0,87,20],[27,0,87,20],[28,0,87,20],[29,0,87,20],[30,0,87,20],[31,0,87,20],[32,0,87,20],[33,0,87,20],[34,0,87,28],[35,0,87,28],[36,0,87,28],[37,0,87,28],[38,0,87,28],[39,0,87,28],[40,0,87,34],[41,0,87,34],[42,0,87,36],[43,0,87,36],[44,0,87,36],[45,0,87,36],[46,0,87,36],[47,0,87,36],[48,0,87,36],[49,0,87,36],[50,0,87,36],[51,0,87,36],[52,0,87,46],[53,0,87,46],[54,0,87,48],[55,0,87,48],[56,0,87,48],[57,0,87,48],[58,0,87,48],[59,0,87,48],[60,0,87,48],[61,0,87,48],[62,0,87,65],[63,0,87,65],[64,0,87,67]],[[12,0,88,6],[13,0,88,7],[14,0,88,8],[15,0,88,8],[16,0,88,10],[17,0,88,11]],[[8,0,89,4],[9,0,89,4],[10,0,89,6],[11,0,89,6],[12,0,89,6],[13,0,89,6],[14,0,89,10],[15,0,89,10],[16,0,89,12],[17,0,89,12],[18,0,89,12],[19,0,89,12],[20,0,89,12],[21,0,89,12],[22,0,89,12],[23,0,89,12],[24,0,89,20],[25,0,89,20],[26,0,89,22],[27,0,89,22],[28,0,89,22],[29,0,89,22],[30,0,89,22],[31,0,89,22],[32,0,89,22],[33,0,89,22],[34,0,89,22],[35,0,89,22],[36,0,89,32],[37,0,89,32],[38,0,89,34],[39,0,89,34],[40,0,89,34],[41,0,89,34],[42,0,89,34],[43,0,89,34],[44,0,89,34],[45,0,89,34],[46,0,89,42],[47,0,89,42],[48,0,89,44]],[[8,0,90,4],[9,0,90,4],[10,0,90,6],[11,0,90,6],[12,0,90,6],[13,0,90,6],[14,0,90,10],[15,0,90,10],[16,0,90,12],[17,0,90,12],[18,0,90,12],[19,0,90,12],[20,0,90,12],[21,0,90,12],[22,0,90,12],[23,0,90,12],[24,0,90,20],[25,0,90,20],[26,0,90,22],[27,0,90,22],[28,0,90,22],[29,0,90,22],[30,0,90,22],[31,0,90,22],[32,0,90,22],[33,0,90,22],[34,0,90,22],[35,0,90,22],[36,0,90,32],[37,0,90,32],[38,0,90,34],[39,0,90,34],[40,0,90,34],[41,0,90,34],[42,0,90,34],[43,0,90,34],[44,0,90,34],[45,0,90,34],[46,0,90,34],[47,0,90,34],[48,0,90,34],[49,0,90,34],[50,0,90,34],[51,0,90,47],[52,0,90,47],[53,0,90,49]],[[5,0,91,3]],[[4,0,92,2],[5,0,92,2],[6,0,92,2],[7,0,92,2],[8,0,92,6],[9,0,92,6],[10,0,92,6],[11,0,92,6],[12,0,92,6],[13,0,92,6],[14,0,92,6],[15,0,92,13]],[[4,0,94,2],[5,0,94,2],[6,0,94,2],[7,0,94,2],[8,0,94,2],[9,0,94,7],[10,0,94,7],[11,0,94,7],[12,0,94,7],[13,0,94,7],[14,0,94,7],[15,0,94,13],[16,0,94,13],[17,0,94,13],[18,0,94,13],[19,0,94,13],[20,0,94,13],[21,0,94,13],[22,0,94,20],[23,0,94,20],[24,0,94,20],[25,0,94,20],[26,0,94,24],[27,0,94,24],[28,0,94,24],[29,0,94,24],[30,0,94,24],[31,0,94,24],[32,0,94,24],[33,0,94,24],[34,0,94,32],[35,0,94,32],[36,0,94,34]],[[8,0,95,4],[9,0,95,4],[10,0,95,4],[11,0,95,4],[12,0,95,8]],[[12,0,96,6]],[[12,0,96,7],[13,0,96,8],[14,0,96,8],[15,0,96,10],[16,0,96,10],[17,0,96,10],[18,0,96,10],[19,0,96,10],[20,0,96,10],[21,0,96,10],[22,0,96,17],[23,0,96,17],[24,0,96,19],[25,0,96,19],[26,0,96,19],[27,0,96,22],[28,0,96,22],[29,0,96,22],[30,0,96,22],[31,0,96,22],[32,0,96,22],[33,0,96,22],[34,0,96,22],[35,0,96,22],[36,0,96,22],[37,0,96,22],[38,0,96,22],[39,0,96,22],[40,0,96,22],[41,0,96,22],[42,0,96,22],[43,0,96,22],[44,0,96,22],[45,0,96,22],[46,0,96,22],[47,0,96,22],[48,0,96,22],[49,0,96,22],[50,0,96,22],[51,0,96,22],[52,0,96,22],[53,0,96,31],[54,0,96,31],[55,0,96,32],[56,0,96,32],[57,0,96,32],[58,0,96,32],[59,0,96,32],[60,0,96,32],[61,0,96,32],[62,0,96,39],[63,0,96,40],[64,0,96,40],[65,0,96,40],[66,0,96,40],[67,0,96,44],[68,0,96,44],[69,0,96,46],[70,0,96,46],[71,0,96,46],[72,0,96,46],[73,0,96,46],[74,0,96,46],[75,0,96,46],[76,0,96,46],[77,0,96,46],[78,0,96,46],[79,0,96,56],[80,0,96,56],[81,0,96,58]],[[16,0,97,8],[17,0,97,8],[18,0,97,8],[19,0,97,8],[20,0,97,8],[21,0,97,8],[22,0,97,8],[23,0,97,8],[24,0,97,8],[25,0,97,8],[26,0,97,18],[27,0,97,18],[28,0,97,20],[29,0,97,20],[30,0,97,20],[31,0,97,20],[32,0,97,20],[33,0,97,20],[34,0,97,20],[35,0,97,27],[36,0,97,28],[37,0,97,28],[38,0,97,28],[39,0,97,28],[40,0,97,28],[41,0,97,28],[42,0,97,28],[43,0,97,28],[44,0,97,28],[45,0,97,28],[46,0,97,38]],[[13,0,98,7],[14,0,98,8],[15,0,98,9]],[[12,0,99,6],[13,0,99,6],[14,0,99,6],[15,0,99,6],[16,0,99,6],[17,0,99,6]],[[8,0,100,4]],[[8,0,100,6],[9,0,100,6],[10,0,100,6],[11,0,100,6],[12,0,100,6],[13,0,100,6],[14,0,100,12]],[[12,0,101,6],[13,0,101,6],[14,0,101,6],[15,0,101,6],[16,0,101,6],[17,0,101,6],[18,0,101,6],[19,0,101,13],[20,0,101,13],[21,0,101,13],[22,0,101,16],[23,0,101,16],[24,0,101,16],[25,0,101,16],[26,0,101,16],[27,0,101,16],[28,0,101,16],[29,0,101,16],[30,0,101,16],[31,0,101,25]],[[8,0,102,4]],[[4,0,103,2]],[[4,0,105,2],[5,0,105,2],[6,0,105,2],[7,0,105,2],[8,0,105,6],[9,0,105,7],[10,0,105,7],[11,0,105,7],[12,0,105,7],[13,0,105,7],[14,0,105,7],[15,0,105,7],[16,0,105,14],[17,0,105,14],[18,0,105,16]],[[8,0,106,4],[9,0,106,4],[10,0,106,4],[11,0,106,4],[12,0,106,4],[13,0,106,4],[14,0,106,4],[15,0,106,11],[16,0,106,11],[17,0,106,13],[18,0,106,13],[19,0,106,13],[20,0,106,13],[21,0,106,13],[22,0,106,13],[23,0,106,13],[24,0,106,20],[25,0,106,20],[26,0,106,22],[27,0,106,22],[28,0,106,24],[29,0,106,24],[30,0,106,26],[31,0,106,26],[32,0,106,26],[33,0,106,26],[34,0,106,26],[35,0,106,26],[36,0,106,26],[37,0,106,26],[38,0,106,26],[39,0,106,26],[40,0,106,26],[41,0,106,26],[42,0,106,26],[43,0,106,39],[44,0,106,39],[45,0,106,41],[46,0,106,41],[47,0,106,41],[48,0,106,41],[49,0,106,41],[50,0,106,41],[51,0,106,41],[52,0,106,41],[53,0,106,41],[54,0,106,50],[55,0,106,50],[56,0,106,52]],[[4,0,107,2]],[[4,0,109,2],[5,0,109,2],[6,0,109,2],[7,0,109,2],[8,0,109,2],[9,0,109,2],[10,0,109,8],[11,0,109,8],[12,0,109,8],[13,0,109,8],[14,0,109,8],[15,0,109,8],[16,0,109,8],[17,0,109,15],[18,0,109,15],[19,0,109,15],[20,0,109,28],[21,0,109,28],[22,0,109,30]],[[4,0,110,2],[5,0,110,2],[6,0,110,2],[7,0,110,2],[8,0,110,6],[9,0,110,6],[10,0,110,6],[11,0,110,6],[12,0,110,6],[13,0,110,6],[14,0,110,6],[15,0,110,6],[16,0,110,6],[17,0,110,6],[18,0,110,6],[19,0,110,6],[20,0,110,6],[21,0,110,19],[22,0,110,19],[23,0,110,19],[24,0,110,43],[25,0,110,43],[26,0,110,43],[27,0,110,43],[28,0,110,43],[29,0,110,43],[30,0,110,43],[31,0,110,43],[32,0,110,43],[33,0,110,52]],[[4,0,111,2],[5,0,111,2],[6,0,111,2],[7,0,111,2],[8,0,111,2],[9,0,111,2],[10,0,111,8],[11,0,111,8],[12,0,111,8],[13,0,111,8],[14,0,111,8],[15,0,111,8],[16,0,111,8],[17,0,111,8],[18,0,111,8],[19,0,111,8],[20,0,111,8],[21,0,111,8],[22,0,111,20],[23,0,111,20],[24,0,111,20],[25,0,111,23],[26,0,111,24],[27,0,111,24],[28,0,111,24],[29,0,111,43],[30,0,111,43],[31,0,111,45],[32,0,111,45],[33,0,111,47],[34,0,111,47]],[[8,0,112,4],[9,0,112,4],[10,0,112,4],[11,0,112,4],[12,0,112,8],[13,0,112,9],[14,0,112,9],[15,0,112,9],[16,0,112,12],[17,0,112,12],[18,0,112,14]],[[12,0,113,6],[13,0,113,6],[14,0,113,6],[15,0,113,6],[16,0,113,6],[17,0,113,6],[18,0,113,6]],[[8,0,114,4]],[[8,0,115,4],[9,0,115,4],[10,0,115,4],[11,0,115,4],[12,0,115,4],[13,0,115,4],[14,0,115,10],[15,0,115,10],[16,0,115,10],[17,0,115,10],[18,0,115,10],[19,0,115,10],[20,0,115,10],[21,0,115,10],[22,0,115,10],[23,0,115,10],[24,0,115,20],[25,0,115,20],[26,0,115,20],[27,0,115,23],[28,0,115,23],[29,0,115,23],[30,0,115,23],[31,0,115,23],[32,0,115,23],[33,0,115,23],[34,0,115,23],[35,0,115,23],[36,0,115,23],[37,0,115,23],[38,0,115,23],[39,0,115,23],[40,0,115,23],[41,0,115,23],[42,0,115,23],[43,0,115,23],[44,0,115,23],[45,0,115,41],[46,0,115,42],[47,0,115,42],[48,0,115,42],[49,0,115,45],[50,0,115,46]],[[8,0,116,4],[9,0,116,4],[10,0,116,4],[11,0,116,4],[12,0,116,8],[13,0,116,8],[14,0,116,8],[15,0,116,8],[16,0,116,8],[17,0,116,8],[18,0,116,8],[19,0,116,8],[20,0,116,8],[21,0,116,8],[22,0,116,18],[23,0,116,18],[24,0,116,20]],[[12,0,117,6],[13,0,117,6],[14,0,117,6],[15,0,117,6],[16,0,117,6],[17,0,117,6],[18,0,117,6],[19,0,117,13],[20,0,117,14],[21,0,117,14],[22,0,117,14],[23,0,117,14],[24,0,117,18],[25,0,117,19],[26,0,117,19],[27,0,117,19],[28,0,117,19],[29,0,117,19],[30,0,117,19],[31,0,117,19],[32,0,117,19],[33,0,117,19],[34,0,117,19],[35,0,117,29],[36,0,117,30]],[[8,0,118,4]],[[4,0,119,2],[5,0,119,3]],[[4,0,121,2],[5,0,121,2],[6,0,121,2],[7,0,121,2],[8,0,121,2],[9,0,121,2],[10,0,121,8],[11,0,121,8],[12,0,121,8],[13,0,121,8],[14,0,121,8],[15,0,121,8],[16,0,121,8],[17,0,121,15],[18,0,121,15],[19,0,121,15],[20,0,121,18],[21,0,121,18],[22,0,121,18],[23,0,121,18],[24,0,121,22],[25,0,121,22],[26,0,121,22],[27,0,121,22],[28,0,121,22],[29,0,121,22],[30,0,121,22],[31,0,121,22],[32,0,121,22],[33,0,121,22],[34,0,121,22],[35,0,121,22],[36,0,121,22],[37,0,121,22],[38,0,121,22],[39,0,121,22],[40,0,121,22],[41,0,121,22],[42,0,121,22],[43,0,121,22],[44,0,121,29],[45,0,121,30]],[[8,0,122,4],[9,0,122,4],[10,0,122,4],[11,0,122,4],[12,0,122,4],[13,0,122,4],[14,0,122,4],[15,0,122,4],[16,0,122,4],[17,0,122,4],[18,0,122,4],[19,0,122,4],[20,0,122,4],[21,0,122,4],[22,0,122,4],[23,0,122,4],[24,0,122,4],[25,0,122,21],[26,0,122,22],[27,0,122,22],[28,0,122,22],[29,0,122,22],[30,0,122,26],[31,0,122,26],[32,0,122,26]],[[12,0,123,6],[13,0,123,6],[14,0,123,6],[15,0,123,6],[16,0,123,6],[17,0,123,6],[18,0,123,6],[19,0,123,6],[20,0,123,6],[21,0,123,6],[22,0,123,6],[23,0,123,6],[24,0,123,18],[25,0,123,19],[26,0,123,19],[27,0,123,19],[28,0,123,19],[29,0,123,23],[30,0,123,24],[31,0,123,24],[32,0,123,24],[33,0,123,24],[34,0,123,24],[35,0,123,24],[36,0,123,30],[37,0,123,30],[38,0,123,32],[39,0,123,32],[40,0,123,32],[41,0,123,32],[42,0,123,32],[43,0,123,37],[44,0,123,38]],[[8,0,124,4],[9,0,124,5]],[[8,0,125,4],[9,0,125,4],[10,0,125,4],[11,0,125,4],[12,0,125,4],[13,0,125,4],[14,0,125,4],[15,0,125,4],[16,0,125,4],[17,0,125,4],[18,0,125,4],[19,0,125,4],[20,0,125,4],[21,0,125,4],[22,0,125,4],[23,0,125,4],[24,0,125,4],[25,0,125,4],[26,0,125,4],[27,0,125,4],[28,0,125,4],[29,0,125,4],[30,0,125,26],[31,0,125,27],[32,0,125,27],[33,0,125,27],[34,0,125,27],[35,0,125,55],[36,0,125,55],[37,0,125,55]],[[12,0,126,6],[13,0,126,6],[14,0,126,6],[15,0,126,6],[16,0,126,10],[17,0,126,10],[18,0,126,10],[19,0,126,10],[20,0,126,14],[21,0,126,15],[22,0,126,15],[23,0,126,15],[24,0,126,15],[25,0,126,15],[26,0,126,15],[27,0,126,21],[28,0,126,21],[29,0,126,23]],[[16,0,127,8],[17,0,127,8],[18,0,127,8],[19,0,127,8],[20,0,127,8],[21,0,127,8],[22,0,127,8],[23,0,127,8],[24,0,127,8],[25,0,127,8],[26,0,127,8],[27,0,127,8],[28,0,127,20],[29,0,127,21],[30,0,127,21],[31,0,127,21],[32,0,127,21],[33,0,127,25],[34,0,127,26],[35,0,127,26],[36,0,127,26],[37,0,127,26],[38,0,127,26],[39,0,127,26],[40,0,127,32],[41,0,127,33],[42,0,127,33],[43,0,127,33],[44,0,127,33],[45,0,127,33],[46,0,127,38],[47,0,127,39]],[[12,0,128,6]],[[12,0,129,6],[13,0,129,6],[14,0,129,6],[15,0,129,6],[16,0,129,10],[17,0,129,10],[18,0,129,10],[19,0,129,10],[20,0,129,10],[21,0,129,10],[22,0,129,10],[23,0,129,10],[24,0,129,10],[25,0,129,10],[26,0,129,10],[27,0,129,10],[28,0,129,10],[29,0,129,10],[30,0,129,10],[31,0,129,10],[32,0,129,10],[33,0,129,10],[34,0,129,10],[35,0,129,29],[36,0,129,30],[37,0,129,30],[38,0,129,30],[39,0,129,30],[40,0,129,34],[41,0,129,35],[42,0,129,35],[43,0,129,37]],[[16,0,130,8],[17,0,130,8],[18,0,130,8],[19,0,130,8],[20,0,130,8],[21,0,130,8],[22,0,130,8],[23,0,130,8],[24,0,130,8],[25,0,130,8],[26,0,130,8],[27,0,130,8],[28,0,130,8],[29,0,130,21],[30,0,130,21],[31,0,130,21],[32,0,130,24],[33,0,130,24],[34,0,130,24],[35,0,130,24],[36,0,130,24],[37,0,130,24],[38,0,130,24],[39,0,130,24],[40,0,130,24],[41,0,130,24],[42,0,130,24],[43,0,130,24],[44,0,130,24],[45,0,130,37]],[[12,0,131,6]],[[17,0,131,13],[18,0,131,13],[19,0,131,13],[20,0,131,13],[21,0,131,17],[22,0,131,17],[23,0,131,17],[24,0,131,17],[25,0,131,17],[26,0,131,17],[27,0,131,17],[28,0,131,17],[29,0,131,17],[30,0,131,17],[31,0,131,17],[32,0,131,17],[33,0,131,17],[34,0,131,30],[35,0,131,30],[36,0,131,30],[37,0,131,30],[38,0,131,30],[39,0,131,35],[40,0,131,35],[41,0,131,35],[42,0,131,35],[43,0,131,35],[44,0,131,35],[45,0,131,35],[46,0,131,35],[47,0,131,35],[48,0,131,44],[49,0,131,44],[50,0,131,44],[51,0,131,44],[52,0,131,48],[53,0,131,48],[54,0,131,48],[55,0,131,48],[56,0,131,48],[57,0,131,48],[58,0,131,48],[59,0,131,48],[60,0,131,48],[61,0,131,48],[62,0,131,48],[63,0,131,48],[64,0,131,48],[65,0,131,48],[66,0,131,48],[67,0,131,63],[68,0,131,64],[69,0,131,64],[70,0,131,64],[71,0,131,64],[72,0,131,68],[73,0,131,69],[74,0,131,69],[75,0,131,71]],[[16,0,132,8],[17,0,132,8],[18,0,132,8],[19,0,132,8],[20,0,132,8],[21,0,132,8],[22,0,132,8],[23,0,132,8],[24,0,132,8],[25,0,132,8],[26,0,132,8],[27,0,132,8],[28,0,132,8],[29,0,132,21],[30,0,132,21],[31,0,132,21],[32,0,132,24],[33,0,132,24],[34,0,132,24],[35,0,132,24],[36,0,132,24],[37,0,132,24],[38,0,132,24],[39,0,132,24],[40,0,132,24],[41,0,132,24],[42,0,132,24],[43,0,132,24],[44,0,132,36]],[[12,0,133,6]],[[8,0,134,4],[9,0,134,5]],[[8,0,135,4],[9,0,135,4],[10,0,135,4],[11,0,135,4],[12,0,135,4],[13,0,135,4],[14,0,135,4],[15,0,135,4],[16,0,135,4],[17,0,135,4],[18,0,135,4],[19,0,135,4],[20,0,135,4],[21,0,135,4],[22,0,135,4],[23,0,135,4],[24,0,135,4],[25,0,135,4],[26,0,135,4],[27,0,135,4],[28,0,135,24],[29,0,135,25],[30,0,135,25],[31,0,135,25],[32,0,135,25],[33,0,135,51],[34,0,135,51],[35,0,135,51]],[[12,0,136,6],[13,0,136,6],[14,0,136,6],[15,0,136,6],[16,0,136,6],[17,0,136,6],[18,0,136,6],[19,0,136,6],[20,0,136,6],[21,0,136,6],[22,0,136,6],[23,0,136,6],[24,0,136,18],[25,0,136,19],[26,0,136,19],[27,0,136,19],[28,0,136,19],[29,0,136,23],[30,0,136,24],[31,0,136,24],[32,0,136,24],[33,0,136,24],[34,0,136,24],[35,0,136,24],[36,0,136,30],[37,0,136,30],[38,0,136,32],[39,0,136,32],[40,0,136,32],[41,0,136,32],[42,0,136,32],[43,0,136,37],[44,0,136,38]],[[12,0,137,6],[13,0,137,6],[14,0,137,6],[15,0,137,6],[16,0,137,10],[17,0,137,10],[18,0,137,10],[19,0,137,10],[20,0,137,14],[21,0,137,15],[22,0,137,15],[23,0,137,15],[24,0,137,15],[25,0,137,15],[26,0,137,15],[27,0,137,15],[28,0,137,15],[29,0,137,23],[30,0,137,23],[31,0,137,23],[32,0,137,23],[33,0,137,27],[34,0,137,27],[35,0,137,27],[36,0,137,27],[37,0,137,27],[38,0,137,27],[39,0,137,27],[40,0,137,27],[41,0,137,27],[42,0,137,27],[43,0,137,27],[44,0,137,27],[45,0,137,27],[46,0,137,27],[47,0,137,27],[48,0,137,27],[49,0,137,27],[50,0,137,27],[51,0,137,27],[52,0,137,46],[53,0,137,47],[54,0,137,47],[55,0,137,47],[56,0,137,47],[57,0,137,51],[58,0,137,52],[59,0,137,52],[60,0,137,52],[61,0,137,52],[62,0,137,52],[63,0,137,52],[64,0,137,52],[65,0,137,52],[66,0,137,60],[67,0,137,61],[68,0,137,61],[69,0,137,63]],[[16,0,138,8],[17,0,138,8],[18,0,138,8],[19,0,138,8],[20,0,138,8],[21,0,138,8],[22,0,138,8],[23,0,138,8],[24,0,138,8],[25,0,138,8],[26,0,138,8],[27,0,138,8],[28,0,138,8],[29,0,138,21],[30,0,138,21],[31,0,138,21],[32,0,138,24],[33,0,138,24],[34,0,138,24],[35,0,138,24],[36,0,138,24],[37,0,138,24],[38,0,138,24],[39,0,138,24],[40,0,138,24],[41,0,138,24],[42,0,138,24],[43,0,138,24],[44,0,138,24],[45,0,138,37]],[[12,0,139,6]],[[8,0,140,4],[9,0,140,5]],[[8,0,141,4],[9,0,141,4],[10,0,141,4],[11,0,141,4],[12,0,141,4],[13,0,141,4],[14,0,141,4],[15,0,141,4],[16,0,141,4],[17,0,141,4],[18,0,141,4],[19,0,141,4],[20,0,141,4],[21,0,141,4],[22,0,141,4],[23,0,141,4],[24,0,141,4],[25,0,141,4],[26,0,141,4],[27,0,141,4],[28,0,141,4],[29,0,141,4],[30,0,141,4],[31,0,141,4],[32,0,141,28],[33,0,141,28],[34,0,141,28],[35,0,141,28]],[[12,0,142,6],[13,0,142,6],[14,0,142,6],[15,0,142,6],[16,0,142,6],[17,0,142,6],[18,0,142,6],[19,0,142,6],[20,0,142,6],[21,0,142,6],[22,0,142,6],[23,0,142,6],[24,0,142,6],[25,0,142,19],[26,0,142,19],[27,0,142,19],[28,0,142,22],[29,0,142,22],[30,0,142,22],[31,0,142,22],[32,0,142,22],[33,0,142,22],[34,0,142,22],[35,0,142,22],[36,0,142,22],[37,0,142,22],[38,0,142,22],[39,0,142,22],[40,0,142,22],[41,0,142,35]],[[8,0,143,4],[9,0,143,5]],[[8,0,144,4],[9,0,144,4],[10,0,144,4],[11,0,144,4],[12,0,144,4],[13,0,144,4],[14,0,144,4],[15,0,144,4],[16,0,144,4],[17,0,144,4],[18,0,144,4],[19,0,144,4],[20,0,144,4],[21,0,144,4],[22,0,144,4],[23,0,144,4],[24,0,144,4],[25,0,144,4],[26,0,144,22],[27,0,144,23],[28,0,144,23],[29,0,144,23],[30,0,144,23],[31,0,144,47],[32,0,144,47],[33,0,144,47]],[[12,0,145,6],[13,0,145,6],[14,0,145,6],[15,0,145,6],[16,0,145,10],[17,0,145,10],[18,0,145,10],[19,0,145,10],[20,0,145,14],[21,0,145,15],[22,0,145,15],[23,0,145,15],[24,0,145,15],[25,0,145,15],[26,0,145,15],[27,0,145,15],[28,0,145,15],[29,0,145,15],[30,0,145,15],[31,0,145,25],[32,0,145,25],[33,0,145,27]],[[16,0,146,8],[17,0,146,8],[18,0,146,8],[19,0,146,8],[20,0,146,8],[21,0,146,8],[22,0,146,8],[23,0,146,8],[24,0,146,8],[25,0,146,8],[26,0,146,8],[27,0,146,8],[28,0,146,8],[29,0,146,21],[30,0,146,21],[31,0,146,21],[32,0,146,24],[33,0,146,24],[34,0,146,24],[35,0,146,24],[36,0,146,24],[37,0,146,24],[38,0,146,24],[39,0,146,24],[40,0,146,24],[41,0,146,24],[42,0,146,24],[43,0,146,24],[44,0,146,24],[45,0,146,37]],[[12,0,147,6]],[[8,0,148,4],[9,0,148,5]],[[8,0,149,4],[9,0,149,4],[10,0,149,4],[11,0,149,4],[12,0,149,4],[13,0,149,4],[14,0,149,4],[15,0,149,4],[16,0,149,4],[17,0,149,4],[18,0,149,4],[19,0,149,4],[20,0,149,4],[21,0,149,4],[22,0,149,4],[23,0,149,4],[24,0,149,4],[25,0,149,4],[26,0,149,4],[27,0,149,4],[28,0,149,4],[29,0,149,4],[30,0,149,4],[31,0,149,4],[32,0,149,4],[33,0,149,29],[34,0,149,30],[35,0,149,30],[36,0,149,30],[37,0,149,30],[38,0,149,61],[39,0,149,61],[40,0,149,61]],[[12,0,150,6],[13,0,150,6],[14,0,150,6],[15,0,150,6],[16,0,150,6],[17,0,150,6],[18,0,150,12],[19,0,150,12],[20,0,150,12],[21,0,150,12],[22,0,150,12],[23,0,150,12],[24,0,150,12],[25,0,150,12],[26,0,150,12],[27,0,150,21],[28,0,150,21],[29,0,150,21],[30,0,150,24],[31,0,150,24],[32,0,150,24],[33,0,150,24],[34,0,150,24],[35,0,150,24],[36,0,150,24],[37,0,150,24],[38,0,150,24],[39,0,150,24],[40,0,150,24],[41,0,150,24],[42,0,150,24],[43,0,150,24],[44,0,150,24],[45,0,150,24],[46,0,150,24],[47,0,150,24],[48,0,150,24],[49,0,150,24],[50,0,150,24],[51,0,150,24],[52,0,150,24],[53,0,150,24],[54,0,150,24],[55,0,150,24],[56,0,150,24],[57,0,150,24],[58,0,150,52],[59,0,150,53],[60,0,150,53],[61,0,150,53],[62,0,150,53],[63,0,150,57],[64,0,150,58]],[[12,0,151,6],[13,0,151,6],[14,0,151,6],[15,0,151,6],[16,0,151,10],[17,0,151,10],[18,0,151,10],[19,0,151,10],[20,0,151,10],[21,0,151,10],[22,0,151,10],[23,0,151,10],[24,0,151,10],[25,0,151,19],[26,0,151,19],[27,0,151,21]],[[16,0,152,8],[17,0,152,8],[18,0,152,8],[19,0,152,8],[20,0,152,8],[21,0,152,8],[22,0,152,8],[23,0,152,8],[24,0,152,8],[25,0,152,8],[26,0,152,8],[27,0,152,8],[28,0,152,20],[29,0,152,21],[30,0,152,21],[31,0,152,21],[32,0,152,21],[33,0,152,21],[34,0,152,21],[35,0,152,21],[36,0,152,21],[37,0,152,21],[38,0,152,30],[39,0,152,31]],[[12,0,153,6]],[[8,0,154,4],[9,0,154,5]],[[8,0,155,4],[9,0,155,4],[10,0,155,4],[11,0,155,4],[12,0,155,4],[13,0,155,4],[14,0,155,4],[15,0,155,4],[16,0,155,4],[17,0,155,4],[18,0,155,4],[19,0,155,4],[20,0,155,4],[21,0,155,4],[22,0,155,4],[23,0,155,4],[24,0,155,20],[25,0,155,21],[26,0,155,21],[27,0,155,21],[28,0,155,21],[29,0,155,43],[30,0,155,43],[31,0,155,43]],[[12,0,156,6],[13,0,156,6],[14,0,156,6],[15,0,156,6],[16,0,156,6],[17,0,156,6],[18,0,156,12],[19,0,156,12],[20,0,156,12],[21,0,156,12],[22,0,156,12],[23,0,156,12],[24,0,156,12],[25,0,156,12],[26,0,156,12],[27,0,156,21],[28,0,156,21],[29,0,156,21],[30,0,156,24],[31,0,156,24],[32,0,156,24],[33,0,156,24],[34,0,156,24],[35,0,156,24],[36,0,156,24],[37,0,156,24],[38,0,156,24],[39,0,156,24],[40,0,156,24],[41,0,156,24],[42,0,156,24],[43,0,156,24],[44,0,156,24],[45,0,156,24],[46,0,156,24],[47,0,156,24],[48,0,156,24],[49,0,156,24],[50,0,156,24],[51,0,156,24],[52,0,156,24],[53,0,156,47],[54,0,156,48],[55,0,156,48],[56,0,156,48],[57,0,156,48],[58,0,156,52],[59,0,156,53],[60,0,156,53],[61,0,156,53],[62,0,156,53],[63,0,156,53],[64,0,156,53],[65,0,156,59],[66,0,156,60]],[[12,0,157,6],[13,0,157,6],[14,0,157,6],[15,0,157,6],[16,0,157,10],[17,0,157,10],[18,0,157,10],[19,0,157,10],[20,0,157,10],[21,0,157,10],[22,0,157,10],[23,0,157,10],[24,0,157,10],[25,0,157,19],[26,0,157,19],[27,0,157,21]],[[16,0,158,8],[17,0,158,8],[18,0,158,8],[19,0,158,8],[20,0,158,8],[21,0,158,8],[22,0,158,8],[23,0,158,8],[24,0,158,8],[25,0,158,8],[26,0,158,8],[27,0,158,8],[28,0,158,20],[29,0,158,21],[30,0,158,21],[31,0,158,21],[32,0,158,21],[33,0,158,21],[34,0,158,21],[35,0,158,21],[36,0,158,21],[37,0,158,21],[38,0,158,30],[39,0,158,31]],[[12,0,159,6]],[[8,0,160,4],[9,0,160,5]],[[8,0,161,4],[9,0,161,4],[10,0,161,4],[11,0,161,4],[12,0,161,4],[13,0,161,4],[14,0,161,4],[15,0,161,4],[16,0,161,4],[17,0,161,4],[18,0,161,4],[19,0,161,4],[20,0,161,4],[21,0,161,4],[22,0,161,18],[23,0,161,19],[24,0,161,19],[25,0,161,19],[26,0,161,19],[27,0,161,23],[28,0,161,23],[29,0,161,23]],[[12,0,162,6],[13,0,162,6],[14,0,162,6],[15,0,162,6],[16,0,162,10],[17,0,162,11],[18,0,162,11],[19,0,162,11],[20,0,162,11],[21,0,162,11],[22,0,162,11],[23,0,162,11],[24,0,162,11],[25,0,162,11],[26,0,162,11],[27,0,162,11],[28,0,162,11],[29,0,162,11],[30,0,162,11],[31,0,162,11],[32,0,162,11],[33,0,162,11],[34,0,162,11],[35,0,162,11],[36,0,162,30],[37,0,162,31],[38,0,162,31],[39,0,162,31],[40,0,162,31],[41,0,162,35],[42,0,162,36],[43,0,162,36],[44,0,162,36],[45,0,162,36],[46,0,162,36],[47,0,162,36],[48,0,162,42],[49,0,162,43],[50,0,162,43],[51,0,162,45]],[[16,0,163,8],[17,0,163,8],[18,0,163,8],[19,0,163,8],[20,0,163,8],[21,0,163,8],[22,0,163,8]],[[12,0,164,6]],[[12,0,165,6],[13,0,165,6],[14,0,165,6],[15,0,165,6],[16,0,165,6],[17,0,165,6],[18,0,165,12],[19,0,165,12],[20,0,165,12],[21,0,165,12],[22,0,165,12],[23,0,165,12],[24,0,165,12],[25,0,165,12],[26,0,165,12],[27,0,165,21],[28,0,165,21],[29,0,165,21],[30,0,165,24],[31,0,165,24],[32,0,165,24],[33,0,165,24],[34,0,165,24],[35,0,165,24],[36,0,165,24],[37,0,165,24],[38,0,165,24],[39,0,165,24],[40,0,165,24],[41,0,165,24],[42,0,165,24],[43,0,165,24],[44,0,165,24],[45,0,165,24],[46,0,165,24],[47,0,165,24],[48,0,165,24],[49,0,165,24],[50,0,165,24],[51,0,165,45],[52,0,165,46],[53,0,165,46],[54,0,165,46],[55,0,165,46],[56,0,165,50],[57,0,165,51],[58,0,165,51],[59,0,165,51],[60,0,165,51],[61,0,165,51],[62,0,165,51],[63,0,165,51],[64,0,165,51],[65,0,165,51],[66,0,165,60],[67,0,165,61],[68,0,165,62],[69,0,165,63],[70,0,165,64]],[[12,0,166,6],[13,0,166,6],[14,0,166,6],[15,0,166,6],[16,0,166,10],[17,0,166,10],[18,0,166,10],[19,0,166,10],[20,0,166,10],[21,0,166,10],[22,0,166,10],[23,0,166,10],[24,0,166,10],[25,0,166,19],[26,0,166,19],[27,0,166,21]],[[16,0,167,8],[17,0,167,8],[18,0,167,8],[19,0,167,8],[20,0,167,8],[21,0,167,8],[22,0,167,8],[23,0,167,8],[24,0,167,8],[25,0,167,8],[26,0,167,8],[27,0,167,8],[28,0,167,20],[29,0,167,21],[30,0,167,21],[31,0,167,21],[32,0,167,21],[33,0,167,21],[34,0,167,21],[35,0,167,21],[36,0,167,21],[37,0,167,21],[38,0,167,30],[39,0,167,31]],[[12,0,168,6]],[[8,0,169,4],[9,0,169,5]],[[5,0,170,3],[6,0,170,4]],[[4,0,172,2],[5,0,172,2],[6,0,172,2],[7,0,172,2],[8,0,172,2],[9,0,172,2],[10,0,172,2],[11,0,172,9],[12,0,172,10],[13,0,172,10],[14,0,172,10],[15,0,172,10],[16,0,172,10],[17,0,172,15],[18,0,172,16],[19,0,172,16],[20,0,172,16],[21,0,172,16],[22,0,172,16],[23,0,172,16],[24,0,172,16],[25,0,172,23],[26,0,172,24]],[[4,0,174,2],[5,0,174,2],[6,0,174,2],[7,0,174,2],[8,0,174,2],[9,0,174,2],[10,0,174,2],[11,0,174,9],[12,0,174,9],[13,0,174,11],[14,0,174,11],[15,0,174,11],[16,0,174,11],[17,0,174,11],[18,0,174,11],[19,0,174,11],[20,0,174,18],[21,0,174,18],[22,0,174,20],[23,0,174,20],[24,0,174,20],[25,0,174,20],[26,0,174,20],[27,0,174,20],[28,0,174,20],[29,0,174,20],[30,0,174,20],[31,0,174,20],[32,0,174,20],[33,0,174,20],[34,0,174,20],[35,0,174,33],[36,0,174,33],[37,0,174,35]],[[0,0,175,0]],[[0,0,177,0],[1,0,177,0],[2,0,177,0],[3,0,177,0],[4,0,177,0],[5,0,177,0],[6,0,177,0],[7,0,177,0],[8,0,177,0],[9,0,177,9],[10,0,177,9],[11,0,177,9],[12,0,177,9],[13,0,177,9],[14,0,177,9],[15,0,177,9],[16,0,177,9],[17,0,177,9],[18,0,177,9],[19,0,177,9],[20,0,177,9],[21,0,177,9],[22,0,177,9],[23,0,177,9],[24,0,177,9],[25,0,177,9],[26,0,177,9],[27,0,177,27],[28,0,177,28],[29,0,177,28],[30,0,177,28],[31,0,177,39],[32,0,177,39],[33,0,177,39]],[[4,0,178,2],[5,0,178,2],[6,0,178,2],[7,0,178,2],[8,0,178,6],[9,0,178,7],[10,0,178,7],[11,0,178,7],[12,0,178,10]],[[8,0,178,12],[9,0,178,12],[10,0,178,12],[11,0,178,12],[12,0,178,12],[13,0,178,12],[14,0,178,12],[15,0,178,19],[16,0,178,19],[17,0,178,21]],[[4,0,179,2],[5,0,179,2],[6,0,179,2],[7,0,179,2],[8,0,179,2],[9,0,179,2],[10,0,179,8],[11,0,179,8],[12,0,179,8],[13,0,179,8],[14,0,179,8],[15,0,179,8],[16,0,179,8],[17,0,179,15],[18,0,179,15],[19,0,179,15],[20,0,179,18],[21,0,179,18],[22,0,179,18],[23,0,179,21],[24,0,179,22],[25,0,179,22],[26,0,179,22],[27,0,179,22],[28,0,179,26],[29,0,179,26],[30,0,179,28]],[[4,0,180,2],[5,0,180,2],[6,0,180,2],[7,0,180,2],[8,0,180,6],[9,0,180,7],[10,0,180,7],[11,0,180,7],[12,0,180,7],[13,0,180,7],[14,0,180,7],[15,0,180,7],[16,0,180,14],[17,0,180,14],[18,0,180,14],[19,0,180,14],[20,0,180,18],[21,0,180,18],[22,0,180,18],[23,0,180,18],[24,0,180,18],[25,0,180,18],[26,0,180,18],[27,0,180,25],[28,0,180,26],[29,0,180,26],[30,0,180,26],[31,0,180,26],[32,0,180,26],[33,0,180,26],[34,0,180,26],[35,0,180,26],[36,0,180,26],[37,0,180,26],[38,0,180,36],[39,0,180,37],[40,0,180,37],[41,0,180,37],[42,0,180,37],[43,0,180,41],[44,0,180,42],[45,0,180,42],[46,0,180,44]],[[8,0,181,4],[9,0,181,4],[10,0,181,4],[11,0,181,4],[12,0,181,4],[13,0,181,4],[14,0,181,4],[15,0,181,11],[16,0,181,11],[17,0,181,13]],[[4,0,182,2]],[[4,0,183,2],[5,0,183,2],[6,0,183,2],[7,0,183,2],[8,0,183,2],[9,0,183,2],[10,0,183,8],[11,0,183,8],[12,0,183,8],[13,0,183,8],[14,0,183,8],[15,0,183,8],[16,0,183,8],[17,0,183,8],[18,0,183,8],[19,0,183,8],[20,0,183,8],[21,0,183,8],[22,0,183,8],[23,0,183,8],[24,0,183,8],[25,0,183,8],[26,0,183,8],[27,0,183,25],[28,0,183,25],[29,0,183,25],[30,0,183,28],[31,0,183,28],[32,0,183,28],[33,0,183,28],[34,0,183,28],[35,0,183,28],[36,0,183,28],[37,0,183,35],[38,0,183,36],[39,0,183,36],[40,0,183,36],[41,0,183,36],[42,0,183,36],[43,0,183,36],[44,0,183,36],[45,0,183,36],[46,0,183,36],[47,0,183,36],[48,0,183,46],[49,0,183,47],[50,0,183,47],[51,0,183,47],[52,0,183,50],[53,0,183,51],[54,0,183,52],[55,0,183,53],[56,0,183,54],[57,0,183,55],[58,0,183,56],[59,0,183,57],[60,0,183,58],[61,0,183,59]],[[4,0,184,2],[5,0,184,2],[6,0,184,2],[7,0,184,2],[8,0,184,2],[9,0,184,2],[10,0,184,8],[11,0,184,8],[12,0,184,8],[13,0,184,8],[14,0,184,8],[15,0,184,8],[16,0,184,8],[17,0,184,8],[18,0,184,8],[19,0,184,17],[20,0,184,17],[21,0,184,17],[22,0,184,20],[23,0,184,20],[24,0,184,20],[25,0,184,20],[26,0,184,20],[27,0,184,20],[28,0,184,20],[29,0,184,27],[30,0,184,28],[31,0,184,28],[32,0,184,28],[33,0,184,28],[34,0,184,28],[35,0,184,33],[36,0,184,34],[37,0,184,34],[38,0,184,34],[39,0,184,34],[40,0,184,34],[41,0,184,34],[42,0,184,34],[43,0,184,34],[44,0,184,34],[45,0,184,34],[46,0,184,34],[47,0,184,34],[48,0,184,34],[49,0,184,34],[50,0,184,34],[51,0,184,34],[52,0,184,34],[53,0,184,51],[54,0,184,52]],[[4,0,185,2],[5,0,185,2],[6,0,185,2],[7,0,185,2],[8,0,185,2],[9,0,185,2],[10,0,185,8],[11,0,185,8],[12,0,185,8],[13,0,185,8],[14,0,185,8],[15,0,185,8],[16,0,185,8],[17,0,185,8],[18,0,185,8],[19,0,185,8],[20,0,185,8],[21,0,185,8],[22,0,185,8],[23,0,185,8],[24,0,185,8],[25,0,185,23],[26,0,185,23],[27,0,185,23],[28,0,185,26],[29,0,185,26],[30,0,185,26],[31,0,185,26],[32,0,185,26],[33,0,185,26],[34,0,185,26],[35,0,185,26],[36,0,185,26],[37,0,185,35],[38,0,185,36],[39,0,185,36],[40,0,185,36],[41,0,185,36],[42,0,185,36],[43,0,185,36],[44,0,185,42],[45,0,185,43],[46,0,185,43],[47,0,185,43],[48,0,185,43],[49,0,185,43],[50,0,185,43],[51,0,185,49],[52,0,185,50]],[[4,0,186,2],[5,0,186,2],[6,0,186,2],[7,0,186,2],[8,0,186,2],[9,0,186,2],[10,0,186,8],[11,0,186,8],[12,0,186,8],[13,0,186,8],[14,0,186,8],[15,0,186,8],[16,0,186,8],[17,0,186,8],[18,0,186,8],[19,0,186,8],[20,0,186,18],[21,0,186,18],[22,0,186,18],[23,0,186,21],[24,0,186,21],[25,0,186,21],[26,0,186,21],[27,0,186,21],[28,0,186,21],[29,0,186,21],[30,0,186,21],[31,0,186,21],[32,0,186,21],[33,0,186,21],[34,0,186,21],[35,0,186,21],[36,0,186,21],[37,0,186,21],[38,0,186,36],[39,0,186,36],[40,0,186,36],[41,0,186,36],[42,0,186,36],[43,0,186,41],[44,0,186,42],[45,0,186,43],[46,0,186,44],[47,0,186,45],[48,0,186,46],[49,0,186,47],[50,0,186,48],[51,0,186,49],[52,0,186,50],[53,0,186,51],[54,0,186,51],[55,0,186,51],[56,0,186,51],[57,0,186,51],[58,0,186,51],[59,0,186,51],[60,0,186,51],[61,0,186,51],[62,0,186,51],[63,0,186,51],[64,0,186,51],[65,0,186,51],[66,0,186,51],[67,0,186,51],[68,0,186,51],[69,0,186,51],[70,0,186,68],[71,0,186,68],[72,0,186,68],[73,0,186,71],[74,0,186,71],[75,0,186,71],[76,0,186,71],[77,0,186,71],[78,0,186,71],[79,0,186,71],[80,0,186,71],[81,0,186,71],[82,0,186,71],[83,0,186,71],[84,0,186,71],[85,0,186,71],[86,0,186,71],[87,0,186,71],[88,0,186,86]],[[4,0,187,2],[5,0,187,2],[6,0,187,2],[7,0,187,2],[8,0,187,2],[9,0,187,2],[10,0,187,8],[11,0,187,8],[12,0,187,8],[13,0,187,8],[14,0,187,8],[15,0,187,8],[16,0,187,8],[17,0,187,8],[18,0,187,8],[19,0,187,8],[20,0,187,8],[21,0,187,8],[22,0,187,20],[23,0,187,20],[24,0,187,20],[25,0,187,23],[26,0,187,23],[27,0,187,23],[28,0,187,23],[29,0,187,23],[30,0,187,23],[31,0,187,23],[32,0,187,23],[33,0,187,23],[34,0,187,23],[35,0,187,33],[36,0,187,33],[37,0,187,33],[38,0,187,33],[39,0,187,33],[40,0,187,38],[41,0,187,39],[42,0,187,40],[43,0,187,41],[44,0,187,42],[45,0,187,43],[46,0,187,43],[47,0,187,43],[48,0,187,43],[49,0,187,43],[50,0,187,43],[51,0,187,43],[52,0,187,50],[53,0,187,51],[54,0,187,52],[55,0,187,53],[56,0,187,53],[57,0,187,53],[58,0,187,53],[59,0,187,53],[60,0,187,53],[61,0,187,53],[62,0,187,60],[63,0,187,61],[64,0,187,61],[65,0,187,61],[66,0,187,61],[67,0,187,61],[68,0,187,66],[69,0,187,67],[70,0,187,68],[71,0,187,68],[72,0,187,70],[73,0,187,70],[74,0,187,70],[75,0,187,70],[76,0,187,70],[77,0,187,70],[78,0,187,70],[79,0,187,70],[80,0,187,70],[81,0,187,70],[82,0,187,80],[83,0,187,81]],[[4,0,188,2],[5,0,188,2],[6,0,188,2],[7,0,188,2],[8,0,188,6],[9,0,188,7],[10,0,188,7],[11,0,188,7],[12,0,188,7],[13,0,188,7],[14,0,188,7],[15,0,188,7],[16,0,188,7],[17,0,188,7],[18,0,188,7],[19,0,188,7],[20,0,188,7],[21,0,188,19],[22,0,188,19],[23,0,188,21]],[[8,0,189,4],[9,0,189,4],[10,0,189,4],[11,0,189,4],[12,0,189,4],[13,0,189,4],[14,0,189,4],[15,0,189,11],[16,0,189,11],[17,0,189,13]],[[4,0,190,2]],[[4,0,191,2],[5,0,191,2],[6,0,191,2],[7,0,191,2],[8,0,191,6],[9,0,191,6],[10,0,191,6],[11,0,191,6],[12,0,191,6],[13,0,191,6],[14,0,191,6],[15,0,191,6],[16,0,191,6],[17,0,191,6],[18,0,191,6],[19,0,191,6],[20,0,191,6],[21,0,191,6],[22,0,191,6],[23,0,191,6],[24,0,191,6],[25,0,191,6],[26,0,191,24],[27,0,191,25],[28,0,191,25],[29,0,191,25],[30,0,191,25],[31,0,191,29],[32,0,191,30],[33,0,191,30],[34,0,191,30],[35,0,191,30],[36,0,191,30],[37,0,191,30],[38,0,191,30],[39,0,191,30],[40,0,191,30],[41,0,191,30],[42,0,191,30],[43,0,191,30],[44,0,191,42],[45,0,191,43],[46,0,191,43],[47,0,191,43],[48,0,191,43],[49,0,191,47],[50,0,191,48],[51,0,191,48],[52,0,191,48],[53,0,191,48],[54,0,191,48],[55,0,191,48],[56,0,191,48],[57,0,191,48],[58,0,191,48],[59,0,191,48],[60,0,191,48],[61,0,191,48],[62,0,191,60],[63,0,191,61],[64,0,191,61],[65,0,191,61],[66,0,191,61],[67,0,191,61],[68,0,191,61],[69,0,191,61],[70,0,191,61],[71,0,191,61],[72,0,191,61],[73,0,191,71],[74,0,191,72],[75,0,191,72],[76,0,191,72],[77,0,191,72],[78,0,191,72],[79,0,191,72],[80,0,191,72],[81,0,191,79],[82,0,191,80],[83,0,191,80],[84,0,191,82]],[[8,0,192,4],[9,0,192,4],[10,0,192,4],[11,0,192,4],[12,0,192,4],[13,0,192,4],[14,0,192,4],[15,0,192,11],[16,0,192,11],[17,0,192,13]],[[4,0,193,2]],[[4,0,194,2],[5,0,194,2],[6,0,194,2],[7,0,194,2],[8,0,194,2],[9,0,194,2],[10,0,194,2],[11,0,194,9],[12,0,194,9],[13,0,194,9],[14,0,194,9],[15,0,194,9],[16,0,194,9],[17,0,194,9],[18,0,194,9],[19,0,194,9],[20,0,194,9],[21,0,194,9],[22,0,194,9],[23,0,194,21]],[[0,0,195,0]],[[0,0,197,0],[1,0,197,0],[2,0,197,0],[3,0,197,0],[4,0,197,0],[5,0,197,0],[6,0,197,0],[7,0,197,0],[8,0,197,0],[9,0,197,9],[10,0,197,9],[11,0,197,9],[12,0,197,9],[13,0,197,9],[14,0,197,9],[15,0,197,9],[16,0,197,9],[17,0,197,9],[18,0,197,9],[19,0,197,9],[20,0,197,9],[21,0,197,9],[22,0,197,9],[23,0,197,9],[24,0,197,9],[25,0,197,9],[26,0,197,9],[27,0,197,9],[28,0,197,28],[29,0,197,29],[30,0,197,29],[31,0,197,29],[32,0,197,29],[33,0,197,57],[34,0,197,57],[35,0,197,57]],[[4,0,198,2],[5,0,198,2],[6,0,198,2],[7,0,198,2],[8,0,198,2],[9,0,198,2],[10,0,198,2],[11,0,198,9],[12,0,198,9],[13,0,198,9],[14,0,198,9],[15,0,198,13],[16,0,198,14],[17,0,198,14],[18,0,198,14],[19,0,198,14],[20,0,198,14],[21,0,198,14],[22,0,198,14],[23,0,198,14],[24,0,198,14],[25,0,198,14],[26,0,198,24],[27,0,198,24],[28,0,198,26],[29,0,198,26],[30,0,198,26],[31,0,198,26],[32,0,198,30],[33,0,198,31],[34,0,198,31],[35,0,198,31],[36,0,198,31],[37,0,198,35],[38,0,198,36],[39,0,198,36],[40,0,198,38],[41,0,198,39],[42,0,198,39],[43,0,198,39],[44,0,198,39],[45,0,198,39],[46,0,198,39],[47,0,198,39],[48,0,198,39],[49,0,198,39],[50,0,198,39],[51,0,198,39],[52,0,198,39],[53,0,198,39],[54,0,198,39],[55,0,198,39],[56,0,198,39],[57,0,198,39],[58,0,198,39],[59,0,198,39],[60,0,198,58],[61,0,198,59],[62,0,198,59],[63,0,198,59],[64,0,198,59],[65,0,198,63],[66,0,198,64],[67,0,198,64],[68,0,198,64],[69,0,198,64],[70,0,198,64],[71,0,198,64],[72,0,198,64],[73,0,198,64],[74,0,198,72],[75,0,198,73],[76,0,198,74],[77,0,198,74],[78,0,198,74],[79,0,198,74],[80,0,198,78],[81,0,198,78],[82,0,198,78],[83,0,198,78],[84,0,198,78],[85,0,198,83]],[[0,0,199,0]],[[0,0,201,0],[1,0,201,0],[2,0,201,0],[3,0,201,0],[4,0,201,0],[5,0,201,0],[6,0,201,0],[7,0,201,0],[8,0,201,0],[9,0,201,9],[10,0,201,9],[11,0,201,9],[12,0,201,9],[13,0,201,9],[14,0,201,9],[15,0,201,9],[16,0,201,9],[17,0,201,9],[18,0,201,9],[19,0,201,9],[20,0,201,9],[21,0,201,9],[22,0,201,9],[23,0,201,9],[24,0,201,24],[25,0,201,25],[26,0,201,25],[27,0,201,25],[28,0,201,25],[29,0,201,53],[30,0,201,53],[31,0,201,53]],[[4,0,202,2],[5,0,202,2],[6,0,202,2],[7,0,202,2],[8,0,202,2],[9,0,202,2],[10,0,202,2],[11,0,202,9],[12,0,202,9],[13,0,202,9],[14,0,202,9],[15,0,202,9],[16,0,202,14],[17,0,202,15],[18,0,202,15],[19,0,202,15],[20,0,202,15],[21,0,202,15],[22,0,202,15],[23,0,202,15],[24,0,202,22],[25,0,202,23],[26,0,202,23],[27,0,202,23],[28,0,202,23],[29,0,202,27],[30,0,202,28],[31,0,202,28],[32,0,202,28],[33,0,202,28],[34,0,202,28],[35,0,202,28],[36,0,202,28],[37,0,202,28],[38,0,202,28],[39,0,202,28],[40,0,202,38],[41,0,202,39],[42,0,202,39],[43,0,202,39],[44,0,202,39],[45,0,202,43],[46,0,202,43],[47,0,202,43],[48,0,202,43],[49,0,202,47],[50,0,202,48],[51,0,202,48],[52,0,202,48],[53,0,202,48],[54,0,202,48],[55,0,202,48],[56,0,202,48],[57,0,202,48],[58,0,202,48],[59,0,202,48],[60,0,202,58],[61,0,202,59],[62,0,202,59],[63,0,202,59],[64,0,202,59],[65,0,202,59],[66,0,202,59],[67,0,202,65],[68,0,202,65],[69,0,202,65],[70,0,202,68],[71,0,202,69]],[[0,0,203,0]],[[0,0,205,0],[1,0,205,0],[2,0,205,0],[3,0,205,0],[4,0,205,0],[5,0,205,0],[6,0,205,0],[7,0,205,0],[8,0,205,0],[9,0,205,9],[10,0,205,9],[11,0,205,9],[12,0,205,9],[13,0,205,9],[14,0,205,9],[15,0,205,9],[16,0,205,9],[17,0,205,9],[18,0,205,9],[19,0,205,9],[20,0,205,9],[21,0,205,9],[22,0,205,9],[23,0,205,9],[24,0,205,9],[25,0,205,9],[26,0,205,9],[27,0,205,9],[28,0,205,28],[29,0,206,2],[30,0,206,2],[31,0,206,2],[32,0,206,2],[33,0,206,2],[34,0,206,2],[35,0,206,2],[36,0,206,2],[37,0,206,64],[38,0,206,64],[39,0,206,64]],[[4,0,208,2],[5,0,208,2],[6,0,208,2],[7,0,208,2],[8,0,208,6],[9,0,208,7],[10,0,208,7],[11,0,208,7],[12,0,208,7],[13,0,208,7],[14,0,208,7],[15,0,208,7],[16,0,208,7],[17,0,208,15]],[[8,0,208,17],[9,0,208,17],[10,0,208,17],[11,0,208,17],[12,0,208,17],[13,0,208,17],[14,0,208,17],[15,0,208,24],[16,0,208,24],[17,0,208,24],[18,0,208,24],[19,0,208,24],[20,0,208,29]],[[4,0,209,2],[5,0,209,2],[6,0,209,2],[7,0,209,2],[8,0,209,6],[9,0,209,6],[10,0,209,6],[11,0,209,6],[12,0,209,6],[13,0,209,6],[14,0,209,6],[15,0,209,13],[16,0,209,13],[17,0,209,13],[18,0,209,13],[19,0,209,13],[20,0,209,13],[21,0,209,13],[22,0,209,13],[23,0,209,21],[24,0,209,22],[25,0,209,22],[26,0,209,22],[27,0,209,22],[28,0,209,26],[29,0,209,26],[30,0,209,26],[31,0,209,26],[32,0,209,26],[33,0,209,31],[34,0,209,31],[35,0,209,31],[36,0,209,31],[37,0,209,31],[38,0,209,31],[39,0,209,31],[40,0,209,31],[41,0,209,39],[42,0,209,39],[43,0,209,39],[44,0,209,39],[45,0,209,43],[46,0,209,43],[47,0,209,43],[48,0,209,43],[49,0,209,43],[50,0,209,43],[51,0,209,43],[52,0,209,43],[53,0,209,51],[54,0,209,52],[55,0,209,52],[56,0,209,52],[57,0,209,52],[58,0,209,56],[59,0,209,56],[60,0,209,56],[61,0,209,56],[62,0,209,56],[63,0,209,61],[64,0,209,61],[65,0,209,61],[66,0,209,61],[67,0,209,61],[68,0,209,61],[69,0,209,61],[70,0,209,61],[71,0,209,61],[72,0,209,70],[73,0,209,70],[74,0,209,72]],[[8,0,210,4],[9,0,210,4],[10,0,210,4],[11,0,210,4],[12,0,210,4],[13,0,210,4],[14,0,210,4],[15,0,210,11],[16,0,210,11],[17,0,210,11],[18,0,210,11],[19,0,210,15]],[[4,0,211,2]],[[4,0,212,2],[5,0,212,2],[6,0,212,2],[7,0,212,2],[8,0,212,6],[9,0,212,6],[10,0,212,6],[11,0,212,6],[12,0,212,6],[13,0,212,6],[14,0,212,6],[15,0,212,13],[16,0,212,13],[17,0,212,13],[18,0,212,13],[19,0,212,13],[20,0,212,13],[21,0,212,13],[22,0,212,13],[23,0,212,21],[24,0,212,22],[25,0,212,22],[26,0,212,22],[27,0,212,22],[28,0,212,22],[29,0,212,27],[30,0,212,27],[31,0,212,27],[32,0,212,27],[33,0,212,27],[34,0,212,32],[35,0,212,32],[36,0,212,32],[37,0,212,32],[38,0,212,32],[39,0,212,32],[40,0,212,32],[41,0,212,32],[42,0,212,40],[43,0,212,40],[44,0,212,40],[45,0,212,40],[46,0,212,44],[47,0,212,44],[48,0,212,44],[49,0,212,44],[50,0,212,44],[51,0,212,44],[52,0,212,44],[53,0,212,44],[54,0,212,52],[55,0,212,53],[56,0,212,53],[57,0,212,53],[58,0,212,53],[59,0,212,53],[60,0,212,58],[61,0,212,58],[62,0,212,58],[63,0,212,58],[64,0,212,58],[65,0,212,63],[66,0,212,63],[67,0,212,63],[68,0,212,63],[69,0,212,63],[70,0,212,63],[71,0,212,63],[72,0,212,63],[73,0,212,63],[74,0,212,72],[75,0,212,72],[76,0,212,74]],[[8,0,213,4],[9,0,213,4],[10,0,213,4],[11,0,213,4],[12,0,213,4],[13,0,213,4],[14,0,213,4],[15,0,213,11],[16,0,213,11],[17,0,213,11],[18,0,213,11],[19,0,213,15]],[[4,0,214,2]],[[4,0,215,2],[5,0,215,2],[6,0,215,2],[7,0,215,2],[8,0,215,2],[9,0,215,2],[10,0,215,2],[11,0,215,9],[12,0,215,9],[13,0,215,9],[14,0,215,9],[15,0,215,9],[16,0,215,14]],[[0,0,216,0]],[[0,0,218,0],[1,0,218,0],[2,0,218,0],[3,0,218,0],[4,0,218,0],[5,0,218,0],[6,0,218,0],[7,0,218,0],[8,0,218,0],[9,0,218,9],[10,0,218,9],[11,0,218,9],[12,0,218,9],[13,0,218,9],[14,0,218,9],[15,0,218,9],[16,0,218,9],[17,0,218,9],[18,0,218,9],[19,0,218,9],[20,0,218,9],[21,0,218,9],[22,0,218,9],[23,0,218,9],[24,0,218,9],[25,0,218,9],[26,0,218,9],[27,0,218,9],[28,0,218,9],[29,0,218,9],[30,0,218,9],[31,0,218,9],[32,0,218,9],[33,0,218,9],[34,0,218,9],[35,0,218,9],[36,0,218,9],[37,0,218,37],[38,0,219,2],[39,0,219,2],[40,0,219,2],[41,0,219,2],[42,0,219,33],[43,0,219,33],[44,0,219,33]],[[4,0,221,2],[5,0,221,2],[6,0,221,2],[7,0,221,2],[8,0,221,6],[9,0,221,6],[10,0,221,6],[11,0,221,6],[12,0,221,10],[13,0,221,11],[14,0,221,11],[15,0,221,11],[16,0,221,11],[17,0,221,11],[18,0,221,11],[19,0,221,11],[20,0,221,11],[21,0,221,11],[22,0,221,11],[23,0,221,11],[24,0,221,11],[25,0,221,11],[26,0,221,11],[27,0,221,11],[28,0,221,26],[29,0,221,27],[30,0,221,27],[31,0,221,27],[32,0,221,27],[33,0,221,31],[34,0,221,31],[35,0,221,31],[36,0,221,31],[37,0,221,31],[38,0,221,36],[39,0,221,36],[40,0,221,36],[41,0,221,36],[42,0,221,36],[43,0,221,36],[44,0,221,36],[45,0,221,36],[46,0,221,36],[47,0,221,36],[48,0,221,36],[49,0,221,36],[50,0,221,36],[51,0,221,36],[52,0,221,36],[53,0,221,36],[54,0,221,36],[55,0,221,36],[56,0,221,36],[57,0,221,36],[58,0,221,36],[59,0,221,36],[60,0,221,36],[61,0,221,36],[62,0,221,36],[63,0,221,36],[64,0,221,36],[65,0,221,63],[66,0,221,63],[67,0,221,65]],[[8,0,222,4],[9,0,222,4],[10,0,222,4],[11,0,222,4],[12,0,222,4],[13,0,222,4],[14,0,222,4],[15,0,222,11],[16,0,222,11],[17,0,222,11],[18,0,222,11],[19,0,222,15],[20,0,222,16],[21,0,222,16],[22,0,222,16],[23,0,222,16],[24,0,222,16],[25,0,222,16],[26,0,222,16],[27,0,222,16],[28,0,222,16],[29,0,222,16],[30,0,222,16],[31,0,222,16],[32,0,222,16],[33,0,222,16],[34,0,222,16],[35,0,222,31],[36,0,222,32],[37,0,222,32],[38,0,222,32],[39,0,222,32],[40,0,222,32],[41,0,222,32],[42,0,222,32],[43,0,222,32],[44,0,222,32],[45,0,222,32],[46,0,222,42],[47,0,222,43],[48,0,222,43],[49,0,222,43],[50,0,222,43],[51,0,222,43],[52,0,222,48]],[[4,0,223,2]],[[4,0,224,2],[5,0,224,2],[6,0,224,2],[7,0,224,2],[8,0,224,2],[9,0,224,2],[10,0,224,2],[11,0,224,9],[12,0,224,9],[13,0,224,9],[14,0,224,9],[15,0,224,9],[16,0,224,9],[17,0,224,9],[18,0,224,9],[19,0,224,9],[20,0,224,18]],[[0,0,225,0]],[[0,0,227,0],[1,0,227,0],[2,0,227,0],[3,0,227,0],[4,0,227,0],[5,0,227,0],[6,0,227,0],[7,0,227,0],[8,0,227,0],[9,0,227,9],[10,0,227,9],[11,0,227,9],[12,0,227,9],[13,0,227,9],[14,0,227,9],[15,0,227,9],[16,0,227,9],[17,0,227,9],[18,0,227,9],[19,0,227,9],[20,0,227,9],[21,0,227,9],[22,0,227,9],[23,0,227,9],[24,0,227,9],[25,0,227,9],[26,0,227,9],[27,0,227,9],[28,0,227,9],[29,0,227,9],[30,0,227,30],[31,0,227,31],[32,0,227,31],[33,0,227,31],[34,0,227,31],[35,0,227,31],[36,0,227,31],[37,0,227,31],[38,0,227,31],[39,0,227,61],[40,0,227,61],[41,0,227,61]],[[4,0,228,2],[5,0,228,2],[6,0,228,2],[7,0,228,2],[8,0,228,6],[9,0,228,7],[10,0,228,7],[11,0,228,7],[12,0,228,7],[13,0,228,7],[14,0,228,7],[15,0,228,7],[16,0,228,7],[17,0,228,15],[18,0,228,15],[19,0,228,15],[20,0,228,15],[21,0,228,19],[22,0,228,19],[23,0,228,19],[24,0,228,19],[25,0,228,19],[26,0,228,19],[27,0,228,19],[28,0,228,19],[29,0,228,27],[30,0,228,28],[31,0,228,28],[32,0,228,28],[33,0,228,28],[34,0,228,32],[35,0,228,32],[36,0,228,32],[37,0,228,32],[38,0,228,32],[39,0,228,37],[40,0,228,37],[41,0,228,37],[42,0,228,37],[43,0,228,37],[44,0,228,37],[45,0,228,37],[46,0,228,37],[47,0,228,37],[48,0,228,37],[49,0,228,37],[50,0,228,37],[51,0,228,37],[52,0,228,37],[53,0,228,37],[54,0,228,52],[55,0,228,52],[56,0,228,54]],[[8,0,229,4],[9,0,229,4],[10,0,229,4],[11,0,229,4],[12,0,229,4],[13,0,229,4],[14,0,229,4],[15,0,229,11],[16,0,229,11],[17,0,229,11],[18,0,229,11],[19,0,229,11],[20,0,229,11],[21,0,229,11],[22,0,229,11],[23,0,229,11],[24,0,229,20]],[[4,0,230,2]],[[4,0,231,2],[5,0,231,2],[6,0,231,2],[7,0,231,2],[8,0,231,2],[9,0,231,2],[10,0,231,2],[11,0,231,9],[12,0,231,9],[13,0,231,9],[14,0,231,9],[15,0,231,9],[16,0,231,9],[17,0,231,9],[18,0,231,9],[19,0,231,9],[20,0,231,9],[21,0,231,9],[22,0,231,9],[23,0,231,9],[24,0,231,9],[25,0,231,9],[26,0,231,9],[27,0,231,9],[28,0,231,9],[29,0,231,9],[30,0,231,9],[31,0,231,9],[32,0,231,9],[33,0,231,9],[34,0,231,32],[35,0,231,33],[36,0,231,33],[37,0,231,33],[38,0,231,33],[39,0,231,33],[40,0,231,33],[41,0,231,33],[42,0,231,33],[43,0,231,41],[44,0,231,42]],[[0,0,232,0]],[[0,0,234,0],[1,0,234,0],[2,0,234,0],[3,0,234,0],[4,0,234,0],[5,0,234,0],[6,0,234,0],[7,0,234,0],[8,0,234,0],[9,0,234,9],[10,0,234,9],[11,0,234,9],[12,0,234,9],[13,0,234,9],[14,0,234,9],[15,0,234,9],[16,0,234,9],[17,0,234,9],[18,0,234,9],[19,0,234,9],[20,0,234,9],[21,0,234,9],[22,0,234,9],[23,0,234,9],[24,0,234,9],[25,0,234,9],[26,0,234,9],[27,0,234,9],[28,0,234,9],[29,0,234,9],[30,0,234,9],[31,0,234,9],[32,0,234,32],[33,0,235,2],[34,0,235,2],[35,0,235,2],[36,0,235,2],[37,0,235,2],[38,0,235,2],[39,0,235,2],[40,0,235,2],[41,0,235,2],[42,0,235,2],[43,0,235,43],[44,0,235,43],[45,0,235,43]],[[4,0,237,2],[5,0,237,2],[6,0,237,2],[7,0,237,2],[8,0,237,6],[9,0,237,7],[10,0,237,7],[11,0,237,7],[12,0,237,7],[13,0,237,7],[14,0,237,7],[15,0,237,7],[16,0,237,7],[17,0,237,7],[18,0,237,7],[19,0,237,17],[20,0,237,17],[21,0,237,19]],[[8,0,238,4],[9,0,238,4],[10,0,238,4],[11,0,238,4],[12,0,238,4],[13,0,238,4],[14,0,238,4],[15,0,238,11],[16,0,238,11],[17,0,238,11],[18,0,238,11],[19,0,238,11],[20,0,238,11],[21,0,238,11],[22,0,238,11],[23,0,238,11],[24,0,238,20]],[[4,0,239,2]],[[4,0,240,2],[5,0,240,2],[6,0,240,2],[7,0,240,2],[8,0,240,6],[9,0,240,6],[10,0,240,6],[11,0,240,6],[12,0,240,6],[13,0,240,6],[14,0,240,6],[15,0,240,6],[16,0,240,6],[17,0,240,6],[18,0,240,16],[19,0,240,17],[20,0,240,17],[21,0,240,17],[22,0,240,17],[23,0,240,21],[24,0,240,21],[25,0,240,21],[26,0,240,21],[27,0,240,21],[28,0,240,26],[29,0,240,26],[30,0,240,26],[31,0,240,26],[32,0,240,26],[33,0,240,26],[34,0,240,26],[35,0,240,26],[36,0,240,26],[37,0,240,35],[38,0,240,35],[39,0,240,37]],[[8,0,241,4],[9,0,241,4],[10,0,241,4],[11,0,241,4],[12,0,241,4],[13,0,241,4],[14,0,241,10],[15,0,241,10],[16,0,241,10],[17,0,241,10],[18,0,241,10],[19,0,241,10],[20,0,241,10],[21,0,241,10],[22,0,241,10],[23,0,241,10],[24,0,241,10],[25,0,241,10],[26,0,241,22],[27,0,241,22],[28,0,241,22],[29,0,241,26],[30,0,241,26],[31,0,241,26],[32,0,241,26],[33,0,241,26],[34,0,241,26],[35,0,241,26],[36,0,241,26],[37,0,241,26],[38,0,241,26],[39,0,241,59],[40,0,241,60],[41,0,241,60],[42,0,241,60],[43,0,241,60],[44,0,241,60],[45,0,241,65]],[[8,0,242,4],[9,0,242,4],[10,0,242,4],[11,0,242,4],[12,0,242,4],[13,0,242,4],[14,0,242,4],[15,0,242,11],[16,0,242,11],[17,0,242,11],[18,0,242,11],[19,0,242,11],[20,0,242,11],[21,0,242,11],[22,0,242,18],[23,0,242,18],[24,0,242,18],[25,0,242,18],[26,0,242,18],[27,0,242,18],[28,0,242,18],[29,0,242,18],[30,0,242,18],[31,0,242,18],[32,0,242,18],[33,0,242,18],[34,0,242,30],[35,0,242,30],[36,0,242,30],[37,0,242,30],[38,0,242,30],[39,0,242,35],[40,0,242,35],[41,0,242,35],[42,0,242,35],[43,0,242,35],[44,0,242,35],[45,0,242,35],[46,0,242,35],[47,0,242,43],[48,0,242,44],[49,0,242,45],[50,0,242,46],[51,0,242,46],[52,0,242,46],[53,0,242,46],[54,0,242,46],[55,0,242,46],[56,0,242,46],[57,0,242,46],[58,0,242,46],[59,0,242,46],[60,0,242,46],[61,0,242,46],[62,0,242,58],[63,0,242,59],[64,0,242,60],[65,0,242,61],[66,0,242,61],[67,0,242,61],[68,0,242,61],[69,0,242,61],[70,0,242,61],[71,0,242,61],[72,0,242,61],[73,0,242,61],[74,0,242,70]],[[4,0,243,2]],[[4,0,244,2],[5,0,244,2],[6,0,244,2],[7,0,244,2],[8,0,244,6],[9,0,244,6],[10,0,244,6],[11,0,244,6],[12,0,244,6],[13,0,244,6],[14,0,244,6],[15,0,244,6],[16,0,244,6],[17,0,244,6],[18,0,244,16],[19,0,244,17],[20,0,244,17],[21,0,244,17],[22,0,244,17],[23,0,244,21],[24,0,244,21],[25,0,244,21],[26,0,244,21],[27,0,244,21],[28,0,244,26],[29,0,244,26],[30,0,244,26],[31,0,244,26],[32,0,244,26],[33,0,244,26],[34,0,244,26],[35,0,244,26],[36,0,244,26],[37,0,244,26],[38,0,244,26],[39,0,244,26],[40,0,244,26],[41,0,244,26],[42,0,244,26],[43,0,244,26],[44,0,244,26],[45,0,244,43],[46,0,244,43],[47,0,244,43],[48,0,244,43],[49,0,244,47],[50,0,244,47],[51,0,244,47],[52,0,244,47],[53,0,244,47],[54,0,244,47],[55,0,244,47],[56,0,244,47],[57,0,244,47],[58,0,244,47],[59,0,244,57],[60,0,244,58],[61,0,244,58],[62,0,244,58],[63,0,244,58],[64,0,244,58],[65,0,244,58],[66,0,244,58],[67,0,244,58],[68,0,244,58],[69,0,244,58],[70,0,244,58],[71,0,244,69],[72,0,244,70],[73,0,244,70],[74,0,244,70],[75,0,244,70],[76,0,244,70],[77,0,244,70],[78,0,244,76],[79,0,244,76],[80,0,244,76],[81,0,244,76],[82,0,244,76],[83,0,244,81],[84,0,244,82],[85,0,244,82],[86,0,244,84]],[[8,0,245,4],[9,0,245,4],[10,0,245,4],[11,0,245,4],[12,0,245,4],[13,0,245,4],[14,0,245,10],[15,0,245,11],[16,0,245,11],[17,0,245,11],[18,0,245,11],[19,0,245,11],[20,0,245,16],[21,0,245,17],[22,0,245,17],[23,0,245,17],[24,0,245,20],[25,0,245,20],[26,0,245,20],[27,0,245,20],[28,0,245,20],[29,0,245,20],[30,0,245,20],[31,0,245,20],[32,0,245,20],[33,0,245,20],[34,0,245,30],[35,0,245,31],[36,0,245,31],[37,0,245,31],[38,0,245,31],[39,0,245,31],[40,0,245,31],[41,0,245,37]],[[8,0,246,4],[9,0,246,4],[10,0,246,4],[11,0,246,4],[12,0,246,4],[13,0,246,4],[14,0,246,4],[15,0,246,11],[16,0,246,11],[17,0,246,11],[18,0,246,11],[19,0,246,11],[20,0,246,16],[21,0,246,16],[22,0,246,18],[23,0,246,18],[24,0,246,18],[25,0,246,18],[26,0,246,18],[27,0,246,23],[28,0,246,24],[29,0,246,24],[30,0,246,24],[31,0,246,24],[32,0,246,24],[33,0,246,24],[34,0,246,30],[35,0,246,30],[36,0,246,30],[37,0,246,30],[38,0,246,34],[39,0,246,34],[40,0,246,34],[41,0,246,34],[42,0,246,34],[43,0,246,39],[44,0,246,39],[45,0,246,41],[46,0,246,41],[47,0,246,41],[48,0,246,41],[49,0,246,41],[50,0,246,46],[51,0,246,47],[52,0,246,47],[53,0,246,47],[54,0,246,50],[55,0,246,50],[56,0,246,50],[57,0,246,50],[58,0,246,54],[59,0,246,54],[60,0,246,54],[61,0,246,54],[62,0,246,54],[63,0,246,54],[64,0,246,54],[65,0,246,54],[66,0,246,54],[67,0,246,63]],[[4,0,247,2]],[[4,0,248,2],[5,0,248,2],[6,0,248,2],[7,0,248,2],[8,0,248,2],[9,0,248,2],[10,0,248,2],[11,0,248,9],[12,0,248,9],[13,0,248,9],[14,0,248,9],[15,0,248,9],[16,0,248,9],[17,0,248,9],[18,0,248,9],[19,0,248,9],[20,0,248,18]],[[0,0,249,0]],[[0,0,251,0],[1,0,251,0],[2,0,251,0],[3,0,251,0],[4,0,251,0],[5,0,251,0],[6,0,251,0],[7,0,251,0],[8,0,251,0],[9,0,251,9],[10,0,251,9],[11,0,251,9],[12,0,251,9],[13,0,251,9],[14,0,251,9],[15,0,251,9],[16,0,251,9],[17,0,251,9],[18,0,251,9],[19,0,251,9],[20,0,251,9],[21,0,251,9],[22,0,251,9],[23,0,251,9],[24,0,251,9],[25,0,251,9],[26,0,251,9],[27,0,251,9],[28,0,251,28],[29,0,251,29],[30,0,251,29],[31,0,251,29],[32,0,251,29],[33,0,251,29],[34,0,251,29],[35,0,251,29],[36,0,251,29],[37,0,251,29],[38,0,251,29],[39,0,251,51],[40,0,251,51],[41,0,251,51]],[[4,0,252,2],[5,0,252,2],[6,0,252,2],[7,0,252,2],[8,0,252,2],[9,0,252,2],[10,0,252,8],[11,0,252,8],[12,0,252,8],[13,0,252,8],[14,0,252,8],[15,0,252,8],[16,0,252,14],[17,0,252,14],[18,0,252,14],[19,0,252,17],[20,0,252,17],[21,0,252,17],[22,0,252,17],[23,0,252,17],[24,0,252,17],[25,0,252,17],[26,0,252,17],[27,0,252,17],[28,0,252,17],[29,0,252,17],[30,0,252,17],[31,0,252,17],[32,0,252,17],[33,0,252,17],[34,0,252,17],[35,0,252,33],[36,0,252,34],[37,0,252,34],[38,0,252,34],[39,0,252,34],[40,0,252,34],[41,0,252,34],[42,0,252,34],[43,0,252,34],[44,0,252,34],[45,0,252,34],[46,0,252,44],[47,0,252,45]],[[4,0,253,2],[5,0,253,2],[6,0,253,2],[7,0,253,2],[8,0,253,6],[9,0,253,6],[10,0,253,6],[11,0,253,6],[12,0,253,6],[13,0,253,6],[14,0,253,12],[15,0,253,13],[16,0,253,13],[17,0,253,13],[18,0,253,13],[19,0,253,17],[20,0,253,17],[21,0,253,17],[22,0,253,17],[23,0,253,17],[24,0,253,22],[25,0,253,22],[26,0,253,22],[27,0,253,22],[28,0,253,22],[29,0,253,22],[30,0,253,22],[31,0,253,22],[32,0,253,22],[33,0,253,22],[34,0,253,22],[35,0,253,22],[36,0,253,34],[37,0,253,34],[38,0,253,36]],[[8,0,254,4],[9,0,254,4],[10,0,254,4],[11,0,254,4],[12,0,254,4],[13,0,254,4],[14,0,254,4],[15,0,254,11],[16,0,254,11],[17,0,254,11],[18,0,254,11],[19,0,254,11],[20,0,254,11],[21,0,254,17],[22,0,254,18],[23,0,254,18],[24,0,254,18],[25,0,254,18],[26,0,254,22],[27,0,254,22],[28,0,254,22],[29,0,254,22],[30,0,254,22],[31,0,254,27],[32,0,254,27],[33,0,254,27],[34,0,254,27],[35,0,254,27],[36,0,254,27],[37,0,254,27],[38,0,254,27],[39,0,254,27],[40,0,254,36]],[[4,0,255,2]],[[4,0,256,2],[5,0,256,2],[6,0,256,2],[7,0,256,2],[8,0,256,6],[9,0,256,6],[10,0,256,6],[11,0,256,6],[12,0,256,6],[13,0,256,6],[14,0,256,12],[15,0,256,13],[16,0,256,13],[17,0,256,13],[18,0,256,13],[19,0,256,17],[20,0,256,17],[21,0,256,17],[22,0,256,17],[23,0,256,17],[24,0,256,22],[25,0,256,22],[26,0,256,22],[27,0,256,22],[28,0,256,22],[29,0,256,22],[30,0,256,22],[31,0,256,22],[32,0,256,22],[33,0,256,22],[34,0,256,22],[35,0,256,22],[36,0,256,22],[37,0,256,22],[38,0,256,22],[39,0,256,22],[40,0,256,22],[41,0,256,22],[42,0,256,40],[43,0,256,40],[44,0,256,42]],[[8,0,257,4],[9,0,257,4],[10,0,257,4],[11,0,257,4],[12,0,257,4],[13,0,257,4],[14,0,257,10],[15,0,257,10],[16,0,257,10],[17,0,257,10],[18,0,257,10],[19,0,257,10],[20,0,257,16],[21,0,257,16],[22,0,257,16],[23,0,257,19],[24,0,257,19],[25,0,257,19],[26,0,257,19],[27,0,257,19],[28,0,257,19],[29,0,257,25],[30,0,257,26],[31,0,257,26],[32,0,257,26],[33,0,257,26],[34,0,257,26],[35,0,257,26],[36,0,257,32]],[[8,0,258,4],[9,0,258,4],[10,0,258,4],[11,0,258,4],[12,0,258,8],[13,0,258,8],[14,0,258,8],[15,0,258,8],[16,0,258,8],[17,0,258,8],[18,0,258,14],[19,0,258,15],[20,0,258,15],[21,0,258,15],[22,0,258,15],[23,0,258,19],[24,0,258,19],[25,0,258,19],[26,0,258,19],[27,0,258,19],[28,0,258,24],[29,0,258,24],[30,0,258,24],[31,0,258,24],[32,0,258,24],[33,0,258,24],[34,0,258,24],[35,0,258,24],[36,0,258,24],[37,0,258,24],[38,0,258,24],[39,0,258,24],[40,0,258,36],[41,0,258,36],[42,0,258,38]],[[12,0,259,6],[13,0,259,6],[14,0,259,6],[15,0,259,6],[16,0,259,6],[17,0,259,6],[18,0,259,6],[19,0,259,13],[20,0,259,13],[21,0,259,13],[22,0,259,13],[23,0,259,13],[24,0,259,13],[25,0,259,19],[26,0,259,20],[27,0,259,20],[28,0,259,20],[29,0,259,20],[30,0,259,24],[31,0,259,24],[32,0,259,24],[33,0,259,24],[34,0,259,24],[35,0,259,29],[36,0,259,29],[37,0,259,29],[38,0,259,29],[39,0,259,29],[40,0,259,29],[41,0,259,29],[42,0,259,29],[43,0,259,29],[44,0,259,38]],[[8,0,260,4]],[[4,0,261,2]],[[4,0,262,2],[5,0,262,2],[6,0,262,2],[7,0,262,2],[8,0,262,2],[9,0,262,2],[10,0,262,2],[11,0,262,9],[12,0,262,9],[13,0,262,9],[14,0,262,9],[15,0,262,9],[16,0,262,14]],[[0,0,263,0]],[[0,0,265,0],[1,0,265,0],[2,0,265,0],[3,0,265,0],[4,0,265,0],[5,0,265,0],[6,0,265,0],[7,0,265,0],[8,0,265,0],[9,0,265,9],[10,0,265,9],[11,0,265,9],[12,0,265,9],[13,0,265,9],[14,0,265,9],[15,0,265,9],[16,0,265,9],[17,0,265,9],[18,0,265,9],[19,0,265,9],[20,0,265,9],[21,0,265,9],[22,0,265,9],[23,0,265,9],[24,0,265,9],[25,0,265,25],[26,0,265,26],[27,0,265,26],[28,0,265,26],[29,0,265,26],[30,0,265,26],[31,0,265,26],[32,0,265,26],[33,0,265,26],[34,0,265,26],[35,0,265,26],[36,0,265,48],[37,0,265,48],[38,0,265,48]],[[4,0,266,2],[5,0,266,2],[6,0,266,2],[7,0,266,2],[8,0,266,6],[9,0,266,6],[10,0,266,6],[11,0,266,6],[12,0,266,6],[13,0,266,6],[14,0,266,6],[15,0,266,6],[16,0,266,6],[17,0,266,6],[18,0,266,16],[19,0,266,17],[20,0,266,17],[21,0,266,17],[22,0,266,17],[23,0,266,21],[24,0,266,21],[25,0,266,21],[26,0,266,21],[27,0,266,21],[28,0,266,26],[29,0,266,26],[30,0,266,26],[31,0,266,26],[32,0,266,26],[33,0,266,26],[34,0,266,26],[35,0,266,26],[36,0,266,26],[37,0,266,26],[38,0,266,26],[39,0,266,26],[40,0,266,26],[41,0,266,26],[42,0,266,26],[43,0,266,26],[44,0,266,26],[45,0,266,43],[46,0,266,43],[47,0,266,45]],[[8,0,267,4],[9,0,267,4],[10,0,267,4],[11,0,267,4],[12,0,267,4],[13,0,267,4],[14,0,267,10],[15,0,267,10],[16,0,267,10],[17,0,267,10],[18,0,267,10],[19,0,267,15],[20,0,267,15],[21,0,267,15],[22,0,267,18],[23,0,267,18],[24,0,267,18],[25,0,267,18],[26,0,267,18],[27,0,267,18],[28,0,267,18],[29,0,267,18],[30,0,267,18],[31,0,267,18],[32,0,267,28],[33,0,267,29],[34,0,267,29],[35,0,267,29],[36,0,267,29],[37,0,267,29],[38,0,267,29],[39,0,267,29],[40,0,267,29],[41,0,267,29],[42,0,267,29],[43,0,267,53]],[[8,0,268,4],[9,0,268,4],[10,0,268,4],[11,0,268,4],[12,0,268,8],[13,0,268,8],[14,0,268,8],[15,0,268,8],[16,0,268,8],[17,0,268,13],[18,0,268,14],[19,0,268,14],[20,0,268,14],[21,0,268,14],[22,0,268,18],[23,0,268,18],[24,0,268,18],[25,0,268,18],[26,0,268,18],[27,0,268,23],[28,0,268,23],[29,0,268,23],[30,0,268,23],[31,0,268,23],[32,0,268,23],[33,0,268,23],[34,0,268,23],[35,0,268,23],[36,0,268,23],[37,0,268,23],[38,0,268,23],[39,0,268,23],[40,0,268,23],[41,0,268,23],[42,0,268,23],[43,0,268,39],[44,0,268,39],[45,0,268,41]],[[12,0,269,6],[13,0,269,6],[14,0,269,6],[15,0,269,6],[16,0,269,6],[17,0,269,6],[18,0,269,6],[19,0,269,13],[20,0,269,13],[21,0,269,13],[22,0,269,13],[23,0,269,13],[24,0,269,13],[25,0,269,13],[26,0,269,13],[27,0,269,13],[28,0,269,13],[29,0,269,13],[30,0,269,13],[31,0,269,13],[32,0,269,13],[33,0,269,13],[34,0,269,13],[35,0,269,29],[36,0,269,30],[37,0,269,30],[38,0,269,30],[39,0,269,30],[40,0,269,30],[41,0,269,35],[42,0,269,36],[43,0,269,36],[44,0,269,36],[45,0,269,36],[46,0,269,36],[47,0,269,36],[48,0,269,42],[49,0,269,43]],[[8,0,270,4]],[[8,0,271,4],[9,0,271,4],[10,0,271,4],[11,0,271,4],[12,0,271,4],[13,0,271,4],[14,0,271,4],[15,0,271,11],[16,0,271,11],[17,0,271,11],[18,0,271,11],[19,0,271,11],[20,0,271,11],[21,0,271,11],[22,0,271,11],[23,0,271,11],[24,0,271,11],[25,0,271,11],[26,0,271,11],[27,0,271,11],[28,0,271,11],[29,0,271,11],[30,0,271,11],[31,0,271,27],[32,0,271,28],[33,0,271,28],[34,0,271,28],[35,0,271,28],[36,0,271,28],[37,0,271,33],[38,0,271,34]],[[4,0,272,2]],[[4,0,273,2],[5,0,273,2],[6,0,273,2],[7,0,273,2],[8,0,273,6],[9,0,273,6],[10,0,273,6],[11,0,273,6],[12,0,273,6],[13,0,273,6],[14,0,273,6],[15,0,273,6],[16,0,273,6],[17,0,273,6],[18,0,273,16],[19,0,273,17],[20,0,273,17],[21,0,273,17],[22,0,273,17],[23,0,273,21],[24,0,273,21],[25,0,273,21],[26,0,273,21],[27,0,273,21],[28,0,273,26],[29,0,273,26],[30,0,273,26],[31,0,273,26],[32,0,273,26],[33,0,273,26],[34,0,273,26],[35,0,273,26],[36,0,273,26],[37,0,273,26],[38,0,273,26],[39,0,273,26],[40,0,273,26],[41,0,273,26],[42,0,273,26],[43,0,273,26],[44,0,273,26],[45,0,273,26],[46,0,273,26],[47,0,273,26],[48,0,273,26],[49,0,273,47],[50,0,273,47],[51,0,273,49]],[[8,0,274,4],[9,0,274,4],[10,0,274,4],[11,0,274,4],[12,0,274,4],[13,0,274,4],[14,0,274,4],[15,0,274,11],[16,0,274,11],[17,0,274,11],[18,0,274,11],[19,0,274,11],[20,0,274,11],[21,0,274,11],[22,0,274,11],[23,0,274,11],[24,0,274,11],[25,0,274,11],[26,0,274,11],[27,0,274,11],[28,0,274,11],[29,0,274,11],[30,0,274,11],[31,0,274,27],[32,0,274,28],[33,0,274,28],[34,0,274,28],[35,0,274,28],[36,0,274,28],[37,0,274,28],[38,0,274,28],[39,0,274,28],[40,0,274,28],[41,0,274,28],[42,0,274,38],[43,0,274,39],[44,0,274,39],[45,0,274,39],[46,0,274,39],[47,0,274,39],[48,0,274,39],[49,0,274,39],[50,0,274,39],[51,0,274,39],[52,0,274,39],[53,0,274,49],[54,0,274,50]],[[4,0,275,2]],[[4,0,276,2],[5,0,276,2],[6,0,276,2],[7,0,276,2],[8,0,276,2],[9,0,276,2],[10,0,276,2],[11,0,276,9],[12,0,276,9],[13,0,276,9],[14,0,276,9],[15,0,276,9],[16,0,276,9],[17,0,276,9],[18,0,276,9],[19,0,276,9],[20,0,276,9],[21,0,276,19]],[[0,0,277,0]]],"ignoreList":[]}
@@ -0,0 +1,11 @@
1
+ import { parse } from 'es-module-lexer';
2
+ export type DefaultExportSignal = 'has-default' | 'no-default' | 'unknown';
3
+ interface AnalyzeOptions {
4
+ esParse?: typeof parse;
5
+ }
6
+ interface ModuleAnalysis {
7
+ imports: string[];
8
+ defaultSignal: DefaultExportSignal;
9
+ }
10
+ export declare function analyzeModule(sourceText: string, filePath: string, options?: AnalyzeOptions): Promise<ModuleAnalysis>;
11
+ export {};
@@ -7,7 +7,7 @@ exports.__moduleInfoInternals = void 0;
7
7
  exports.detectModuleDefaultExport = detectModuleDefaultExport;
8
8
  const promises_1 = require("node:fs/promises");
9
9
  const node_path_1 = __importDefault(require("node:path"));
10
- const es_module_lexer_1 = require("es-module-lexer");
10
+ const lexer_js_1 = require("./lexer.cjs");
11
11
  const DETECTABLE_EXTENSIONS = new Set([
12
12
  '.js',
13
13
  '.jsx',
@@ -18,14 +18,7 @@ const DETECTABLE_EXTENSIONS = new Set([
18
18
  '.cjs',
19
19
  '.cts',
20
20
  ]);
21
- let lexerInit;
22
21
  let lexerOverrides;
23
- function ensureLexerInitialized() {
24
- if (!lexerInit) {
25
- lexerInit = es_module_lexer_1.init;
26
- }
27
- return lexerInit;
28
- }
29
22
  async function detectModuleDefaultExport(filePath) {
30
23
  if (!DETECTABLE_EXTENSIONS.has(node_path_1.default.extname(filePath))) {
31
24
  return 'unknown';
@@ -38,15 +31,10 @@ async function detectModuleDefaultExport(filePath) {
38
31
  return 'unknown';
39
32
  }
40
33
  try {
41
- await ensureLexerInitialized();
42
- const [, exports] = (lexerOverrides?.parse ?? es_module_lexer_1.parse)(source, filePath);
43
- if (exports.some(entry => entry.n === 'default')) {
44
- return 'has-default';
45
- }
46
- if (exports.length === 0) {
47
- return 'unknown';
48
- }
49
- return 'no-default';
34
+ const { defaultSignal } = await (0, lexer_js_1.analyzeModule)(source, filePath, {
35
+ esParse: lexerOverrides?.parse,
36
+ });
37
+ return defaultSignal;
50
38
  }
51
39
  catch {
52
40
  return 'unknown';
@@ -55,9 +43,6 @@ async function detectModuleDefaultExport(filePath) {
55
43
  exports.__moduleInfoInternals = {
56
44
  setLexerOverrides(overrides) {
57
45
  lexerOverrides = overrides;
58
- if (!overrides) {
59
- lexerInit = undefined;
60
- }
61
46
  },
62
47
  };
63
48
  //# sourceMappingURL=moduleInfo.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"moduleInfo.cjs","names":[],"sources":["../../src/moduleInfo.ts"],"sourcesContent":[null],"mappings":[[],[],[],[],[],[],[[0,0,32,0],[1,0,32,0],[2,0,32,0],[3,0,32,0],[4,0,32,0],[5,0,32,0],[6,0,32,0],[7,0,32,0],[8,0,32,0],[9,0,32,0],[10,0,32,0],[11,0,32,0],[12,0,32,0],[13,0,32,0],[14,0,32,0],[15,0,32,0],[16,0,32,0],[17,0,32,0],[18,0,32,0],[19,0,32,0],[20,0,32,0],[21,0,32,0],[22,0,32,0],[23,0,32,0],[24,0,32,0],[25,0,32,0],[26,0,32,0],[27,0,32,0],[28,0,32,0],[29,0,32,0],[30,0,32,0],[31,0,32,0],[32,0,32,0],[33,0,32,0],[34,0,32,0],[35,0,32,0],[36,0,32,0],[37,0,32,0],[38,0,32,0],[39,0,32,0],[40,0,32,0],[41,0,32,0],[42,0,32,0],[43,0,32,0],[44,0,32,0],[45,0,32,0],[46,0,32,0],[47,0,32,0],[48,0,32,0],[49,0,32,0],[50,0,32,0],[51,0,32,0],[52,0,32,0],[53,0,32,0],[54,0,32,0],[55,0,32,0],[56,0,32,0],[57,0,32,0],[58,0,32,0],[59,0,32,0],[60,0,32,0],[61,0,32,0]],[[0,0,0,0],[1,0,0,0],[2,0,0,0],[3,0,0,0],[4,0,0,0],[5,0,0,0],[6,0,0,0],[7,0,0,0],[8,0,0,0],[9,0,0,0],[10,0,0,0],[11,0,0,0],[12,0,0,0],[13,0,0,0],[14,0,0,0],[15,0,0,0],[16,0,0,0],[17,0,0,0],[18,0,0,0],[19,0,0,0],[20,0,0,0],[21,0,0,0],[22,0,0,0],[23,0,0,0],[24,0,0,0],[25,0,0,0],[26,0,0,0],[27,0,0,0],[28,0,0,0],[29,0,0,0],[30,0,0,0],[31,0,0,0],[32,0,0,0],[33,0,0,0],[34,0,0,0],[35,0,0,0],[36,0,0,0],[37,0,0,0],[38,0,0,0],[39,0,0,0],[40,0,0,0],[41,0,0,0],[42,0,0,0],[43,0,0,0],[44,0,0,0],[45,0,0,0],[46,0,0,0]],[[0,0,1,0],[1,0,1,0],[2,0,1,0],[3,0,1,0],[4,0,1,0],[5,0,1,0],[6,0,1,0],[7,0,1,0],[8,0,1,0],[9,0,1,0],[10,0,1,0],[11,0,1,0],[12,0,1,0],[13,0,1,0],[14,0,1,0],[15,0,1,0],[16,0,1,0],[17,0,1,0],[18,0,1,0],[19,0,1,0],[20,0,1,0],[21,0,1,0],[22,0,1,0],[23,0,1,0],[24,0,1,0],[25,0,1,0],[26,0,1,0],[27,0,1,0],[28,0,1,0],[29,0,1,0],[30,0,1,0],[31,0,1,0],[32,0,1,0],[33,0,1,0],[34,0,1,0],[35,0,1,0],[36,0,1,0],[37,0,1,0],[38,0,1,0],[39,0,1,0],[40,0,1,0],[41,0,1,0],[42,0,1,0],[43,0,1,0],[44,0,1,0],[45,0,1,0],[46,0,1,0],[47,0,1,0],[48,0,1,0],[49,0,1,0],[50,0,1,0],[51,0,1,0],[52,0,1,0],[53,0,1,0],[54,0,1,0],[55,0,1,0],[56,0,1,0],[57,0,1,0]],[[0,0,3,0],[1,0,3,0],[2,0,3,0],[3,0,3,0],[4,0,3,0],[5,0,3,0],[6,0,3,0],[7,0,3,0],[8,0,3,0],[9,0,3,0],[10,0,3,0],[11,0,3,0],[12,0,3,0],[13,0,3,0],[14,0,3,0],[15,0,3,0],[16,0,3,0],[17,0,3,0],[18,0,3,0],[19,0,3,0],[20,0,3,0],[21,0,3,0],[22,0,3,0],[23,0,3,0],[24,0,3,0],[25,0,3,0],[26,0,3,0],[27,0,3,0],[28,0,3,0],[29,0,3,0],[30,0,3,0],[31,0,3,0],[32,0,3,0],[33,0,3,0],[34,0,3,0],[35,0,3,0],[36,0,3,0],[37,0,3,0],[38,0,3,0],[39,0,3,0],[40,0,3,0],[41,0,3,0],[42,0,3,0],[43,0,3,0],[44,0,3,0],[45,0,3,0],[46,0,3,0],[47,0,3,0],[48,0,3,0],[49,0,3,0],[50,0,3,0],[51,0,3,0],[52,0,3,0]],[[0,0,11,0],[1,0,11,0],[2,0,11,0],[3,0,11,0],[4,0,11,0],[5,0,11,0],[6,0,11,6],[7,0,11,6],[8,0,11,6],[9,0,11,6],[10,0,11,6],[11,0,11,6],[12,0,11,6],[13,0,11,6],[14,0,11,6],[15,0,11,6],[16,0,11,6],[17,0,11,6],[18,0,11,6],[19,0,11,6],[20,0,11,6],[21,0,11,6],[22,0,11,6],[23,0,11,6],[24,0,11,6],[25,0,11,6],[26,0,11,6],[27,0,11,27],[28,0,11,27],[29,0,11,27],[30,0,11,30],[31,0,11,30],[32,0,11,30],[33,0,11,30],[34,0,11,34],[35,0,11,34],[36,0,11,34],[37,0,11,37],[38,0,11,38]],[[4,0,12,2],[5,0,12,2],[6,0,12,2],[7,0,12,2],[8,0,12,2],[9,0,12,7]],[[4,0,13,2],[5,0,13,2],[6,0,13,2],[7,0,13,2],[8,0,13,2],[9,0,13,2],[10,0,13,8]],[[4,0,14,2],[5,0,14,2],[6,0,14,2],[7,0,14,2],[8,0,14,2],[9,0,14,7]],[[4,0,15,2],[5,0,15,2],[6,0,15,2],[7,0,15,2],[8,0,15,2],[9,0,15,2],[10,0,15,8]],[[4,0,16,2],[5,0,16,2],[6,0,16,2],[7,0,16,2],[8,0,16,2],[9,0,16,2],[10,0,16,8]],[[4,0,17,2],[5,0,17,2],[6,0,17,2],[7,0,17,2],[8,0,17,2],[9,0,17,2],[10,0,17,8]],[[4,0,18,2],[5,0,18,2],[6,0,18,2],[7,0,18,2],[8,0,18,2],[9,0,18,2],[10,0,18,8]],[[4,0,19,2],[5,0,19,2],[6,0,19,2],[7,0,19,2],[8,0,19,2],[9,0,19,2],[10,0,19,8]],[[1,0,20,1],[2,0,20,2]],[[0,0,22,0],[1,0,22,0],[2,0,22,0],[3,0,22,0],[4,0,22,4],[5,0,22,4],[6,0,22,4],[7,0,22,4],[8,0,22,4],[9,0,22,4],[10,0,22,4],[11,0,22,4],[12,0,22,4],[13,0,22,40]],[[0,0,23,0],[1,0,23,0],[2,0,23,0],[3,0,23,0],[4,0,23,4],[5,0,23,4],[6,0,23,4],[7,0,23,4],[8,0,23,4],[9,0,23,4],[10,0,23,4],[11,0,23,4],[12,0,23,4],[13,0,23,4],[14,0,23,4],[15,0,23,4],[16,0,23,4],[17,0,23,4],[18,0,23,46]],[[0,0,25,0],[1,0,25,0],[2,0,25,0],[3,0,25,0],[4,0,25,0],[5,0,25,0],[6,0,25,0],[7,0,25,0],[8,0,25,0],[9,0,25,9],[10,0,25,9],[11,0,25,9],[12,0,25,9],[13,0,25,9],[14,0,25,9],[15,0,25,9],[16,0,25,9],[17,0,25,9],[18,0,25,9],[19,0,25,9],[20,0,25,9],[21,0,25,9],[22,0,25,9],[23,0,25,9],[24,0,25,9],[25,0,25,9],[26,0,25,9],[27,0,25,9],[28,0,25,9],[29,0,25,9],[30,0,25,9],[31,0,25,31],[32,0,25,31],[33,0,25,31],[34,0,25,31]],[[4,0,26,2],[5,0,26,2],[6,0,26,2],[7,0,26,2],[8,0,26,6],[9,0,26,7],[10,0,26,7],[11,0,26,7],[12,0,26,7],[13,0,26,7],[14,0,26,7],[15,0,26,7],[16,0,26,7],[17,0,26,7],[18,0,26,16],[19,0,26,16],[20,0,26,18]],[[8,0,27,4],[9,0,27,4],[10,0,27,4],[11,0,27,4],[12,0,27,4],[13,0,27,4],[14,0,27,4],[15,0,27,4],[16,0,27,4],[17,0,27,13],[18,0,27,13],[19,0,27,13],[20,0,27,16],[21,0,27,16],[22,0,27,16],[23,0,27,16],[24,0,27,16],[25,0,27,16],[26,0,27,16],[27,0,27,16],[28,0,27,16],[29,0,27,16],[30,0,27,16],[31,0,27,16],[32,0,27,16],[33,0,27,16],[34,0,27,16],[35,0,27,16],[36,0,27,16],[37,0,27,16],[38,0,27,16],[39,0,27,16],[40,0,27,16],[41,0,27,16],[42,0,27,20]],[[4,0,28,2]],[[4,0,29,2],[5,0,29,2],[6,0,29,2],[7,0,29,2],[8,0,29,2],[9,0,29,2],[10,0,29,2],[11,0,29,9],[12,0,29,9],[13,0,29,9],[14,0,29,9],[15,0,29,9],[16,0,29,9],[17,0,29,9],[18,0,29,9],[19,0,29,9],[20,0,29,18]],[[0,0,30,0]],[[0,0,32,7],[1,0,32,7],[2,0,32,7],[3,0,32,7],[4,0,32,7],[5,0,32,12],[6,0,32,12],[7,0,32,12],[8,0,32,12],[9,0,32,12],[10,0,32,12],[11,0,32,12],[12,0,32,12],[13,0,32,12],[14,0,32,12],[15,0,32,22],[16,0,32,22],[17,0,32,22],[18,0,32,22],[19,0,32,22],[20,0,32,22],[21,0,32,22],[22,0,32,22],[23,0,32,22],[24,0,32,22],[25,0,32,22],[26,0,32,22],[27,0,32,22],[28,0,32,22],[29,0,32,22],[30,0,32,22],[31,0,32,22],[32,0,32,22],[33,0,32,22],[34,0,32,22],[35,0,32,22],[36,0,32,22],[37,0,32,22],[38,0,32,22],[39,0,32,22],[40,0,32,47],[41,0,33,2],[42,0,33,2],[43,0,33,2],[44,0,33,2],[45,0,33,2],[46,0,33,2],[47,0,33,2],[48,0,33,2],[49,0,33,18],[50,0,33,18],[51,0,33,18]],[[4,0,35,2],[5,0,35,2],[6,0,35,2],[7,0,35,2],[8,0,35,6],[9,0,35,7],[10,0,35,7],[11,0,35,7],[12,0,35,7],[13,0,35,7],[14,0,35,7],[15,0,35,7],[16,0,35,7],[17,0,35,7],[18,0,35,7],[19,0,35,7],[20,0,35,7],[21,0,35,7],[22,0,35,7],[23,0,35,7],[24,0,35,7],[25,0,35,7],[26,0,35,7],[27,0,35,7],[28,0,35,7],[29,0,35,7],[30,0,35,28],[31,0,35,29],[32,0,35,29],[33,0,35,29],[34,0,35,32],[35,0,35,33],[36,0,35,33],[37,0,35,33],[38,0,35,33],[39,0,35,33],[40,0,35,33],[41,0,35,33],[42,0,35,33],[43,0,35,33],[44,0,35,33],[45,0,35,33],[46,0,35,33],[47,0,35,33],[48,0,35,33],[49,0,35,33],[50,0,35,33],[51,0,35,33],[52,0,35,33],[53,0,35,33],[54,0,35,37],[55,0,35,38],[56,0,35,38],[57,0,35,38],[58,0,35,38],[59,0,35,38],[60,0,35,38],[61,0,35,38],[62,0,35,45],[63,0,35,46],[64,0,35,46],[65,0,35,46],[66,0,35,46],[67,0,35,46],[68,0,35,46],[69,0,35,46],[70,0,35,46],[71,0,35,54],[72,0,35,55],[73,0,35,56],[74,0,35,56],[75,0,35,58]],[[8,0,36,4],[9,0,36,4],[10,0,36,4],[11,0,36,4],[12,0,36,4],[13,0,36,4],[14,0,36,4],[15,0,36,11],[16,0,36,11],[17,0,36,11],[18,0,36,11],[19,0,36,11],[20,0,36,11],[21,0,36,11],[22,0,36,11],[23,0,36,11],[24,0,36,20]],[[4,0,37,2]],[[4,0,39,2],[5,0,39,2],[6,0,39,2],[7,0,39,2],[8,0,39,6],[9,0,39,6],[10,0,39,6],[11,0,39,6],[12,0,39,6],[13,0,39,6],[14,0,39,20]],[[4,0,40,2],[5,0,40,2],[6,0,40,2],[7,0,40,2],[8,0,40,6]],[[8,0,41,4],[9,0,41,4],[10,0,41,4],[11,0,41,4],[12,0,41,4],[13,0,41,4],[14,0,41,10],[15,0,41,10],[16,0,41,10],[17,0,41,13],[18,0,41,13],[19,0,41,13],[20,0,41,13],[21,0,41,13],[22,0,41,13],[23,0,41,19],[24,0,41,19],[25,0,41,19],[26,0,41,19],[27,0,41,19],[28,0,41,19],[29,0,41,19],[30,0,41,19],[31,0,41,19],[32,0,41,19],[33,0,41,19],[34,0,41,19],[35,0,41,19],[36,0,41,19],[37,0,41,19],[38,0,41,19],[39,0,41,19],[40,0,41,19],[41,0,41,19],[42,0,41,19],[43,0,41,19],[44,0,41,19],[45,0,41,19],[46,0,41,27],[47,0,41,27],[48,0,41,28],[49,0,41,28],[50,0,41,28],[51,0,41,28],[52,0,41,28],[53,0,41,28],[54,0,41,28],[55,0,41,28],[56,0,41,36],[57,0,41,36],[58,0,41,38],[59,0,41,38],[60,0,41,38],[61,0,41,38],[62,0,41,38],[63,0,41,38],[64,0,41,44],[65,0,41,45]],[[4,0,42,2]],[[4,0,42,4],[5,0,42,4],[6,0,42,4],[7,0,42,4],[8,0,42,4],[9,0,42,4],[10,0,42,10]],[[8,0,43,4],[9,0,43,4],[10,0,43,4],[11,0,43,4],[12,0,43,4],[13,0,43,4],[14,0,43,4],[15,0,43,11],[16,0,43,11],[17,0,43,11],[18,0,43,11],[19,0,43,11],[20,0,43,11],[21,0,43,11],[22,0,43,11],[23,0,43,11],[24,0,43,20]],[[4,0,44,2]],[[4,0,46,2],[5,0,46,2],[6,0,46,2],[7,0,46,2],[8,0,46,6]],[[8,0,47,4],[9,0,47,4],[10,0,47,4],[11,0,47,4],[12,0,47,4],[13,0,47,4],[14,0,47,10],[15,0,47,10],[16,0,47,10],[17,0,47,10],[18,0,47,10],[19,0,47,10],[20,0,47,10],[21,0,47,10],[22,0,47,10],[23,0,47,10],[24,0,47,10],[25,0,47,10],[26,0,47,10],[27,0,47,10],[28,0,47,10],[29,0,47,10],[30,0,47,10],[31,0,47,10],[32,0,47,10],[33,0,47,10],[34,0,47,10],[35,0,47,10],[36,0,47,32],[37,0,47,32],[38,0,47,34]],[[8,0,48,4],[9,0,48,4],[10,0,48,4],[11,0,48,4],[12,0,48,4],[13,0,48,4],[14,0,48,10],[15,0,48,11],[16,0,48,11],[17,0,48,13],[18,0,48,13],[19,0,48,13],[20,0,48,13],[21,0,48,13],[22,0,48,13],[23,0,48,13],[24,0,48,20],[25,0,48,21],[26,0,48,21],[27,0,48,21],[28,0,48,24],[29,0,48,25],[30,0,48,25],[31,0,48,25],[32,0,48,25],[33,0,48,25],[34,0,48,25],[35,0,48,25],[36,0,48,25],[37,0,48,25],[38,0,48,25],[39,0,48,25],[40,0,48,25],[41,0,48,25],[42,0,48,25],[43,0,48,39],[44,0,48,39],[45,0,48,41],[46,0,48,41],[47,0,48,41],[48,0,48,41],[49,0,48,41],[50,0,48,46],[51,0,48,46],[52,0,48,46],[53,0,48,46],[54,0,48,50],[55,0,48,50],[56,0,48,50],[57,0,48,50],[58,0,48,50],[59,0,48,50],[60,0,48,50],[61,0,48,50],[62,0,48,50],[63,0,48,50],[64,0,48,50],[65,0,48,50],[66,0,48,50],[67,0,48,50],[68,0,48,50],[69,0,48,50],[70,0,48,50],[71,0,48,50],[72,0,48,50],[73,0,48,50],[74,0,48,50],[75,0,48,50],[76,0,48,50],[77,0,48,55],[78,0,48,56],[79,0,48,57],[80,0,48,57],[81,0,48,57],[82,0,48,57],[83,0,48,57],[84,0,48,57],[85,0,48,63],[86,0,48,63],[87,0,48,65],[88,0,48,65],[89,0,48,65],[90,0,48,65],[91,0,48,65],[92,0,48,65],[93,0,48,65],[94,0,48,65],[95,0,48,73],[96,0,48,74]],[[8,0,49,4],[9,0,49,4],[10,0,49,4],[11,0,49,4],[12,0,49,8],[13,0,49,8],[14,0,49,8],[15,0,49,8],[16,0,49,8],[17,0,49,8],[18,0,49,8],[19,0,49,15],[20,0,49,16],[21,0,49,16],[22,0,49,16],[23,0,49,16],[24,0,49,20],[25,0,49,21],[26,0,49,21],[27,0,49,21],[28,0,49,21],[29,0,49,21],[30,0,49,26],[31,0,49,27],[32,0,49,27],[33,0,49,29],[34,0,49,30],[35,0,49,30],[36,0,49,30],[37,0,49,30],[38,0,49,30],[39,0,49,35],[40,0,49,36],[41,0,49,37],[42,0,49,37],[43,0,49,37],[44,0,49,37],[45,0,49,37],[46,0,49,42],[47,0,49,42],[48,0,49,42],[49,0,49,42],[50,0,49,42],[51,0,49,42],[52,0,49,42],[53,0,49,42],[54,0,49,42],[55,0,49,51],[56,0,49,52],[57,0,49,52],[58,0,49,54]],[[12,0,50,6],[13,0,50,6],[14,0,50,6],[15,0,50,6],[16,0,50,6],[17,0,50,6],[18,0,50,6],[19,0,50,13],[20,0,50,13],[21,0,50,13],[22,0,50,13],[23,0,50,13],[24,0,50,13],[25,0,50,13],[26,0,50,13],[27,0,50,13],[28,0,50,13],[29,0,50,13],[30,0,50,13],[31,0,50,13],[32,0,50,26]],[[8,0,51,4]],[[8,0,52,4],[9,0,52,4],[10,0,52,4],[11,0,52,4],[12,0,52,8],[13,0,52,8],[14,0,52,8],[15,0,52,8],[16,0,52,8],[17,0,52,8],[18,0,52,8],[19,0,52,15],[20,0,52,16],[21,0,52,16],[22,0,52,16],[23,0,52,16],[24,0,52,16],[25,0,52,16],[26,0,52,22],[27,0,52,22],[28,0,52,22],[29,0,52,22],[30,0,52,22],[31,0,52,27],[32,0,52,28],[33,0,52,28],[34,0,52,30]],[[12,0,53,6],[13,0,53,6],[14,0,53,6],[15,0,53,6],[16,0,53,6],[17,0,53,6],[18,0,53,6],[19,0,53,13],[20,0,53,13],[21,0,53,13],[22,0,53,13],[23,0,53,13],[24,0,53,13],[25,0,53,13],[26,0,53,13],[27,0,53,13],[28,0,53,22]],[[8,0,54,4]],[[8,0,55,4],[9,0,55,4],[10,0,55,4],[11,0,55,4],[12,0,55,4],[13,0,55,4],[14,0,55,4],[15,0,55,11],[16,0,55,11],[17,0,55,11],[18,0,55,11],[19,0,55,11],[20,0,55,11],[21,0,55,11],[22,0,55,11],[23,0,55,11],[24,0,55,11],[25,0,55,11],[26,0,55,11],[27,0,55,23]],[[4,0,56,2]],[[4,0,56,4],[5,0,56,4],[6,0,56,4],[7,0,56,4],[8,0,56,4],[9,0,56,4],[10,0,56,10]],[[8,0,57,4],[9,0,57,4],[10,0,57,4],[11,0,57,4],[12,0,57,4],[13,0,57,4],[14,0,57,4],[15,0,57,11],[16,0,57,11],[17,0,57,11],[18,0,57,11],[19,0,57,11],[20,0,57,11],[21,0,57,11],[22,0,57,11],[23,0,57,11],[24,0,57,20]],[[4,0,58,2]],[[0,0,59,0]],[[0,0,61,13],[1,0,61,13],[2,0,61,13],[3,0,61,13],[4,0,61,13],[5,0,61,13],[6,0,61,13],[7,0,61,13],[8,0,61,13],[9,0,61,13],[10,0,61,13],[11,0,61,13],[12,0,61,13],[13,0,61,13],[14,0,61,13],[15,0,61,13],[16,0,61,13],[17,0,61,13],[18,0,61,13],[19,0,61,13],[20,0,61,13],[21,0,61,13],[22,0,61,13],[23,0,61,13],[24,0,61,13],[25,0,61,13],[26,0,61,13],[27,0,61,13],[28,0,61,13],[29,0,61,34],[30,0,61,34],[31,0,61,34],[32,0,61,37]],[[4,0,62,2],[5,0,62,2],[6,0,62,2],[7,0,62,2],[8,0,62,2],[9,0,62,2],[10,0,62,2],[11,0,62,2],[12,0,62,2],[13,0,62,2],[14,0,62,2],[15,0,62,2],[16,0,62,2],[17,0,62,2],[18,0,62,2],[19,0,62,2],[20,0,62,2],[21,0,62,19],[22,0,62,20],[23,0,62,20],[24,0,62,20],[25,0,62,20],[26,0,62,20],[27,0,62,20],[28,0,62,20],[29,0,62,20],[30,0,62,20],[31,0,62,46],[32,0,62,46],[33,0,62,46]],[[8,0,63,4],[9,0,63,4],[10,0,63,4],[11,0,63,4],[12,0,63,4],[13,0,63,4],[14,0,63,4],[15,0,63,4],[16,0,63,4],[17,0,63,4],[18,0,63,4],[19,0,63,4],[20,0,63,4],[21,0,63,4],[22,0,63,18],[23,0,63,18],[24,0,63,18],[25,0,63,21],[26,0,63,21],[27,0,63,21],[28,0,63,21],[29,0,63,21],[30,0,63,21],[31,0,63,21],[32,0,63,21],[33,0,63,21],[34,0,63,30]],[[8,0,64,4],[9,0,64,4],[10,0,64,4],[11,0,64,4],[12,0,64,8],[13,0,64,9],[14,0,64,9],[15,0,64,9],[16,0,64,9],[17,0,64,9],[18,0,64,9],[19,0,64,9],[20,0,64,9],[21,0,64,9],[22,0,64,18],[23,0,64,18],[24,0,64,20]],[[12,0,65,6],[13,0,65,6],[14,0,65,6],[15,0,65,6],[16,0,65,6],[17,0,65,6],[18,0,65,6],[19,0,65,6],[20,0,65,6],[21,0,65,15],[22,0,65,15],[23,0,65,15],[24,0,65,18],[25,0,65,18],[26,0,65,18],[27,0,65,18],[28,0,65,18],[29,0,65,18],[30,0,65,18],[31,0,65,18],[32,0,65,18],[33,0,65,27]],[[8,0,66,4]],[[4,0,67,2],[5,0,67,3]],[[1,0,68,1]]],"ignoreList":[]}
1
+ {"version":3,"file":"moduleInfo.cjs","names":[],"sources":["../../src/moduleInfo.ts"],"sourcesContent":[null],"mappings":[[],[],[],[],[],[],[[0,0,26,0],[1,0,26,0],[2,0,26,0],[3,0,26,0],[4,0,26,0],[5,0,26,0],[6,0,26,0],[7,0,26,0],[8,0,26,0],[9,0,26,0],[10,0,26,0],[11,0,26,0],[12,0,26,0],[13,0,26,0],[14,0,26,0],[15,0,26,0],[16,0,26,0],[17,0,26,0],[18,0,26,0],[19,0,26,0],[20,0,26,0],[21,0,26,0],[22,0,26,0],[23,0,26,0],[24,0,26,0],[25,0,26,0],[26,0,26,0],[27,0,26,0],[28,0,26,0],[29,0,26,0],[30,0,26,0],[31,0,26,0],[32,0,26,0],[33,0,26,0],[34,0,26,0],[35,0,26,0],[36,0,26,0],[37,0,26,0],[38,0,26,0],[39,0,26,0],[40,0,26,0],[41,0,26,0],[42,0,26,0],[43,0,26,0],[44,0,26,0],[45,0,26,0],[46,0,26,0],[47,0,26,0],[48,0,26,0],[49,0,26,0],[50,0,26,0],[51,0,26,0],[52,0,26,0],[53,0,26,0],[54,0,26,0],[55,0,26,0],[56,0,26,0],[57,0,26,0],[58,0,26,0],[59,0,26,0],[60,0,26,0],[61,0,26,0]],[[0,0,0,0],[1,0,0,0],[2,0,0,0],[3,0,0,0],[4,0,0,0],[5,0,0,0],[6,0,0,0],[7,0,0,0],[8,0,0,0],[9,0,0,0],[10,0,0,0],[11,0,0,0],[12,0,0,0],[13,0,0,0],[14,0,0,0],[15,0,0,0],[16,0,0,0],[17,0,0,0],[18,0,0,0],[19,0,0,0],[20,0,0,0],[21,0,0,0],[22,0,0,0],[23,0,0,0],[24,0,0,0],[25,0,0,0],[26,0,0,0],[27,0,0,0],[28,0,0,0],[29,0,0,0],[30,0,0,0],[31,0,0,0],[32,0,0,0],[33,0,0,0],[34,0,0,0],[35,0,0,0],[36,0,0,0],[37,0,0,0],[38,0,0,0],[39,0,0,0],[40,0,0,0],[41,0,0,0],[42,0,0,0],[43,0,0,0],[44,0,0,0],[45,0,0,0],[46,0,0,0]],[[0,0,1,0],[1,0,1,0],[2,0,1,0],[3,0,1,0],[4,0,1,0],[5,0,1,0],[6,0,1,0],[7,0,1,0],[8,0,1,0],[9,0,1,0],[10,0,1,0],[11,0,1,0],[12,0,1,0],[13,0,1,0],[14,0,1,0],[15,0,1,0],[16,0,1,0],[17,0,1,0],[18,0,1,0],[19,0,1,0],[20,0,1,0],[21,0,1,0],[22,0,1,0],[23,0,1,0],[24,0,1,0],[25,0,1,0],[26,0,1,0],[27,0,1,0],[28,0,1,0],[29,0,1,0],[30,0,1,0],[31,0,1,0],[32,0,1,0],[33,0,1,0],[34,0,1,0],[35,0,1,0],[36,0,1,0],[37,0,1,0],[38,0,1,0],[39,0,1,0],[40,0,1,0],[41,0,1,0],[42,0,1,0],[43,0,1,0],[44,0,1,0],[45,0,1,0],[46,0,1,0],[47,0,1,0],[48,0,1,0],[49,0,1,0],[50,0,1,0],[51,0,1,0],[52,0,1,0],[53,0,1,0],[54,0,1,0],[55,0,1,0],[56,0,1,0],[57,0,1,0]],[[0,0,5,0],[1,0,5,0],[2,0,5,0],[3,0,5,0],[4,0,5,0],[5,0,5,0],[6,0,5,0],[7,0,5,0],[8,0,5,0],[9,0,5,0],[10,0,5,0],[11,0,5,0],[12,0,5,0],[13,0,5,0],[14,0,5,0],[15,0,5,0],[16,0,5,0],[17,0,5,0],[18,0,5,0],[19,0,5,0],[20,0,5,0],[21,0,5,0],[22,0,5,0],[23,0,5,0],[24,0,5,0],[25,0,5,0],[26,0,5,0],[27,0,5,0],[28,0,5,0],[39,0,5,0],[40,0,5,0],[41,0,5,0]],[[0,0,13,0],[1,0,13,0],[2,0,13,0],[3,0,13,0],[4,0,13,0],[5,0,13,0],[6,0,13,6],[7,0,13,6],[8,0,13,6],[9,0,13,6],[10,0,13,6],[11,0,13,6],[12,0,13,6],[13,0,13,6],[14,0,13,6],[15,0,13,6],[16,0,13,6],[17,0,13,6],[18,0,13,6],[19,0,13,6],[20,0,13,6],[21,0,13,6],[22,0,13,6],[23,0,13,6],[24,0,13,6],[25,0,13,6],[26,0,13,6],[27,0,13,27],[28,0,13,27],[29,0,13,27],[30,0,13,30],[31,0,13,30],[32,0,13,30],[33,0,13,30],[34,0,13,34],[35,0,13,34],[36,0,13,34],[37,0,13,37],[38,0,13,38]],[[4,0,14,2],[5,0,14,2],[6,0,14,2],[7,0,14,2],[8,0,14,2],[9,0,14,7]],[[4,0,15,2],[5,0,15,2],[6,0,15,2],[7,0,15,2],[8,0,15,2],[9,0,15,2],[10,0,15,8]],[[4,0,16,2],[5,0,16,2],[6,0,16,2],[7,0,16,2],[8,0,16,2],[9,0,16,7]],[[4,0,17,2],[5,0,17,2],[6,0,17,2],[7,0,17,2],[8,0,17,2],[9,0,17,2],[10,0,17,8]],[[4,0,18,2],[5,0,18,2],[6,0,18,2],[7,0,18,2],[8,0,18,2],[9,0,18,2],[10,0,18,8]],[[4,0,19,2],[5,0,19,2],[6,0,19,2],[7,0,19,2],[8,0,19,2],[9,0,19,2],[10,0,19,8]],[[4,0,20,2],[5,0,20,2],[6,0,20,2],[7,0,20,2],[8,0,20,2],[9,0,20,2],[10,0,20,8]],[[4,0,21,2],[5,0,21,2],[6,0,21,2],[7,0,21,2],[8,0,21,2],[9,0,21,2],[10,0,21,8]],[[1,0,22,1],[2,0,22,2]],[[0,0,24,0],[1,0,24,0],[2,0,24,0],[3,0,24,0],[4,0,24,4],[5,0,24,4],[6,0,24,4],[7,0,24,4],[8,0,24,4],[9,0,24,4],[10,0,24,4],[11,0,24,4],[12,0,24,4],[13,0,24,4],[14,0,24,4],[15,0,24,4],[16,0,24,4],[17,0,24,4],[18,0,24,46]],[[0,0,26,7],[1,0,26,7],[2,0,26,7],[3,0,26,7],[4,0,26,7],[5,0,26,12],[6,0,26,12],[7,0,26,12],[8,0,26,12],[9,0,26,12],[10,0,26,12],[11,0,26,12],[12,0,26,12],[13,0,26,12],[14,0,26,12],[15,0,26,22],[16,0,26,22],[17,0,26,22],[18,0,26,22],[19,0,26,22],[20,0,26,22],[21,0,26,22],[22,0,26,22],[23,0,26,22],[24,0,26,22],[25,0,26,22],[26,0,26,22],[27,0,26,22],[28,0,26,22],[29,0,26,22],[30,0,26,22],[31,0,26,22],[32,0,26,22],[33,0,26,22],[34,0,26,22],[35,0,26,22],[36,0,26,22],[37,0,26,22],[38,0,26,22],[39,0,26,22],[40,0,26,47],[41,0,27,2],[42,0,27,2],[43,0,27,2],[44,0,27,2],[45,0,27,2],[46,0,27,2],[47,0,27,2],[48,0,27,2],[49,0,27,18],[50,0,27,18],[51,0,27,18]],[[4,0,29,2],[5,0,29,2],[6,0,29,2],[7,0,29,2],[8,0,29,6],[9,0,29,7],[10,0,29,7],[11,0,29,7],[12,0,29,7],[13,0,29,7],[14,0,29,7],[15,0,29,7],[16,0,29,7],[17,0,29,7],[18,0,29,7],[19,0,29,7],[20,0,29,7],[21,0,29,7],[22,0,29,7],[23,0,29,7],[24,0,29,7],[25,0,29,7],[26,0,29,7],[27,0,29,7],[28,0,29,7],[29,0,29,7],[30,0,29,28],[31,0,29,29],[32,0,29,29],[33,0,29,29],[34,0,29,32],[35,0,29,33],[36,0,29,33],[37,0,29,33],[38,0,29,33],[39,0,29,33],[40,0,29,33],[41,0,29,33],[42,0,29,33],[43,0,29,33],[44,0,29,33],[45,0,29,33],[46,0,29,33],[47,0,29,33],[48,0,29,33],[49,0,29,33],[50,0,29,33],[51,0,29,33],[52,0,29,33],[53,0,29,33],[54,0,29,37],[55,0,29,38],[56,0,29,38],[57,0,29,38],[58,0,29,38],[59,0,29,38],[60,0,29,38],[61,0,29,38],[62,0,29,45],[63,0,29,46],[64,0,29,46],[65,0,29,46],[66,0,29,46],[67,0,29,46],[68,0,29,46],[69,0,29,46],[70,0,29,46],[71,0,29,54],[72,0,29,55],[73,0,29,56],[74,0,29,56],[75,0,29,58]],[[8,0,30,4],[9,0,30,4],[10,0,30,4],[11,0,30,4],[12,0,30,4],[13,0,30,4],[14,0,30,4],[15,0,30,11],[16,0,30,11],[17,0,30,11],[18,0,30,11],[19,0,30,11],[20,0,30,11],[21,0,30,11],[22,0,30,11],[23,0,30,11],[24,0,30,20]],[[4,0,31,2]],[[4,0,33,2],[5,0,33,2],[6,0,33,2],[7,0,33,2],[8,0,33,6],[9,0,33,6],[10,0,33,6],[11,0,33,6],[12,0,33,6],[13,0,33,6],[14,0,33,20]],[[4,0,34,2],[5,0,34,2],[6,0,34,2],[7,0,34,2],[8,0,34,6]],[[8,0,35,4],[9,0,35,4],[10,0,35,4],[11,0,35,4],[12,0,35,4],[13,0,35,4],[14,0,35,10],[15,0,35,10],[16,0,35,10],[17,0,35,13],[18,0,35,13],[19,0,35,13],[20,0,35,13],[21,0,35,13],[22,0,35,13],[23,0,35,19],[24,0,35,19],[25,0,35,19],[26,0,35,19],[27,0,35,19],[28,0,35,19],[29,0,35,19],[30,0,35,19],[31,0,35,19],[32,0,35,19],[33,0,35,19],[34,0,35,19],[35,0,35,19],[36,0,35,19],[37,0,35,19],[38,0,35,19],[39,0,35,19],[40,0,35,19],[41,0,35,19],[42,0,35,19],[43,0,35,19],[44,0,35,19],[45,0,35,19],[46,0,35,27],[47,0,35,27],[48,0,35,28],[49,0,35,28],[50,0,35,28],[51,0,35,28],[52,0,35,28],[53,0,35,28],[54,0,35,28],[55,0,35,28],[56,0,35,36],[57,0,35,36],[58,0,35,38],[59,0,35,38],[60,0,35,38],[61,0,35,38],[62,0,35,38],[63,0,35,38],[64,0,35,44],[65,0,35,45]],[[4,0,36,2]],[[4,0,36,4],[5,0,36,4],[6,0,36,4],[7,0,36,4],[8,0,36,4],[9,0,36,4],[10,0,36,10]],[[8,0,37,4],[9,0,37,4],[10,0,37,4],[11,0,37,4],[12,0,37,4],[13,0,37,4],[14,0,37,4],[15,0,37,11],[16,0,37,11],[17,0,37,11],[18,0,37,11],[19,0,37,11],[20,0,37,11],[21,0,37,11],[22,0,37,11],[23,0,37,11],[24,0,37,20]],[[4,0,38,2]],[[4,0,40,2],[5,0,40,2],[6,0,40,2],[7,0,40,2],[8,0,40,6]],[[8,0,41,4],[9,0,41,4],[10,0,41,4],[11,0,41,4],[12,0,41,4],[13,0,41,4],[14,0,41,10],[15,0,41,10],[16,0,41,12],[17,0,41,12],[18,0,41,12],[19,0,41,12],[20,0,41,12],[21,0,41,12],[22,0,41,12],[23,0,41,12],[24,0,41,12],[25,0,41,12],[26,0,41,12],[27,0,41,12],[28,0,41,12],[29,0,41,25],[30,0,41,25],[31,0,41,27],[32,0,41,27],[33,0,41,27],[34,0,41,30],[35,0,41,30],[36,0,41,30],[37,0,41,30],[38,0,41,30],[39,0,41,30],[40,0,41,36],[41,0,41,36],[42,0,41,36],[43,0,41,36],[44,0,41,36],[45,0,41,36],[46,0,41,36],[47,0,41,36],[48,0,41,36],[49,0,41,36],[50,0,41,36],[51,0,41,36],[52,0,41,36],[53,0,41,36],[54,0,41,36],[55,0,41,36],[56,0,41,36],[57,0,41,36],[58,0,41,36],[59,0,41,36],[60,0,41,36],[61,0,41,36],[62,0,41,36],[63,0,41,36],[64,0,41,36],[65,0,41,36],[66,0,41,36],[67,0,41,36],[68,0,41,49],[69,0,41,49],[70,0,41,50],[71,0,41,50],[72,0,41,50],[73,0,41,50],[74,0,41,50],[75,0,41,50],[76,0,41,56],[77,0,41,56],[78,0,41,58],[79,0,41,58],[80,0,41,58],[81,0,41,58],[82,0,41,58],[83,0,41,58],[84,0,41,58],[85,0,41,58],[86,0,41,66],[87,0,41,66],[88,0,41,68]],[[12,0,42,6],[13,0,42,6],[14,0,42,6],[15,0,42,6],[16,0,42,6],[17,0,42,6],[18,0,42,6],[19,0,42,13],[20,0,42,13],[21,0,42,15],[22,0,42,15],[23,0,42,15],[24,0,42,15],[25,0,42,15],[26,0,42,15],[27,0,42,15],[28,0,42,15],[29,0,42,15],[30,0,42,15],[31,0,42,15],[32,0,42,15],[33,0,42,15],[34,0,42,15],[35,0,42,29],[36,0,42,29],[37,0,42,31],[38,0,42,31],[39,0,42,31],[40,0,42,31],[41,0,42,31],[42,0,42,36]],[[9,0,43,5],[10,0,43,6]],[[8,0,44,4],[9,0,44,4],[10,0,44,4],[11,0,44,4],[12,0,44,4],[13,0,44,4],[14,0,44,4],[15,0,44,11],[16,0,44,11],[17,0,44,11],[18,0,44,11],[19,0,44,11],[20,0,44,11],[21,0,44,11],[22,0,44,11],[23,0,44,11],[24,0,44,11],[25,0,44,11],[26,0,44,11],[27,0,44,11],[28,0,44,24]],[[4,0,45,2]],[[4,0,45,4],[5,0,45,4],[6,0,45,4],[7,0,45,4],[8,0,45,4],[9,0,45,4],[10,0,45,10]],[[8,0,46,4],[9,0,46,4],[10,0,46,4],[11,0,46,4],[12,0,46,4],[13,0,46,4],[14,0,46,4],[15,0,46,11],[16,0,46,11],[17,0,46,11],[18,0,46,11],[19,0,46,11],[20,0,46,11],[21,0,46,11],[22,0,46,11],[23,0,46,11],[24,0,46,20]],[[4,0,47,2]],[[0,0,48,0]],[[0,0,50,13],[1,0,50,13],[2,0,50,13],[3,0,50,13],[4,0,50,13],[5,0,50,13],[6,0,50,13],[7,0,50,13],[8,0,50,13],[9,0,50,13],[10,0,50,13],[11,0,50,13],[12,0,50,13],[13,0,50,13],[14,0,50,13],[15,0,50,13],[16,0,50,13],[17,0,50,13],[18,0,50,13],[19,0,50,13],[20,0,50,13],[21,0,50,13],[22,0,50,13],[23,0,50,13],[24,0,50,13],[25,0,50,13],[26,0,50,13],[27,0,50,13],[28,0,50,13],[29,0,50,34],[30,0,50,34],[31,0,50,34],[32,0,50,37]],[[4,0,51,2],[5,0,51,2],[6,0,51,2],[7,0,51,2],[8,0,51,2],[9,0,51,2],[10,0,51,2],[11,0,51,2],[12,0,51,2],[13,0,51,2],[14,0,51,2],[15,0,51,2],[16,0,51,2],[17,0,51,2],[18,0,51,2],[19,0,51,2],[20,0,51,2],[21,0,51,19],[22,0,51,20],[23,0,51,20],[24,0,51,20],[25,0,51,20],[26,0,51,20],[27,0,51,20],[28,0,51,20],[29,0,51,20],[30,0,51,20],[31,0,51,46],[32,0,51,46],[33,0,51,46]],[[8,0,52,4],[9,0,52,4],[10,0,52,4],[11,0,52,4],[12,0,52,4],[13,0,52,4],[14,0,52,4],[15,0,52,4],[16,0,52,4],[17,0,52,4],[18,0,52,4],[19,0,52,4],[20,0,52,4],[21,0,52,4],[22,0,52,18],[23,0,52,18],[24,0,52,18],[25,0,52,21],[26,0,52,21],[27,0,52,21],[28,0,52,21],[29,0,52,21],[30,0,52,21],[31,0,52,21],[32,0,52,21],[33,0,52,21],[34,0,52,30]],[[4,0,53,2],[5,0,53,3]],[[1,0,54,1]]],"ignoreList":[]}
@@ -1,5 +1,6 @@
1
- import { parse } from 'es-module-lexer';
2
- export type ModuleDefaultSignal = 'has-default' | 'no-default' | 'unknown';
1
+ import type { parse } from 'es-module-lexer';
2
+ import { type DefaultExportSignal } from './lexer.cjs';
3
+ export type ModuleDefaultSignal = DefaultExportSignal;
3
4
  type LexerOverrides = {
4
5
  parse?: typeof parse;
5
6
  };
@@ -3,11 +3,11 @@ import fs from 'node:fs/promises';
3
3
  import path from 'node:path';
4
4
  import { createRequire } from 'node:module';
5
5
  import { fileURLToPath, pathToFileURL } from 'node:url';
6
- import { init, parse } from 'es-module-lexer';
7
6
  import { moduleType } from 'node-module-type';
8
7
  import { getTsconfig } from 'get-tsconfig';
9
8
  import { createMatchPath } from 'tsconfig-paths';
10
9
  import { cssWithMeta } from './css.js';
10
+ import { analyzeModule } from './lexer.js';
11
11
  import { buildStableSelectorsLiteral } from './stableSelectorsLiteral.js';
12
12
  import { resolveStableNamespace } from './stableNamespace.js';
13
13
  let activeCssWithMeta = cssWithMeta;
@@ -62,7 +62,6 @@ export async function generateTypes(options = {}) {
62
62
  const include = normalizeIncludeOptions(options.include, rootDir);
63
63
  const cacheDir = path.resolve(options.outDir ?? path.join(rootDir, '.knighted-css'));
64
64
  const tsconfig = loadTsconfigResolutionContext(rootDir);
65
- await init;
66
65
  await fs.mkdir(cacheDir, { recursive: true });
67
66
  const internalOptions = {
68
67
  rootDir,
@@ -203,13 +202,17 @@ async function findSpecifierImports(filePath) {
203
202
  return [];
204
203
  }
205
204
  const matches = [];
206
- const [imports] = parse(source, filePath);
207
- for (const record of imports) {
208
- const specifier = record.n ?? source.slice(record.s, record.e);
209
- if (specifier && specifier.includes(SELECTOR_REFERENCE)) {
210
- matches.push({ specifier, importer: filePath });
205
+ try {
206
+ const { imports } = await analyzeModule(source, filePath);
207
+ for (const specifier of imports) {
208
+ if (specifier.includes(SELECTOR_REFERENCE)) {
209
+ matches.push({ specifier, importer: filePath });
210
+ }
211
211
  }
212
212
  }
213
+ catch {
214
+ // ignore and fall back to regex below
215
+ }
213
216
  const requireRegex = /require\((['"])([^'"`]+?\.knighted-css[^'"`]*)\1\)/g;
214
217
  let reqMatch;
215
218
  while ((reqMatch = requireRegex.exec(source)) !== null) {